names <- c command
names <- c(“Mahi”,”Sourav”,”Azhar”,
“Sunny”,”Pataudi”,”Dravid”)
unexpected input in "names <- c(“"
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")