0% found this document useful (0 votes)
16 views

How To Create Beautiful Graphs and Charts With LaTeX

This document contains a summary of multiple YouTube videos posted by Alfredo Júnior discussing various machine learning and data science topics, including creating graphs and charts with LaTeX, implementing support vector machines, linear regression in Python, random forest regression, handling missing data, boxplots, well log plots, scatter plots, k-means clustering, histograms, decision trees, and building models for handwritten digit recognition, StarCraft strategy, car price prediction, and neural networks.

Uploaded by

tamurt80
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views

How To Create Beautiful Graphs and Charts With LaTeX

This document contains a summary of multiple YouTube videos posted by Alfredo Júnior discussing various machine learning and data science topics, including creating graphs and charts with LaTeX, implementing support vector machines, linear regression in Python, random forest regression, handling missing data, boxplots, well log plots, scatter plots, k-means clustering, histograms, decision trees, and building models for handwritten digit recognition, StarCraft strategy, car price prediction, and neural networks.

Uploaded by

tamurt80
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Login

Alfredo Júnior
3 weeks ago

I make most of my graph and plots inside of LaTeX


using a package called pgfplots. LaTeX is a type
setting language and I like using it for graphs
specifically because I can control all aspects of my
graphs very precisely, with formatting native and
easily adjustable with the rest of my document, with
syntax similar to the syntax of the rest of LaTeX that
I use all the time, and best of all it is free and will
remain readily available. In this video we will see
how to do 2D graphs, scatter plots, bar charts, 3D
surface plots and 3D line plots, as well as how to
format all aspects of our plots and axes.

0:00 Why I use LaTeX and pgfplots for plots and


graphs
1:17 Why I use Overleaf as my LaTeX editor
2:00 The simplest 2D plot
3:57 Adjusting the preamble
4:49 Customizing plot color, style, marks, samples
6:25 Adjusting axis bounds, placement, labels and
title
9:04 Plot domain
9:45 2nd example: ticks, tick labels, grid lines
13:51 Adding text nodes
15:18 3rd example: Scatter plot with imported data
18:38 4th example: color coded scatter plot
20:16 5th example: stacked bar chart
21:23 Version history in overleaf
22:00 6th example: 3D surface and mesh plots
25:47 7th example: 3D curve plot

