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
This is a minor issue but I discovered it in testing something else. If you use data_frame() to make a zero row, zero column tbl_df … instead, you get a data.frame back.
> class(data_frame(a = 1:5, b = a * 2))
[1] "tbl_df" "tbl" "data.frame"
> class(data_frame())
[1] "data.frame"
The text was updated successfully, but these errors were encountered:
This is a minor issue but I discovered it in testing something else. If you use
data_frame()
to make a zero row, zero columntbl_df
… instead, you get adata.frame
back.The text was updated successfully, but these errors were encountered: