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
{{ message }}
This repository has been archived by the owner on Jun 29, 2021. It is now read-only.
When using Data and passing property names, it would be convenient if StatsMakie defaulted to using those property names for the corresponding axis labels if the user has not already set the axis labels. Here's an example:
using Makie, StatsMakie, RDatasets
mtcars = RDatasets.dataset("datasets", "mtcars")
p =violin(Data(mtcars), :VS, :MPG)
What we get:
What I would like to get:
The text was updated successfully, but these errors were encountered:
This is definitely planned functionality. The problem right now is that StatsMakie is mostly implemented with the convert_arguments functionality that converts arguments into list of plot types, with converted arguments and new attributes. The problem is that the axis labels belong to scene[Axis] so are not readily acceptable here. We should probably discuss at VizCon what is the correct implementation.
When using
Data
and passing property names, it would be convenient if StatsMakie defaulted to using those property names for the corresponding axis labels if the user has not already set the axis labels. Here's an example:What we get:
What I would like to get:
The text was updated successfully, but these errors were encountered: