FilterInfo | R Documentation |
Represents a filter from a BioMart dataset.
This class encapsulates information about a filter available in a BioMart dataset. Filters are used to specify conditions for querying and subsetting data from BioMart.
name
The internal name of the filter used in BioMart queries
displayName
The human-readable name of the filter shown in user interfaces
description
A textual description explaining the filter's purpose
type
The data type of the filter (e.g., "string", "boolean", "list")
isHidden
Logical flag indicating if the filter should be hidden in user interfaces
values
Possible values for the filter if it has a fixed/enumerated set of options
new()
Initialize a new FilterInfo object
FilterInfo$new( name, displayName = NULL, description = NULL, type = NULL, isHidden = NULL, values = NULL )
name
Character, the internal name of the filter used in API calls
displayName
Character, the human-readable name shown to users
description
Character, the filter description explaining its purpose
type
Character, the data type of the filter (e.g., "string", "boolean")
isHidden
Logical, whether the filter should be hidden in UIs
values
List or vector, possible values for the filter if applicable
A new FilterInfo object
print()
Print method for FilterInfo objects
FilterInfo$print(...)
...
Additional arguments passed to print methods (not used)
Invisibly returns self for method chaining
clone()
The objects of this class are cloneable with this method.
FilterInfo$clone(deep = FALSE)
deep
Whether to make a deep clone.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.