From 8a78e66dcd570356b3c4fe40ecc46f23737d4323 Mon Sep 17 00:00:00 2001 From: Alex Peters <80283343+alexpeters1208@users.noreply.github.com> Date: Thu, 10 Oct 2024 09:24:09 -0500 Subject: [PATCH] Align table in README --- ParquetExamples/README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/ParquetExamples/README.md b/ParquetExamples/README.md index 3bf9d24..9224895 100644 --- a/ParquetExamples/README.md +++ b/ParquetExamples/README.md @@ -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.