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 5: Group and Pivot Tables 6,99 €
Añadir al carrito

Resumen

Summary Python Data Operations 5: Group and Pivot Tables

1 revisar
 19 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 1 fuera de 6  páginas

  • No
  • Basic data operations
  • 9 de diciembre de 2022
  • 6
  • 2022/2023
  • Resumen
book image

Título del libro:

Autor(es):

  • Edición:
  • ISBN:
  • Edición:
Todos documentos para esta materia (2)

1  revisar

review-writer-avatar

Por: haidarihalim • 1 año hace

avatar-seller
beatricemossberg
Python Data Operations 5: Group and Pivot Tables
(Using the numpy and pandas packages imported in section one.)

This fith section contains:

Groupby

Iterate through groups
Basic groupings
Advanced groupings
Group with more levels
Pivot table
Stack and Unstack


# creating test dataframe
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=['Assignment', 'UserId', 'Score', 'PrevAttempts', 'Exempted'],
index=[f'R{i}' for i in range(7)]
)
test_df


Assignment UserId Score PrevAttempts Exempted

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




Groupby
The .groupby method divides the records/rows of a table in different groups, generally to
later apply certain operations separately to each group.

A grouping has two phases:

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 €
  • (1)
Añadir al carrito
Añadido