How to create a beginner project in data analysis
Hello, today we are going to create a first project for you, beginners in the data area, to be able to start creating a cool portfolio and with all the necessary tools to work with data!
This project shows that, even if you are a beginner in Python, you can always find libraries to perform more complex tasks that you don't yet know how to do from scratch (some things aren't even worth doing from scratch either) . First of all, it is important that you have initial knowledge of Python and SQL, as well as a little knowledge of Tableau to create the dashboard. It is not necessary for you to be an expert, but knowing the basics of these tools will help you follow the project more easily, but you can read the entire article and try to reproduce it as well because I will try to explain it in the simplest way possible so that Now you can start creating your first dashboard!
Shall we get started?
The first step is to have your development environment configured on your machine, the requirements for this project are:
- Python 3
- MySQL 9.1 (latest version on website)
- Tableau Public
I'm developing this project in a Windows 11 environment, so some things may vary depending on your OS or Windows version, but nothing that deviates too much from what I'm going to present here.
Let's start with Python. Go to https://www.python.org/downloads/ and download the latest version of the installer. After installation, restart your PC to avoid bugs (as happened to me hahah) and be able to use the language without problems on the command line.
Then, with MySQL, go to the website https://dev.mysql.com/downloads/mysql/ and download the MySQL Community Server installer. Just follow the standard installation and everything will go perfectly.
Now, with Tableau Public, go to https://www.tableau.com/pt-br/products/public/download and create your account to start the download. Account creation will also be necessary to publish your first dashboard and will also be very important for your portfolio!
Another tool that is not necessary, but is very good to have, is git and a github account. I put all my code with commits and comments here and it's great to use github as a portfolio of your code, but if you don't know git it's okay and your project will work the same way.
When you have everything configured, go to the directory where you will place your application, then let's make some more configurations. You will need some Python libraries to use in the project, I will explain what each one does and how to install them.
The first library we will use is BeautifulSoup. The data we will need for this project is on the internet and we will have to do a process called Web Scraping to collect it, BeautifulSoup will help us with this process by bringing us tools that facilitate this collection.
To install it, just go to the terminal and type
pip install beautifulsoup4
and... that's it! Installing dependencies in Python is very simple!
The second library we will use is requests. If we are going to work with web pages we need something that helps us perform CRUD actions with APIs, so this will be our choice. Again, just install in the terminal with
pip install requests
We will also implement good practices and use environment variables (so that no one discovers our passwords, usernames and other sensitive information in our code), so we will need os and dotenv. os must already be installed by default in python, while dotenv is not, so it's the usual process
pip install dotenv
And last but not least, we need a library to connect to our MySQL database, so let's use mysql.connector
pip install mysql-connector-python
Once we have the development environment configured, just move on to the most fun part of the process, PROGRAMMING!!
We are going to make a project that will be divided into two parts (in terms of code), web scraping and database manipulation, so we will start by creating the web scraping file, which will also be where the main code will go stay, and then we will create a file to place our database manipulation functions. This helps us not only in maintaining the code but also in its reuse.
Create a file called web_scrapper.py in the application directory.
Next, we will import our dependencies that we installed previously.
from bs4 import BeautifulSoup import requests import db_manager import os from dotenv import load_dotenv
From dotenv we will only need the load_dotenv function and therefore we will only import it.
First, let's think about the structure of our code and write what we want each thing to do, step by step, so it's more organized. We want our code to do the following actions:
- Create the web scraper and save the data in variables
- Populate the database with the data we got
- Get the data from the database and put it in a csv file so we can analyze it in Tableau Public
Let's go in parts, the first part we want to create and test is creating the web scraper, so the best way is to start with that!
We are going to use a website made for this type of thing, https://www.scrapethissite.com/, there you will find several types of pages to practice web scraping. We're particularly interested in the beginner model, so let's make a request for that page:
pip install beautifulsoup4
Here we use the requests get method which would be equivalent to CRUD's read, it returns the web page and stores it in its entirety in the variable we created page_countries_area_population.
Then, we need BeautifulSoup to parse the page's HTML so that it can find the information we need. To do this, we will create a variable called soup and call BeaultifulSoup and pass the text of the variable we created to it
pip install requests
This will return the page with the parse and BeautifulSoup methods linked to it within the variable we created, thus making our work easier.
Now we need to identify the information we want to remove from the page, to do this we need to inspect the web page and identify the elements and their patterns within the html document. In this case we see that the country names are inside an h3 tag and with the country-name class, so let's use this to get the country names
pip install dotenv
Here we call the soup we created earlier and call the findAll function which will fetch all instances of country names for us. The first parameter is the html element we are looking for and the second would be its attributes, as they may have other h3 tags that we don't want it to select, in this case we pass the country-name class to identify the elements we want.
We repeat the process for the number of inhabitants and the area of each country
pip install mysql-connector-python
Before passing this data to the database, we will clean it and leave it in a format that prevents unwanted things from entering with it. To do this, I will create a list of tuples to store the data before passing it to the database, as this will make the process easier. Before adding them, however, we need to remove blanks from the country names as well.
from bs4 import BeautifulSoup import requests import db_manager import os from dotenv import load_dotenv
And with that we already have the data we need! We can cross that first task off our list!
In part two of this article I will teach you how to manipulate a database using Python and finish our project?
The above is the detailed content of How to create a beginner project in data analysis. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











Python is suitable for data science, web development and automation tasks, while C is suitable for system programming, game development and embedded systems. Python is known for its simplicity and powerful ecosystem, while C is known for its high performance and underlying control capabilities.

You can learn basic programming concepts and skills of Python within 2 hours. 1. Learn variables and data types, 2. Master control flow (conditional statements and loops), 3. Understand the definition and use of functions, 4. Quickly get started with Python programming through simple examples and code snippets.

Python excels in gaming and GUI development. 1) Game development uses Pygame, providing drawing, audio and other functions, which are suitable for creating 2D games. 2) GUI development can choose Tkinter or PyQt. Tkinter is simple and easy to use, PyQt has rich functions and is suitable for professional development.

You can learn the basics of Python within two hours. 1. Learn variables and data types, 2. Master control structures such as if statements and loops, 3. Understand the definition and use of functions. These will help you start writing simple Python programs.

Python is easier to learn and use, while C is more powerful but complex. 1. Python syntax is concise and suitable for beginners. Dynamic typing and automatic memory management make it easy to use, but may cause runtime errors. 2.C provides low-level control and advanced features, suitable for high-performance applications, but has a high learning threshold and requires manual memory and type safety management.

To maximize the efficiency of learning Python in a limited time, you can use Python's datetime, time, and schedule modules. 1. The datetime module is used to record and plan learning time. 2. The time module helps to set study and rest time. 3. The schedule module automatically arranges weekly learning tasks.

Python is widely used in the fields of web development, data science, machine learning, automation and scripting. 1) In web development, Django and Flask frameworks simplify the development process. 2) In the fields of data science and machine learning, NumPy, Pandas, Scikit-learn and TensorFlow libraries provide strong support. 3) In terms of automation and scripting, Python is suitable for tasks such as automated testing and system management.

Python excels in automation, scripting, and task management. 1) Automation: File backup is realized through standard libraries such as os and shutil. 2) Script writing: Use the psutil library to monitor system resources. 3) Task management: Use the schedule library to schedule tasks. Python's ease of use and rich library support makes it the preferred tool in these areas.
