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 CSV, Query, DataFrames
df = CSV.read("deliveries.csv"; header=true, delim=',')
x =by(
sdf ->mapcols(sum, sdf[:, 3:end]),
df,
:Customer
)
println(x)
I'm trying to use using Gadfly, to draw the chart, so that each row (customer) is a series, so I'll be having a multiple time serials lines. but not sure how to go!
The text was updated successfully, but these errors were encountered:
In general, the julia discourse is the best avenue for asking questions. Github issues are primarily for development, bug reports, design discussions, etc.
I've the below table of data:
That is generted from the below:
I'm trying to use
using Gadfly
, to draw the chart, so that each row (customer) is a series, so I'll be having a multiple time serials lines. but not sure how to go!The text was updated successfully, but these errors were encountered: