print.tidygtfs {tidytransit} | R Documentation |
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 class 'tidygtfs'
print(x, ...)
Arguments
x |
a tidygtfs object as read by |
... |
Optional arguments ultimately passed to |
Value
The GTFS object that was printed, invisibly
Examples
## Not run:
path = system.file("extdata",
"nyc_subway.zip",
package = "tidytransit")
g = read_gtfs(path)
print(g)
## End(Not run)
[Package tidytransit version 1.7.0 Index]