Search
- Filter Results
- Location
- Classification
- Include attachments
- https://stats.libretexts.org/Courses/Cerritos_College/Introduction_to_Statistics_with_R/08%3A_Estimating_Unknown_Quantities_from_a_Sample/8.04%3A_Estimating_Population_Parametersknitr::kable(data.frame(stringsAsFactors=FALSE, Symbol = c("$s$", "$\\sigma$", "$\\hat{\\sigma}$", "$s^2$", "$\\sigma^2$", "$\\hat{\\sigma}^2$"), What.is.it = c("Sample standard deviation", "Populatio...knitr::kable(data.frame(stringsAsFactors=FALSE, Symbol = c("$s$", "$\\sigma$", "$\\hat{\\sigma}$", "$s^2$", "$\\sigma^2$", "$\\hat{\\sigma}^2$"), What.is.it = c("Sample standard deviation", "Population standard deviation", "Estimate of the population standard deviation", "Sample variance", "Population variance", "Estimate of the population variance"), Do.we.know.what.it.is = c("Yes - calculated from the raw data", "Almost never known for sure", "Yes - but not the same as the sample standard dev…
- https://stats.libretexts.org/Courses/Cerritos_College/Introduction_to_Statistics_with_R/02%3A_Introduction_to_R/2.13%3A_Using_CommentsBefore discussing any of the more complicated stuff, I want to introduce the comment character, #. It has a simple meaning: it tells R to ignore everything else you’ve written on this line. seeker <- ...Before discussing any of the more complicated stuff, I want to introduce the comment character, #. It has a simple meaning: it tells R to ignore everything else you’ve written on this line. seeker <- 3.1415 # create the first variable lover <- 2.7183 # create the second variable keeper <- seeker * lover # now multiply them to create a third one print( keeper ) # print out the value of 'keeper'
- https://stats.libretexts.org/Courses/Cerritos_College/Introduction_to_Statistics_with_R/15%3A_Regression_in_R/15.12%3A_Model_SelectionIf we ignore the low level details, it’s fairly obvious what the AIC does: on the left we have a term that increases as the model predictions get worse; on the right we have a term that increases as t...If we ignore the low level details, it’s fairly obvious what the AIC does: on the left we have a term that increases as the model predictions get worse; on the right we have a term that increases as the model complexity increases. where N is the number of observations, p is the number of predictors in the full model (not including the intercept), and k is the difference in the number of parameters between the two models.
- https://stats.libretexts.org/Bookshelves/Introductory_Statistics/Inferential_Statistics_and_Probability_-_A_Holistic_Approach_(Geraghty)/14%3A_Correlation_and_Linear_Regression/14.09%3A_Residual_AnalysisWe will make three graphs to test the residual; a scatterplot with the regression line, a plot of the residuals, and a histogram of the residuals Model B looks like a strong fit, but the residuals are...We will make three graphs to test the residual; a scatterplot with the regression line, a plot of the residuals, and a histogram of the residuals Model B looks like a strong fit, but the residuals are showing a pattern of being positive for low and high values of \(X\) and negative for middle values of \(X\). Model C has a linear fit, but the residuals are showing a pattern of being smaller for low values of \(X\) and higher for large values of \(X\).
- https://stats.libretexts.org/Bookshelves/Introductory_Statistics/Inferential_Statistics_and_Probability_-_A_Holistic_Approach_(Geraghty)/10%3A_One_Population_Hypothesis_Testing/10.02%3A_Formulate_General_Research_Questions(Labor) What is the effect of undocumented immigration and outsourcing of jobs on the current unemployment rate? On the basis of available or potentially available data, we can decide later what speci...(Labor) What is the effect of undocumented immigration and outsourcing of jobs on the current unemployment rate? On the basis of available or potentially available data, we can decide later what specific research hypotheses will be formulated and tested to address the general question. During the data collection and testing process other ideas may come up and we may choose to redefine the general question.
- https://stats.libretexts.org/Bookshelves/Introductory_Statistics/Inferential_Statistics_and_Probability_-_A_Holistic_Approach_(Geraghty)/12%3A_Chisquare_Tests_for_Categorical_Data/12.02%3A_Chisquare_Test_of_IndependenceYou can pick any two events in the table above to verify that Gender and Opinion of Legalization of Marijuana are independent events. In that case, we would expect the 450 people who supported legaliz...You can pick any two events in the table above to verify that Gender and Opinion of Legalization of Marijuana are independent events. In that case, we would expect the 450 people who supported legalization of marijuana to have a higher number of women (and a smaller number of men) compared to the first table. If only one variable is randomized, then the test is called a Chi‐square Test of Homogeneity, but the execution of the test is exactly the same.
- https://stats.libretexts.org/Bookshelves/Advanced_Statistics/Analysis_of_Variance_and_Design_of_Experiments/10%3A_ANCOVA_Part_IIExtending ANCOVA to model quantitative predictors with higher-order polynomials, using orthogonal polynomial coding. Fitting a polynomial to express the impact of the quantitative predictor on the res...Extending ANCOVA to model quantitative predictors with higher-order polynomials, using orthogonal polynomial coding. Fitting a polynomial to express the impact of the quantitative predictor on the response is also called trend analysis and helps to evaluate the separate contributions of linear and nonlinear components of the polynomial.
- https://stats.libretexts.org/Bookshelves/Advanced_Statistics/Analysis_of_Variance_and_Design_of_Experiments/10%3A_ANCOVA_Part_II/10.01%3A_ANCOVA_with_Quantitative_Factor_LevelsOverview of ANCOVA with quantitative factor levels.
- https://stats.libretexts.org/Courses/Kansas_State_University/EDCEP_917%3A_Experimental_Design_(Yang)/00%3A_Front_Matter/04%3A_LicensingA detailed breakdown of this resource's licensing can be found in Back Matter/Detailed Licensing.
- https://stats.libretexts.org/Courses/Cerritos_College/Introduction_to_Statistics_with_R/15%3A_Regression_in_RThe goal in this chapter is to introduce linear regression, the standard tool that statisticians rely on when analysing the relationship between interval scale predictors and interval scale outcomes. ...The goal in this chapter is to introduce linear regression, the standard tool that statisticians rely on when analysing the relationship between interval scale predictors and interval scale outcomes. Stripped to its bare essentials, linear regression models are basically a slightly fancier version of the Pearson correlation (Section 5.7) though as we’ll see, regression models are much more powerful tools.
- https://stats.libretexts.org/Courses/Cerritos_College/Introduction_to_Statistics_with_R/21%3A_Math_Review_for_Introductory_Statistics/21.01%3A_Decimals_Fractions_and_Percents/21.1.03%3A_Decimals-__Rounding_and_Scientific_NotationIn this section, we will go over how to round decimals to the nearest whole number, nearest tenth, nearest hundredth, etc. In most statistics applications that you will encounter, the numbers will not...In this section, we will go over how to round decimals to the nearest whole number, nearest tenth, nearest hundredth, etc. In most statistics applications that you will encounter, the numbers will not come out evenly, and you will need to round the decimal.