Your First Lines of Code in Python
I am going to describe to you a method that I use with my clients when I teach Python & Data Science ↓

I coach people to develop the Resolving Discipline that turns them into independent programmers.
Search for a command to run...
I am going to describe to you a method that I use with my clients when I teach Python & Data Science ↓

I coach people to develop the Resolving Discipline that turns them into independent programmers.
No comments yet. Be the first to comment.
Learn how to analyze Time Series data with ARIMA in Python.

❌ Don't think of a for loop if you want to summarise your daily Time Series by years. ✅ Instead, use the function resample() from pandas. Let me explain it with an example. We start by loading a DataFrame from a CSV file that contains information on ...

Learn everything about filtering specific parts of the DataFrame based on conditions.

Read this story to learn the roadmap you could follow to get a python job where you can take your skills to the next level while you get paid.

Challenge Importance The time has come to add another layer to the hierarchy of Machine Learning models. Do we have the variable we want to predict in the dataset? YES: Supervised Learning Predicting a Numerical Variable → Regression Predicting a C...

Programming is hard, especially at the beginning.
Don't make it yourself any harder!
Start with Data Visualization.
It's easier to understand programming with visual changes than abstract coding ("make a program that prints even numbers").
Get on Jupyter, a code editor. Here is the link to [download the program](https://www.anaconda.com/products/individual.
Your first lines of code should be as follows:
import seaborn as sns
df = sns.load_dataset('tips')
sns.scatterplot(x='total_bill', y='tip', data=df)
You would get a plot that should look like this one ↓

To configure the behaviour of the function, you should configure the code as follows:
sns.scatterplot(x='total_bill', y='tip', data=df, color='red')

This simple change helps you to understand a couple of core concepts in programming:
Functions sns.scatteplot() are used to make things in programming (a plot in this case).
You use parameters color='red' to configure the function's behaviour.
Feel free and welcome to ask me anything in the comments below, it will be my pleasure to help you out 🤗