We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Instead of
df.hallway_width2 = map(x->x[2], df[!, :hallway_widths]) df |> @vlplot( mark={:boxplot, extent="min-max"}, x = {:hallway_width2}, y = {:tree_size, axis={title="tree size"}} )
Is it possible to do something like
df |> @vlplot( mark={:boxplot, extent="min-max"}, x = {:hallway_width, accessor=x->x[2]}, y = {:tree_size, axis={title="tree size"}} )
?
The text was updated successfully, but these errors were encountered:
Is the idea here that the column hallway_widths is of type Pair or Tuple or something like that, and you want to extract the second element?
hallway_widths
Pair
Tuple
I would do this with Query.jl:
df |> @mutate(hallway_width2 = _.hallway_widths[2]) |> @vlplot(...)
Sorry, something went wrong.
No branches or pull requests
Instead of
Is it possible to do something like
?
The text was updated successfully, but these errors were encountered: