Skip to contents

Print an aemo_tbl

Usage

# S3 method for class 'aemo_tbl'
print(x, ...)

Arguments

x

An aemo_tbl.

...

Passed to the next print method.

Value

Invisibly returns x.

Examples

x <- data.frame(settlementdate = Sys.time(), region = "NSW1", rrp = 80)
x <- structure(x, aemo_title = "Demo", aemo_source = "http://nemweb.com.au",
               aemo_licence = "AEMO Copyright Permissions Notice",
               aemo_retrieved = Sys.time(),
               class = c("aemo_tbl", "data.frame"))
print(x)
#> # aemo_tbl: Demo
#> # Source:   http://nemweb.com.au
#> # Licence:  AEMO Copyright Permissions Notice
#> # Retrieved: 2026-04-28 19:58 UTC 
#> # Rows: 1  Cols: 3
#> 
#>        settlementdate region rrp
#> 1 2026-04-28 19:58:59   NSW1  80