-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathData Science Tools and Ecosystem.Rmd
More file actions
94 lines (54 loc) · 2.13 KB
/
Copy pathData Science Tools and Ecosystem.Rmd
File metadata and controls
94 lines (54 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
title: "Data Science Tools and Ecosystem"
author: "QingsongDu"
date: "2024-08-03"
output: html_document
---
In this notebook, Data Science Tools and Ecosystem are summarized.
Some of the popular languages that Data Scientists use are: - R
\- Python
\- Matlab
## Data Science Languages
Some of the popular languages that Data Scientists use are:
1. **Python** - Widely used for its readability and extensive libraries.
2. **R** - Known for its statistical analysis and data visualization capabilities.
3. **SQL** - Essential for querying and managing relational databases.
## Data Science Libraries
Some of the commonly used libraries used by Data Scientists include:
1. **Pandas** - Provides data structures and data analysis tools.
2. **NumPy** - Supports large, multi-dimensional arrays and matrices.
3. **Scikit-learn** - Offers simple and efficient tools for data mining and data analysis.
4. **TensorFlow** - A framework for machine learning and deep learning.
5. **Matplotlib** - Used for creating static, animated, and interactive visualizations.
## Data Science Tools
| Data Science Tools |
|--------------------|
| Jupyter Notebook |
| RStudio |
| Apache Zeppelin |
## Arithmetic Expression Examples
### Below are a few examples of evaluating arithmetic expressions in Python.
# This is a simple arithmetic expression to multiply then add integers.
# Define the numbers
a = 5 b = 10
# Multiply and then add
multiplication = a \* b addition = a + b
# Display the results
multiplication, addition
```{r}
# This will convert 200 minutes to hours by dividing by 60.
# Number of minutes
minutes = 200
# Convert minutes to hours
hours = minutes / 60
# Display the result
hours
```
**Objectives**
- Learn to use JupyterLite Notebook for creating and sharing data science projects.
- Understand how to use markdown cells for documentation and code cells for calculations.
- Get familiar with common data science tools and libraries.
- Practice converting units and performing basic arithmetic operations in Python.
- Explore how to use GitHub for version control and sharing projects.
## Author
Qingsong Du