get_chemical_by_property_range {ctxR} | R Documentation |
Get chemicals by property and its value range
Description
Get chemicals by property and its value range
Usage
get_chemical_by_property_range(
start = NULL,
end = NULL,
property = NULL,
API_key = NULL,
Server = chemical_api_server,
verbose = FALSE
)
Arguments
start |
A numeric value, the beginning of the range |
end |
A numeric value, the end of the range |
property |
A string, the property in question |
API_key |
The user-specific API key |
Server |
The root address for the API endpoint |
verbose |
A logical indicating if some “progress report” should be given. |
Value
A data.frame containing chemical information for chemicals matching the search criteria.
Examples
# Pull chemicals with a given property in a set range
density <- get_chemical_by_property_range(start = 1.311, end = 1.313,
property = 'Density')
[Package ctxR version 1.0.0 Index]