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
using Tidier
using DataFrames
# create data
df =DataFrame(
x =1:1000,
y =rand(1000)
)
# this plot ...ggplot(data = df) +geom_line(aes(
x =:x,
y =:y,
),
linewidth = .05
)
# ... looks the same as this one ggplot(data = df) +geom_line(aes(
x =:x,
y =:y,
),
linewidth =5
)
According to the Manifest.toml I am using TidierPlots.jl Version 0.5.4.
The text was updated successfully, but these errors were encountered:
Thanks for the initiative and great package(s)!
I cannot change the linewidth with
geom_line()
:According to the
Manifest.toml
I am usingTidierPlots.jl
Version 0.5.4.The text was updated successfully, but these errors were encountered: