Answered step by step
Verified Expert Solution
Question
1 Approved Answer
need help with r studio Replace NA value in work column in row 4 (Michaels work) with 14. Calculate the mean age ignore the NA
need help with r studio
- Replace NA value in work column in row 4 (Michaels work) with 14.
- Calculate the mean age ignore the NA values in the calculation.
- Replace the NA value in age in row 4 (Michaels age) with the mean age value (calculated in 27)
- Omit all other observations with missing values (NA). Note that this will remove all rows containing the missing data. Assign the revised data (without NA data) to a new data frame empComplete
- Display empComplete
- Sorting and ordering data Important: Use the empComplete data frame (created in question 29) to answer questions 31, 32, 33, 34, 35 and 36.
- Display empComplete data ordered by name. Do not make a change in the empComplete data frame. The display should not be just the names column. Your R code should display all the columns in the data frame ordered by name.
- Calculate the mean work experience for each gender separately using tapply() function on gender column.
- Dividing data into smaller sizes (subsets of data: include only some columns/rows)
- Display all the columns for female employees only (in empComplete data frame)
- Grouping data
- Create a data frame (female) that contains the female employees only
- Create another data frame (male) that contains the male employees only
- Calculate the mean work experience of female and male employees using female and male objects that you created in questions 34 and 35 above. Display these means. Are the answers to questions 32 and 36 consistent (same)?
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