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 4: Merge and concatenation 6,99 €   Añadir al carrito

Resumen

Summary Python Data Operations 4: Merge and concatenation

 9 vistas  0 veces vendidas

Summarised notes of pandas data operations covered in the Principles of Programming course, part of the Computer Science and AI bachelor degree. The notes are initially written in Jupyter Notebook. They contain practical examples of data operations in python and images to explain the structures and...

[Mostrar más]

Vista previa 2 fuera de 8  páginas

  • No
  • Pandas data operations
  • 9 de diciembre de 2022
  • 8
  • 2022/2023
  • Resumen
book image

Título del libro:

Autor(es):

  • Edición:
  • ISBN:
  • Edición:
Todos documentos para esta materia (4)
avatar-seller
beatricemossberg
Python Data Operations 4: Merge and Concat
(Using the numpy and pandas packages imported in section one.)

This fourth section contains:

Concatenation
Merge and Join

Merge on columns
Merge on index
Convert Data types
Duplicates

Find duplicates
Remove duplicates



Concat
The .concat function joins two datasets by placing them on top of each other (vertical
concatenation) or next to each other (horizontal concatenation).

The first parameter is a list of the DataFrames to be concatenated
The second parameter (axis) is a value indicating the direction: vertical (0) or
horizontal (1)




#creating test df
test_df = pd.DataFrame(
[['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']],

, columns=['A', 'B', 'C', 'D', 'E'],
index=[f'R{i}' for i in range(7)]
)
test_df


A B C D E

R0 A3 0 -1.0 0.0 si

R1 B1 1 NaN 0.0 no

R2 B3 4 NaN 0.0 no

R3 B3 5 1.0 0.0 si

R4 A1 4 0.0 NaN None

R5 A3 1 2.0 1.0 si

R6 C2 4 1.0 1.0 no


#creating second test df
test_df2 = pd.DataFrame(
[['A1', 100],
['B1', -50],
['C1', -25]],
columns=['A', 'Z'],
index=['R0', 'R7', 'R14'])
test_df2


A Z

R0 A1 100

R7 B1 -50

R14 C1 -25



# concat 3 dfs vertically
pd.concat([test_df, test_df2, test_df2])

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 6,99 €. 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
6,99 €
  • (0)
  Añadir