Education Research by Design: Questions, Hypotheses, Data, and Methods

This is the first post in a new mini-series on RQ–RH–D–M across fields. The purpose of the series is to give readers a compact, practical toolkit showing how research questions (RQ), research hypotheses (RH) or working propositions, data (D), and methodology (M) can be aligned in different disciplines and under…

Quick start with R: Improving our regression model (Part 29)

Last time we created two variables and used the lm() command to perform a least squares regression on them, and diagnosing our regression using the plot() command. Here are the data again. height = c(176, 154, 138, 196, 132, 176, 181, 169, 150, 175)<br /> bodymass = c(82, 49, 53,…

Quick start with R: Diagnosing our regression model (Part 28)

Last time we created two variables and used the lm() command to perform a least squares regression on them, treating one of them as the dependent variable and the other as the independent variable. Here they are again. height = c(176, 154, 138, 196, 132, 176, 181, 169, 150, 175)…

Quick start with R: More on regression (Part 27)

In my last blog we created two variables and used the lm() command to perform a least squares regression on them, treating one of them as the dependent variable and the other as the independent variable. Here they are again. height = c(176, 154, 138, 196, 132, 176, 181, 169,…

1 2 3 5