Michael Aye
Michael Aye
No, I strip it either with the pre_save_hook in my jupyter config or with the pre-commit hook as offered by nbstripout. The latter has the advantage that the content exists...
So, why do you want to share created output on ur machine with ur collaborators? Is it hard for them to recreate? Is it not tantamount that they will be...
My conclusion is that the `nbstripout` use with .gitattributes is currently the only way to have both a cleaned notebook in git while keeping outputs on local disk. Plus, it...
Not really, b/c IIUC the `jupyter nbconvert` above will change the content on disk which we wanted to avoid? Or do you mean to put that command line somehow as...
Thanks! I think you got our aim correctly, basically we want only clear output for git, while leaving things untouched on the local stored version, so that the output is...
Sure, just let me finish this damn NASA proposal first (deadline Thursday). Kynan could have a go at simply adding what's missing to the README and I chime in with...
Could it not simply be that within a day, the data points are plotted sequentially?
Ah we can check that by inspecting the returned axis I guess.
I only get one plot when I execute above code? (The last one)
pandas.read_csv needs to have the parameter `index_col=False`, because otherwise it takes the first column as an index **outside** the parsed column names. Then there's no offset in columns.