Questions tagged [pvalue]

11 questions
21
votes
2 answers

What is the correct meaning and interpretation of p-values?

I’m posting this question, and an answer, to help dispel a few misunderstandings about what p-values are. As a hiring manager interviewing mid-level and senior data scientists, I have noticed these misunderstandings many times. I have also noticed…
Robert Long
  • 3,518
  • 12
  • 30
4
votes
2 answers

how do I calculate p-value?

I need to calculate statistical significance of difference between two time series, each with 4500 terms. My null hypothesis is that $H_0: \mu=\mu_0$. How can I calculate p-value? Is Z-statistic useful for p value calculation? How to get p-value…
nick_name
  • 205
  • 2
  • 8
2
votes
2 answers

p-value and effect size

Is it correct to say that the lower the p-value is the higher is the difference between the two means of the two groups in the t-test? For example, if I apply the t-test between two groups of measurements A and B and then to two groups of…
1
vote
0 answers

Levene test for equal variance

I would like to run one-way ANOVA test on my data. I saw that one of several assumptions for one-way ANOVA is that there needs to be homogeneity of variances. I have run the test for different data-sets. I find sometimes my p-values are larger than…
Reut
  • 299
  • 3
  • 15
1
vote
1 answer

T-test against normalised or standardised data gives different results

I am studying the problem to predict popularity of a tweet, and want to test null hypothesis: there is no relationships between favorite_counts and another set of variables, like number of friends of users. I am not sure if normalise or standardise…
1
vote
1 answer

Low P value in Chi-squared test but low coefficient in logistic regression

I ran a chi squared test on multiple features & also used these features to build a binary classifier using logistic regression. The feature which had the least p value (~0.1) had a low coefficient (=0) whereas the feature which had a higher p value…
user16584277
  • 169
  • 1
  • 1
  • 10
0
votes
1 answer

Multiple Hypotheses in python

I want to write a method to test multiple hypotheses for a pair of schools (say TAMU and UT Austin). I want to consider all possible pairs of words (Research Thesis Proposal AI Analytics), and test the hypothesis that the words counts differ…
stacky
  • 1
  • 1
0
votes
0 answers

P value for partial least squares regression in python

is there a way to calculate Pvalues for Partial Least Squares (PLS)? Or any preferred method to evaluate coefficient significance for PLS method? Preferably done in python
0
votes
1 answer

Statistical significance in multiple groups

What is the most appropriate test to validate significance in the case I'm comparing multiple different groups? e.g. I have different groups of ages (teenager, young, adult, elderly) and a conversion rate related to each of them in my website. How…
simon
  • 133
  • 4
0
votes
0 answers

P value calculation for stacked LSTM model for binary classification

I need to calculate the P-value for a stacked LSTM model. Does that mean that I need to run the model multiple times and consider the null hypothesis that the model's accuracy is almost the same across the multiple runs? if not can you please help…
0
votes
3 answers

p-value of chi squared test is exactly 0.0

I need to do a chi square test of two of my dataset's categorical variables. This two variables have basically the same meaning but comes from two different sources, so my idea is to use a chi square test to see how "similar" or correlated, these…