Data Science Jupyter Notebooks – Telegram
Data Science Jupyter Notebooks
12K subscribers
293 photos
46 videos
9 files
903 links
Explore the world of Data Science through Jupyter Notebooks—insights, tutorials, and tools to boost your data journey. Code, analyze, and visualize smarter with every post.
Download Telegram
🔥 Trending Repository: ChatGPT-Micro-Cap-Experiment

📝 Denoscription: This repo powers my experiment where ChatGPT manages a real-money micro-cap stock portfolio.

🔗 Repository URL: https://github.com/LuckyOne7777/ChatGPT-Micro-Cap-Experiment

📖 Readme: https://github.com/LuckyOne7777/ChatGPT-Micro-Cap-Experiment#readme

📊 Statistics:
🌟 Stars: 7K stars
👀 Watchers: 189
🍴 Forks: 1.5K forks

💻 Programming Languages: Python - HTML - JavaScript - CSS - Makefile

🏷️ Related Topics: Not available

==================================
🧠 By: https://news.1rj.ru/str/DataScienceM
🔥 Trending Repository: introduction-to-bash-noscripting

📝 Denoscription: Free Introduction to Bash Scripting eBook

🔗 Repository URL: https://github.com/bobbyiliev/introduction-to-bash-noscripting

🌐 Website: https://leanpub.com/b/linux-devops-ebook-bundle

📖 Readme: https://github.com/bobbyiliev/introduction-to-bash-noscripting#readme

📊 Statistics:
🌟 Stars: 5.3K stars
👀 Watchers: 65
🍴 Forks: 567 forks

💻 Programming Languages: HTML - PHP - CSS - JavaScript

🏷️ Related Topics:
#bash #devops #ebook #bash_noscript #hacktoberfest #100daysofcode #bash_noscripting #introduction_to_bash_noscripting


==================================
🧠 By: https://news.1rj.ru/str/DataScienceM
Data Science Jupyter Notebooks
OnSpace Mobile App builder: Build AI Apps in minutes Visit website: https://www.onspace.ai/?via=tg_datas Or Download app:https://onspace.onelink.me/za8S/h1jb6sb9?c=datas With OnSpace, you can build website or AI Mobile Apps by chatting with AI, and publish…
A great app for building and programming desktop, Android, and Telegram bots using only prompts

Just send what you want and it will design everything for you and the possibility to make money from your app 👍
🔥 Trending Repository: memvid

📝 Denoscription: Memory layer for AI Agents. Replace complex RAG pipelines with a serverless, single-file memory layer. Give your agents instant retrieval and long-term memory.

🔗 Repository URL: https://github.com/memvid/memvid

🌐 Website: https://www.memvid.com

📖 Readme: https://github.com/memvid/memvid#readme

📊 Statistics:
🌟 Stars: 11.2K stars
👀 Watchers: 86
🍴 Forks: 942 forks

💻 Programming Languages: Rust

🏷️ Related Topics:
#python #nlp #opencv #machine_learning #embedded #ai #offline_first #memory #context #knowledge_graph #video_processing #knowledge_base #semantic_search #faiss #rag #vector_database #llm #mv2 #retrieval_augmented_generation #memvid


==================================
🧠 By: https://news.1rj.ru/str/DataScienceM
🔥 Trending Repository: YTPro

📝 Denoscription: Youtube client with older Android version support, background player, Google Gemini and many more features.

🔗 Repository URL: https://github.com/prateek-chaubey/YTPro

🌐 Website: https://prateek.is-a.dev/YTPro

📖 Readme: https://github.com/prateek-chaubey/YTPro#readme

📊 Statistics:
🌟 Stars: 1.3K stars
👀 Watchers: 23
🍴 Forks: 117 forks

💻 Programming Languages: JavaScript - Java

🏷️ Related Topics:
#youtube #gemini #youtube_downloader #ytdl #youtube_player #node_ytdl_core #youtube_downloader_android #ytdl_core #yt_viewer #yt_dlp #yt_adskip #youtube_vanced #youtube_dislikes #ytpro #generative_ai #yt_views_bot #youtube_adblock


