Skip to content

Instantly share code, notes, and snippets.

@aviatesk
Created May 9, 2020 06:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aviatesk/644d86ec9690f5f00a2228538bb0a8f3 to your computer and use it in GitHub Desktop.
Save aviatesk/644d86ec9690f5f00a2228538bb0a8f3 to your computer and use it in GitHub Desktop.
dataframe chaining while plotting
# what I will do here:
# - dataframe chain
# - keep to pass dataframe while plotting with `StatsPlots.@df`
# - pass columns names as variables
using DataFrames, Pipe, StatsPlots
theme(:juno)
df = DataFrame(x = randn(100), y = rand(Int, 100))
v1, v2 = :x, :y
v3 = :z
@pipe df |>
transform(_, [v1, v2] => ((x,y)->(x.*y)) => v3) |>
abs.(_) |>
(@df _ plot(cols(v2); label = ^(v2)); _) |> # keep to pass dataframe while plotting
@df _ plot!(cols(v3); yscale = :log10, label = ^(v3)) # more plotting
savefig("fig.png")
@aviatesk
Copy link
Author

aviatesk commented May 9, 2020

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment