根据其他数据框更改数据帧类
我有一个从 Excel 导入的 R 数据框和一个使用脚本创建的数据框。这些数据框包含相同的列,但由于其中一列是从 Excel 导入的,因此列的类与使用脚本创建的数据框的列不同。 数据帧包含 500 多列,因此单独完成会花费大量时间。有什么方法可以将 Excel 导入的数据框的所有列的类更改为脚本创建的数据框的列的类吗?
非常感谢!
I have a dataframe in R that I import from excel and a dataframe that I create with a script. These dataframes contain the same columns but since one is imported from excel, the class of the columns are not identical to the columns of the dataframe created with the script.
The dataframes contain 500+ columns so to do it individually would take a lot of time. Is there any way to change the class of all columns of the excel imported dataframe to the class of the columns from the script created dataframe?
Many thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,
$a
仍然是整数,而不是转换为数字;如果这不是问题,那么这就足够了。如果不是,那么可能会首选这种更详细、更灵活的选项:sapply(.., class(z)[1])
背后的基本原理是某些类的长度大于 1 (例如,tbl_df
、POSIXct
),这会破坏该过程。Granted,
$a
remains integer instead of being cast to numeric; if that's not a concern, then that may suffice. If not, then this more-verbose and more-flexible option might be preferred:The rationale behind
sapply(.., class(z)[1])
is that some classes have length greater than 1 (e.g.,tbl_df
,POSIXct
), which will spoil that process.