#Original immigrant data x = c(61159, 57524,56186,52254,54884,51869,29743,39877,50086,53672,65707,73861) #Age of labor data age_over_16 = x*0.95 #Illegal immigrant data of employed e1 = age_over_16*0.65 #Illegal immigrant data of unemployed e2 = age_over_16*0.04 #Illegal immigrant data of Not in the labor force e3 = age_over_16*0.30 What linear regression model should I use in R? Thanks.
#Original immigrant data
x = c(61159, 57524,56186,52254,54884,51869,29743,39877,50086,53672,65707,73861)
#Age of labor data
age_over_16 = x*0.95
#Illegal immigrant data of employed
e1 = age_over_16*0.65
#Illegal immigrant data of unemployed
e2 = age_over_16*0.04
#Illegal immigrant data of Not in the labor force
e3 = age_over_16*0.30
What linear regression model should I use in R? Thanks.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 3 images
How should I draw this linear regression graph for this model? Thanks.
If I add the additional condition which is the labor is female using the following:
#People who is female
female = x*0.46
Will it become dependent variable and how will I do linear regression model by adding this condition?