Displaying 3 results from an estimated 3 matches for "bretschr".
Did you mean:
boetsch
2018 Feb 15
3
Identify does sort the locations
Hi,
Using identify function, I think I should get the index of the selected
points in the order I clicked them. This is what I read in the help. But
I feel they are ordered. Please let me know what I missed.
In the following example, I clicked on the points labelled 7, 5 and 1,
but I get 1, 5, 7 as output.
> set.seed(0); x = rnorm(10); y = rnorm(10); plot(x,y); text(x, y,
> seq(x));
2013 Apr 08
0
A categorized list of R functions
Dear Rees Morrison,
Re:
(...)
>
> What additional code would create a table output, with the function name in the left column, sorted alphabetically within a pattern, and the pattern of the function in the column to the right. Users could then sort by those patterns, rename some to suit themselves, etc.
(...)
The version below creates a tab-delimited table with 3 columns: seach
2012 Nov 04
1
what is the function naming convention?
Dear R people,
In typing names of functions (built in or from a package) I often guess wrong, and have to look the name up.
In other words, I don't understand the logic in naming functions (if there is any):
- most names are plain, lower case: cos, plot, sapply, t, toupper, unserialize, (etc)
- some are capitalized: Filter, Machine, Map, NCOL, RNGversion, T (etc)
-