I have two datasets:
County   Year 
Alameda  2000
Alameda  2001
Alameda  2002
Alpine   2000
Alpine   2001
Alpine   2002
Amador   2000
Amador   2001
Amador   2002
And
County    RUCC_2013
Alameda   1
Alpine    8
Amador    6
I am trying to merge these two datasets so that I get:
County   Year    RUCC
Alameda  2000    1
Alameda  2001    1
Alameda  2002    1
Alpine   2000    8
Alpine   2001    8
Alpine   2002    8
Amador   2000    6
Amador   2001    6
Amador   2002    6
I tried your standard merge the two data frames to produce a new one but the new one has all the columns but has "No data available in the table." Is there a way to attach the RUCC value for the individual county from the first dataset to the all the years for each respective county in the other dataset?
