How to: Read a Google Cloud Storage .csv to a Vertex Pandas Dataframe
March 13, 2023
I often find it useful to stash .csv files in a Google Cloud Storage (GCS) bucket to be accessed from a Vertex JupyterLabs notebook. Once the file(s) are accessible from Vertex, I can do all sorts of things with it. One of the most common operations I perform in this scenario is to use the data in the .csv to create a Pandas dataframe that can in turn be used to enrich other data that I have stored in a BigQuery implementation. ...