names <- c(“Mahi”,”Sourav”,”Azhar”, “Sunny”,”Pataudi”,”Dravid”) Error: unexpected input in "
names <- c(“Mahi”,”Sourav”,”Azhar”,

“Sunny”,”Pataudi”,”Dravid”)


R Introduction-to-basics-of-R 02-03 min 10-20 sec 30-04-20, 7:38 p.m. meghna_bhatia

Answers:

Please check your syntax. The quotes in your command are not grammatical correct from R programming point of view. 
Please try typing this: 
names <- c("A", "B", "C", "D")
30-04-20, 8:02 p.m. sudhakarst


Click here to reply/comment online