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
Показати більше📈 Аналітичний огляд Telegram-каналу Data Science & Machine Learning
Канал Data Science & Machine Learning (@datasciencefun) у мовному сегменті Англійська є активним учасником. На даний момент спільнота об'єднує 75 645 підписників, посідаючи 2 114 місце в категорії Освіта та 4 359 місце у регіоні Індія.
📊 Показники аудиторії та динаміка
З моменту свого створення невідомо, проект продемонстрував стрімке зростання, зібравши аудиторію у 75 645 підписників.
За останніми даними від 11 червня, 2026, канал демонструє стабільну активність. Хоча за останні 30 днів спостерігається зміна кількості учасників на 911, а за останні 24 години на 29, загальне охоплення залишається високим.
- Статус верифікації: Не верифікований
- Рівень залученості (ER): Середній показник залученості аудиторії становить 3.63%. Протягом перших 24 годин після публікації контент зазвичай збирає 1.36% реакцій від загальної кількості підписників.
- Охоплення публікацій: В середньому кожен допис отримує 2 747 переглядів. Протягом першої доби публікація в середньому набирає 1 032 переглядів.
- Реакції та взаємодія: Аудиторія активно підтримує контент: середня кількість реакцій на один пост – 5.
- Тематичні інтереси: Контент зосереджений навколо ключових тем, таких як learning, accuracy, distribution, panda, dataset.
📝 Опис та контентна політика
Автор описує ресурс як майданчик для висловлення суб'єктивної думки:
“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”
Завдяки високій частоті оновлень (останні дані отримано 12 червня, 2026), канал підтримує актуальність та високий рівень охоплення публікацій. Аналітика показує, що аудиторія активно взаємодіє з контентом, що робить його важливою точкою впливу в категорії Освіта.
import numpy as np
🔹 2. Creating a NumPy Array
From a List
import numpy as np
arr = np.array([1, 2, 3, 4])
print(arr)
Output:
[1 2 3 4]🔹 3. Check Array Type
print(type(arr))
Output:
<class 'numpy.ndarray'>
🔹 4. NumPy Array Operations
Addition:
import numpy as np
arr = np.array([1, 2, 3])
print(arr + 2)
Output:
[3 4 5]Multiplication:
print(arr * 2)
Output:
[2 4 6]🔹 5. NumPy Built-in Functions
arr = np.array([10, 20, 30, 40])
print(arr.sum())
print(arr.mean())
print(arr.max())
print(arr.min())
Output:
100 25.0 40 10🔹 6. NumPy Array Shape
arr = np.array([[1, 2, 3], [4, 5, 6]])
print(arr.shape)
Output:
(2, 3)Meaning: 2 rows and 3 columns. 🔹 7. Why NumPy is Important? NumPy is the foundation of data science libraries: ✔ Pandas ✔ Scikit-Learn ✔ TensorFlow ✔ PyTorch All these libraries use NumPy internally. 🎯 Today's Goal ✔ Install NumPy ✔ Create arrays ✔ Perform math operations ✔ Understand array shape Double Tap ♥️ For More
print(10 / 0)
Output: ZeroDivisionError
This will crash the program.
🔹 2. Using try–except
We use try–except to handle errors.
Syntax:
try:
# code that may cause error
except:
# code to handle error
Example:
try:
x = 10 / 0
except:
print("Error occurred")
Output: Error occurred
🔹 3. Handling Specific Exceptions
try:
num = int("abc")
except ValueError:
print("Invalid number")
✔ Handles only ValueError.
🔹 4. Using else
else runs if no error occurs.
try:
x = 10 / 2
except:
print("Error")
else:
print("No error")
Output: No error
🔹 5. Using finally
finally always executes.
try:
file = open("data.txt")
except:
print("File not found")
finally:
print("Execution completed")
🔹 6. Common Python Exceptions
• ZeroDivisionError: Division by zero
• ValueError: Invalid value
• TypeError: Wrong data type
• FileNotFoundError: File does not exist
🎯 Today's Goal
✔ Understand exceptions
✔ Use try–except
✔ Handle specific errors
✔ Use else and finally
👉 Exception handling is widely used in data pipelines and production code.
Double Tap ♥️ For Moreopen("filename", "mode")
Example: file = open("data.txt", "r")
👉 "r" → Read mode
🔹 2. File Modes
- "r" → Read file
- "w" → Write file (overwrites existing content)
- "a" → Append file (adds to existing content)
- "r+" → Read and write
🔹 3. Reading a File
- Read Entire File: file.read()
- Read One Line: file.readline()
- Read All Lines: file.readlines()
🔹 4. Writing to a File
file = open("data.txt", "w")
file.write("Hello Data Science")
file.close()
⚠ "w" will overwrite existing content.
🔹 5. Append to File
file = open("data.txt", "a")
file.write("\nNew line added")
file.close()
✔ Adds content without deleting old data.
🔹 6. Best Practice (Very Important ⭐)
Use with statement.
with open("data.txt", "r") as file:
content = file.read()
print(content)
✔ Automatically closes the file.
🔹 7. Why File Handling is Important?
Used for:
✔ Reading datasets
✔ Saving results
✔ Logging machine learning models
✔ Data preprocessing
🎯 Today’s Goal
✔ Understand file modes
✔ Read files
✔ Write files
✔ Use with open()
👉 File handling is used heavily when working with CSV datasets in data science.
Double Tap ♥️ For More
Вже доступно! Дослідження Telegram за 2025 — головні інсайти року 
