You are on page 1of 8

Data Analytics

Using Python

Python Duration: 4.5 Months


Introduction To Python
l Why Python
l Application areas of python
l Python implementations
l Cpython

l Jython

l Ironpython

l Pypy

l Python versions
l Installing python
l Python interpreter architecture
l Python byte code compiler

l Python virtual machine(pvm)

Writing and Executing First Python Program


l Using interactive mode
l Using script mode
l General text editor and command window

l Idle editor and idle shell

l Understanding print() function


l How to compile python program explicitly
Python Language Fundamentals
l Character set
l Keywords
l Comments
l Variables
l Literals
l Operators
l Reading input from console
l Parsing string to int, float
Python Conditional Statements
l If statement
l If else statement
l If elif statement
l If elif else statement
l Nested if statement
Looping Statements
l While loop
l For loop
l Nested loops
l Pass, break and continue keywords
Standard Data Types
l Int, float, complex, bool, nonetype
l Str, list, tuple, range
l Dict, set, frozenset
l
String Handling
l What is string
l String representations
l Unicode string
l String functions, methods
l String indexing and slicing
l String formatting

Python List
l Creating and accessing lists
l Indexing and slicing lists
l List methods
l Nested lists
l List comprehension
Python Tuple
l Creating tuple
l Accessing tuple
l Immutability of tuple
Python Set
l How to create a set
l Iteration over sets
l Python set methods
l Python frozenset

Python Dictionary
l Creating a dictionary
l Dictionary methods
l Accessing values from dictionary
l Updating dictionary
l Iterating dictionary
l Dictionary comprehension
Python Functions
l Defining a function
l Calling a function
l Types of functions
l Function arguments
l Positional arguments, keyword arguments

l Default arguments, non-default arguments

l Arbitrary arguments, keyword arbitrary arguments

l Function return statement


l Nested function
l Function as argument
l Function as return statement
l Decorator function
l Closure
l Map(), filter(), reduce(), any() functions
l Anonymous or lambda function
Modules & Packages
l Why modules
l Script v/s module
l Importing module
l Standard v/s third party modules
l Why packages
l Understanding pip utility
File I/O
l Introduction to file handling
l File modes
l Functions and methods related to file handling
l Understanding with block
Regular Expressions(Regex)
l Need of regular expressions
l Re module
l Functions /methods related to regex
l Meta characters & special sequences

SQL
Introduction to Database
l Database Concepts
l What is Database Package?
l Understanding Data Storage
l Relational Database (RDBMS) Concept
SQL (Structured Query Language)
l SQL basics
l DML, DDL & DQL
l DDL: create, alter, drop
l SQL constraints:
l Not null, unique,
l Primary & foreign key, composite key
l Check, default

l DML: insert, update, delete and merge


l DQL : select
l Select distinct
l SQL where
l SQL operators
l SQL like
l SQL order by
l SQL aliases
l SQL views
l SQL joins
l Inner join
l
Left (outer) join
l
Right (outer) join
l
Full (outer) join
l Mysql functions
l String functions
l
Char_length
l
Concat
l
Lower
l
Reverse
l
Upper
l Numeric functions

l
Max, min, sum
l
Avg, count, abs
l Date functions
l

Curdate
Curtime
l

l
Now

Statistics, Probability & Analytics:


Introduction to Statistics
l Sample or population
l Measures of central tendency
l Arithmetic mean

l Harmonic mean

l
Geometric mean
l Mode

l Quartile
l
First quartile
l
Second quartile(median)
l
Third quartile
l Standard deviation
Probability Distributions
l Introduction to probability
l Conditional probability
l Normal distribution
l Uniform distribution
l Exponential distribution
l Right & left skewed distribution
l Random distribution
l Central limit theorem
l

Hypothesis Testing
l

l Normality test
l Mean test
l T-test

l Z-test

l
ANOVA test
l Chi square test
l Correlation and covariance
l

Numpy Package
l

l Difference between list and numpy array


l Vector and matrix operations
l Array indexing and slicing
l

Pandas Package
l
l

Introduction to pandas
l

l Labeled and structured data


l Series and dataframe objects

How to load datasets


l From excel
l From csv
l From html table
Accessing data from Data Frame
l at & iat
l loc & iloc
l head() & tail()
Exploratory Data Analysis (EDA)
l describe()
l groupby()
l crosstab()
l boolean slicing / query()
Data Manipulation & Cleaning
l Map(), apply()
l Combining data frames
l Adding/removing rows & columns
l Sorting data
l Handling missing values
l Handling duplicacy
l Handling data error
Handling Date and Time

Data Visualization using matplotlib and seaborn packages


l Scatter plot, lineplot, bar plot
l Histogram, pie chart,
l Jointplot, pairplot, heatmap
l Outlier detection using boxplot

l
Advanced Excel
Advanced Excel Course - Overview of the Basics of Excel
l Customizing common options in Excel
l Absolute and relative cells
l Protecting and un-protecting worksheets and cells

Advanced Excel Course - Working with Functions


l Writing conditional expressions (using IF)
l Using logical functions (AND, OR, NOT)
l Using lookup and reference functions (VLOOKUP, HLOOKUP, MATCH, INDEX)
l VlookUP with Exact Match, Approximate Match
l Nested VlookUP with Exact Match
l VlookUP with Tables, Dynamic Ranges
l Nested VlookUP with Exact Match
l Using VLookUP to consolidate Data from Multiple Sheets

Advanced Excel Course - Data Validations


l Specifying a valid range of values for a cell
l Specifying a list of valid values for a cell
l Specifying custom validations based on formula for a cell

Advanced Excel Course - Working with Templates


l Designing the structure of a template
l Using templates for standardization of worksheets

Advanced Excel Course - Sorting and Filtering Data


l Sorting tables
l Using multiple-level sorting
l Using custom sorting
l Filtering data for selected view (AutoFilter)
l Using advanced filter options

Advanced Excel Course - Working with Reports


l Creating subtotals
l Multiple-level subtotals
l Creating Pivot tables
l Formatting and customizing Pivot tables
l Using advanced options of Pivot tables
l Pivot charts
l Consolidating data from multiple sheets and files using Pivot tables
l Using external data sources
l Using data consolidation feature to consolidate data
l Show Value As ( % of Row, % of Column, Running Total, Compare with Specific Field)
l Viewing Subtotal under Pivot
l Creating Slicers ( Version 2010 & Above)

Advanced Excel Course - More Functions


l Date and time functions
l Text functions
l Database functions
l Power Functions (CountIf, CountIFS, SumIF, SumIfS)

Advanced Excel Course - Formatting


l Using auto formatting option for worksheets
l Using conditional formatting option for rows, columns and cells
Advanced Excel Course - Macros
l Relative & Absolute Macros
l Editing Macro's

Advanced Excel Course - WhatIf Analysis


l Goal Seek
l Data Tables
l Scenario Manager

Advanced Excel Course - Charts


l Using Charts
l Formatting Charts
l Using 3D Graphs
l Using Bar and Line Chart together
l Using Secondary Axis in Graphs
l Sharing Charts with PowerPoint / MS Word, Dynamically
l (Data Modified in Excel, Chart would automatically get updated)

Advanced Excel Course - New Features Of Excel


l Sparklines, Inline Charts, data Charts
l Overview of all the new features

Advanced Excel Course - Final Assignment


l The Final Assignment would test contains questions to be solved at the end of the Course

VBA (VISUAL BASIC FOR APPLICATION) & MACROS


Create a Macro:
l Swap Values, Run Code from a Module, Macro Recorder, Use Relative References,
FormulaR1C1, Add a Macro to the Toolbar, Macro Security, Protect Macro.

MsgBox:
l MsgBox Function, Input Box Function.

Workbook and Worksheet Object:


l Path and Full Name, Close and Open, Loop through Books and Sheets, Sales Calculator,
Files in a Directory, Import Sheets, Programming Charts.

Range Object:
l Current Region, Dynamic Range, Resize, Entire Rows and Columns, Offset, From Active
Cell to Last Entry, Union and Intersect, Test a Selection, Possible Football
Matches, Font, Background Colors, Areas Collection, Compare Ranges.

Variables:
l Option Explicit, Variable Scope, Life of Variables.

If Then Statement:
l Logical Operators, Select Case, Tax Rates, Mod Operator, Prime Number Checker, Find
Second Highest Value, Sum by Color, Delete Blank Cells.

Loop:
l Loop through Defined Range, Loop through Entire Column, Do Until Loop, Step Keyword,
Create a Pattern, Sort Numbers, Randomly Sort Data, Remove Duplicates, Complex Calculations,
Knapsack Problem.
Macro Errors:
l Debugging, Error Handling, Err Object, Interrupt a Macro, Macro Comments.

String Manipulation:
l Separate Strings, Reverse Strings, Convert to Proper Case, Count Words.

Date and Time:


l Compare Dates and Times, DateDif Function, Weekdays, Delay a Macro, Year Occurrences,
Tasks on Schedule, Sort Birthdays.

Events:
l Before DoubleClick Event, Highlight Active Cell, Create a Footer Before Printing, Bills and Coins,
Rolling Average Table.

Array:
l Dynamic Array, Array Function, Month Names, Size of an Array.

Function and Sub:


l User Defined Function, Custom Average Function, Volatile Functions, ByRef and ByVal.

Application Object:
l Status Bar, Read Data from Text File, Write Data to Text File.

ActiveX Controls:
l Text Box, List Box, Combo Box, Check Box, Option Buttons, Spin Button, Loan Calculator.

User form:
l User form and Ranges, Currency Converter, Progress Indicator, Multiple List Box Selections,
Multicolumn Combo Box, Dependent Combo Boxes, Loop through Controls, Controls Collection,
User form with Multiple Pages, Interactive User form

Tableau
Tableau - Home
l Tableau - overview
l Tableau - environment setup
l Tableau - get started
l Tableau - navigation
l Tableau - design flow
l Tableau - file types
l Tableau - data types
l Tableau - show me
l Tableau - data terminology

Tableau - Data Sources


l Tableau - custom data view
l Tableau - data sources
l Tableau - extracting data
l Tableau - fields operations
l Tableau - editing metadata
l Tableau - data joining
l Tableau - data blending

Tableau – Work Sheet


l Tableau - add worksheets
l Tableau - rename worksheet
l Tableau - save & delete worksheet
l Tableau - reorder worksheet
l Tableau - paged workbook
Tableau – Calculation
l Tableau - operators
l Tableau - functions
l Tableau - numeric calculations
l Tableau - string calculations
l Tableau - date calculations
l Tableau - table calculations
l Tableau - lod expressions
Tableau – Sorting & Filter
l Tableau - basic sorting
l Tableau - basic filters
l Tableau - quick filters
l Tableau - context filters
l Tableau - condition filters
l Tableau - top filters
l Tableau - filter operations
Tableau - Charts
l Tableau - bar chart
l Tableau - line chart
l Tableau - pie chart
l Tableau - crosstab
l Tableau - scatter plot
l Tableau - bubble chart
l Tableau - bullet graph
l Tableau - box plot
l Tableau - tree map
l Tableau - bump chart
l Tableau - gantt chart
l Tableau - histogram
l Tableau - motion charts
l Tableau - waterfall charts
l Tableau - dashboard

Projects
l One project using python & sql
l One dashboard using tableau

Partners : Java
NOIDA GHAZIABAD PITAMPURA (DELHI) SOUTH EXTENSION
A-43 & A-52, Sector-16, 1, Anand Industrial Estate, Plot No. 366, 2nd Floor, (DELHI)
Noida - 201301, (U.P.) INDIA Near ITS College, Mohan Nagar, Kohat Enclave, Pitampura,
D-27, South Extension-1
70-70-90-50-90 Ghaziabad (U.P.) ( Near- Kohat Metro Station)
New Delhi-110049
+91 99-9999-3213 70-70-90-50-90 Above Allahabad Bank,
New Delhi- 110034. 70-70-90-50-90
70-70-90-50-90 +91 98-1161-2707
GURGAON
1808/2, 2nd floor old DLF,
Near Honda Showroom,
Sec.-14, Gurgaon (Haryana)
70-70-90-50-90
www.facebook.com/ducateducation

You might also like