Skip to content

Instantly share code, notes, and snippets.

@ischurov
Created February 9, 2018 10:05
Show Gist options
  • Save ischurov/2ea24ba55a5f2aad5ce880da87c74a11 to your computer and use it in GitHub Desktop.
Save ischurov/2ea24ba55a5f2aad5ce880da87c74a11 to your computer and use it in GitHub Desktop.
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