1.

Slides:



Advertisements
Similar presentations
Learningcomputer.com. Using this Tab, you can import data from external sources including but not limited to: Text files Microsoft Access databases Web.
Advertisements

Techniques for Using Excel. Substitution is a very simple way to change text in a spreadsheet.
CC SQL Utilities.
FUNCTIONAL ICT LEVEL 2 Advanced Excell. Data types.
INTRODUCTORY MICROSOFT ACCESS Lesson 6 – Integrating Access
Database management system (DBMS)  a DBMS allows users and other software to store and retrieve data in a structured way  controls the organization,
Enter the application Click to advance to the next slide.
A Visual Follow-Along Guide to the Instructions of the NBTA Modular Hotel RFP.
Exploring Microsoft Excel 2002 Chapter 7 Chapter 7 List and Data Management: Converting Data to Information By Robert T. Grauer Maryann Barber Exploring.
Microsoft Visual Basic 2005: Reloaded Second Edition Chapter 8 Arrays.
Three tier development example: our class roster database Using ASP Using Zoho Creator.
Overview Importing text files Creating Forms Creating Reports.
Pasewark & Pasewark 1 Access Lesson 6 Integrating Access Microsoft Office 2007: Introductory.
Access 2007 ® Use Databases How can Access help you to find and use information?
1 Access Lesson 6 Integrating Access Microsoft Office 2010 Introductory Pasewark & Pasewark.
Working with Tables Lesson 5 of Introduction to ArcGIS for Emergency Managers.
Making a Pie Chart In Microsoft Excel For PowerPoint WHAT MY DAY IS LIKE.
ACOT Intro/Copyright Succeeding in Business with Microsoft Excel
TERA: PAMS Reporting By Michael McGuire
Copyright © 2008 Pearson Prentice Hall. All rights reserved. 1 Import Data From Text Files and Other Sources Importing is the process of inserting data.
Miscellaneous Excel Combining Excel and Access. – Importing, exporting and linking Parsing and manipulating data. 1.
The Advantage Series ©2004 The McGraw-Hill Companies, Inc. All rights reserved Chapter 8 Managing Worksheet Lists Microsoft Office Excel 2003.
10.11 Data Manipulation 1. Getting External Data.
Plotting in Microsoft Excel. 1) Enter your data into the Excel spreadsheet in table format. Your data should have column headers, row headers and data.
EXCEL Intro to Microsoft Excel. Objectives for the Week Content ObjectivesLanguage Objectives I can create and manipulate charts, graphs, and reports.
Introduction to Excel The Basics of Microsoft Excel 2010.
CSCI 3327 Visual Basic Chapter 13: Databases and LINQ UTPA – Fall 2011.
A Powerful Python Library for Data Analysis BY BADRI PRUDHVI BADRI PRUDHVI.
Intermediate Excel 2013 Session II. Previously… By the end of this session you should be able to: Use the filter tool to only display data that meets.
Lists in Python Selection Sort Algorithm. Sorting A very common activity for computers Not just in business, sorting is used in databases, graphics, simulations,
MySQL Importing and creating a database. CSV (Comma Separated Values) file CSV = Comma Separated Values – they are simple text files containing data which.
Exploring Microsoft Word
Querying CSV Files with SQL using ‘q’ Presented by Simon Frank.
More Oracle SQL Scripts. Highlight (but don’t open) authors table, got o External data Excel, and make an external spreadsheet with the data.
1 PDMLink Application - User Features & Functions Module 6: Search Capabilities.
INFORMATION TECHNOLOGY DATABASE MANAGEMENT. A database is a collection of information organized to provide efficient retrieval. The collected information.
Know your data source well. Who am I? Nik – Shahriar Nikkhah Microsoft MVP 2010 – SQL Server MCITP SQL 2008 MCTS SQL 2008 and s:
DAY 2 Haifa Abulaiha January 13,
Some other query issues:
Lesson 12: Data Analysis Class Participation: Class Chat:
Python for data analysis Prakhar Amlathe Utah State University
Miscellaneous Excel Combining Excel and Access.
Exploring Excel Chapter 5 List and Data Management: Converting Data to
Microsoft Office Illustrated
Microsoft Visual Basic 2005: Reloaded Second Edition
SQL MODELER - OPEN There are Three Ways to open the SQL Modeler
Access Lesson 14 Import and Export Data
Microsoft Office Illustrated
Azure Machine Learning & ML Studio
Lesson 12: Data Analysis Topic: Data Analysis, Readings on website.
Lesson 2 Notes Chapter 6.
Python Visualization Tools: Pandas, Seaborn, ggplot
Introduction to pandas
regex (Regular Expressions) Examples Logic in Python (and pandas)
Reading a CSV file in R.
Preparing your Data using Python
Manipulating Arrays.
Preparing your Data using Python
Access Tutorial 8 Sharing, Integrating, and Analyzing Data
CREATE, INSERT, SELECT.
8 6 MySQL Special Topics A Guide to MySQL.
Manipulating and Sharing Data in a Database
Adding Tables to Slides
Pandas Based on: Series: 1D labelled single-type arrays DataFrames: 2D labelled multi-type arrays Generally in 2D arrays, one can have the first dimension.
Topic 11 Lesson 1 - Analyzing Data in Access
Lesson 12: Data Analysis Class Chat: Attendance: Participation
Data Wrangling with pandas
regex (Regular Expressions) Examples Logic in Python (and pandas)
CSE 231 Lab 15.
Login Main Functions Via SAS Information Delivery Portal
Presentation transcript:

1

What is Pandas Panel Data or Python Data Analysis Pandas is Python Library for Data Analysis and Data Manipulation It works with labeled and relational data 2

Highlights A fast and efficient DataFrame object for data manipulation with integrated indexing. Tools for reading and writing data between in-memory data structures and different formats: CSV and text files, Microsoft Excel, SQL databases and JSON 3

Importing Data pd.read_csv(filename) | From a CSV file pd.read_table(filename) | From a delimited text file (like TSV) pd.read_excel(filename) | From an Excel file pd.read_sql(query, connection_object) | Read from a SQL table/database pd.read_json(json_string) | Read from a JSON formatted string, URL or file pd.DataFrame(dict) | From a dict, keys for columns names, values for data as lists

Viewing/Inspecting Data df.head(n) | First n rows of the DataFrame df.tail(n) | Last n rows of the DataFrame df.shape() | Number of rows and columns df.info() | Index, Datatype and Memory information df.describe() | Summary statistics for numerical columns

Selection df[col] | Returns column with label col as Series df[[col1, col2]] | Returns columns as a new DataFrame df.iloc[0,:] or df.ix[0]| First row df.iloc[0,0] | First element of first column

Data Cleaning df.columns = ['a','b','c'] | Rename columns pd.isnull() | Checks for null Values, Returns Boolean Arrray df.fillna(x) | Replace all null values with x df.dropna(axis=1) | Drop all columns that contain null values df.rename(columns={'old_name': 'new_ name'}) | Selective renaming df.sort_values(col1) | Sort values by col1 in ascending order df.sort_values(col2,ascending=False) | Sort values by col2 in descending order

Exporting Data df.to_csv(filename) | Write to a CSV file df.to_excel(filename) | Write to an Excel file df.to_sql(table_name, connection_object) | Write to a SQL table df.to_json(filename) | Write to a file in JSON format

ANY QUESTIONS ? 9

THANK YOU