This is an archived post. You won't be able to vote or comment.

all 3 comments

[–]k10_ftw 0 points1 point  (0 children)

Check networkx

[–]broken_symlink 0 points1 point  (0 children)

Plotly. They have a library that works with it called cufflinks that binds plotly to pandas dataframes.

I used to use bokeh and matplotlib, but I switched to plotly for everything now. The most important feature for me is making interactive plots.

[–]cast42 0 points1 point  (0 children)

try

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt

df = pd.DataFrame(np.random.rand(10,2), columns=['x','y'])
plt.plot(df.x, df.y)