raymondEDS commited on
Commit
322597f
·
1 Parent(s): 223d6e3

Changing P value

Browse files
Files changed (1) hide show
  1. app/pages/week_5.py +1 -1
app/pages/week_5.py CHANGED
@@ -309,7 +309,7 @@ print(f"Correlation 3: {corr3:.3f}")
309
  st.write("""
310
  3. **Reading Linear Regression Output (解读线性回归结果):**
311
  - R-squared (R²): Proportion of variance explained by the model (0-1)
312
- - p-value: Probability that the observed relationship occurred by chance
313
  - Coefficients (系数): How much the dependent variable changes with a one-unit change in the independent variable
314
  - Standard errors: Uncertainty in coefficient estimates
315
  - Confidence intervals: Range where true coefficient likely lies
 
309
  st.write("""
310
  3. **Reading Linear Regression Output (解读线性回归结果):**
311
  - R-squared (R²): Proportion of variance explained by the model (0-1)
312
+ - p-value: It represents the probability of observing results at least as extreme as the ones seen in the study, assuming the null hypothesis is true. Essentially, it's the likelihood of getting the observed outcome (or a more extreme one) if there's actually no real effect or relationship being studied
313
  - Coefficients (系数): How much the dependent variable changes with a one-unit change in the independent variable
314
  - Standard errors: Uncertainty in coefficient estimates
315
  - Confidence intervals: Range where true coefficient likely lies