Created
February 9, 2018 10:05
-
-
Save ischurov/2ea24ba55a5f2aad5ce880da87c74a11 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import matplotlib.pyplot as plt | |
df = pd.read_csv("yourdata.csv") | |
plt.plot(df['x'], df['y'], lw=0.5, color='black') | |
plt.savefig("file.svg") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment