Giter VIP home page Giter VIP logo

Comments (12)

strengejacke avatar strengejacke commented on July 24, 2024 1

Good that I have copied the clean branch after CRAN submission of parameters (https://github.com/easystats/parameters/tree/release_0_19_0_branch) - the main-branch now includes several breaking changes that are not properly tested and might break other packages, so it's possible to include the patch into the release_0_19_0_branch and submit a fix to CRAN, if necessary. :-)

from correlation.

DominiqueMakowski avatar DominiqueMakowski commented on July 24, 2024

Warning in genhypergeo_series_pos

I started having this warning fairly often too for bayesian correlations (but no errors in correlation), did something change in BayesFactor to cause that?

from correlation.

IndrajeetPatil avatar IndrajeetPatil commented on July 24, 2024

I doubt it, since BayesFactor was last updated in July, and we would have noticed such a change way earlier instead of now.

I have a hunch that this has to do with a change in either parameters or bayestestR.

from correlation.

strengejacke avatar strengejacke commented on July 24, 2024

Here's a reprex:

library(parameters)
library(dplyr, warn.conflicts = FALSE)
df <- as.data.frame(ggplot2::msleep)

x <- filter(df, vore == "carni")
rez <- BayesFactor::correlationBF(x$sleep_total, x$awake, rscale = "medium")
#> Warning in genhypergeo_series_pos(U = c((n - 1)/2, (n - 1)/2), L = ((n + :
#> Series not converged.
rez
#> Bayes factor analysis
#> --------------
#> [1] Alt., r=0.333 : NA ±0%
#> 
#> Against denominator:
#>   Null, rho = 0 
#> ---
#> Bayes factor type: BFcorrelation, Jeffreys-beta*

params <- parameters::model_parameters(rez)
params
#> Bayesian correlation analysis
#> 
#> Parameter | Median |         95% CI |   pd |         Prior
#> ----------------------------------------------------------
#> rho       |  -1.00 | [-1.00, -1.00] | 100% | Beta (3 +- 3)
#> 
#> Uncertainty intervals (equal-tailed) and p-values (two-tailed) computed
#>   using a MCMC distribution approximation.

Created on 2022-10-07 with reprex v2.0.2

from correlation.

DominiqueMakowski avatar DominiqueMakowski commented on July 24, 2024

could it be with the removal of ROPE?

from correlation.

strengejacke avatar strengejacke commented on July 24, 2024

parameters uses datawizard::remove_empty(), which removes columns with completely NA (which is a new behaviour, I think), so the BF is missing for this particular combination of variables, which causes the error in correlation.

A fix would be to check here:

params <- parameters::model_parameters(

if the BF column exists, and if not, add BF <- NA. We must ensure the columns have the right order (so we might need to sort), so params can be rbind() to the final results (see cor_test()).

from correlation.

strengejacke avatar strengejacke commented on July 24, 2024

We should add @IndrajeetPatil example as test, once the issue is resolved.

from correlation.

DominiqueMakowski avatar DominiqueMakowski commented on July 24, 2024

shouldnt we add that in parameters? The output should include the BF col even if NA

from correlation.

strengejacke avatar strengejacke commented on July 24, 2024

Yes, I agree. But maybe for now it's better to have this fix in correlation, too? I just submitted parameters two days ago. 😬

from correlation.

DominiqueMakowski avatar DominiqueMakowski commented on July 24, 2024

haha okay makes sense then

from correlation.

strengejacke avatar strengejacke commented on July 24, 2024

There must have been a reason why we changed the behaviour in model_parameters.BFBayesFactor(). We added

  # ==== remove rows and columns with complete `NA`s
  out <- datawizard::remove_empty(out)

I think it's related to the new API of effectsize, which might return empty columns or rows that we didn't wanted to have? But we were not considering that the BF could be NA.

from correlation.

IndrajeetPatil avatar IndrajeetPatil commented on July 24, 2024

I think it's related to the new API of effectsize, which might return empty columns or rows that we didn't wanted to have? But we were not considering that the BF could be NA.

Yes, the change in parameters is good. We just need to make a few exceptions, where necessary.

I have added tests and done some other preparations necessary for a new CRAN release of correlation.

Are there any other high prio issues that need to be resolved before this happens?

cc @bwiernik

from correlation.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.