Data Science & Machine Learning
Join this channel to learn data science, artificial intelligence and machine learning with funny quizzes, interesting projects and amazing resources for free For collaborations: @love_data
Mostrar más📈 Análisis del canal de Telegram Data Science & Machine Learning
El canal Data Science & Machine Learning (@datasciencefun) en el segmento lingüístico de Inglés es un actor destacado. Actualmente la comunidad reúne a 75 676 suscriptores, ocupando la posición 2 114 en la categoría Educación y el puesto 4 348 en la región India.
📊 Métricas de audiencia y dinámica
Desde su creación el невідомо, el proyecto ha mostrado un crecimiento acelerado, reuniendo a 75 676 suscriptores.
Según los últimos datos del 12 junio, 2026, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de 923, y en las últimas 24 horas de 31, conservando un alto alcance.
- Estado de verificación: No verificado
- Tasa de interacción (ER): El promedio de interacción de la audiencia es 3.63%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 1.36% de reacciones respecto al total de suscriptores.
- Alcance de las publicaciones: Cada publicación recibe en promedio 2 744 visualizaciones. En el primer día suele acumular 1 026 visualizaciones.
- Reacciones e interacción: La audiencia responde de forma activa: el promedio de reacciones por publicación es 5.
- Intereses temáticos: El contenido se centra en temas clave como learning, accuracy, distribution, panda, dataset.
📝 Descripción y política de contenido
El autor describe el recurso como un espacio para expresar opiniones subjetivas:
“Join this channel to learn data science, artificial intelligence and machine learning with funny quizzes, interesting projects and amazing resources for free
For collaborations: @love_data”
Gracias a la alta frecuencia de actualizaciones (últimos datos recibidos el 13 junio, 2026), el canal mantiene la vigencia y un amplio alcance. La analítica demuestra que la audiencia interactúa activamente con el contenido, lo que lo convierte en un punto de referencia dentro de la categoría Educación.
matplotlib.pyplot – Basic plots
⦁ seaborn – Cleaner, statistical plots
1️⃣ Line Chart – to show trends over time
import matplotlib.pyplot as plt
days = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri']
sales = [200, 450, 300, 500, 650]
plt.plot(days, sales, marker='o')
plt.title('Daily Sales')
plt.xlabel('Day')
plt.ylabel('Sales')
plt.grid(True)
plt.show()
2️⃣ Bar Chart – compare categories
products = ['A', 'B', 'C', 'D']
revenue = [1000, 1500, 700, 1200]
plt.bar(products, revenue, color='skyblue')
plt.title('Revenue by Product')
plt.xlabel('Product')
plt.ylabel('Revenue')
plt.show()
3️⃣ Pie Chart – show proportions
labels = ['iOS', 'Android', 'Others']
market_share = [40, 55, 5]
plt.pie(market_share, labels=labels, autopct='%1.1f%%', startangle=140)
plt.title('Mobile OS Market Share')
plt.axis('equal') # perfect circle
plt.show()
4️⃣ Histogram – frequency distribution
ages = [22, 25, 27, 30, 32, 35, 35, 40, 45, 50, 52, 60]
plt.hist(ages, bins=5, color='green', edgecolor='black')
plt.title('Age Distribution')
plt.xlabel('Age Groups')
plt.ylabel('Frequency')
plt.show()
5️⃣ Scatter Plot – relationship between variables
income = [30, 35, 40, 45, 50, 55, 60]
spending = [20, 25, 30, 32, 35, 40, 42]
plt.scatter(income, spending, color='red')
plt.title('Income vs Spending')
plt.xlabel('Income (k)')
plt.ylabel('Spending (k)')
plt.show()
6️⃣ Heatmap – correlation matrix (with Seaborn)
import seaborn as sns
import pandas as pd
data = {'Math': [90, 80, 85, 95],
'Science': [85, 89, 92, 88],
'English': [78, 75, 80, 85]}
df = pd.DataFrame(data)
corr = df.corr()
sns.heatmap(corr, annot=True, cmap='coolwarm')
plt.title('Subject Score Correlation')
plt.show()
————————
💡 Pro Tip: Customize titles, labels & colors for clarity and audience style!CALENDAR
- DATEDIFF
- TODAY, DAY, MONTH, QUARTER, YEAR
AGGREGATE FUNCTIONS:
- SUM, SUMX, PRODUCT
- AVERAGE
- MIN, MAX
- COUNT
- COUNTROWS
- COUNTBLANK
- DISTINCTCOUNT
FILTER FUNCTIONS:
- CALCULATE
- FILTER
- ALL, ALLEXCEPT, ALLSELECTED, REMOVEFILTERS
- SELECTEDVALUE
TIME INTELLIGENCE FUNCTIONS:
- DATESBETWEEN
- DATESMTD, DATESQTD, DATESYTD
- SAMEPERIODLASTYEAR
- PARALLELPERIOD
- TOTALMTD, TOTALQTD, TOTALYTD
TEXT FUNCTIONS:
- CONCATENATE
- FORMAT
- LEN, LEFT, RIGHT
INFORMATION FUNCTIONS:
- HASONEVALUE, HASONEFILTER
- ISBLANK, ISERROR, ISEMPTY
- CONTAINS
LOGICAL FUNCTIONS:
- AND, OR, IF, NOT
- TRUE, FALSE
- SWITCH
RELATIONSHIP FUNCTIONS:
- RELATED
- USERRELATIONSHIP
- RELATEDTABLE
Remember, DAX is more about logic than the formulas.[1, 2, 3, 4]
import numpy as np
a = np.array([1, 2, 3, 4])
➤ 2. Why NumPy over normal lists?
Faster for math operations:
a * 2 # array([2, 4, 6, 8])
➤ 3. Cool NumPy tricks:
a.mean() # average
np.max(a) # max number
np.min(a) # min number
a[0:2] # slicing → [1, 2]
Key Topics:
⦁ Arrays are like faster, memory-efficient lists
⦁ Element-wise operations: a + b, a * 2
⦁ Slicing and indexing: a[0:2], a[:,1]
⦁ Broadcasting: operations on arrays with different shapes
⦁ Useful functions: np.mean(), np.std(), np.linspace(), np.random.randn()
————————
📊 Step 2: Learn Pandas (for tables like Excel)
What is Pandas?
Python tool to read, clean & analyze data — like Excel but supercharged.
➤ 1. What’s a DataFrame?
Like an Excel sheet, rows & columns.
import pandas as pd
df = pd.read_csv("sales.csv")
df.head() # first 5 rows
➤ 2. Check data info:
df.info() # rows, columns, missing data
df.describe() # stats like mean, min, max
➤ 3. Get a column:
df['product']
➤ 4. Filter rows:
df[df['price'] > 100]
➤ 5. Group data:
Average price by category:
df.groupby('category')['price'].mean()
➤ 6. Merge datasets:
merged = pd.merge(df1, df2, on='customer_id')
➤ 7. Handle missing data:
df.isnull() # where missing
df.dropna() # drop missing rows
df.fillna(0) # fill missing with 0
————————
💡 Beginner Tips:
⦁ Use Google Colab (free, no setup)
⦁ Try small tasks like:
⦁ Show top products
⦁ Filter sales > $500
⦁ Find missing data
⦁ Practice daily, don’t just memorize
————————
🛠️ Mini Project: Analyze Sales Data
1. Load a CSV
2. Check number of rows
3. Find best-selling product
4. Calculate total revenue
5. Get average sales per region
Double Tap ♥️ For More
¡Ya disponible! Investigación de Telegram 2025 — los principales insights del año 
