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 am unable to use string-typed column selectors in mapping(), which should be possible according to the documentation. Wrapping the strings in Symbol resolves the issue.
Steps to reproduce
using AlgebraOfGraphics, CairoMakie
using DataFrames
x =0.0:0.1:2.0*π
ysin =sin.(x)
df =DataFrame("Time (s)"=> x, "Magnitude"=> ysin)
draw(data(df) *mapping("Time (s)", "Magnitude") *visual(Lines))
Bug description
I am unable to use string-typed column selectors in
mapping()
, which should be possible according to the documentation. Wrapping the strings inSymbol
resolves the issue.Steps to reproduce
Error reporting
Version info
Before opening an issue
The text was updated successfully, but these errors were encountered: