l_getFromPath: Create loon objects from path name

View source: R/l_getFromPath.R

l_getFromPathR Documentation

Create loon objects from path name

Description

This function can be used to create the loon objects from a valid widget path name. The main difference from l_create_handle is that l_getFromPath can take a loon compound widget path but l_create_handle cannot.

Usage

l_getFromPath(target)

Arguments

target

loon object specification (e.g. ".l0.plot")

Details

For more information run: l_help("learn_R_intro.html#re-creating-object-handles")

See Also

l_create_handle l_loonWidgets

Examples

## Not run: 
 l_pairs(iris, showHistogram = TRUE)
 # The path can be found at the top of tk title
 # Suppose it is the first loon widget, this path should be ".l0.pairs"
 p <- l_create_handle(".l0.pairs") # error
 p <- l_getFromPath(".l0.pairs")

## End(Not run)

loon documentation built on July 9, 2023, 5:48 p.m.