This post updates a previous very popular post 50+ Data Science, Machine Learning Cheat Sheets by Bhavya Geethika. If we missed some popular cheat sheets, add them in the comments below.
Cheatsheets on Python, R and Numpy, Scipy, Pandas
The NumPy library is the core library for scientific computation in Python. It provides a high-performance multidimensional array object and tools for working with arrays. Check out the different sections below to learn the various array functions and tools NumPy offers. Creating Arrays 2. Inspecting Your Array 3. Array Mathematics 4. CHEAT SHEET Python NumPy A library consisting of multidimensional array objects and a collection of routines for processing those arrays. W h a t i s N u m P y? Import numpy as np –Import numpy I m p o r t C o n v e n t i o n FURTHERMORE: Python for Data Science Certification Training Course Mathematical and logical operations on arrays can be. NumPy Cheat Sheet — Python for Data Science. NumPy is the library that gives Python its ability to work with data at.
Python For Data Science Cheat Sheet SciPy - Linear Algebra Learn More Python for Data Science Interactively at www.datacamp.com. Interacting With NumPy Also see NumPy The SciPy library is one of the core packages for scientific computing that provides mathematical algorithms and convenience functions built on the NumPy extension of Python. Numpy.linsapce function This numpy.linspace function is used to create an array of evenly spaced numbers in a given interval. We can also determine the number of samples we want to generate (however, it is an optional parameter default value is set to fifty samples).
Data science is a multi-disciplinary field. Thus, there are thousands of packages and hundreds of programming functions out there in the data science world! An aspiring data enthusiast need not know all. A cheat sheet or reference card is a compilation of mostly used commands to help you learn that language’s syntax at a faster rate. Here are the most important ones that have been brainstormed and captured in a few compact pages.
Mastering Data science involves understanding of statistics, mathematics, programming knowledge especially in R, Python & SQL and then deploying a combination of all these to derive insights using the business understanding & a human instinct—that drives decisions.
Here are the cheat sheets by category:
Cheat sheets for Python:
Python is a popular choice for beginners, yet still powerful enough to back some of the world’s most popular products and applications. It's design makes the programming experience feel almost as natural as writing in English. Python basics or Python Debugger cheat sheets for beginners covers important syntax to get started. Community-provided libraries such as numpy, scipy, sci-kit and pandas are highly relied on and the NumPy/SciPy/Pandas Cheat Sheet provides a quick refresher to these.
- Python Cheat Sheet by DaveChild via cheatography.com
- Python Basics Reference sheet via cogsci.rpi.edu
- OverAPI.com Python cheatsheet
- Python 3 Cheat Sheet by Laurent Pointal
Cheat sheets for R:
The R's ecosystem has been expanding so much that a lot of referencing is needed. The R Reference Card covers most of the R world in few pages. The Rstudio has also published a series of cheat sheets to make it easier for the R community. The data visualization with ggplot2 seems to be a favorite as it helps when you are working on creating graphs of your results.
At cran.r-project.org:
At Rstudio.com:
- R markdown cheatsheet, part 2
Others:
- DataCamp’s Data Analysis the data.table way
Cheat sheets for MySQL & SQL:
For a data scientist basics of SQL are as important as any other language as well. Both PIG and Hive Query Language are closely associated with SQL- the original Structured Query Language. SQL cheatsheets provide a 5 minute quick guide to learning it and then you may explore Hive & MySQL!
- SQL for dummies cheat sheet
Cheat sheets for Spark, Scala, Java:
Apache Spark is an engine for large-scale data processing. For certain applications, such as iterative machine learning, Spark can be up to 100x faster than Hadoop (using MapReduce). The essentials of Apache Spark cheatsheet explains its place in the big data ecosystem, walks through setup and creation of a basic Spark application, and explains commonly used actions and operations.
- Dzone.com’s Apache Spark reference card
- DZone.com’s Scala reference card
- Openkd.info’s Scala on Spark cheat sheet
- Java cheat sheet at MIT.edu
- Cheat Sheets for Java at Princeton.edu
Cheat sheets for Hadoop & Hive:
Hadoop emerged as an untraditional tool to solve what was thought to be unsolvable by providing an open source software framework for the parallel processing of massive amounts of data. Explore the Hadoop cheatsheets to find out Useful commands when using Hadoop on the command line. A combination of SQL & Hive functions is another one to check out.
Cheat sheets for web application framework Django:
Django is a free and open source web application framework, written in Python. If you are new to Django, you can go over these cheatsheets and brainstorm quick concepts and dive in each one to a deeper level.
- Django cheat sheet part 1, part 2, part 3, part 4
Scipy Cheat Sheet
Cheat sheets for Machine learning:
We often find ourselves spending time thinking which algorithm is best? And then go back to our big books for reference! These cheat sheets gives an idea about both the nature of your data and the problem you're working to address, and then suggests an algorithm for you to try.
- Machine Learning cheat sheet at scikit-learn.org
- Scikit-Learn Cheat Sheet: Python Machine Learning from yhat (added by GP)
- Patterns for Predictive Learning cheat sheet at Dzone.com
- Equations and tricks Machine Learning cheat sheet at Github.com
- Supervised learning superstitions cheatsheet at Github.com
Cheat sheets for Matlab/Octave
MATLAB (MATrix LABoratory) was developed by MathWorks in 1984. Matlab d has been the most popular language for numeric computation used in academia. It is suitable for tackling basically every possible science and engineering task with several highly optimized toolboxes. MATLAB is not an open-sourced tool however there is an alternative free GNU Octave re-implementation that follows the same syntactic rules so that most of coding is compatible to MATLAB.
Cheat sheets for Cross Reference between languages
Related:
- Python cheatsheet
Operators¶
Command | Description |
---|---|
| multiplication operation: |
| power operation: |
| matrix multiplication: returns |
Data Types¶
Command | Description |
---|---|
| Constructs a list containing the objects (a1, a2,..., an). You can append to the list using |
| Constructs a tuple containing the objects (a1, a2,..., an). The (ith) element of (t) can be accessed using |
Built-In Functions¶
Command | Description |
---|---|
|
returns |
| Make an iterator that aggregates elements from each of the iterables. returns |
Iterating¶
Command | Description |
---|---|
| For loop used to perform a sequence of commands (denoted using tabs) for each element in an iterable object such as a list, tuple, or numpy array.An example code is prints |
Comparisons and Logical Operators¶
Command | Description |
---|---|
| Performs code if a condition is met (using tabs). For example squares (x) if (x) is (5), otherwise cubes it. |
User-Defined Functions¶
Command | Description |
---|---|
| Used for create anonymous one line functions of the form: The code after the lambda but before variables specifies the parameters. The code after the colon tells python what object to return. |
| The def command is used to create functions of more than one line: The code immediately following |
Numpy¶
Command | Description |
---|---|
|
|
| Access a the element in numpy array A in with index i1 in dimension 1, i2 in dimension 2, etc.Can use
returns the 2nd column (counting from 0) of A as a 1 dimensional array and
returns the 0th and 1st rows in a 2 dimensional array. |
| Constructs numpy array of shape shape. Here shape is an integer of sequence of integers. Such as 3, (1, 2), (2, 1), or (5, 5). Thus
Constructs an (5times 5) array while
will throw an error. |
| Same as |
| Returns a numpy array with (n) linearly spaced points between (a) and (b). For example
returns |
| Constructs the identity matrix of size (N). For example
returns the (3times 3) identity matrix: [begin{split}left(begin{matrix}1&0&00&1&0 0&0&1end{matrix}right)end{split}] |
|
returns If (a) is a 1 dimensional array then
returns [begin{split}left(begin{matrix}1&00&2end{matrix}right)end{split}] |
| Constructs a numpy array of shape |
| Same as |
| Reverses the dimensions of an array (transpose).For example,if (x = left(begin{matrix} 1& 23&4end{matrix}right)) then |
| Take a sequence of arrays and stack them horizontally to make a single array. For example returns returns (left( begin{matrix} 1&22&3 3&4 end{matrix}right)) |
| Like returns |
| By default
then
returns
returns |
| Same as |
| Performs similar function to np.amax except returns index of maximal element.By default gives index of flattened array, otherwise can use axis to specify dimension.From the example for np.amax returns returns |
| Same as |
| Returns an array equal to the dot product of (a) and (b).For this operation to work the innermost dimension of (a) must be equal to the outermost dimension of (b).If (a) is a ((3, 2)) array and (b) is a ((2)) array then |
numpy.linalg¶
Command | Description |
---|---|
| For a 2-dimensional array (A). returns |
| Returns a 1-dimensional array with all the eigenvalues of $A$ as well as a 2-dimensional array with the eigenvectors as columns.For example,
returns the eigenvalues in |
| Constructs array (x) such that but numerically more stable. |
Pandas¶
Scipy Cheat Sheet Pdf
Command | Description |
---|---|
pd.Series() | Constructs a Pandas Series Object from some specified data and/or index |
pd.DataFrame() | Constructs a Pandas DataFrame object from some specified data and/or index, column names etc. or alternatively, |
Plotting¶
Python Array Cheat Sheet
Command | Description |
---|---|
| The plot command is included in plots the cosine function on the domain (0, 10) with a green line with circles at the points (x, v) |