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
Initialize NormalizeData with data columns
with snt.NormalizeData(xaxis=True, yaxis=True, xdata, ydata) as n:
If zdata is a scalar, following error ocures:
zminpos = np.nanmin(vdata[vdata>0]) if np.sum(vdata>0) else np.nan TypeError: '>' not supported between instances of 'list' and 'int'
Ideally, one would set x and y first and then the z data values
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Initialize NormalizeData with data columns
If zdata is a scalar, following error ocures:
Ideally, one would set x and y first and then the z data values
The text was updated successfully, but these errors were encountered: