I am working with ebola dataset,in the dataset there is no location co-ordinates given.I want to manually assign the longitude and latitude to the location,so that I can plot the locations to the Google map.I want to implement this in R.Any idea,i have been trying this,but does not works for me:
if(ebola$Country == 'Guinea' & ebola$Location == 'Conakry')
{
conakry <- c(9.5092,13.7122)
}