-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
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
Impossible to see some matrix file in output #1659
Comments
Indeed, this is due to this PR : #1577, because now the JsonResponse doesn't allow Nan values (file raw_studies_blueprint.py, endpoint |
If I understand the user's expectation correctly, this view should display a result matrix containing NaN values. Technically, to display a value table in TSV format, we use a transformation that utilizes JSON format. This format has a limitation: it cannot represent NaN values, just like infinite values. What I don't understand is why the results contain NaN values. One solution would be to replace the invalid values with the strings: 'NaN' '+Inf' and '-Inf'. |
On the 28/08 i encountered the issue again on
This comes from line 149 in file return JSONResponse(content=output) This is due to the NaN values in the matrix so i reopen this issue |
Description
After run a simulation in 1 MC year and synthesis and year-by-year output, I can't see in results view this matrix :
I got the message below and associates files are present in the output folder
When associates files are not presents I got the right message "no data available"
Also see in study version 8.4.2 .
The text was updated successfully, but these errors were encountered: