Using the Rds data to answer all 5 questions

1 answer below »
Answered 18 days AfterOct 14, 2021

Answer To: Using the Rds data to answer all 5 questions

Mohd answered on Oct 31 2021
114 Votes
---
title: 'Regression economics'
author: 'Tarun'
date: "10/30/2021"
output: word_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE,cache = TRUE,warning = FALSE,message = FALSE,dpi = 180,fig.width = 8,fig.height = 5)
```
```{r}
library(readr)
library(magrittr)
library(dplyr)
library(ggplot2)
library(rmarkdown)
library(MASS)
library(skimr)
library(ggeffects)
```
```{r}
abc <- readRDS("~/data/lfs21.rds")
skim(abc)
```
#1a) Generate a scatterplot
```{r}
age=abc$age_12
wage=abc$hrlyearn
plot(age,wage,main="Scatterplot of Wages and...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here