The full documention for pgfplots (it's long!) is here:


https://www.iro.umontreal.ca/~simardr/pgfplots.pdf

Check out my MATH MERCH line in collaboration


with Beautiful Equations
►https://beautifulequations.net/pages/trefor

Subscribe:
https://www.youtube.com/@DrTrefor/featured

#latex #maths #machinelearning

YOUTUBE.COM
How to Create Beautiful Graphs and Charts wit…
In this tutorial, learn how to create beautiful graphs and c…

1.30 GEEK

Alfredo Júnior
19 hours ago

Steps followed are:


----------------------------------------
1. Introduction to SVM

Used SVM to build and train a model using human


cell records, and classify cells to whether the

YOUTUBE.COM
Support Vector Machine (SVM) Classification f…
Learn how to implement Support Vector Machine (SVM) …

1.05 GEEK

Alfredo Júnior
1 week ago

In this tutorial, we will show you how to implement


different linear regression techniques in Python
using NumPy, pandas, and Seaborn. We will cover
topics such as simple linear regression, multiple
linear regression, and polynomial regression.

YOUTUBE.COM
Linear Regression in Python with NumPy, Pand…
Learn how to implement different linear regression techni…

1.45 GEEK

Alfredo Júnior
1 week ago

If you are new to python and machinelearning, in this


video you will find some of the important
concepts/steps that are followed while predicting
the results in Multiple Linear Regression model.
These steps are helpful, especially, while handling
large number of observations in a dataset.

YOUTUBE.COM
How to do Multiple Linear Regression in Python…
In this tutorial, we will show you how to do multiple linear …

1.25 GEEK

Alfredo Júnior
3 weeks ago

Hi everybody using this video! y is the target


variable; you need to define it. In this tutorial, y =
mydata['LL']. Sorry for missing it. The code ran
because I defined it on this same page before.

“Random forest regression is a supervised

YOUTUBE.COM
How to Implement Random Forest Regression i…
Learn how to implement random forest regression in Pyth…

1.55 GEEK

Alfredo Júnior
1 month ago

Missing data is probably one of the most common


issues when working with real datasets. Data can be
missing for a multitude of reasons, including sensor
failure, data vintage, improper data management,
and even human error. Missing data can occur as
single values, multiple values within one feature, or

YOUTUBE.COM
How to Visualize Missing Data in Python with M…
In this tutorial, learn how to use the Missingno Python libr…

1.40 GEEK

Alfredo Júnior
1 month ago

Matplotlib boxplots can be used for a variety of


tasks which include: outlier detection, understanding
the data range and distribution, and understanding
whether the data is skewed. In this video, we take a
look at creating basic boxplots with matplotlib,
without the need for seaborn or any other high-level

YOUTUBE.COM
How to Create Single and Multiple Boxplots wit…
In this tutorial, learn how to create single and multiple bo…

1.30 GEEK

Alfredo Júnior
1 month ago

Log plots are one of the most commonly used plot


types when working with well log and petrophysical
data. They allow us to view how logging
measurements that have been acquired from a
borehole, and from them we can make
interpretations and understand how the

YOUTUBE.COM
How to Create Well Log Plots with Matplotlib in …
In this tutorial, learn how to create well log plots with Mat…

1.35 GEEK

Alfredo Júnior
1 month ago

In this short video, we will see how to make a scatter


plot of well log data using the python library called
matplotlib.

Scatter plots are excellent data visualization tools


and can be used to identify relationships and

YOUTUBE.COM
How to Make a Scatter Plot of Well Log Data usi…
In this tutorial, we will see how to make a scatter plot of …

1.20 GEEK

Alfredo Júnior
1 month ago

K-Means clustering is a popular unsupervised


machine learning algorithm that is commonly used in
the exploratory data analysis phase of a project. It
groups data together into clusters based on
similarities within the data. In this tutorial, we will go
through the basics of running a k-means algorithm

YOUTUBE.COM
K-Means Clustering: A Complete Tutorial with …
In this tutorial, we will go through the basics of running a …

1.40 GEEK

Alfredo Júnior
1 month ago

Histograms are a great tool for exploratory data


analysis. They allow us to view the distribution of the
data values and identify key interpretation
parameters.

In this video, I cover what a histogram is and how to

YOUTUBE.COM
Matplotlib Histogram for Well Log & Petrophysi…
In this tutorial, we cover what a histogram is and how to c…

1.10 GEEK

Alfredo Júnior
1 month ago

In this video, we will show you how to code a


decision tree classifier in Python from scratch.
Decision trees are a powerful machine learning
algorithm that can be used for classification tasks.
We will walk you through the steps involved in
building a decision tree classifier, and we will also

YOUTUBE.COM
How to Code a Decision Tree Classifier in Pytho…
Learn how to code a decision tree classifier in Python fro…

1.35 GEEK

Alfredo Júnior
1 month ago

In this video tutorial, we've explained the Random


Forest Algorithm with visualizations. You'll also learn
why the random forest is more robust than decision
trees.

YOUTUBE.COM
Random Forest Algorithm Clearly Explained for …
In this tutorial, we will explain random forest algorithm in …

1.30 GEEK

Alfredo Júnior
1 month ago

In this video tutorial, we've explained Decision Trees


in great detail. You'll also learn the math behind
splitting the nodes. The next video will show you
how to code a decision tree classifier from scratch.

“Decision tree classification is a supervised

YOUTUBE.COM
Decision Tree Classification Clearly Explained f…
In this tutorial, we will explain decision tree classification i…

1.10 GEEK

Alfredo Júnior
1 month ago

In this video tutorial, We've explained how to solve a


regression problem using Decision Trees in great
detail. You'll also learn the math behind splitting the
nodes. The next video will show you how to code a
decision tree regressor from scratch.

YOUTUBE.COM
Decision Tree Regression Clearly Explained!
Learn how to solve a regression problem using Decision …

1.15 GEEK

Alfredo Júnior
1 month ago

K-Means Clustering Algorithm From Scratch In


Python | ML Algorithms From Scratch

This video will teach us how to write/create the K-


means clustering algorithm from scratch using
python without using any library that too in just 30

YOUTUBE.COM
How to Write/Create the K-means Clustering Al…
This tutorial will teach us how to write/create the K-mean…

1.10 GEEK

Alfredo Júnior
1 month ago

This video contains a stepwise implementation of


handwritten digits classification for extreme
beginners

1) Brainstorming, how to build your own deep


learning model

YOUTUBE.COM
Build a Handwritten Digit Recognition Model wi…
Learn how to build a handwritten digit recognition model …

1.20 GEEK

Alfredo Júnior
1 month ago

StarCraft II: Deep Reinforcement Learning


Examples with pysc2

StartCraft II Reinforcement Learning Examples

This example program was built on

1.20 GEEK

Alfredo Júnior
1 month ago

In this project we will build a car price predictor


using Linear Regression. We will also convert it into a
full-fledged website using the flask framework.

Link to dataset:
https://github.com/rajtilakls2510/car_price_predict

YOUTUBE.COM
Build a Car Price Predictor using Linear Regres…
In this tutorial, we will build a car price predictor using Lin…

1.25 GEEK

Alfredo Júnior
1 month ago

Exploring how neural networks learn by


programming one from scratch in C#, and then
attempting to teach it to recognize various doodles
and images.

Chapters

YOUTUBE.COM

You might also like