An open API service indexing awesome lists of open source software.

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!

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 Python

Let'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! ๐ŸŽ‰๐Ÿ“ˆ

---