Joining Real-World Datasets
See some joining data examples.
We'll cover the following...
We'll cover the following...
Let’s look at a concrete example of joining data.
Most of the data we’ve looked at in the course has been delivered in a single CSV file. Sometimes we have data from multiple sources and we need to combine them. This section will explore joining a real-world dataset.
Dirty Devil flow and weather data
Let’s revisit the Dirty Devil data. Let’s load the flow and gauge height data. In this case, we will leave the datetime column as a column and not use it for the index:
We’ll also load some meteorological data from Hanksville, Utah, a city near the river. We’ll then join both datasets together, so we have flow data as well as temperature and precipitation information. ...