Difference between revisions of "Pandas"
Jump to navigation
Jump to search
Rafahsolis (talk | contribs) (Created page with "== Install == <syntaxhighlight lang="bash"> pip install pandas </syntaxhighlight> == Read CSV == <syntaxhighlight lang="python3"> news = pd.read_csv('news_2019.05.10.csv') </...") Tag: visualeditor |
Rafahsolis (talk | contribs) m Tag: visualeditor |
||
| Line 1: | Line 1: | ||
| − | == Install == | + | ==Install== |
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
pip install pandas | pip install pandas | ||
</syntaxhighlight> | </syntaxhighlight> | ||
| − | == Read CSV == | + | ==Read CSV== |
<syntaxhighlight lang="python3"> | <syntaxhighlight lang="python3"> | ||
news = pd.read_csv('news_2019.05.10.csv') | news = pd.read_csv('news_2019.05.10.csv') | ||
</syntaxhighlight> | </syntaxhighlight> | ||
| + | [[Category:Python]] | ||
Revision as of 08:06, 16 May 2019
Install
pip install pandas
Read CSV
news = pd.read_csv('news_2019.05.10.csv')