dreamRs / esquisse

RStudio add-in to make plots interactively with ggplot2
https://dreamrs.github.io/esquisse
Other
1.76k stars 228 forks source link

Does package really take in .sas7bdat files? #167

Closed bms63 closed 2 years ago

bms63 commented 3 years ago

Hi all,

Very cool package. I work a lot with sas7bdat files and was intrigued that it could read them in, but I'm not having any luck.

I looked at source code and only see one reference to .sas7bdat in the depracted.R file. Will this be added in a later update?

image

pvictor commented 3 years ago

Hello,

The import module is now in package {datamods}, and there was a bug with .sas7bdat files (see https://github.com/dreamRs/datamods/issues/24), you have to re-install {datamods} from GitHub to make it work:

remotes::install_github("dreamRs/datamods")
remotes::install_github("dreamRs/esquisse")

I'll push to CRAN soon.

If you're interested by reading .sas7bdat files, you can give a look at package {haven}

Victor