Export RDA file to csv

Hi,

I have to export an RDA file from RStudio to csv or xlsx. I googled it but when I try to get the libraries they suggest it says:

library("xlsx")
Error in library("xlsx") : there is no package called ‘xlsx’

I´m either trying to select the library from packages but can´t find it.

Could someone help me,

Lucas

You need to install the package first:

install.packages("xlsx")

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.