I have a pandas dataframe that holds the file path to .wav
data. Can I use pandas DataFrame.plot()
function to plot the data referenced?
Example:
typical usage:
df.plot()
what I'm trying to do:
df.plot(df.path_to_data)
???
I suspect some combination of apply
and lambda
will do the trick, but I'm not very familiar with these tools.