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.
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.
The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
CorrelationCriterion may return micro variance
yzan
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
Comments
Dortmund, Germany