[R] Issue from R-devel: subset on table
Leonard Mada
|eo@m@d@ @end|ng |rom @yon|c@eu
Sat Oct 21 21:26:09 CEST 2023
Dear List Members,
There was recently an issue on R-devel (which I noticed only very late):
https://stat.ethz.ch/pipermail/r-devel/2023-October/082943.html
It is possible to use subset as well, almost as initially stated:
subset(table(sample(1:5, 100, T)), table > 10)
# Error in table > 10 :
# comparison (>) is possible only for atomic and list types
subset(table(sample(1:5, 100, T)), 'table' > 10)
# 1 2 3 4 5
# 21 13 15 28 23
Works with the letters-example as well.
Sincerely,
Leonard
More information about the R-help
mailing list