100% de satisfacción garantizada Inmediatamente disponible después del pago Tanto en línea como en PDF No estas atado a nada
logo-home
Summary Python Data Operations Notes 5,39 €
Añadir al carrito

Resumen

Summary Python Data Operations Notes

 2 vistas  0 veces vendidas

Notes of python data operations using pandas, covered in the Principles of Programming course, part of the Computer Science and AI bachelor degree. The notes are initially written in Jupyter Notebook, here in pdf format. They contain practical examples of data operations in python and images to exp...

[Mostrar más]

Vista previa 2 fuera de 15  páginas

  • 8 de diciembre de 2022
  • 15
  • 2022/2023
  • Resumen
Todos documentos para esta materia (2)
avatar-seller
beatricemossberg
Pandas Data Operations

import pandas as pd
import numpy as np



What is a Dataframe?
A dataframe is a data type provided by the library pandas
It is the most relevant data type to work with tables and data in python
Imagine dataframe as a table created by rows and colummns where each row and column
is an object type pandas.Series (vector/list). Each element contains a label.



Create a DataFrame
Adding data manually

Lists of lists
Nested dictionaries
Reading the information from .csv file

Using the function pd.read_csv() with the path of the file.


#create 2D array with data
data_lst = [
['A3', 0, -1, 0, 'si'],
['B1', 1, None, 0, 'no'],
['B3', 4, None, 0, 'no'],
['B3', 5, 1, 0, 'si'],
['A1', 4, 0, None, None],
['A3', 1, 2, 1, 'si'],
['C2', 4, 1, 1, 'no']
]

data_lst

[['A3', 0, -1, 0, 'si'],
['B1', 1, None, 0, 'no'],
['B3', 4, None, 0, 'no'],
['B3', 5, 1, 0, 'si'],
['A1', 4, 0, None, None],
['A3', 1, 2, 1, 'si'],
['C2', 4, 1, 1, 'no']]


#print first column
col0 = []

, for row in data_lst:
col0.append(row[0])

col0

['A3', 'B1', 'B3', 'B3', 'A1', 'A3', 'C2']

#create test dataframe
test_df = pd.DataFrame(
data_lst
)
test_df


0 1 2 3 4

0 A3 0 -1.0 0.0 si

1 B1 1 NaN 0.0 no

2 B3 4 NaN 0.0 no

3 B3 5 1.0 0.0 si

4 A1 4 0.0 NaN None

5 A3 1 2.0 1.0 si

6 C2 4 1.0 1.0 no



#update index of rows and columns
test_df = pd.DataFrame(
data_lst,
columns=['A', 'B', 'C', 'D', 'E'],
index=[f'row{i}' for i in range(1, 8)]
)
test_df


A B C D E

row1 A3 0 -1.0 0.0 si

row2 B1 1 NaN 0.0 no

row3 B3 4 NaN 0.0 no

row4 B3 5 1.0 0.0 si

row5 A1 4 0.0 NaN None

row6 A3 1 2.0 1.0 si

row7 C2 4 1.0 1.0 no




DataFrame structure

Los beneficios de comprar resúmenes en Stuvia estan en línea:

Garantiza la calidad de los comentarios

Garantiza la calidad de los comentarios

Compradores de Stuvia evaluaron más de 700.000 resúmenes. Así estas seguro que compras los mejores documentos!

Compra fácil y rápido

Compra fácil y rápido

Puedes pagar rápidamente y en una vez con iDeal, tarjeta de crédito o con tu crédito de Stuvia. Sin tener que hacerte miembro.

Enfócate en lo más importante

Enfócate en lo más importante

Tus compañeros escriben los resúmenes. Por eso tienes la seguridad que tienes un resumen actual y confiable. Así llegas a la conclusión rapidamente!

Preguntas frecuentes

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

100% de satisfacción garantizada: ¿Cómo funciona?

Nuestra garantía de satisfacción le asegura que siempre encontrará un documento de estudio a tu medida. Tu rellenas un formulario y nuestro equipo de atención al cliente se encarga del resto.

Who am I buying this summary from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller beatricemossberg. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy this summary for 5,39 €. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

45,681 summaries were sold in the last 30 days

Founded in 2010, the go-to place to buy summaries for 14 years now

Empieza a vender
5,39 €
  • (0)
Añadir al carrito
Añadido