I'm trying to get a specifically named row from data and I want to make plots with that row. However, I could not manage to select that row. I'm selecting but in that case, it gives NA for that row. Here is my code:
attach(climate_change)
turkey <- climate_change$"Country Name"[c("Turkey")]
print(turkey)
Here is output:
> print(turkey)
NA
How can I fix this? How can I get the specific row and handle it? Thanks for any help!