standard %>%filter(firm_size =="企業規模計(10人以上)", age <=60, !is.na(wage)) %>%ggplot(aes(x = age, y = wage, color = education)) +geom_line() +geom_point() +scale_color_hue(name ="学歴") +labs(title ="標準労働者の学歴別賃金プロファイル", x ="年齢", y ="年収(万円)") +facet_wrap(~ gender) +theme_classic()
standard %>%filter(education =="大学", firm_size !="企業規模計(10人以上)", age <=60, !is.na(wage)) %>%ggplot(aes(x = age, y = wage, color = firm_size)) +geom_line() +geom_point() +scale_color_hue(name ="企業規模") +labs(title ="大学卒標準労働者の企業規模別賃金プロファイル", x ="年齢", y ="年収(万円)") +facet_wrap(~ gender) +theme_classic()