Question
a small documents outlining a set of your own findings from the dataset gpa1 from the R package Wooldridge should be produced. using the following
a small documents outlining a set of your own findings from the dataset "gpa1" from the R package "Wooldridge" should be produced.
using the following code You can install and load this package:
install.packages("wooldridge") library(wooldridge)
try to find documentation for this data set by using the R command:
?gpa1
then try to explore the determinants of college GPA.
- Choose your variables and provide documentation
Try to choose any 2 continuous variables and 2 binary variables to explore. (4 in total).
List the variables names and a short description.
- Provide summary statistics
Try to provide summary statistics of the dependent variable and your 4 variables In a neatly formatted table
then try to report. Number of Observation, Mean, Std Deviation, Max and Min, 25th and 75th Percentile.. Try to use the command sumtable()which relies on the packages "kableExtra", "vtable".
- Then you may Run and report separate regression results for each of your 4 selected variables.
Using the lm() command run each of your regressions and store the results.
Ex. MyModel1 = lm(myY ~ myX1, myData)
Report coefficients, heteroskedastic robust standard errors, and
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started