Learn R Programming

tidytransit (version 1.7.0)

print.tidygtfs: Print a GTFS object

Description

Prints a GTFS object suppressing the class attribute and hiding the validation_result attribute, created with validate_gtfs().

Usage

# S3 method for tidygtfs
print(x, ...)

Value

The GTFS object that was printed, invisibly

Arguments

x

a tidygtfs object as read by read_gtfs()

...

Optional arguments ultimately passed to format.

Examples

Run this code
 if (FALSE) {
path = system.file("extdata", 
           "nyc_subway.zip", 
           package = "tidytransit")

g = read_gtfs(path)
print(g)
}

Run the code above in your browser using DataLab