https://github.com/willie-conway/data-science-tools-and-ecosystem
๐ง Explore essential Data Science ๐งช tools, ๐งฐ libraries, and ๐ Python arithmetic basics โ perfect for beginners!
https://github.com/willie-conway/data-science-tools-and-ecosystem
data-science jupyter keras notebooks numpy pandas python pytorch
Last synced: 2 months ago
JSON representation
๐ง Explore essential Data Science ๐งช tools, ๐งฐ libraries, and ๐ Python arithmetic basics โ perfect for beginners!
- Host: GitHub
- URL: https://github.com/willie-conway/data-science-tools-and-ecosystem
- Owner: Willie-Conway
- Created: 2025-01-25T11:15:59.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-05-25T02:42:50.000Z (5 months ago)
- Last Synced: 2025-07-06T02:40:54.898Z (3 months ago)
- Topics: data-science, jupyter, keras, notebooks, numpy, pandas, python, pytorch
- Language: Jupyter Notebook
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ๐ Data Science Tools & Arithmetic with Python ๐
## Overview ๐๐ฟ
Welcome to this notebook! In this document, we will explore the essential **tools, libraries, and programming languages** used in the field of **Data Science**. You'll also see some basic arithmetic operations demonstrated using **Python**.
This notebook aims to provide:
* ๐ An overview of popular programming languages used in Data Science
* ๐ Key libraries for data analysis and machine learning
* ๐ ๏ธ Useful tools that help data scientists in their workflow
* โโโ๏ธโ Simple arithmetic operations in PythonLet's dive into the exciting world of Data Science tools and technologies! ๐
---
## Data Science Tools and Ecosystem ๐
In this notebook, you'll find a summary of the Data Science tools and ecosystem, including:
### Objectives ๐ฏ
* List popular libraries used in Data Science
* List open-source development environments and tools commonly used
* Introduce simple arithmetic expression evaluation in Python---
### Popular Languages for Data Science ๐ฃ๏ธ
* ๐ **Python**
* ๐๏ธ **SQL**
* ๐ **R**
* ๐ฃ **Julia**---
### Commonly Used Libraries ๐ฆ
* ๐ข **NumPy** โ for numerical computing
* ๐ง **Keras** โ for deep learning
* ๐ผ **Pandas** โ for data manipulation and analysis
* ๐ฅ **PyTorch** โ for machine learning and AI---
### Data Science Tools ๐งฐ
* ๐ **Jupyter Notebooks** โ interactive notebooks for coding and visualization
* ๐ **RStudio** โ integrated development environment for R
* โ๏ธ **Apache Zeppelin** โ web-based notebook for data ingestion, discovery, and visualization---
## Arithmetic Expressions in Python ๐งฎ
Here are some examples of evaluating arithmetic expressions:
```python
# Addition โ
print(3 + 3) # Output: 6# Subtraction โ
print(3 - 3) # Output: 0# Multiplication โ๏ธ
print(3 * 3) # Output: 9# Division โ
print(3 / 3) # Output: 1.0# Multiply then add
print((3 * 4) + 5) # Output: 17# Convert 200 minutes to hours
print(200 / 60) # Output: 3.3333333333333335
```---
## Summary of Objectives ๐
* List popular programming languages for Data Science
* Identify commonly used libraries in the field
* Introduce data science tools and ecosystems
* Demonstrate arithmetic expression evaluation in Python
* Provide examples such as converting minutes to hours---
## Author โ๐ฟ
**Willie Conway**
---
Feel free to reach out if you have questions or want to contribute! Happy Data Science journey! ๐๐
---