Data Science with Python (beginner to expert)

via Udemy

Go to Course: https://www.udemy.com/course/data-science-with-python-certification-training/

Overview

A warm welcome to the Data Science with Python course by Uplatz.Data Science with Python involves not only using Python language to clean, analyze and visualize data, but also applying Python programming skills to predict and identify trends useful for decision-making.Why Python for Data Science?Since data revolution has made data as the new oil for organizations, today's decisions are driven by multidisciplinary approach of using data, mathematical models, statistics, graphs, databases for various business needs such as forecasting weather, customer segmentation, studying protein structures in biology, designing a marketing campaign, opening a new store, and the like. The modern data-powered technology systems are driven by identifying, integrating, storing and analyzing data for useful business decisions. Scientific logic backed with data provides solid understanding of the business and its analysis. Hence there is a need for a programming language that can cater to all these diverse needs of data science, machine learning, data analysis & visualization, and that can be applied to practical scenarios with efficiency. Python is a programming language that perfectly fits the bill here and shines bright as one such language due to its immense power, rich libraries and built in features that make it easy to tackle the various facets of Data Science.This Data Science with Python course by Uplatz will take your journey from the fundamentals of Python to exploring simple and complex datasets and finally to predictive analysis & models development. In this Data Science using Python course, you will learn how to prepare data for analysis, perform complex statistical analyses, create meaningful data visualizations, predict future trends from data, develop machine learning & deep learning models, and more.The Python programming part of the course will gradually take you from scratch to advanced programming in Python. You'll be able to write your own Python scripts and perform basic hands-on data analysis. If you aspire to become a data scientist and want to expand your horizons, then this is the perfect course for you. The primary goal of this course is to provide you a comprehensive learning framework to use Python for data science. In the Data Science with Python training you will gain new insights into your data and will learn to apply data science methods and techniques, along with acquiring analytics skills. With understanding of the basic python taught in the initial part of this course, you will move on to understand the data science concepts, and eventually will gain skills to apply statistical, machine learning, information visualization, text analysis, and social network analysis techniques through popular Python toolkits such as pandas, NumPy, matplotlib, scikit-learn, and so on.The Data Science with Python training will help you learn and appreciate the fact that how this versatile language (Python) allows you to perform rich operations starting from import, cleansing, manipulation of data, to form a data lake or structured data sets, to finally visualize data - thus combining all integral skills for any aspiring data scientist, analyst, consultant, or researcher. In this Data Science using Python training, you will also work with real-world datasets and learn the statistical & machine learning techniques you need to train the decision trees and/or use natural language processing (NLP). Simply grow your Python skills, understand the concepts of data science, and begin your journey to becoming a top data scientist.Data Science with Python Programming - Course Syllabus1. Introduction to Data ScienceIntroduction to Data SciencePython in Data ScienceWhy is Data Science so Important?Application of Data ScienceWhat will you learn in this course?2. Introduction to Python ProgrammingWhat is Python Programming?History of Python ProgrammingFeatures of Python ProgrammingApplication of Python ProgrammingSetup of Python ProgrammingGetting started with the first Python program3. Variables and Data TypesWhat is a variable?Declaration of variableVariable assignmentData types in PythonChecking Data typeData types ConversionPython programs for Variables and Data types4. Python Identifiers, Keywords, Reading Input, Output FormattingWhat is an Identifier?KeywordsReading InputTaking multiple inputs from userOutput FormattingPython end parameter5. Operators in PythonOperators and types of operators - Arithmetic Operators - Relational Operators - Assignment Operators - Logical Operators - Membership Operators - Identity Operators - Bitwise OperatorsPython programs for all types of operators6. Decision MakingIntroduction to Decision makingTypes of decision making statementsIntroduction, syntax, flowchart and programs for - if statement - if…else statement - nested ifelif statement7. LoopsIntroduction to LoopsTypes of loops - for loop - while loop - nested loopLoop Control StatementsBreak, continue and pass statementPython programs for all types of loops8. ListsPython ListsAccessing Values in ListsUpdating ListsDeleting List ElementsBasic List OperationsBuilt-in List Functions and Methods for list9. Tuples and DictionaryPython TupleAccessing, Deleting Tuple ElementsBasic Tuples OperationsBuilt-in Tuple Functions & methodsDifference between List and TuplePython DictionaryAccessing, Updating, Deleting Dictionary ElementsBuilt-in Functions and Methods for Dictionary10. Functions and ModulesWhat is a Function?Defining a Function and Calling a FunctionWays to write a functionTypes of functionsAnonymous FunctionsRecursive functionWhat is a module?Creating a moduleimport StatementLocating modules11. Working with FilesOpening and Closing FilesThe open FunctionThe file Object AttributesThe close() MethodReading and Writing FilesMore Operations on Files12. Regular ExpressionWhat is a Regular Expression?Metacharactersmatch() functionsearch() functionre match() vs re search()findall() functionsplit() functionsub() function13. Introduction to Python Data Science LibrariesData Science LibrariesLibraries for Data Processing and Modeling - Pandas - Numpy - SciPy - Scikit-learnLibraries for Data Visualization - Matplotlib - Seaborn - Plotly14. Components of Python EcosystemComponents of Python EcosystemUsing Pre-packaged Python Distribution: AnacondaJupyter Notebook15. Analysing Data using Numpy and PandasAnalysing Data using Numpy & PandasWhat is numpy? Why use numpy?Installation of numpyExamples of numpyWhat is ‘pandas'?Key features of pandasPython Pandas - Environment SetupPandas - Data Structure with exampleData Analysis using Pandas16. Data Visualisation with MatplotlibData Visualisation with Matplotlib - What is Data Visualisation? - Introduction to Matplotlib - Installation of MatplotlibTypes of data visualization charts/plots - Line chart, Scatter plot - Bar chart, Histogram - Area Plot, Pie chart - Boxplot, Contour plot17. Three-Dimensional Plotting with MatplotlibThree-Dimensional Plotting with Matplotlib - 3D Line Plot - 3D Scatter Plot - 3D Contour Plot - 3D Surface Plot18. Data Visualisation with SeabornIntroduction to seabornSeaborn FunctionalitiesInstalling seabornDifferent categories of plot in SeabornExploring Seaborn Plots19. Introduction to Statistical AnalysisWhat is Statistical Analysis?Introduction to Math and Statistics for Data ScienceTerminologies in Statistics - Statistics for Data ScienceCategories in StatisticsCorrelationMean, Median, and ModeQuartile20. Data Science Methodology (Part-1)Module 1: From Problem to ApproachBusiness UnderstandingAnalytic ApproachModule 2: From Requirements to CollectionData RequirementsData CollectionModule 3: From Understanding to PreparationData UnderstandingData Preparation21. Data Science Methodology (Part-2)Module 4: From Modeling to EvaluationModelingEvaluationModule 5: From Deployment to FeedbackDeploymentFeedbackSummary22. Introduction to Machine Learning and its TypesWhat is a Machine Learning?Need for Machine LearningApplication of Machine LearningTypes of Machine Learning - Supervised learning - Unsupervised learning - Reinforcement learning23. Regression AnalysisRegression AnalysisLinear RegressionImplementing Linear RegressionMultiple Linear RegressionImplementing Multiple Linear RegressionPolynomial RegressionImplementing Polynomial Regression24. ClassificationWhat is Classification?Classification algorithmsLogistic RegressionImplementing Logistic RegressionDecision TreeImplementing Decision TreeSupport Vector Machine (SVM)Implementing SVM25. ClusteringWhat is Clustering?Clustering AlgorithmsK-Means ClusteringHow does K-Means Clustering work?Implementing K-Means ClusteringHierarchical ClusteringAgglomerative Hierarchical clusteringHow does Agglomerative Hierarchical clustering Work?Divisive Hierarchical ClusteringImplementation of Agglomerative Hierarchical Clustering26. Association Rule LearningAssociation Rule LearningApriori algorithmWorking of Apriori algorithmImplementation of Apriori algorithm

Skills

Reviews