TommyJones / tidylda

Implements an algorithim for Latent Dirichlet Allocation using style conventions from the [tidyverse](https://style.tidyverse.org/) and [tidymodels](https://tidymodels.github.io/model-implementation-principles/index.html).
Other
41 stars 3 forks source link

Run on R 4.02 #46

Closed harryahlas closed 3 years ago

harryahlas commented 3 years ago

I cannot install this using R 4.02. is there a way you can make this package available on cran for that version? Asking for a friend.

TommyJones commented 3 years ago

tidylda is not yet ready for CRAN. It violates one of CRAN's policies about multithreading. I'll get that sorted once I can carve out time. Even so, a package this involved might take 2 months to get on CRAN once I submit since CRAN does lots of checks for new package submissions.

The version on GitHub now should work so long as you don't set any threads argument greater than 1, the default.

Is the issue that your friend cannot install it at all using remotes::install_github("tommyjones/tidylda")? Or are they trying to use install.packages(), which just checks CRAN?

harryahlas commented 3 years ago

Ah ok. Yes it is from an environment that needs to use install.packages(). We will figure out a work around. Thanks. Btw this package is great.

TommyJones commented 3 years ago

Thanks. I intend to have it on CRAN this year. Feel free to open an issue if you encounter any future problems.