Working with Tabular Data in pandas
- If Numpy is used on matrix data, pandas is designed to work with data in for of tables.
- Lets install pandas
conda install pandas
- Refer Here
- Refer Here for the user guide
- The most commonly used data structure in pandas is DataFrame
- DataFrame represents the table data: two dimensional data with row and column labels.
- Refer Here for the basic activities done.
Exercise: Data table Manipulation
- Create a simple csv file and call it as dataset.csv
id,x,y,z
0,1,1,3
1,1,0,9
2,1,3
3,2,0,10
4,1,,4
5,2,2,3
Like this:
Like Loading...