๐๐ฆ๐ฉ๐จ๐ซ๐ญ๐ข๐ง๐ ๐๐๐๐๐ฌ๐ฌ๐๐ซ๐ฒ ๐๐ข๐๐ซ๐๐ซ๐ข๐๐ฌ:
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
๐๐จ๐๐๐ข๐ง๐ ๐ญ๐ก๐ ๐๐๐ญ๐๐ฌ๐๐ญ:
df = pd.read_csv('your_dataset.csv')
๐๐ง๐ข๐ญ๐ข๐๐ฅ ๐๐๐ญ๐ ๐๐ง๐ฌ๐ฉ๐๐๐ญ๐ข๐จ๐ง:
1- View the first few rows:
df.head()
2- Summary of the dataset:
df.info()
3- Statistical summary:
df.describe()
๐๐๐ง๐๐ฅ๐ข๐ง๐ ๐๐ข๐ฌ๐ฌ๐ข๐ง๐ ๐๐๐ฅ๐ฎ๐๐ฌ:
1- Identify missing values:
df.isnull().sum()
2- Visualize missing values:
sns.heatmap(df.isnull(), cbar=False, cmap='viridis')
plt.show()
๐๐๐ญ๐ ๐๐ข๐ฌ๐ฎ๐๐ฅ๐ข๐ณ๐๐ญ๐ข๐จ๐ง:
1- Histograms:
df.hist(bins=30, figsize=(20, 15))
plt.show()
2 - Box plots:
plt.figure(figsize=(10, 6))
sns.boxplot(data=df)
plt.xticks(rotation=90)
plt.show()
3- Pair plots:
sns.pairplot(df)
plt.show()
4- Correlation matrix and heatmap:
correlation_matrix = df.corr()
plt.figure(figsize=(12, 8))
sns.heatmap(correlation_matrix, annot=True, cmap='coolwarm')
plt.show()
๐๐๐ญ๐๐ ๐จ๐ซ๐ข๐๐๐ฅ ๐๐๐ญ๐ ๐๐ง๐๐ฅ๐ฒ๐ฌ๐ข๐ฌ:
Count plots for categorical features:
plt.figure(figsize=(10, 6))
sns.countplot(x='categorical_column', data=df)
plt.show()
Python Interview Q&A: https://whatsapp.com/channel/0029Vau5fZECsU9HJFLacm2a
Like for more โค๏ธ
ENJOY LEARNING ๐๐
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
๐๐จ๐๐๐ข๐ง๐ ๐ญ๐ก๐ ๐๐๐ญ๐๐ฌ๐๐ญ:
df = pd.read_csv('your_dataset.csv')
๐๐ง๐ข๐ญ๐ข๐๐ฅ ๐๐๐ญ๐ ๐๐ง๐ฌ๐ฉ๐๐๐ญ๐ข๐จ๐ง:
1- View the first few rows:
df.head()
2- Summary of the dataset:
df.info()
3- Statistical summary:
df.describe()
๐๐๐ง๐๐ฅ๐ข๐ง๐ ๐๐ข๐ฌ๐ฌ๐ข๐ง๐ ๐๐๐ฅ๐ฎ๐๐ฌ:
1- Identify missing values:
df.isnull().sum()
2- Visualize missing values:
sns.heatmap(df.isnull(), cbar=False, cmap='viridis')
plt.show()
๐๐๐ญ๐ ๐๐ข๐ฌ๐ฎ๐๐ฅ๐ข๐ณ๐๐ญ๐ข๐จ๐ง:
1- Histograms:
df.hist(bins=30, figsize=(20, 15))
plt.show()
2 - Box plots:
plt.figure(figsize=(10, 6))
sns.boxplot(data=df)
plt.xticks(rotation=90)
plt.show()
3- Pair plots:
sns.pairplot(df)
plt.show()
4- Correlation matrix and heatmap:
correlation_matrix = df.corr()
plt.figure(figsize=(12, 8))
sns.heatmap(correlation_matrix, annot=True, cmap='coolwarm')
plt.show()
๐๐๐ญ๐๐ ๐จ๐ซ๐ข๐๐๐ฅ ๐๐๐ญ๐ ๐๐ง๐๐ฅ๐ฒ๐ฌ๐ข๐ฌ:
Count plots for categorical features:
plt.figure(figsize=(10, 6))
sns.countplot(x='categorical_column', data=df)
plt.show()
Python Interview Q&A: https://whatsapp.com/channel/0029Vau5fZECsU9HJFLacm2a
Like for more โค๏ธ
ENJOY LEARNING ๐๐
โค9
๐ ๐๐ฒ๐ฐ๐ผ๐บ๐ฒ ๐ฎ๐ป ๐๐ด๐ฒ๐ป๐๐ถ๐ฐ ๐๐ ๐๐ฒ๐๐ฒ๐น๐ผ๐ฝ๐ฒ๐ฟ โ ๐๐ฟ๐ฒ๐ฒ ๐๐ฒ๐ฟ๐๐ถ๐ณ๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ
Master the hottest skill in tech: building intelligent AI systems that think and act independently.
Join Ready Tensorโs free, hands-on program to create three portfolio-grade projects: RAG systems โ Multi-agent workflows โ Production deployment.
๐๐ฎ๐ฟ๐ป ๐ฝ๐ฟ๐ผ๐ณ๐ฒ๐๐๐ถ๐ผ๐ป๐ฎ๐น ๐ฐ๐ฒ๐ฟ๐๐ถ๐ณ๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป and ๐ด๐ฒ๐ ๐ป๐ผ๐๐ถ๐ฐ๐ฒ๐ฑ ๐ฏ๐ ๐๐ผ๐ฝ ๐๐ ๐ฒ๐บ๐ฝ๐น๐ผ๐๐ฒ๐ฟ๐.
๐๐ฟ๐ฒ๐ฒ. ๐ฆ๐ฒ๐น๐ณ-๐ฝ๐ฎ๐ฐ๐ฒ๐ฑ. ๐๐ฎ๐ฟ๐ฒ๐ฒ๐ฟ-๐ฐ๐ต๐ฎ๐ป๐ด๐ถ๐ป๐ด.
๐ Join today: https://go.readytensor.ai/cert-597-agentic-ai-certification
Double Tap โค๏ธ for more free courses
Master the hottest skill in tech: building intelligent AI systems that think and act independently.
Join Ready Tensorโs free, hands-on program to create three portfolio-grade projects: RAG systems โ Multi-agent workflows โ Production deployment.
๐๐ฎ๐ฟ๐ป ๐ฝ๐ฟ๐ผ๐ณ๐ฒ๐๐๐ถ๐ผ๐ป๐ฎ๐น ๐ฐ๐ฒ๐ฟ๐๐ถ๐ณ๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป and ๐ด๐ฒ๐ ๐ป๐ผ๐๐ถ๐ฐ๐ฒ๐ฑ ๐ฏ๐ ๐๐ผ๐ฝ ๐๐ ๐ฒ๐บ๐ฝ๐น๐ผ๐๐ฒ๐ฟ๐.
๐๐ฟ๐ฒ๐ฒ. ๐ฆ๐ฒ๐น๐ณ-๐ฝ๐ฎ๐ฐ๐ฒ๐ฑ. ๐๐ฎ๐ฟ๐ฒ๐ฒ๐ฟ-๐ฐ๐ต๐ฎ๐ป๐ด๐ถ๐ป๐ด.
๐ Join today: https://go.readytensor.ai/cert-597-agentic-ai-certification
Double Tap โค๏ธ for more free courses
โค5
๐จโ๐ป FREE Resources to Learn & Practice Python
1. https://www.freecodecamp.org/learn/data-analysis-with-python/#data-analysis-with-python-course
2. https://www.hackerrank.com/domains/python
3. https://www.hackerearth.com/practice/python/getting-started/numbers/practice-problems/
4. https://learnpython.org/
5. https://www.w3schools.com/python/python_exercises.asp
6. https://t.iss.one/pythonfreebootcamp/134
7. https://t.iss.one/pythonanalyst/26
8. https://pythonbasics.org/exercises/
9. https://t.iss.one/pythondevelopersindia/300
10. https://docs.python.org/3/
11. https://t.iss.one/pythonspecialist/33
Join @free4unow_backup for more free resources
ENJOY LEARNING ๐๐
1. https://www.freecodecamp.org/learn/data-analysis-with-python/#data-analysis-with-python-course
2. https://www.hackerrank.com/domains/python
3. https://www.hackerearth.com/practice/python/getting-started/numbers/practice-problems/
4. https://learnpython.org/
5. https://www.w3schools.com/python/python_exercises.asp
6. https://t.iss.one/pythonfreebootcamp/134
7. https://t.iss.one/pythonanalyst/26
8. https://pythonbasics.org/exercises/
9. https://t.iss.one/pythondevelopersindia/300
10. https://docs.python.org/3/
11. https://t.iss.one/pythonspecialist/33
Join @free4unow_backup for more free resources
ENJOY LEARNING ๐๐
โค4
Hi guys,
Now you can directly find job opportunities on WhatsApp. Here is the list of top job related channels on WhatsApp ๐
Latest Jobs & Internship Opportunities: https://whatsapp.com/channel/0029VaI5CV93AzNUiZ5Tt226
Python & AI Jobs: https://whatsapp.com/channel/0029VaxtmHsLikgJ2VtGbu1R
Software Engineer Jobs: https://whatsapp.com/channel/0029VatL9a22kNFtPtLApJ2L
Data Science Jobs: https://whatsapp.com/channel/0029VaxTMmQADTOA746w7U2P
Data Analyst Jobs: https://whatsapp.com/channel/0029Vaxjq5a4dTnKNrdeiZ0J
Web Developer Jobs: https://whatsapp.com/channel/0029Vb1raTiDjiOias5ARu2p
Remote Jobs: https://whatsapp.com/channel/0029Vb1RrFuC1Fu3E0aiac2E
Google Jobs: https://whatsapp.com/channel/0029VaxngnVInlqV6xJhDs3m
Hope it helps :)
Now you can directly find job opportunities on WhatsApp. Here is the list of top job related channels on WhatsApp ๐
Latest Jobs & Internship Opportunities: https://whatsapp.com/channel/0029VaI5CV93AzNUiZ5Tt226
Python & AI Jobs: https://whatsapp.com/channel/0029VaxtmHsLikgJ2VtGbu1R
Software Engineer Jobs: https://whatsapp.com/channel/0029VatL9a22kNFtPtLApJ2L
Data Science Jobs: https://whatsapp.com/channel/0029VaxTMmQADTOA746w7U2P
Data Analyst Jobs: https://whatsapp.com/channel/0029Vaxjq5a4dTnKNrdeiZ0J
Web Developer Jobs: https://whatsapp.com/channel/0029Vb1raTiDjiOias5ARu2p
Remote Jobs: https://whatsapp.com/channel/0029Vb1RrFuC1Fu3E0aiac2E
Google Jobs: https://whatsapp.com/channel/0029VaxngnVInlqV6xJhDs3m
Hope it helps :)
โค6