We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Working with a Forward run::
In [106]: fd.max() --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-106-dcfda479542d> in <module>() ----> 1 fd.max() ~/.conda/envs/shyft/lib/python3.6/site-packages/reflexible-0.5.0-py3.6.egg/reflexible/data_structures.py in max(self) 667 @property 668 def max(self): --> 669 return self.time_integrated.max() 670 671 @property AttributeError: 'FDC' object has no attribute 'time_integrated' In [107]: fd.min --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-107-18303f3bb83f> in <module>() ----> 1 fd.min ~/.conda/envs/shyft/lib/python3.6/site-packages/reflexible-0.5.0-py3.6.egg/reflexible/data_structures.py in min(self) 671 @property 672 def min(self): --> 673 return self.time_integrated.min() 674 675
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Working with a Forward run::
The text was updated successfully, but these errors were encountered: