Skip to content

Instantly share code, notes, and snippets.

@mhoangvslev
Created July 7, 2024 11:45
Show Gist options
  • Select an option

  • Save mhoangvslev/ac9b487849f6549926ceedbcf5cf02cb to your computer and use it in GitHub Desktop.

Select an option

Save mhoangvslev/ac9b487849f6549926ceedbcf5cf02cb to your computer and use it in GitHub Desktop.

Revisions

  1. mhoangvslev revised this gist Jul 7, 2024. 1 changed file with 12 additions and 1 deletion.
    13 changes: 12 additions & 1 deletion datascienceecosystem.ipynb
    Original file line number Diff line number Diff line change
    @@ -5,7 +5,8 @@
    "colab": {
    "private_outputs": true,
    "provenance": [],
    "authorship_tag": "ABX9TyNaOiPXVzqgKCHVLLVeplzc"
    "authorship_tag": "ABX9TyNaOiPXVzqgKCHVLLVeplzc",
    "include_colab_link": true
    },
    "kernelspec": {
    "name": "python3",
    @@ -16,6 +17,16 @@
    }
    },
    "cells": [
    {
    "cell_type": "markdown",
    "metadata": {
    "id": "view-in-github",
    "colab_type": "text"
    },
    "source": [
    "<a href=\"https://colab.research.google.com/gist/mhoangvslev/ac9b487849f6549926ceedbcf5cf02cb/datascienceecosystem.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
    ]
    },
    {
    "cell_type": "markdown",
    "source": [
  2. mhoangvslev created this gist Jul 7, 2024.
    134 changes: 134 additions & 0 deletions datascienceecosystem.ipynb
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,134 @@
    {
    "nbformat": 4,
    "nbformat_minor": 0,
    "metadata": {
    "colab": {
    "private_outputs": true,
    "provenance": [],
    "authorship_tag": "ABX9TyNaOiPXVzqgKCHVLLVeplzc"
    },
    "kernelspec": {
    "name": "python3",
    "display_name": "Python 3"
    },
    "language_info": {
    "name": "python"
    }
    },
    "cells": [
    {
    "cell_type": "markdown",
    "source": [
    "# Data Science Tools and Ecosystem"
    ],
    "metadata": {
    "id": "NhLiYn0P7uUP"
    }
    },
    {
    "cell_type": "markdown",
    "source": [
    "In this notebook, Data Science Tools and Ecosystem are summarized."
    ],
    "metadata": {
    "id": "cfYUtuvu8jxX"
    }
    },
    {
    "cell_type": "markdown",
    "source": [
    "**Objectives:**\n",
    "\n",
    "- List popular languages for Data Science\n",
    "- List common data visualization tools\n",
    "- Introduce basic statistical concepts for data analysis"
    ],
    "metadata": {
    "id": "x0qAaryd_p9Z"
    }
    },
    {
    "cell_type": "markdown",
    "source": [
    "Some of the popular languages that Data Scientists use are:\n",
    "1. Python\n",
    "2. R\n",
    "3. Java\n",
    "\n"
    ],
    "metadata": {
    "id": "v1PGUCOd8w1-"
    }
    },
    {
    "cell_type": "markdown",
    "source": [
    "Some of the commonly used libraries used by Data Scientists include:\n",
    "1. Numpy\n",
    "2. Pandas\n",
    "3. Seaborn\n",
    "\n"
    ],
    "metadata": {
    "id": "a_WgUu5C9jm2"
    }
    },
    {
    "cell_type": "markdown",
    "source": [
    "| Data Science Tools |\n",
    "|------------------------|\n",
    "| Jupyter Notebook |\n",
    "| RStudio |\n",
    "| Apache Zeppelin |\n"
    ],
    "metadata": {
    "id": "G3aMVLbn-C6I"
    }
    },
    {
    "cell_type": "markdown",
    "source": [
    "### Below are a few examples of evaluating arithmetic expressions in Python"
    ],
    "metadata": {
    "id": "cfg23pzl-mFC"
    }
    },
    {
    "cell_type": "code",
    "source": [
    "# This a simple arithmetic expression to mutiply then add integers\n",
    "(3*4)+5"
    ],
    "metadata": {
    "id": "yQE_u0xo-v4e"
    },
    "execution_count": null,
    "outputs": []
    },
    {
    "cell_type": "code",
    "source": [
    "# This will convert 200 minutes to hours by dividing by 60.\n",
    "hours = 200 / 60\n",
    "hours"
    ],
    "metadata": {
    "id": "LAwBVs05_EyS"
    },
    "execution_count": null,
    "outputs": []
    },
    {
    "cell_type": "markdown",
    "source": [
    "## Author\n",
    "Minh-Hoang DANG"
    ],
    "metadata": {
    "id": "cgO2SV3W_99V"
    }
    }
    ]
    }