You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`UnicodePlots` is integrated in [`Plots`](https://github.com/JuliaPlots/Plots.jl) as a backend, with support for [basic layout](https://docs.juliaplots.org/stable/gallery/unicodeplots/generated/unicodeplots-ref17).
454
454
455
-
For a more complex layout, use the `gridplot` function (requires loading [`Term`](https://github.com/FedeClaudi/Term.jl)).
455
+
For a more complex layout, use the `gridplot` function (requires loading [`Term`](https://github.com/FedeClaudi/Term.jl) as extension).
456
456
```julia
457
457
using UnicodePlots, Term
458
458
@@ -687,7 +687,7 @@ The method `label!` is responsible for the setting all the textual decorations o
687
687
These two canvas utilizes only standard `ASCII` character for drawing. Naturally, it doesn't look quite as nice as the Unicode-based ones. However, in some situations it might yield better results. Printing plots to a file is one of those situations.
688
688
689
689
-**DensityCanvas**:
690
-
Unlike the `BrailleCanvas`, the density canvas does not simply mark a "pixel" as set. Instead it increments a counter per character that keeps track of the frequency of pixels drawn in that character. Together with a variable that keeps track of the maximum frequency, the canvas can thus draw the density of datapoints.
690
+
Unlike the `BrailleCanvas`, the density canvas does not simply mark a "pixel" as set. Instead it increments a counter per character that keeps track of the frequency of pixels drawn in that character. Together with a variable that keeps track of the maximum frequency, the canvas can thus draw the density of data-points.
691
691
692
692
-**BarplotGraphics**:
693
693
This graphics area is special in that it does not support any pixel manipulation. It is essentially the barplot without decorations but the numbers. It does only support one method `addrow!` which allows the user to add additional bars to the graphics object.
@@ -732,7 +732,7 @@ The method `label!` is responsible for the setting all the textual decorations o
732
732
<details>
733
733
<summary></a><b>...</b></summary><br>
734
734
735
-
Run the folowing snippet to analyze invalidations:
735
+
Run the following snippet to analyze invalidations:
Copy file name to clipboardExpand all lines: docs/gen_docs.jl
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -251,7 +251,7 @@ The following types of `Canvas` are implemented:
251
251
These two canvas utilizes only standard `ASCII` character for drawing. Naturally, it doesn't look quite as nice as the Unicode-based ones. However, in some situations it might yield better results. Printing plots to a file is one of those situations.
252
252
253
253
- **DensityCanvas**:
254
-
Unlike the `BrailleCanvas`, the density canvas does not simply mark a "pixel" as set. Instead it increments a counter per character that keeps track of the frequency of pixels drawn in that character. Together with a variable that keeps track of the maximum frequency, the canvas can thus draw the density of datapoints.
254
+
Unlike the `BrailleCanvas`, the density canvas does not simply mark a "pixel" as set. Instead it increments a counter per character that keeps track of the frequency of pixels drawn in that character. Together with a variable that keeps track of the maximum frequency, the canvas can thus draw the density of data-points.
255
255
256
256
- **BarplotGraphics**:
257
257
This graphics area is special in that it does not support any pixel manipulation. It is essentially the barplot without decorations but the numbers. It does only support one method `addrow!` which allows the user to add additional bars to the graphics object.
@@ -289,7 +289,7 @@ The following types of `Canvas` are implemented:
289
289
""")
290
290
291
291
invalidations =plain_md_par("""
292
-
Run the folowing snippet to analyze invalidations:
292
+
Run the following snippet to analyze invalidations:
0 commit comments