Skip to content

Commit

Permalink
Align table in README
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpeters1208 authored Oct 10, 2024
1 parent b0193e6 commit 8a78e66
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions ParquetExamples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ Parquet data can be stored in many different ways - with or without metadata, in

The `grades` dataset is a simple synthetic dataset used to demonstrate the various ways to store Parquet data. It looks like this:

| Name | Class | Test1 | Test2 |
| ---- | ----- | ----- | ----- |
| Ashley | Math | 92 | 94 |
| Jeff | Math | 78 | 88 |
| Rita | Math | 87 | 81 |
| Zach | Math | 74 | 70 |
| Ashley | Science | 87 | 91 |
| Jeff | Science | 90 | 83 |
| Rita | Science | 99 | 95 |
| Zach | Science | 80 | 78 |
| Ashley | History | 82 | 88 |
| Jeff | History | 87 | 92 |
| Rita | History | 84 | 85 |
| Zach | History | 76 | 78 |
| Name | Class | Test1 | Test2 |
| ------ | ------- | ----- | ----- |
| Ashley | Math | 92 | 94 |
| Jeff | Math | 78 | 88 |
| Rita | Math | 87 | 81 |
| Zach | Math | 74 | 70 |
| Ashley | Science | 87 | 91 |
| Jeff | Science | 90 | 83 |
| Rita | Science | 99 | 95 |
| Zach | Science | 80 | 78 |
| Ashley | History | 82 | 88 |
| Jeff | History | 87 | 92 |
| Rita | History | 84 | 85 |
| Zach | History | 76 | 78 |

This dataset can be partitioned by `Name` or `Class` to demonstrate the different ways to store Parquet data.

0 comments on commit 8a78e66

Please sign in to comment.