View() function in R is not working with the lower case "v" (view()), any reason why it should be the uppercase "V"?
R is case sensitive. View() has a V.
View()
V
Thanks for your reply. Yes, R is case-sensitive. But for example "head()" is lowercase, same with "tail()". Is there any reason why to define "View()" with an upper case?
Here is a list of all functions in utils, many of which are capitalised, many are not. R: The R Utils Package (ethz.ch)
Probably the R Core team could tell you if anyone could tell you. I'm not sure why you are interested, can you motivate it ?
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed. If you have a query related to it or one of the replies, start a new topic and refer back with a link.