Skip to content

Instantly share code, notes, and snippets.

@wdecoster
Created December 7, 2018 14:14
Show Gist options
  • Save wdecoster/92883a2ea0fde11de3af32241c5b686f to your computer and use it in GitHub Desktop.
Save wdecoster/92883a2ea0fde11de3af32241c5b686f to your computer and use it in GitHub Desktop.
import pandas as pd
import matplotlib.pyplot as plt
df = pd.read_csv("yield_vs_N50.txt", sep="\t")
df.loc[:, "yield"] = df.loc[:, "yield"] / 1e9
df.plot(x="yield", y="N50", kind="scatter")
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment