Skip to content

Commit cf9ac66

Browse files
author
vspenubarthi
committed
Moved sentences to new lines
1 parent 828a139 commit cf9ac66

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Python/Module5_OddsAndEnds/WorkingWithFiles.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -349,13 +349,17 @@ array([['Date/Time', 'Hs', 'Hmax', ..., 'Tp', 'Peak Direction', 'SST'],
349349
['30/06/2019 23:30', '1.926', '2.98', ..., '12.228', '84',
350350
'21.95']], dtype=object)
351351
```
352-
One of the coolest features of Pandas is how it nicely organizes the parsed CSV data for visualization. Here is how `my_data` is displayed in a Jupyter Notebook:
352+
One of the coolest features of Pandas is how it nicely organizes the parsed CSV data for visualization.
353+
Here is how `my_data` is displayed in a Jupyter Notebook:
354+
353355
```Python
354356
my_data[0:21] #Prints out first 20 values in nice format
355357
```
356-
![Memory consumption figure](pics/Pandas_CSV.jpg)
358+
![Pandas Parsed Figure](pics/Pandas_CSV.jpg)
357359

358-
One of the main advantages of Pandas is that it **treats all the data as strings**, while NumPy only deals with numerical values. This allows Pandas to store information such as headers and date, while NumPy cannot. Read the [Pandas documentation](https://pandas.pydata.org/pandas-docs/stable/index.html "Documentation Link") for more information.
360+
One of the main advantages of Pandas is that it **treats all the data as strings**, while NumPy only deals with numerical values.
361+
This allows Pandas to store information such as headers and date, while NumPy cannot.
362+
Read the [Pandas documentation](https://pandas.pydata.org/pandas-docs/stable/index.html "Documentation Link") for more information.
359363
<!-- #endregion -->
360364

361365
<!-- #region -->

0 commit comments

Comments
 (0)