I am working with a dataset in R(county_data) and I have on a consumption column for every county in every state of the US. I tried to merge it with a dataset with fips code(I believe it comes with tidycensus package) but I noticed that there are multiple fips code for a single county. Why is that?
I was expecting to see just a single FIPS code so I could merge it with my county data and plot it. I tried merging the county_data to the fips_data, and not the same consumption has been duplicated for the multiple versions of same county that are present in the fips dataset.