| print.tidync_data {tidync} | R Documentation | 
Print tidync data
Description
Print method for the 'tidync_data' list of arrays returned by hyper_array().
Usage
## S3 method for class 'tidync_data'
print(x, ...)
Arguments
| x | 'tidync_data' object (from  | 
| ... | reserved args | 
Details
The output lists the variables and their dimensions of an object from a
previous call to tidync(), and possibly hyper_filter(). The available
data will differ from the source in terms of variables (via select_var in
hyper_array) and the lengths of each dimension (via named expressions in
hyper_filter()).
Value
the input object invisibly
See Also
tidync_data
Examples
argofile <- system.file("extdata/argo/MD5903593_001.nc", package = "tidync")
argodata <- tidync(argofile) %>% hyper_filter(N_LEVELS = index < 5) %>% 
              hyper_array(select_var = c("TEMP_ADJUSTED", "PRES"))
print(argodata)
[Package tidync version 0.3.0 Index]