==================================
🧠 By: https://news.1rj.ru/str/DataScienceM
🔥 Trending Repository: MiroThinker

📝 Denoscription: MiroThinker is a series of open-source search agent designed to advance tool-augmented reasoning and information-seeking capabilities.

🔗 Repository URL: https://github.com/MiroMindAI/MiroThinker

🌐 Website: https://miromind.ai/

📖 Readme: https://github.com/MiroMindAI/MiroThinker#readme

📊 Statistics:
🌟 Stars: 2.4K stars
👀 Watchers: 37
🍴 Forks: 165 forks

💻 Programming Languages: Python - Shell - JavaScript - CSS - HTML - Jinja - Just

🏷️ Related Topics:
#agent #gaia #hle #agent_framework #futurex #xbench #search_agent #research_agent #deep_research #browsecomp


==================================
🧠 By: https://news.1rj.ru/str/DataScienceM
1
Python Basics for Data Science: Part-1

Variables  Data Types

In Python, variables are used to store data, and data types define what kind of data is stored. This is the first and most essential building block of your data science journey.

1️⃣ What is a Variable? 
A variable is like a label for data stored in memory. You can assign any value to a variable and reuse it throughout your code.

Syntax: 
x = 10  
name = "Riya" 
is_active = True


2️⃣ Common Data Types in Python

int – Integers (whole numbers) 
age = 25

float – Decimal numbers 
height = 5.8

str – Text/String 
city = "Mumbai"

bool – Boolean (True or False) 
is_student = False

list – A collection of items 
fruits = ["apple", "banana", "mango"]

tuple – Ordered, immutable collection 
coordinates = (10.5, 20.3)

dict – Key-value pairs 
student = {"name": "Riya", "score": 90}


3️⃣ Type Checking 
You can check the type of any variable using type() 
print(type(age))       # <class 'int'>  
print(type(city))      # <class 'str'>


4️⃣ Type Conversion 
Change data from one type to another: 
num = "100"
converted = int(num) 
print(type(converted))  # <class 'int'>


5️⃣ Why This Matters in Data Science 
Data comes in various types. Understanding and managing types is critical for: 
• Cleaning data 
• Performing calculations 
• Avoiding errors in analysis

Practice Task for You: 
• Create 5 variables with different data types 
• Use type() to print each one 
• Convert a string to an integer and do basic math
👍2
🔥 Trending Repository: stb

📝 Denoscription: stb single-file public domain libraries for C/C++

🔗 Repository URL: https://github.com/nothings/stb

🌐 Website: https://twitter.com/nothings

📖 Readme: https://github.com/nothings/stb#readme

📊 Statistics:
🌟 Stars: 31.5K stars
👀 Watchers: 635
🍴 Forks: 8K forks

💻 Programming Languages: C - C++

🏷️ Related Topics: Not available

==================================
🧠 By: https://news.1rj.ru/str/DataScienceM
1
🔥 Trending Repository: xpipe

📝 Denoscription: Access your entire server infrastructure from your local desktop

🔗 Repository URL: https://github.com/xpipe-io/xpipe

🌐 Website: https://xpipe.io

📖 Readme: https://github.com/xpipe-io/xpipe#readme

📊 Statistics:
🌟 Stars: 12.6K stars
👀 Watchers: 53
🍴 Forks: 493 forks

💻 Programming Languages: Java - CSS

🏷️ Related Topics:
#java #bash #docker #kubernetes #ssh #files #networking #filemanager #lxd #javafx #sftp #wsl #k8s #podman #tailscale #incus


==================================
🧠 By: https://news.1rj.ru/str/DataScienceM
🔥 Trending Repository: superset

📝 Denoscription: Apache Superset is a Data Visualization and Data Exploration Platform

🔗 Repository URL: https://github.com/apache/superset

🌐 Website: https://superset.apache.org/

📖 Readme: https://github.com/apache/superset#readme

📊 Statistics:
🌟 Stars: 69.7K stars
👀 Watchers: 1.5k
🍴 Forks: 16.4K forks

