lidar_describe_var | R Documentation |
lidar_describe_var
is a wrapper for the $describe_var
method
of lfcLiDAR
objects. See lidar
.
lidar_describe_var(object, variables)
object |
|
variables |
character vector with the names of the variables to describe |
A character vector with the variable names to describe
Other LiDAR functions:
lidar_avail_tables()
,
lidar_clip_and_stats()
,
lidar_get_data()
,
lidar_get_lowres_raster()
,
lidar_point_value()
,
lidar()
if (interactive()) {
lidardb <- lidar()
lidar_describe_var(lidardb, "BF")
lidar_describe_var(lidardb, c("DBH", "VAE"))
# lidardb is an R6 object, so the previous example is the same as:
lidardb$describe_var("BF")
lidardb$describe_var(c("DBH", "VAE"))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.