Format converter for .raw and .dyr files #148
-
I'd like to convert .raw and .dyr files into a single .xlsx file. It works to convert the .raw file into .xlsx, while running the command "andes run xxx.dyr --convert xlsx" throwed a error "Unable to determine case format." So how to realize this conversion? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
The command to use is You can find more usage examples in https://github.com/cuihantao/andes/blob/master/examples/2.%20inspect_data.ipynb and https://docs.andes.app/en/stable/tutorial.html#pss-e-inputs. |
Beta Was this translation helpful? Give feedback.
-
Since this is not an issue, I'm converting it into a discussion. You can find the discussion thread from "Discussions" on the right of the "Pull Request" tab. |
Beta Was this translation helpful? Give feedback.
The command to use is
andes run case.raw -a case.dyr -c
. The rationale is that thedyr
file is an additional file to theraw
file.You can find more usage examples in https://github.com/cuihantao/andes/blob/master/examples/2.%20inspect_data.ipynb and https://docs.andes.app/en/stable/tutorial.html#pss-e-inputs.