💻 Programming Languages: TypeScript - Python - Jupyter Notebook - JavaScript - HTML - Shell

🏷️ Related Topics:
#react #python #flask #data_science #bi #analytics #superset #apache #data_visualization #data_engineering #business_intelligence #data_viz #data_analytics #data_analysis #sql_editor #asf #business_analytics #apache_superset


==================================
🧠 By: https://news.1rj.ru/str/DataScienceM
🔥 Trending Repository: ComfyUI-LTXVideo

📝 Denoscription: LTX-Video Support for ComfyUI

🔗 Repository URL: https://github.com/Lightricks/ComfyUI-LTXVideo

🌐 Website: https://www.lightricks.com/ltxv

📖 Readme: https://github.com/Lightricks/ComfyUI-LTXVideo#readme

📊 Statistics:
🌟 Stars: 2.6K stars
👀 Watchers: 22
🍴 Forks: 255 forks

💻 Programming Languages: Python

🏷️ Related Topics:
#text_to_image #dit #image_to_video #diffusion_models #text_to_image_generation #comfyui #image_to_video_generation


==================================
🧠 By: https://news.1rj.ru/str/DataScienceM
🔥 Trending Repository: memU

📝 Denoscription: Memory infrastructure for LLMs and AI agents

🔗 Repository URL: https://github.com/NevaMind-AI/memU

🌐 Website: https://memu.pro

📖 Readme: https://github.com/NevaMind-AI/memU#readme

📊 Statistics:
🌟 Stars: 3.6K stars
👀 Watchers: 28
🍴 Forks: 241 forks

💻 Programming Languages: Python

🏷️ Related Topics:
#python #agent #open_source #benchmark #framework #ai #memory #mcp #sandbox #ai_agents #llm #agentic_framework #agentic_workflow #ai_companion #agentic_ai #ai_roleplay


==================================
🧠 By: https://news.1rj.ru/str/DataScienceM
🔥 Trending Repository: VideoRAG

