@@ -117,18 +117,18 @@ Table below describes some data formats:
117117
118118 * - :ref: `Pickle <pickle >`
119119 - β
120- - π‘
120+ - π¨
121121 - β
122- - π‘
123- - π‘
122+ - π¨
123+ - π¨
124124 - β
125125
126126 * - :ref: `CSV <csv >`
127127 - β
128128 - β
129129 - β
130130 - β
131- - π‘
131+ - π¨
132132 - β
133133
134134 * - :ref: `Feather <feather >`
@@ -142,14 +142,14 @@ Table below describes some data formats:
142142 * - :ref: `Parquet <parquet >`
143143 - β
144144 - β
145- - π‘
145+ - π¨
146146 - β
147- - π‘
147+ - π¨
148148 - β
149149
150150 * - :ref: `npy <npy >`
151151 - β
152- - π‘
152+ - π¨
153153 - β
154154 - β
155155 - β
@@ -174,7 +174,7 @@ Table below describes some data formats:
174174 * - :ref: `JSON <json >`
175175 - β
176176 - β
177- - π‘
177+ - π¨
178178 - β
179179 - β
180180 - β
@@ -183,22 +183,22 @@ Table below describes some data formats:
183183 - β
184184 - β
185185 - β
186- - π‘
186+ - π¨
187187 - β
188188 - β
189189
190190 * - :ref: `Graph formats <graph >`
191- - π‘
192- - π‘
191+ - π¨
192+ - π¨
193193 - β
194194 - β
195195 - β
196- - π‘
196+ - π¨
197197
198198.. important ::
199199
200200 - β
: Good
201- - π‘ : Ok / depends on a case
201+ - π¨ : Ok / depends on a case
202202 - β : Bad
203203
204204
@@ -215,10 +215,10 @@ Pickle
215215
216216 - **Type **: Binary format
217217 - **Packages needed: ** None (:mod: `pickle `-module is included with Python).
218- - **Space efficiency: ** π‘
218+ - **Space efficiency: ** π¨
219219 - **Arbitrary data: ** β
220- - **Tidy data: ** π‘
221- - **Array data: ** π‘
220+ - **Tidy data: ** π¨
221+ - **Array data: ** π¨
222222 - **Long term archival/sharing: ** β! See warning below.
223223 - **Best use cases: ** Saving Python objects for debugging.
224224
@@ -285,7 +285,7 @@ CSV (comma-separated values)
285285 - **Space efficiency: ** β
286286 - **Arbitrary data: ** β
287287 - **Tidy data: ** β
288- - **Array data: ** π‘
288+ - **Array data: ** π¨
289289 - **Long term archival/sharing: ** β
290290 - **Best use cases: ** Sharing data. Small data. Data that needs to be human-readable.
291291
@@ -409,9 +409,9 @@ Parquet
409409 - **Type: ** Binary format
410410 - **Packages needed: ** pandas, pyarrow
411411 - **Space efficiency: ** β
412- - **Arbitrary data: ** π‘
412+ - **Arbitrary data: ** π¨
413413 - **Tidy data: ** β
414- - **Array data: ** π‘
414+ - **Array data: ** π¨
415415 - **Long term archival/sharing: ** β
416416 - **Best use cases: ** Working with big datasets in tidy data format. Archival of said data.
417417
@@ -494,7 +494,7 @@ npy (numpy array format)
494494
495495 - **Type **: Binary format
496496 - **Packages needed: ** numpy
497- - **Space efficiency: ** π‘
497+ - **Space efficiency: ** π¨
498498 - **Arbitrary data: ** β
499499 - **Tidy data: ** β
500500 - **Array data: ** β
@@ -680,7 +680,7 @@ JSON (JavaScript Object Notation)
680680 - **Type **: Text format
681681 - **Packages needed: ** None (:mod: `json `-module is included with Python).
682682 - **Space efficiency: ** β
683- - **Arbitrary data: ** π‘
683+ - **Arbitrary data: ** π¨
684684 - **Tidy data: ** β
685685 - **Array data: ** β
686686 - **Long term archival/sharing: ** β
@@ -695,7 +695,7 @@ nested data with multiple layers or lots of interconnections.
695695Similarly to other popular files, Pandas can write and read json files with :meth: `~pandas.DataFrame.to_json `- and :func: `~pandas.read_json `-functions::
696696
697697 dataset.to_json('dataset.json')
698- dataset_json = pd.read_csv ('dataset.json')
698+ dataset_json = pd.read_json ('dataset.json')
699699
700700
701701.. _excel :
@@ -714,7 +714,7 @@ Excel
714714 - **Packages needed: ** `openpyxl <https://openpyxl.readthedocs.io/en/stable/ >`__
715715 - **Space efficiency: ** β
716716 - **Arbitrary data: ** β
717- - **Tidy data: ** π‘
717+ - **Tidy data: ** π¨
718718 - **Array data: ** β
719719 - **Long term archival/sharing: ** β
720720 - **Best use cases: ** Sharing data in many fields. Quick data analysis.
@@ -734,11 +734,11 @@ Graph formats (adjency lists, gt, GraphML etc.)
734734
735735 - **Type **: Many different formats
736736 - **Packages needed: ** Depends on a format.
737- - **Space efficiency: ** π‘
737+ - **Space efficiency: ** π¨
738738 - **Arbitrary data: ** β
739739 - **Tidy data: ** β
740740 - **Array data: ** β
741- - **Long term archival/sharing: ** π‘
741+ - **Long term archival/sharing: ** π¨
742742 - **Best use cases: ** Saving graphs or data that can be represented as a graph.
743743
744744There are plenty of data formats for storing graphs.
0 commit comments