View source: R/class_electrode_proto.R
list_electrode_prototypes | R Documentation |
List all built-in and user-customized electrode prototypes. User paths will be searched first, if multiple prototype configuration files are found for the same type.
list_electrode_prototypes()
load_prototype(type)
type |
electrode type, character |
list_electrode_prototypes
returns a named list, names are
the prototype types and values are the prototype configuration paths;
load_prototype
returns the prototype instance if type
exists,
or throw an error.
availables <- list_electrode_prototypes()
if( "sEEG-16" %in% names(availables) ) {
proto <- load_prototype( "sEEG-16" )
print(proto, details = FALSE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.