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 905 suscriptores, ocupando la posición 8 986 en la categoría Tecnologías y Aplicaciones y el puesto 29 300 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 905 suscriptores.
Según los últimos datos del 25 agosto, 2026, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de 109, 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.77%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 2.06% de reacciones respecto al total de suscriptores.
- Alcance de las publicaciones: Cada publicación recibe en promedio 1 080 visualizaciones. En el primer día suele acumular 287 visualizaciones.
- Reacciones e interacción: La audiencia responde de forma activa: el promedio de reacciones por publicación es 4.
- 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 26 agosto, 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.
$35k, $38k, $42k, $44k, $2.5MMean (average): $531,800 Median (middle value): $42,000 The average suggests everyone is wealthy. The median tells a completely different story. 👉 Whenever your data contains extreme values (called outliers), the median often represents the data much better than the mean. That's why you'll often see median house prices and median income reported in the news.
loc and iloc
Both select data. That's why beginners mix them up.
The simplest way to remember is:
loc → labels
iloc → positions
df.loc[5]means:
Give me the row whose label is 5.On the other hand:
df.iloc[5]means:
Give me the 6th row.Those are not necessarily the same row. Especially after filtering. If your DataFrame index looks like:
0 1 4 7 9then:
df.iloc[2]returns the row at position 2. That's index label 4. This tiny distinction causes a surprising number of bugs.
* retrieves every single column.
🔹 4. Fetch Specific Columns
SELECT full_name, total_spent FROM customers;
🔹 5. WHERE Clause
Used to apply filters to your data.
SELECT * FROM customers WHERE age >= 25;
🔹 6. ORDER BY
Sort your results.
SELECT * FROM customers ORDER BY total_spent DESC;
✔️ ASC → Ascending (Lowest to Highest)
✔️ DESC → Descending (Highest to Lowest)
🔹 7. Aggregate Functions
Used for summary statistics.
Function: COUNT()
Purpose: Counts the number of rows
Function: SUM()
Purpose: Adds values together
Function: AVG()
Purpose: Finds the mean value
Function: MAX()
Purpose: Finds the highest value
Function: MIN()
Purpose: Finds the lowest value
✅ Example
SELECT AVG(total_spent) FROM customers;
🔹 8. GROUP BY
Used to categorize data into buckets.
SELECT country, SUM(total_spent) FROM customers GROUP BY country;
🔹 9. Why SQL is Critical?
✔️ #1 requested technical skill in job descriptions
✔️ Used daily by analysts, data engineers, & data scientists
✔️ Scales seamlessly with massive enterprise datasetsCat: 51% Dog: 49%Prediction B
Cat: 99.9% Dog: 0.1%Accuracy treats them exactly the same. Cross Entropy doesn't. It rewards confidence only when the model is correct. If the true class is "Cat": Prediction A gets a relatively high loss. Prediction B gets a very small loss. Now flip the prediction.
Cat: 0.1% Dog: 99.9%The loss explodes. That's because Cross Entropy isn't asking:
Did you get it right?It's asking:
How confident were you in the correct answer?That's why neural networks optimize Cross Entropy instead of accuracy. Accuracy is too coarse to guide learning.