📝 Denoscription: [KDD'2026] "VideoRAG: Chat with Your Videos"

🔗 Repository URL: https://github.com/HKUDS/VideoRAG

🌐 Website: https://arxiv.org/abs/2502.01549

📖 Readme: https://github.com/HKUDS/VideoRAG#readme

📊 Statistics:
🌟 Stars: 1.9K stars
👀 Watchers: 44
🍴 Forks: 283 forks

💻 Programming Languages: Python - TypeScript - CSS - Jupyter Notebook - HTML - Shell - JavaScript

🏷️ Related Topics:
#rag #large_language_models #llms #long_video_understanding #retrieval_augmented_generation #multi_modal_llms


==================================
🧠 By: https://news.1rj.ru/str/DataScienceM
🔥 Trending Repository: alpasim

📝 Denoscription: No denoscription available

🔗 Repository URL: https://github.com/NVlabs/alpasim

📖 Readme: https://github.com/NVlabs/alpasim#readme

📊 Statistics:
🌟 Stars: 504 stars
👀 Watchers: 18
🍴 Forks: 42 forks

💻 Programming Languages: Python - Jupyter Notebook - Shell

🏷️ Related Topics: Not available

==================================
🧠 By: https://news.1rj.ru/str/DataScienceM
1
Please open Telegram to view this post
VIEW IN TELEGRAM
1
🔥 Trending Repository: tailwindcss

📝 Denoscription: A utility-first CSS framework for rapid UI development.

🔗 Repository URL: https://github.com/tailwindlabs/tailwindcss

🌐 Website: https://tailwindcss.com/

📖 Readme: https://github.com/tailwindlabs/tailwindcss#readme

📊 Statistics:
🌟 Stars: 92.3K stars
👀 Watchers: 619
🍴 Forks: 4.9K forks

💻 Programming Languages: TypeScript - Rust

🏷️ Related Topics:
#css #postcss #responsive #css_framework #functional_css #utility_classes #tailwindcss


==================================
🧠 By: https://news.1rj.ru/str/DataScienceM
🔥 Trending Repository: netbird

📝 Denoscription: Connect your devices into a secure WireGuard®-based overlay network with SSO, MFA and granular access controls.

🔗 Repository URL: https://github.com/netbirdio/netbird

🌐 Website: https://netbird.io

📖 Readme: https://github.com/netbirdio/netbird#readme

📊 Statistics:
🌟 Stars: 20.8K stars
👀 Watchers: 108
🍴 Forks: 1K forks

💻 Programming Languages: Go - Shell - HTML - C - Dockerfile - Makefile

🏷️ Related Topics:
#golang #mesh_networks #nat_traversal #vpn #mesh #wireguard #wireguard_vpn #wiretrustee #zero_trust_network_access #netbird


==================================
🧠 By: https://news.1rj.ru/str/DataScienceM
🚀 Master Data Science & Programming!

Unlock your potential with this curated list of Telegram channels. Whether you need books, datasets, interview prep, or project ideas, we have the perfect resource for you. Join the community today!


🔰 Machine Learning with Python
Learn Machine Learning with hands-on Python tutorials, real-world code examples, and clear explanations for researchers and developers.
https://news.1rj.ru/str/CodeProgrammer

🔖 Machine Learning
Machine learning insights, practical tutorials, and clear explanations for beginners and aspiring data scientists. Follow the channel for models, algorithms, coding guides, and real-world ML applications.
https://news.1rj.ru/str/DataScienceM

🧠 Code With Python
This channel delivers clear, practical content for developers, covering Python, Django, Data Structures, Algorithms, and DSA – perfect for learning, coding, and mastering key programming skills.
https://news.1rj.ru/str/DataScience4

🎯 PyData Careers | Quiz
Python Data Science jobs, interview tips, and career insights for aspiring professionals.
https://news.1rj.ru/str/DataScienceQ

💾 Kaggle Data Hub
Your go-to hub for Kaggle datasets – explore, analyze, and leverage data for Machine Learning and Data Science projects.
https://news.1rj.ru/str/datasets1

🧑‍🎓 Udemy Coupons | Courses
The first channel in Telegram that offers free Udemy coupons
https://news.1rj.ru/str/DataScienceC

😀 ML Research Hub
Advancing research in Machine Learning – practical insights, tools, and techniques for researchers.
https://news.1rj.ru/str/DataScienceT

💬 Data Science Chat
An active community group for discussing data challenges and networking with peers.
https://news.1rj.ru/str/DataScience9

🐍 Python Arab| بايثون عربي
The largest Arabic-speaking group for Python developers to share knowledge and help.
https://news.1rj.ru/str/PythonArab

🖊 Data Science Jupyter Notebooks
Explore the world of Data Science through Jupyter Notebooks—insights, tutorials, and tools to boost your data journey. Code, analyze, and visualize smarter with every post.
https://news.1rj.ru/str/DataScienceN

📺 Free Online Courses | Videos
Free online courses covering data science, machine learning, analytics, programming, and essential skills for learners.
https://news.1rj.ru/str/DataScienceV

📈 Data Analytics
Dive into the world of Data Analytics – uncover insights, explore trends, and master data-driven decision making.
https://news.1rj.ru/str/DataAnalyticsX

🎧 Learn Python Hub
Master Python with step-by-step courses – from basics to advanced projects and practical applications.
https://news.1rj.ru/str/Python53

⭐️ Research Papers
Professional Academic Writing & Simulation Services
https://news.1rj.ru/str/DataScienceY

━━━━━━━━━━━━━━━━━━
Admin: @HusseinSheikho
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥 Trending Repository: superpowers

📝 Denoscription: Claude Code superpowers: core skills library

🔗 Repository URL: https://github.com/obra/superpowers

📖 Readme: https://github.com/obra/superpowers#readme

📊 Statistics:
🌟 Stars: 15.2K stars
👀 Watchers: 125
🍴 Forks: 1.2K forks

💻 Programming Languages: Shell - JavaScript - Python - TypeScript - Batchfile

🏷️ Related Topics: Not available

==================================
🧠 By: https://news.1rj.ru/str/DataScienceM