Doc fixes.
One is from Eric Hanchrow.
This commit is contained in:
parent
eee60c7d47
commit
cda496d4ed
|
@ -283,11 +283,11 @@ To plot histograms side-by-side, pass the appropriate @(racket #:x-min) value to
|
||||||
#:color 2 #:line-color 2
|
#:color 2 #:line-color 2
|
||||||
#:label "Numbers per number")))]
|
#:label "Numbers per number")))]
|
||||||
|
|
||||||
Using the @racket[#:gap] argument, a discrete hisogram can be used to show
|
Using the @racket[#:skip] argument, a discrete histogram can be used to show
|
||||||
benchmark results where each configuration has a specific color, but
|
benchmark results where each configuration has a specific color, but
|
||||||
the runs on a specific benchmark are grouped together. For example,
|
the runs on a specific benchmark are grouped together. For example,
|
||||||
|
|
||||||
@interaction[#:eval
|
@interaction[#:eval
|
||||||
plot-eval
|
plot-eval
|
||||||
(parameterize ([discrete-histogram-gap 1/32])
|
(parameterize ([discrete-histogram-gap 1/32])
|
||||||
(plot (list (discrete-histogram '(#(aa 1.5) #(ab 2.5) #(ac 3.5))
|
(plot (list (discrete-histogram '(#(aa 1.5) #(ab 2.5) #(ac 3.5))
|
||||||
|
|
|
@ -27,8 +27,8 @@ unpredictable when keys are mutated.
|
||||||
@defproc[(seteq [v any/c] ...) set?]
|
@defproc[(seteq [v any/c] ...) set?]
|
||||||
)]{
|
)]{
|
||||||
|
|
||||||
Creates a set that uses @racket[equal?], @racket[eq?], or
|
Creates a set that uses @racket[equal?], @racket[eqv?], or
|
||||||
@racket[eqv?], respectively, to compare elements. The given
|
@racket[eq?], respectively, to compare elements. The given
|
||||||
@racket[v]s are added to the set. The elements are added in the order
|
@racket[v]s are added to the set. The elements are added in the order
|
||||||
that they appear as @racket[v]s, so in the first two cases, an earlier
|
that they appear as @racket[v]s, so in the first two cases, an earlier
|
||||||
element that is @racket[equal?] or @racket[eqv?] but not @racket[eq?]
|
element that is @racket[equal?] or @racket[eqv?] but not @racket[eq?]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user