More Related Content
PPTX
Data Frames on Python Pandas XII IP.pptx PPTX
PANDAS IN PYTHON (Series and DataFrame) PPTX
python-pandas-For-Data-Analysis-Manipulate.pptx PPTX
Unit 1 Ch 2 Data Frames digital vis.pptx PPTX
PPTX
pandas for series and dataframe.pptx PPTX
PPTX
Group B - Pandas Pandas is a powerful Python library that provides high-perfo... Similar to MOsTIMPCBSETOPDataFrame_Class12_PPT.pptx
PDF
Pandas notes for python programming language.pdf PDF
XII - 2022-23 - IP - RAIPUR (CBSE FINAL EXAM).pdf PPTX
PPTX
Pandas Dataframe reading data Kirti final.pptx PDF
chapter-11-eng-python-pandas-ii-dataframes-and-other-operations.pdf PDF
Panda data structures and its importance in Python.pdf PPTX
introduction to data structures in pandas PPTX
PPTX
PPTX
PPTX
DataStructures in Pyhton Pandas and numpy.pptx PPTX
PPTX
pandas directories on the python language.pptx PPTX
PPTX
introductiontopandas- for 190615082420.pptx PPTX
Data Frame Data structure in Python pandas.pptx PPTX
Python_Lecture9_DataStuctureswithPandas.pptx PPTX
Pandas easy to ;learn l;ibrary ffff.pptx PPTX
Unit 5 Introduction to Built-in Packages in python .pptx PPTX
DATA SCIENCE_Pandas__(Section-C)(1).pptx Recently uploaded
PDF
Road Safety Calendar-2026 Courtesy - IYSO Team India - Safer Indian Roads PDF
ADIEU, BRIGITTE BARDOT - THE ACTRESS WHO CHANGED THE WORLD.pdf PDF
Result Analysis of the Pre Board 2025 .pdf PPTX
CHAPTER NO. 05 BIOLOGICAL SOURCE,CHEMICAL CONSTITUENTS AND THERAPEUTIC EFFICA... PPTX
What are the Custom lot_serial number in Odoo 19 PDF
• Reinforcing the Human Firewall: Moving From Awareness to Applied Skill PDF
Teaching and Learning (BD1TL) - B.Ed TNTEU PPTX
Aplastic_Anaemia_PA17.1_Presentation.pptx PDF
Life-Processes-in-Animals PPT/7TH CLASS NEW NCERT /CURIOSITY SCIENCE /BY K SA... PPTX
Centrifugation pharmaceutical engineering PPT
Clotting time - Practical - Hematology Physiology PPTX
Haemolytic_Anaemia_UG_MBBS_Haemolysis_haemolysis PPTX
Details Study of Joints (articulation).pptx PPTX
Acid Base Titration First Year B Pharm.pptx PPT
Blood Grouping.ppt - Hematology -Physiology PPTX
Cultivation Practice of Potato in Nepal.pptx PPTX
Cultivation practice of Cucumber, Pumpkin and summer squash in Nepal.pptx PPTX
Cultivation Practice of Tomato in Nepal.pptx PPTX
Cultivation Practice of Chilli and sweet Pepper.pptx PPTX
1. Importance, scope and constraints of vegetable and spice crop production i... MOsTIMPCBSETOPDataFrame_Class12_PPT.pptx
- 1.
DataFrame (Class 12Python
Pandas)
– A DataFrame is a 2D labeled data structure.
– It consists of rows and columns.
– Part of the Pandas library.
- 2.
- 3.
- 4.
Creating DataFrame –From
Dictionary of Lists
– Each key becomes a column
– Each value is a list of column entries
- 5.
- 6.
- 7.
- 8.
- 9.
- 10.
- 11.
- 12.
- 13.
- 14.
- 15.
- 16.
- 17.
- 18.
- 19.
- 20.
Example Code
– importpandas as pd
– data={'Name':['A','B'], 'Marks':[90,85]}
– df=pd.DataFrame(data)
– print(df)
- 21.
Real Life Use
–Used in data analysis
– Machine learning
– Handling tabular data
- 22.