You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to DynaSim Users
Hi all,
I find that setting different range with the option time_limit in dsCalcPower doesn't seem to change the result at all. By result I mean in SUA but in my test I only have one cell. I look into the function file, it seems that it should make a difference. Can
anybody confirm?
(In my test I change the in put at different period of time, so the result should be different if time_limit is set differently.)
Best,
Jingjin
Wei, Jingjin
unread,
May 8, 2019, 10:41:24 AM5/8/19
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Wei, Jingjin, DynaSim Users
I'm not sure the "time_limit" option works anywhere. I tried it for plotting both rastergrams and power spectra and it never seemed to activate.
If you're only doing one cell (and therefore one population), it may be easier to write your own power analysis/plotting function. Much of the code in dsPlot at least is for dealing with visualizing many different time series simultaneously, which doesn't apply to your case.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Austin Soplata, Wei, Jingjin, DynaSim Users
I can't confirm that right now, but I do have a workaround if that's the case. You can use dsSelect to restrict the time limits before passing the data to any other function.
E.g.)
dat = dsSelect(data,'time_limits',[0 400]);
dsPlot(dat);
I'll make an issue on GitHub to look into this and fix it if it isn't working.