How to make a plot with multi-axes with Dyntools
Hello everyone,
I am looking for a way to plot several channels but with different y-axes in the same figure with Dyntools.
I would appreciate your help.
Greetings.
Hello everyone,
I am looking for a way to plot several channels but with different y-axes in the same figure with Dyntools.
I would appreciate your help.
Greetings.
I don't believe it is possible in dyntools. Use matplotlib instead for larger flexibility.
EDIT: Use dyntools to read the outfile
chnfobj = dyntools.CHNF(outfile)
sh_ttl, ch_id, ch_data = chnfobj.get_data()
and then use matplotlib to plot the content.