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
Plots, scatter plots, histograms and heatmaps in the terminal using braille dots, and foreground and background colors - with no dependancies. Make complex figures using the Figure class or make fast and simple plots using graphing function - similar to a very small sibling to matplotlib. Or use the canvas to plot dots, lines and images yourself.
13
+
Plots, scatter plots, histograms and heatmaps in the terminal using braille dots, and foreground and background colors - with no dependencies. Make complex figures using the Figure class or make fast and simple plots using graphing function - similar to a very small sibling to matplotlib. Or use the canvas to plot dots, lines and images yourself.
14
14
15
15
Install:
16
16
@@ -41,7 +41,7 @@ In [3]: X = np.sort(np.random.normal(size=1000))
41
41
42
42
### Figure
43
43
44
-
To construct plots the recomended way is to use a `Figure`:
44
+
To construct plots the recommended way is to use a `Figure`:
45
45
46
46
```python
47
47
In [12]: plotille.Figure?
@@ -155,10 +155,10 @@ Parameters:
155
155
X: List[float] X values.
156
156
Y: List[float] Y values. X and Y must have the same number of entries.
157
157
width: int The number of characters for the width (columns) of the canvas.
158
-
hight: int The number of characters for the hight (rows) of the canvas.
158
+
height: int The number of characters for the height (rows) of the canvas.
159
159
X_label: str Label for X-axis.
160
160
Y_label: str Label for Y-axis. max 8 characters.
161
-
linesep: str The requested line seperator. default: os.linesep
161
+
linesep: str The requested line separator. default: os.linesep
0 commit comments