Skip to content

Commit b4978af

Browse files
committed
Update data-formats.rst
1 parent 1297f0f commit b4978af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/data-formats.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Let's consider another example::
5050
np.info(data_array)
5151

5252

53-
Here we have a different data structure: we have a two-dimentional array of numbers.
53+
Here we have a different data structure: we have a two-dimensional array of numbers.
5454
This is different to a Pandas DataFrame as data is stored as one contiguous block instead of individual columns.
5555
This also means that the whole array must have one data type.
5656

@@ -90,7 +90,7 @@ Usually, you'll want to consider the following things when choosing a file forma
9090

9191
1. Is the file format good for my data structure (is it fast/space efficient/easy to use)?
9292
2. Is everybody else / leading authorities in my field recommending a certain format?
93-
3. Do I need a human-readable format or is it enought to work on it using code?
93+
3. Do I need a human-readable format or is it enough to work on it using code?
9494
4. Do I want to archive / share the data or do I just want to store it while I'm working?
9595

9696
Pandas supports `many file formats <https://pandas.pydata.org/docs/user_guide/io.html>`__ for tidy data and Numpy supports `some file formats <https://numpy.org/doc/stable/reference/routines.io.html>`__ for array data.

0 commit comments

Comments
 (0)