Last active
September 4, 2018 17:02
-
-
Save fcunhaneto/ffe20fa3d0586ab882bcb96e06647e95 to your computer and use it in GitHub Desktop.
Pandas estatística 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pandas as pl | |
| import matplotlib.pyplot as plt | |
| df = pl.read_csv('questionario.csv') | |
| with open('questionario.txt', 'w') as f: | |
| df.to_string(f) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment