Displaying 3 results from an estimated 3 matches for "r_system_version".
2008 Feb 13
0
RFC for package PopCon: a popularity contest for R and packages
...ault"
[35] "[.default" "as.character.simple.list"
[37] "as.vector.simple.list" "as.vector.default"
[39] "unique.character" "$.packageDescription2"
[41] "$.default" ">=.R_system_version"
[43] "Ops.R_system_version" ">=.package_version"
[45] "Ops.package_version" ">=.numeric_version"
[47] ">=.package_version" "Ops.package_version"
[49] ">=.numeric_version" "unlis...
2008 Feb 14
0
RFC for package PopCon: a popularity contest for R and packages
...ault"
[35] "[.default" "as.character.simple.list"
[37] "as.vector.simple.list" "as.vector.default"
[39] "unique.character" "$.packageDescription2"
[41] "$.default" ">=.R_system_version"
[43] "Ops.R_system_version" ">=.package_version"
[45] "Ops.package_version" ">=.numeric_version"
[47] ">=.package_version" "Ops.package_version"
[49] ">=.numeric_version" "unlis...
2012 Nov 04
1
what is the function naming convention?
...are dotted: as.complex, as.data.frame.array, merge.data.frame, write.dcf (etc)
The manual "Creating R Packages" states that it depends on the classes and instances. I couldn't find more hints.
And there's more:
- using underscore characters: check_tzones, Cstack_info, R_system_version (etc)
- using interCapping: closeAllConnections, rawToChar, rowSums, toString, tryCatch, writeLines (etc)
- using dots and intercapping: as.Date, julian.Date, toString.default (etc)
So, an entire zoo of function names.
Did I miss a system, or is it arbitrary (within the set of ac...