You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
I am learning about ODYM.
When I tried to reproduce the result of example 6, I found that the variable "ThisParProcMethod" was missing when "In 6" called the "ReadParameterXLSX" function in the code.
If possible, could you give me some guidance on how to modify the code?Thank you very much.
The text was updated successfully, but these errors were encountered:
Hi
I am experiencing the same problem, and it still reports an error after following your comments and making changes.
Could you give me some guidance on how to modify the code?
Thank you very much.
@liweijia001 the SyntaxError is correct; I believe you moved the arguments in your call to ReadParameterXLSX. Specifically, you pass the argument "ThiParProcMethod = 'none'" before passing other positional arguments (e.g. MasterClassification, IndexTable, etc.). We can see it when we compare your function call to line ~36 in the TypeError.
Try moving the keyword argument "ThisParProcMethod" at the end, right before ParseUncertainty = True.
Hi
I am learning about ODYM.
When I tried to reproduce the result of example 6, I found that the variable "ThisParProcMethod" was missing when "In 6" called the "ReadParameterXLSX" function in the code.
If possible, could you give me some guidance on how to modify the code?Thank you very much.
The text was updated successfully, but these errors were encountered: