isfield | R Documentation |
This function tries to replicate the behavior of the isfield
function in Matlab
isfield(x, field)
x |
list |
field |
name of field |
A logical vector determining if field
is within
names(x)
https://se.mathworks.com/help/matlab/ref/isfield.html
S <- list( x = rnorm(100), title = "x" ) isfield(S, "title") isfield(S, "z")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.