Replies: 1 comment 1 reply
-
Hi @flippok, it may be that the plot is being generated but not displayed because matplotlib is not in iteractive mode. Try doing: import pylab as plt
plt.ion() # Turn on interactive mode before running the session_plot function. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am having an issue with session.plot where from what I can tell the module is running properly, but no plot is generated. Below is the commands I am using to attempt to plot the data.
import sys
sys.path.insert(1, 'C:/Users/flippok/Anaconda3/Scripts')
import session_plot as sp
sp.session_plot('C:/Users/flippok/Documents/pyControl/data/PIT_Pavlovian_Day1/Mouse1-2023-10-16-110825.txt')
Any ideas would be greatly appreciated. Thank you!
Beta Was this translation helpful? Give feedback.
All reactions