Problem
Utilizing this r code
library(tidyverse) library(nycflights13) data(diamonds) load("india04.Rdata")
india04_new <- india04 %>% filter(!edattain == "Unknown")
india04_new
1) What does na.rm = TRUE do in max() and mean() functions? Test each command on the variable incwage in india04_new.
2) How many individuals earn exactly 200 rupees? How many earn 201? What are your thoughts on this difference?