How to display time in milliseconds using MNE

Hi,

I would want my plots generated by MNE in milliseconds (rather than in seconds which is a default selection)
Or show the time axis seconds but with with decimals (like 2.345 s)

Could you please tell how to display x axis in milliseconds (for evoked.plot_joint, evoked.plot_image, itc.plot_joint, power.plot_joint

Thanks, your responses would of great assistance.

Can anyone pls help with this query, your answers would be of great help:)

you can do:

evoked.plot(time_unit=‘ms’)

or

evoked.plot_joint(ts_args={‘time_unit’: ‘ms’})


Alex

2 Likes

Thanks so much, it worked for evoked.plot and evoked.plot_joint.
Could you pls tell how to use it for plot_joint, power.plot_joint and evoked.plot_image.

Thanks in anticipation.

Best regards

I don’t think this is supported via our public API at the moment.

You can open a feature request on our issue tracker if you need this feature.

There’s a time_unit argument you can use.

Best wishes,
Richard

1 Like

Thank you very much for your assistance.