Data science/ML/AI
Data science and machine learning hub Python, SQL, stats, ML, deep learning, projects, PDFs, roadmaps and AI resources. For beginners, data scientists and ML engineers 👉 https://rebrand.ly/bigdatachannels DMCA: @disclosure_bds Contact: @mldatascientist
Mostrar más📈 Análisis del canal de Telegram Data science/ML/AI
El canal Data science/ML/AI (@datascience_bds) en el segmento lingüístico de Inglés es un actor destacado. Actualmente la comunidad reúne a 13 663 suscriptores, ocupando la posición 9 387 en la categoría Tecnologías y Aplicaciones y el puesto 31 771 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 13 663 suscriptores.
Según los últimos datos del 05 junio, 2026, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de 171, y en las últimas 24 horas de 1, conservando un alto alcance.
- Estado de verificación: No verificado
- Tasa de interacción (ER): El promedio de interacción de la audiencia es 7.95%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 2.46% de reacciones respecto al total de suscriptores.
- Alcance de las publicaciones: Cada publicación recibe en promedio 1 086 visualizaciones. En el primer día suele acumular 336 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 panda, learning, row, api, ethic.
📝 Descripción y política de contenido
El autor describe el recurso como un espacio para expresar opiniones subjetivas:
“Data science and machine learning hub
Python, SQL, stats, ML, deep learning, projects, PDFs, roadmaps and AI resources.
For beginners, data scientists and ML engineers
👉 https://rebrand.ly/bigdatachannels
DMCA: @disclosure_bds
Contact: @mldatasci...”
Gracias a la alta frecuencia de actualizaciones (últimos datos recibidos el 06 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 Tecnologías y Aplicaciones.
import matplotlib.pyplot as plt
# Days of the week
days = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
# Coffee cups consumed
cups = [2, 3, 4, 1, 5, 6, 3]
plt.bar(days, cups, color='brown')
plt.title('Weekly Coffee Consumption')
plt.xlabel('Days')
plt.ylabel('Cups of Coffee')
plt.show()
With this simple code, you’ve transformed boring numbers into a visual that tells a story about your caffeine habits!
▎Conclusion
Data visualization isn’t just about making pretty pictures; it’s about making data accessible and understandable. It helps you tell stories that resonate with your audience and empowers them to make decisions based on insights rather than just raw numbers. So next time you have data to share, think about how you can visualize it, your audience will thank you!scikit-learn library to perform linear regression:
import numpy as np
import matplotlib.pyplot as plt
from sklearn.model_selection import train_test_split
from sklearn.linear_model import LinearRegression
# Sample data
X = np.array([[1], [2], [3], [4], [5]])
y = np.array([2, 3, 5, 7, 11])
# Split data into training and test sets
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
# Create and train the model
model = LinearRegression()
model.fit(X_train, y_train)
# Make predictions
predictions = model.predict(X_test)
# Plot results
plt.scatter(X, y, color='blue', label='Data Points')
plt.plot(X_test, predictions, color='red', label='Predicted Line')
plt.legend()
plt.show()(TP+TN) / Total - Avoid for imbalanced data!
• Precision: TP / (TP + FP)
• Meaning: Out of all times it said "Positive," how many were truly positive?
• Use When: False Positives (FP) are very costly (e.g., wrongly flagging a healthy person as sick).
• Recall: TP / (TP + FN)
• Meaning: Out of all actual positives, how many did it catch?
• Use When: False Negatives (FN) are very costly (e.g., missing a real fraud, not detecting a tumor).
• F1-Score: Balances Precision and Recall.
🐍 Code Example: The 99% Accurate Lie
from sklearn.metrics import accuracy_score, precision_score, recall_score
import numpy as np
y_true = np.concatenate([np.zeros(990), np.ones(10)]) # 1000 samples, 1% positive
# Model 1: Always predicts '0' (no disease)
y_pred_bad = np.zeros(1000)
print(f"Model 1 (Always No Disease):\n Accuracy: {accuracy_score(y_true, y_pred_bad):.2f}")
print(f" Precision: {precision_score(y_true, y_pred_bad, zero_division=0):.2f}") # 0.00!
print(f" Recall: {recall_score(y_true, y_pred_bad):.2f}\n") # 0.00!
# Model 2: Catches 5 positives, 2 false alarms (Better!)
y_pred_better = np.zeros(1000)
y_pred_better[990:995] = 1 # 5 True Positives
y_pred_better[100:102] = 1 # 2 False Positives
print(f"Model 2 (Actually Catches Some):\n Accuracy: {accuracy_score(y_true, y_pred_better):.2f}")
print(f" Precision: {precision_score(y_true, y_pred_better, zero_division=0):.2f}") # 0.71
print(f" Recall: {recall_score(y_true, y_pred_better):.2f}") # 0.50
# Model 2's accuracy might be slightly lower, but its Precision/Recall shows it's far superior!
🎯 Today's Goal (What you should do)
✔️ Recognize accuracy's flaw for imbalanced data.
✔️ Pick Precision when False Positives hurt most.
✔️ Pick Recall when False Negatives hurt most.
✔️ Understand what your model's mistakes truly cost.Pandas, NumPy, scikit-learn, and TensorFlow for machine learning, as well as Tableau and Matplotlib for data visualization. Online courses, tutorials, and coding bootcamps can provide structured learning paths.
2. Identify Your Niche
Data science spans various industries, including healthcare, finance, marketing, and technology. Explore these fields to determine where your interests lie. Understanding the specific challenges and data types in your chosen industry will help you tailor your learning and make you more effective in your future role.
3. Build a Strong Portfolio
Start working on small projects that demonstrate your skills and knowledge. These could include data analysis tasks, machine learning models, or visualizations based on publicly available datasets. Use platforms like GitHub to showcase your work, and consider writing blog posts or creating presentations to explain your projects. A well-rounded portfolio not only highlights your technical capabilities but also reflects your problem-solving approach.
4. Engage with the Community
Join data science communities online (like Kaggle, Stack Overflow, or LinkedIn groups) to connect with professionals in the field. Participating in discussions, attending webinars, and contributing to open-source projects can enhance your learning experience and expand your network.
5. Pursue Continuous Learning
Data science is an ever-evolving field, so staying updated with the latest trends, techniques, and tools is crucial. Follow relevant blogs, podcasts, and research papers. Consider pursuing advanced certifications or degrees to deepen your expertise.
6. Gain Practical Experience
Look for internships, volunteer opportunities, or part-time positions that allow you to apply your skills in real-world scenarios. Practical experience will not only reinforce your learning but also give you insights into the day-to-day responsibilities of a data scientist.
By following these steps, you can build a solid foundation in data science and position yourself for success in this dynamic and rewarding field.import pandas as pd
# Data: [Successes, Total Attempts]
data = {
'Hospital': ['A', 'A', 'B', 'B'],
'Case_Type': ['Easy', 'Hard', 'Easy', 'Hard'],
'Survived': [95, 10, 90, 70],
'Total': [100, 100, 100, 1000]
}
df = pd.DataFrame(data)
# 1. Check rates per group
df['Rate'] = df['Survived'] / df['Total']
print("--- Rates by Group ---")
print(df[['Hospital', 'Case_Type', 'Rate']])
# 2. Check overall rates
overall = df.groupby('Hospital').sum()
overall['Overall_Rate'] = overall['Survived'] / overall['Total']
print("\n--- Overall Rates (The Paradox!) ---")
print(overall['Overall_Rate'])
The Result:
• A is better at Easy (95% vs 90%).
• A is better at Hard (10% vs 7%).
• BUT... Overall, B wins (14% vs 52%) because B mostly did "Easy" cases.
🛠 How to avoid being fooled?
1. Don't trust the aggregate: When analyzing data, always try to "segment" or "drill down" into sub-groups.
2. Look for the Weight: Ask yourself: "Is one group disproportionately represented in the total?"
3. Identify the Lurking Variable: What context is missing? (e.g., Age, Severity, Time of Day).
🎯 The Takeaway
In Data Science, the "Big Picture" can sometimes be a big lie. If your analysis produces a result that defies logic, you might be looking at a Simpson’s Paradox. Always slice your data before you trust it.
¡Ya disponible! Investigación de Telegram 2025 — los principales insights del año 
