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
Is there a way to prevent string values from beeing converted to floats? E.g. if I define string_parameter=['a', 'b', 'c']
string_parameter=['a', 'b', 'c']
from doepy import build build.full_fact({ 'int_param':[1, 2, 3], 'float_param': [0.1, 0.2, 0.3], 'string_param': ['a', 'b', 'c'], )
the values for string_param are implicitly converted to 0.0, 1.0, 2.0 respectively. Instead I'd like to get the plain strings 'a', 'b', 'c'.
string_param
0.0, 1.0, 2.0
'a', 'b', 'c'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there a way to prevent string values from beeing converted to floats? E.g. if I define
string_parameter=['a', 'b', 'c']
the values for
string_param
are implicitly converted to0.0, 1.0, 2.0
respectively. Instead I'd like to get the plain strings'a', 'b', 'c'
.The text was updated successfully, but these errors were encountered: