Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
working with pivot table
#1
Hello,

can anyone help me, how to work with a pivottable.
How can I access rows and columns in a pivottable?

For example in the attached pivot rows and columns (2024==>01)

Regards,
Gunther

Attached Files

Thumbnail(s)
   
Reply
#2
Sure, here is the pivot table using pandas library:

import pandas as pd
import numpy as np

# Create a sample dataset
data = {
    'Date': pd.date_range(start='2023-01-01', end='2023-12-31', freq='D'),
    'Product': np.random.choice(['A', 'B', 'C'], size=365),
    'Region': np.random.choice(['North', 'South', 'East', 'West'], size=365),
    'Sales': np.random.randint(100, 1000, size=365)
}

df = pd.DataFrame(data)

# Create a pivot table
pivot = pd.pivot_table(df, values='Sales', index=['Region'], columns=['Product'], aggfunc='sum')

print("Pivot Table:")
print(pivot)

# Accessing rows
print("\nAccessing rows:")
print("First row:")
print(pivot.iloc[0])
print("\nRow for 'North' region:")
print(pivot.loc['North'])

# Accessing columns
print("\nAccessing columns:")
print("First column:")
print(pivot.iloc[:, 0])
print("\nColumn for Product 'A':")
print(pivot['A'])

# Accessing specific cells
print("\nAccessing specific cells:")
print("Sales for Product 'A' in 'North' region:")
print(pivot.at['North', 'A'])

# Iterating through rows
print("\nIterating through rows:")
for index, row in pivot.iterrows():
    print(f"Region: {index}, Sales: {row.to_dict()}")

# Iterating through columns
print("\nIterating through columns:")
for column in pivot.columns:
    print(f"Product: {column}, Sales: {pivot[column].to_dict()}")
our gd project- geometry dash
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Information pivot gunther 0 350 Dec-06-2024, 03:57 PM
Last Post: gunther
  Trying to get counts/sum/percentages from pandas similar to pivot table cubangt 6 3,184 Oct-06-2023, 04:32 PM
Last Post: cubangt
  Need Help! Pandas EXCEL PIVOT psb3958 1 1,559 Nov-13-2022, 10:37 PM
Last Post: deanhystad
  group by create pivot table python dawid294 1 2,062 Jun-22-2022, 06:13 PM
Last Post: Larz60+
  Sum the values in a pandas pivot table specific columns klllmmm 1 6,147 Nov-19-2021, 04:43 PM
Last Post: klllmmm
  pandas pivot table: How to find count for each group in Index and Column JaneTan 0 4,488 Oct-23-2021, 04:35 AM
Last Post: JaneTan
  SQL Pivot EAV Quentin 2 3,517 Dec-03-2019, 11:52 PM
Last Post: Quentin
  How to pivot a dat UGuntupalli 0 2,517 Oct-17-2019, 11:13 PM
Last Post: UGuntupalli
  pivot error shyamdba 1 3,058 Feb-02-2018, 11:12 PM
Last Post: klllmmm
  Should it be pivot or unstack for this sample shyamdba 0 2,522 Feb-02-2018, 05:50 PM
Last Post: shyamdba

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020