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
I have been reading the functions for the project creation, and I am bit confused by the conflation of the (thin) data-munging logic and the visualization settings logic in the same functions.
Maybe it would be better to separate the part where one links to the project all the available data and the part where one specifies the default parameters for the GUI.
The text was updated successfully, but these errors were encountered:
As a user, I would like to be able to change visualisation parameters like vmin, vmax, colormap, linewidth etc. directly in the GUI. It's a bit weird to pre-specify these when adding data to the project, because at that point you haven't seen the data and you might not know what visualisation parameters are appropriate. Some of these parameters are editable from the GUI, but not all of them.
The overall rationale for ingesting data and setting plotting parameters in a single function is explained here #11
It is a good point that though that users might wish to make further adjustments once the SNUB plot is already open, especially ones that could potentially impact the legibility of the plot. I just merged #28 that makes a few more parameters adjustable in the GUI:
scatter plot: users can now adjust marker size and border width directly in the GUI
trace plot: users can adjust linewidth and y-axis bounds in the GUI
These parameter changes are not saved to the config (currently the GUI never directly changes the config and I'd like to keep it that way).
I have been reading the functions for the project creation, and I am bit confused by the conflation of the (thin) data-munging logic and the visualization settings logic in the same functions.
Maybe it would be better to separate the part where one links to the project all the available data and the part where one specifies the default parameters for the GUI.
The text was updated successfully, but these errors were encountered: