raw.plot X axis range too short

External Email - Use Caution

raw.plot(n_channels=15, events=events, scalings={"eeg": 75e-6},
event_color={1: "blue", 2: "red"})

Though I have 17500 samples in my file, above command plot only about 14000
samples only. Is there a way to plot all sample in the same graph?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/attachments/20190331/a54cb0d4/attachment.html

External Email - Use Caution

If I understand your question correctly, the second parameter "duration"
should work:

https://martinos.org/mne/dev/generated/mne.io.Raw.html#mne.io.Raw.plot

Eric

External Email - Use Caution

Eric, that works for me. Thank you