-
Notifications
You must be signed in to change notification settings - Fork 29
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
Issue with Json data charts Preview #6118
Comments
Hi @Tooyosi -- The error appears to be due to the assumption that the data will be a In any case, this issue appears either to be a subject viewer type assignment error, an internal data processing error, or a case of out-of-date docs (if the simpler single series input is not supported) -- all of which are FEM issues. Therefore, I've moved this issue to the FEM repo. |
The Those subjects follow the Here's an example of a JSON data subject in the old subject preview component: |
If it's useful at all, I've got some Python code here that generates JSON data light curves for the SLSN project. It shows the basic shape for the subject data. With those subjects, you should see something like this in the project builder. |
@eatyourgreens -- Acknowledging this is pedantic, but the PH TESS JSON just uses I posted PR #6122 to update the ScatterPlotViewer README to remove the older cruft and outdated JSON example. |
Oh yeah, you’re right. I missed the PFE expects @Tooyosi I wrote the frontend code for JSON data subjects, so I’m happy to talk through it the next time that we’re both in Oxford. |
I summarised the different types of data subject in ADR 48, so that might be helpful too. |
@lcjohnso That was my mistake. That PR should fix the The Line 55 in d89db9a
|
Previewing an uploaded json subject data of the below format (from ScatterPlotViewer) does not display properly on preview
{ "data": { "x": [1, 2, 0.356], "y": [6, 3, 0.667] }, "chartOptions": { "xAxisLabel": "Days", "yAxisLabel": "Brightness" } }
This however shows properly when testing/classifying it on FEM.
The text was updated successfully, but these errors were encountered: