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
In R, when calling read_feather function to load the cache, it could fail with error to ask to name columns, if the original dataframe is missing one, which is quite common for datasets (e.g. no index/rownames header).
The error seems to do with the tibble package in the implementation.
If the column name is required, write_feather should ask for it if missing in the first place; or the implementation should allow missing columns.
In R, when calling
read_feather
function to load the cache, it could fail with error to ask to name columns, if the original dataframe is missing one, which is quite common for datasets (e.g. no index/rownames header).The error seems to do with the
tibble
package in the implementation.If the column name is required,
write_feather
should ask for it if missing in the first place; or the implementation should allow missing columns.Code example to show the bug is as below:
The text was updated successfully, but these errors were encountered: