Python Tutorial: Methods and packages
Key Takeaways
The video covers Python methods and packages, including how to access and use methods, and how to import and utilize packages such as the Python standard library and third-party packages like NumPy, Matplotlib, and Pandas.
Full Transcript
two concepts in Python that are important to understand our methods and packages in Python everything is an object and many objects have methods which are special functions that are attached to the object you can access these by adding a period than the method onto an object for example I can make a string object lower case by calling the lower method on that string this returns a lowercase version of the string like lower many methods don't take any arguments or perform some operation on the object they are attached to while others take one or more arguments methods can be very useful for transforming data for example the format method replaces any curly braces in a string with whatever arguments were passed into the method this makes it very easy to print friendly readable messages about the results of an analysis throughout the course you'll learn how to use a number of methods for different data structures in Python the other big difference is packages in MATLAB any functions that get added to your path are available for you to use immediately but in Python only the most essential functions are accessible in a standard session the Python standard library is distributed with every Python installation and includes many useful general-purpose packages data scientists rely heavily on third-party packages like numpy matplotlib and pandas for data analysis and visualization regardless of whether they are part of the Python standard library or a third party package you have to explicitly import them before you can use them for example the Python math package has functions that implement common mathematical functions like sine cosine and tangent and maintain math constants like pi to have access to these functions you can import them with import math once imported you can access the functions a package contains with a period for example math dot log if there is just a specific part of a package that you want to import say the function log from the math package you can use from to import just thing you want sometimes you want to use a package repeatedly but the name is long and you don't want to type it over and over again for these times Python also supports assigning the package to an alias name using as for example here I've used the syntax import package as alias to import the date-time package from the Python standard library and assign it to the variable DT this shorthand is common for the date-time package and many popular packages have common aliases as well let's get some practice manipulating strings with methods and imp
Original Description
Want to learn more? Take the full course at https://learn.datacamp.com/courses/python-for-matlab-users at your own pace. More than a video, you'll learn hands-on coding & quickly apply skills to your daily work.
---
Two concepts in Python that are important to understand are “methods” and “packages.”
In Python, everything is an object, and many objects have “methods,” which are special functions that are attached to the object. You can access these by adding a period, then the method onto an object. For example, I can make a string object lowercase by calling the lower() method on that string. This returns a lowercase version of the string. Like lower(), many methods don’t take any arguments, but perform some operation on the object they are attached to, while others take one or more arguments.
Methods can be very useful for transforming data. For example, the format() method replaces any curly braces in a string with whatever arguments were passed into the method. This makes it very easy to print-friendly, readable messages about the results of an analysis.
Throughout the course, you’ll learn how to use a number of methods for different data structures in Python.
The other big difference is “packages.” In MATLAB, any functions that get added to your PATH are available for you to use immediately. But in Python, only the most essential functions are accessible in a standard session. The Python Standard Library is distributed with every Python installation and includes many useful general-purpose packages.
Data scientists rely heavily on third-party packages like NumPy, Matplotlib, and pandas for data analysis and visualization.
Regardless of whether they are part of the Python Standard Library or a third party package, you have to explicitly import them before you can use them.
For example, the Python “math” package has functions that implement common mathematical functions, like sine, cosine, and tangent, and maintain math constants like pi.
To have acce
Watch on YouTube ↗
(saves to browser)
Sign in to unlock AI tutor explanation · ⚡30
Playlist
Uploads from DataCamp · DataCamp · 0 of 60
← Previous
Next →
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
SQL Server Tutorial: Date manipulation
DataCamp
R Tutorial: Intermediate Interactive Data Visualization with plotly in R
DataCamp
R Tutorial: Adding aesthetics to represent a variable
DataCamp
R Tutorial: Moving Beyond Simple Interactivity
DataCamp
Python Tutorial: Why use ML for marketing? Strategies and use cases
DataCamp
Python Tutorial: Preparation for modeling
DataCamp
Python Tutorial: Machine Learning modeling steps
DataCamp
R Tutorial: The prior model
DataCamp
R Tutorial: Data & the likelihood
DataCamp
R Tutorial: The posterior model
DataCamp
R Tutorial: An Introduction to plotly
DataCamp
R Tutorial: Plotting a single variable
DataCamp
R Tutorial: Bivariate graphics
DataCamp
Python Tutorial: Customer Segmentation in Python
DataCamp
Python Tutorial: Time cohorts
DataCamp
Python Tutorial: Calculate cohort metrics
DataCamp
Python Tutorial: Cohort analysis visualization
DataCamp
R Tutorial: Building Dashboards with flexdashboard
DataCamp
R Tutorial: Anatomy of a flexdashboard
DataCamp
R Tutorial: Layout basics
DataCamp
R Tutorial: Advanced layouts
DataCamp
Python Tutorial: Time Series Analysis in Python
DataCamp
Python Tutorial: Correlation of Two Time Series
DataCamp
Python Tutorial: Simple Linear Regressions
DataCamp
Python Tutorial: Autocorrelation
DataCamp
R Tutorial: The gapminder dataset
DataCamp
R Tutorial: The filter verb
DataCamp
R Tutorial: The arrange verb
DataCamp
R Tutorial: The mutate verb
DataCamp
R Tutorial: What is cluster analysis?
DataCamp
R Tutorial: Distance between two observations
DataCamp
R Tutorial: The importance of scale
DataCamp
R Tutorial: Measuring distance for categorical data
DataCamp
Python Tutorial: Plotting multiple graphs
DataCamp
Python Tutorial: Customizing axes
DataCamp
Python Tutorial: Legends, annotations, & styles
DataCamp
Python Tutorial: Introduction to iterators
DataCamp
Python Tutorial: Playing with iterators
DataCamp
Python Tutorial: Using iterators to load large files into memory
DataCamp
SQL Tutorial: Introduction to Relational Databases in SQL
DataCamp
SQL Tutorial: Tables: At the core of every database
DataCamp
SQL Tutorial: Update your database as the structure changes
DataCamp
Python Tutorial: Classification-Tree Learning
DataCamp
Python Tutorial: Decision-Tree for Classification
DataCamp
Python Tutorial: Decision-Tree for Regression
DataCamp
Python Tutorial: Census Subject Tables
DataCamp
Python Tutorial: Census Geography
DataCamp
Python Tutorial: Using the Census API
DataCamp
R Tutorial: A/B Testing in R
DataCamp
R Tutorial: Baseline Conversion Rates
DataCamp
R Tutorial: Designing an Experiment - Power Analysis
DataCamp
R Tutorial: Introduction to qualitative data
DataCamp
R Tutorial: Understanding your qualitative variables
DataCamp
R Tutorial: Making Better Plots
DataCamp
SQL Tutorial: OLTP and OLAP
DataCamp
SQL Tutorial: Storing data
DataCamp
SQL Tutorial: Database design
DataCamp
Python Tutorial: Introduction to spaCy
DataCamp
Python Tutorial: Statistical Models
DataCamp
Python Tutorial: Rule-based Matching
DataCamp
🎓
Tutor Explanation
DeepCamp AI