Saving Plots
# to save a file just provide the path and file name of the plot, change the ending to whatever you want the file to be e.g. .pdf, .html, .png
df.plot_overtime(
variable = 'moving',
facet_col = 'species',
facet_arg = ['D.vir', 'D.ere', 'D.wil', 'D.sec', 'D.yak'],
facet_labels = ['D.virilis', 'D.erecta', 'D.willistoni', 'D.sechellia', 'D.yakuba'],
save = './user/folder/plot.pdf'
)Last updated