taxi_spark = spark_read_parquet(spark_instance,"/home/georgehagstrom/work/Teaching/DATA607Fall2025/data/nyc_taxi_2024/", memory = TRUE)
taxi_spark
# Source: table<`nyc_taxi_2024_d43caf28_9287_40e5_a087_c6b7bf9d304d`> [?? x 19]
# Database: spark_connection
VendorID tpep_pickup_datetime tpep_dropoff_datetime passenger_count
<int> <dttm> <dttm> <dbl>
1 2 2024-09-30 20:30:44 2024-09-30 20:48:26 1
2 1 2024-09-30 20:12:20 2024-09-30 20:25:25 1
3 1 2024-09-30 20:04:46 2024-09-30 20:13:52 1
4 1 2024-09-30 20:12:10 2024-09-30 20:23:01 1
5 1 2024-09-30 20:30:22 2024-09-30 20:30:39 1
6 2 2024-09-30 20:31:20 2024-09-30 20:36:00 2
7 1 2024-09-30 20:42:57 2024-09-30 20:49:01 1
8 1 2024-09-30 20:59:55 2024-09-30 21:02:24 1
9 1 2024-09-30 20:00:47 2024-09-30 20:04:22 0
10 1 2024-09-30 20:17:36 2024-09-30 20:26:22 1
# ℹ more rows
# ℹ 15 more variables: trip_distance <dbl>, RatecodeID <dbl>,
# store_and_fwd_flag <chr>, PULocationID <int>, DOLocationID <int>,
# payment_type <dbl>, fare_amount <dbl>, extra <dbl>, mta_tax <dbl>,
# tip_amount <dbl>, tolls_amount <dbl>, improvement_surcharge <dbl>,
# total_amount <dbl>, congestion_surcharge <dbl>, Airport_fee <dbl>