[.ppi | R Documentation |
ppi
)Select parameters (param
) or derived quantities by index from a plan
position indicator (ppi
).
## S3 method for class 'ppi'
x[i]
x |
A |
i |
Integer. Index/indices specifying which parameters ( |
A ppi
object containing a subset of parameters (param
).
# Project a scan as a ppi
ppi <- project_as_ppi(example_scan)
# This ppi contains 5 parameters (DBZH VRADH ZDR RHOHV PHIDP)
ppi
# Subset ppi to one containing only the first parameter (DBZH)
ppi[1]
# Subset ppi to one containing the first three parameters (DBZH, VRADH, ZDR)
ppi[1:3]
# Subset ppi to one without the first 2 parameters (ZDR RHOHV PHIDP)
ppi[-1:-2]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.