

11.3.1 Setting the Seed: Reproducibility in Simulation Studies.

11.2.1 Example: Regression Analysis as a Function Call.11.1.1 Example 1: Running many regression models.9.4 Creating your document from the R Markdown file.9.3 Understanding the R Markdown editor.9 Documenting your results with R Markdown.8.4.3 Interpreting results: time dependent covariates.8.4.2 Example: Mullen composite and Visit.8.3.3 Example 2: Categorical Covariates.8.2.5 Example 2: Categorical predictors.7.2.2 Accounting for estimation variance and hypothesis testing.7.2.1 Parameter Estimation: Mean, Median, tutorial, Quantiles.6.2 Creating Basic Tables: table() and xtabs().4.2.6 Editing factor variables: recode() and relevel().4.2.3 Spread, Gather, Separate and Unite.2.3 R and RStudio: What is the difference?.Note the difference between Σx² and (Σx)², they might be read aloud the same, but they are not the same. The summation of x² vs the summation of x….² x2 = x ^ 2 y2 = y ^ 2 sx2 = sum(x2) sy2 = sum(y2)


Now all we’re missing summation of the dot exponential of both x and y, as well as the summatation of x squared. N = length(x) xy = x * y Σx = sum(x) Σy = sum(y) Σxy = sum(xy)
