ALL FEATURE REQUESTS HERE ARE MONITORED BY OUR PRODUCT TEAM.

VOTING MATTERS!

IDEAS WITH HIGH NUMBERS OF VOTES (USUALLY ≥ 10) ARE PRIORITIZED IN OUR ROADMAP.

NOTE: IF YOU WISH TO SUGGEST A NEW FEATURE, PLEASE POST A NEW QUESTION AND TAG AS "FEATURE REQUEST". THANK YOU.

CorrelationCriterion may return micro variance

yzanyzan Member Posts: 66 Unicorn
Currently, correlation estimate on a dataset does not return any variance estimate. A reasonable estimate can be obtained with:
@Override
public double getMikroVariance() {
// Reference: ESTIMATION OF SAMPLING VARIANCE OF CORRELATIONS IN META‐ANALYSIS, equation 1.
// https://doi.org/10.1111/j.1744-6570.2001.tb00223.x
// Available from: http://www.hermanaguinis.com/PP2001.pdf
// Limitations: This estimate assumes that label and plabel follow a bivariate normal distribution.
// Also, this estimate is optimistically biased when the count of samples is below 100.
double r2 = Math.pow(getMikroAverage(), 2);
return Math.pow(1 - r2, 2) / (exampleCount - 1);
}



Tagged:
0
0 votes

Open for Voting · Last Updated

IC-1674

Comments

  • MartinLiebigMartinLiebig Administrator, Moderator, Employee, RapidMiner Certified Analyst, RapidMiner Certified Expert, University Professor Posts: 3,503 RM Data Scientist
    Thanks, we will have a look!

    CC @IngoRM for AutoModel
    - Sr. Director Data Solutions, Altair RapidMiner -
    Dortmund, Germany
Sign In or Register to comment.