easystats / parameters

:bar_chart: Computation and processing of models' parameters
https://easystats.github.io/parameters/
GNU General Public License v3.0
435 stars 36 forks source link

skewness is no longer exported #662

Closed mmoisse closed 2 years ago

mmoisse commented 2 years ago

In the latest version of parameters the skewness function is no longer exported, while in previous version it was.

IndrajeetPatil commented 2 years ago

Hi, Sorry about this trouble.

This function has now been moved to datawizard package, which is also on CRAN: https://easystats.github.io/datawizard/reference/skewness.html

strengejacke commented 2 years ago

I'm not sure, but I think it should be there:

https://github.com/easystats/parameters/blob/main/R/reexports.R

IndrajeetPatil commented 2 years ago

It's not:

library(parameters)

"skewness" %in% getNamespaceExports("parameters")
#> [1] FALSE

Created on 2022-02-16 by the reprex package (v2.0.1.9000)

Because #' @export is missing here:

https://github.com/easystats/parameters/blob/21f943c694399ea1e47a0680864d596172f198de/R/reexports.R#L37-L39

strengejacke commented 2 years ago

ok, that was not intended. It should have been re-exported.