Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hooho #5

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
136 changes: 136 additions & 0 deletions DataScienceEcosystem.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Author\n",
"\n",
" Dante Waisman\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Data Science Tools and Ecosystem"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
" In this notebook, Data Science Tools and Ecosystem are summarized."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Objectives:\n",
"\n",
"- **List popular languages for Data Science**\n",
"- **Summarize commonly used libraries by Data Scientists**\n",
"- **Introduce popular open-source development environment tools**\n",
"- **Provide examples of evaluating arithmetic expressions in Python**\n",
"- **Demonstrate conversion of minutes to hours in Python**\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Some of the popular languages that Data Scientists use are:\n",
"\n",
"1. **Python**\n",
"\n",
"2. **R**\n",
"\n",
"3. **SQL**"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Data Science Libraries Overview\n",
"\n",
"Some of the commonly used libraries by Data Scientists include:\n",
"\n",
"1. **NumPy**\n",
"\n",
"2. **Pandas**\n",
"\n",
"3. **Matplotlib**\n",
"\n",
"4. **scikit-learn**\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Data Science Tools Overview\n",
"\n",
"| Data Science Tools |\n",
"|--------------------------|\n",
"| Jupyter Notebooks |\n",
"| RStudio |\n",
"| VS Code with extensions |\n",
"\n",
"### Examples of Evaluating Arithmetic Expressions in Python\n",
"\n",
"Below are a few examples of evaluating arithmetic expressions in Python.\n",
"\n",
"# This is a simple arithmetic expression to multiply then add integers.\n",
"result = (3 * 4) + 5\n",
"result\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"3.3333333333333335"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# This will convert 200 minutes to hours by dividing by 60.\n",
"minutes = 200\n",
"hours = minutes / 60\n",
"hours\n"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.0"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# tallerDeGit
d# tallerDeGit

Taller de Git de la materia "Introduccion a la Programacion" de la FCEyN - UBA.
mmmdd