Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编写了一个 R 代码来创建 excel 工作簿,并使用 XLConnect 包将数据添加到其中。
wb <- XLConnect::loadWorkbook(Name,create = TRUE)
并向该文件添加了一些数据框。现在,我想从 xlsx 包中访问这个 XLConnect 对象 wb 并进行一些格式化,例如在文件内的数据框上添加边框、字体、wraptext 和对齐方式。这可能吗?
如果有任何不清楚或需要更多说明,请告诉我。
似乎不可能在同一个 R 会话中使用 XLConnect 和 xlsx 包,或者至少不能在单个包中使用。我正在使用 openxlsx 包来格式化 excel 文件。