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
When #195 is merged it should be possible to write an extension such that some common Types have trivial component methods:
df =DataFrame(data)
app =dash()
app.layout =dash_datatable(
data =map(eachrow(df)) do r
Dict(names(r) .=>values(r))
end,
columns=[Dict("name"=>c, "id"=> c) for c innames(df)]
)
When #195 is merged it should be possible to write an extension such that some common Types have trivial component methods:
Could become:
The text was updated successfully, but these errors were encountered: