Transform Raw Data into something meaningful
While it's nice to have some raw data in place, in its current state, it won't help us to create insights and answer our most burning questions:
How many Pokemon donated?
How much money did we collect in total?
Which pokemon type donated on average the most?
To answer these questions, we need to crunch our data first and make it more useable for anaylsis.
This might involve:
- Cleaning
- Joining
- Aggregating
While "crunching" is a pretty cool word, a bit more suitable (and that's the topic of this section) might be: Data Transformation
flowchart LR
RD(Raw Data) --- T[Data Transformation]:::empty
T --> I(Value)
classDef empty width:175px,height:0px;
Data Transformation is the key to create value from raw data!