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
Ko'proq ko'rsatish๐ Telegram kanali Data Science & Machine Learning analitikasi
Data Science & Machine Learning (@datasciencefun) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 75 747 obunachidan iborat bo'lib, Taสผlim toifasida 2 116-o'rinni va Hindiston mintaqasida 4 343-o'rinni egallagan.
๐ Auditoriya koโrsatkichlari va dinamika
ะฝะตะฒัะดะพะผะพ sanasidan buyon loyiha tez oโsib, 75 747 obunachiga ega boโldi.
13 Iyun, 2026 dagi oxirgi maโlumotlarga koโra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni 954 ga, soโnggi 24 soatda esa 41 ga oโzgardi va umumiy qamrov yuqori darajada qolmoqda.
- Tasdiqlash holati: Tasdiqlanmagan
- Jalb etish (ER): Auditoriya oโrtacha 3.60% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 1.39% ini tashkil etuvchi reaksiyalarni toโplaydi.
- Post qamrovi: Har bir post oโrtacha 2 725 marta koโriladi; birinchi sutkada odatda 1 053 ta koโrish yigโiladi.
- Reaksiyalar va oโzaro taโsir: Auditoriya faol: har bir postga oโrtacha 5 ta reaksiya keladi.
- Tematik yoโnalishlar: Kontent learning, accuracy, distribution, panda, dataset kabi asosiy mavzularga jamlangan.
๐ Tavsif va kontent siyosati
Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida taโriflaydi:
โ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โ
Yuqori yangilanish chastotasi (oxirgi maโlumot 14 Iyun, 2026 da olingan) sababli kanal doimo dolzarb va katta qamrovli boโlib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Taสผlim toifasidagi muhim taโsir nuqtasiga aylantirishini koโrsatadi.
SELECT, JOIN, GROUP BY, WHERE) to retrieve relevant data from databases.
6๏ธโฃ Build Strong Programming Skills
Python (Pandas, NumPy, Scikit-learn) and R are essential for data manipulation and analysis.
7๏ธโฃ Understand Machine Learning Basics
Know key algorithmsโlinear regression, decision trees, random forests, and clusteringโto develop predictive models.
8๏ธโฃ Learn Dashboarding & Storytelling
Power BI and Tableau help convert raw data into actionable insights for stakeholders.
๐ฅ Pro Tip: Always cross-check your results with different techniques to ensure accuracy!๐ฉโ๐ผ: โWe want to decrease user churn by 5% this quarterโWe say that a user churns when she decides to stop using Uber. But why? There are different reasons why a user would stop using Uber. For example: 1. โLyft is offering better prices for that geoโ (pricing problem) 2. โCar waiting times are too longโ (supply problem) 3. โThe Android version of the app is very slowโ (client-app performance problem) You build this list โ by asking the right questions to the rest of the team. You need to understand the userโs experience using the app, from HER point of view. Typically there is no single reason behind churn, but a combination of a few of these. The question is: which one should you focus on? This is when you pull out your great data science skills and EXPLORE THE DATA ๐. You explore the data to understand how plausible each of the above explanations is. The output from this analysis is a single hypothesis you should consider further. Depending on the hypothesis, you will solve the data science problem differently. For exampleโฆ Scenario 1: โLyft Is Offering Better Pricesโ (Pricing Problem) One solution would be to detect/predict the segment of users who are likely to churn (possibly using an ML Model) and send personalized discounts via push notifications. To test your solution works, you will need to run an A/B test, so you will split a percentage of Uber users into 2 groups: The A group. No user in this group will receive any discount. The B group. Users from this group that the model thinks are likely to churn, will receive a price discount in their next trip. You could add more groups (e.g. C, D, Eโฆ) to test different pricing points.
In a nutshell1. Translating business problems into data science problems is the key data science skill that separates a senior from a junior data scientist. 2. Ask the right questions, list possible solutions, and explore the data to narrow down the list to one. 3. Solve this one data science problem
CREATE DATABASE db_name;
- USE db_name;
2. Tables
- Create Table: CREATE TABLE table_name (col1 datatype, col2 datatype);
- Drop Table: DROP TABLE table_name;
- Alter Table: ALTER TABLE table_name ADD column_name datatype;
3. Insert Data
- INSERT INTO table_name (col1, col2) VALUES (val1, val2);
4. Select Queries
- Basic Select: SELECT * FROM table_name;
- Select Specific Columns: SELECT col1, col2 FROM table_name;
- Select with Condition: SELECT * FROM table_name WHERE condition;
5. Update Data
- UPDATE table_name SET col1 = value1 WHERE condition;
6. Delete Data
- DELETE FROM table_name WHERE condition;
7. Joins
- Inner Join: SELECT * FROM table1 INNER JOIN table2 ON table1.col = table2.col;
- Left Join: SELECT * FROM table1 LEFT JOIN table2 ON table1.col = table2.col;
- Right Join: SELECT * FROM table1 RIGHT JOIN table2 ON table1.col = table2.col;
8. Aggregations
- Count: SELECT COUNT(*) FROM table_name;
- Sum: SELECT SUM(col) FROM table_name;
- Group By: SELECT col, COUNT(*) FROM table_name GROUP BY col;
9. Sorting & Limiting
- Order By: SELECT * FROM table_name ORDER BY col ASC|DESC;
- Limit Results: SELECT * FROM table_name LIMIT n;
10. Indexes
- Create Index: CREATE INDEX idx_name ON table_name (col);
- Drop Index: DROP INDEX idx_name;
11. Subqueries
- SELECT * FROM table_name WHERE col IN (SELECT col FROM other_table);
12. Views
- Create View: CREATE VIEW view_name AS SELECT * FROM table_name;
- Drop View: DROP VIEW view_name;
Endi mavjud! Telegram Tadqiqoti 2025 โ yilning asosiy insaytlari 
