View source: R/Summary.bm_list.R
Summary.bm_list | R Documentation |
max()
, min()
, and range()
will provide the maximum and minimum
integer values found in the bm_bitmap()
, bm_list()
, or bm_list()
objects.
The other four S3 base::Summary methods - all()
, any()
, sum
, and prod
-
are only supported for bm_bitmap()
objects
(which are subclasses of integer matrices).
## S3 method for class 'bm_list'
Summary(..., na.rm = FALSE)
... |
Passed to relevant functions. |
na.rm |
Passed to |
An integer vector.
font_file <- system.file("fonts/spleen/spleen-8x16.hex.gz", package = "bittermelon")
font <- read_hex(font_file)
min(font)
max(font)
range(font)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.