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
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")