[PYTHON] Remarque: dessin graphique termplotlib sur le terminal

Installation

apt install -y \
    python3-scipy \
    python3-seaborn \
    python3-gnuplot \
    python3-pip

pip install termplotlib

Dessin graphique

graph.py


import termplotlib as tpl
import numpy as np

x = np.linspace(0, 2*np.pi, 100)
y = np.sin(x) + x
fig = tpl.figure()
fig.plot(x, y, width=60, height=20)
fig.show()

スクリーンショット_2020-09-29_11-43-09.png

Utiliser csv

a.csv


1, 3
2, 1
3, 2.5
4, 8

graph.py


import pandas as pd
headers = ['x', 'y']
df = pd.read_csv('a.csv',names=headers)
#print(df)

import termplotlib as tpl
x = df['x']
y = df['y']
fig = tpl.figure()
fig.plot(x, y, width=60, height=20)
fig.show()

スクリーンショット_2020-09-29_12-16-41.png

Recommended Posts

Remarque: dessin graphique termplotlib sur le terminal
Dessin graphique avec matplotlib
Dessin graphique avec python
Jusqu'à dessiner un graphe 3D avec Python dans Windows10
Anaconda sur le terminal Windows
Méthode de dessin graphique avec matplotlib
Dessin graphique avec IPython Notebook