From 1e3cebe792e8a20f07220ddaf255765caa4dfae0 Mon Sep 17 00:00:00 2001 From: chavesmack <56725973+chavesmack@users.noreply.github.com> Date: Fri, 2 Oct 2020 16:50:05 -0300 Subject: [PATCH 1/3] Criado usando o Colaboratory --- testes.ipynb | 79 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 testes.ipynb diff --git a/testes.ipynb b/testes.ipynb new file mode 100644 index 000000000..34acf9be3 --- /dev/null +++ b/testes.ipynb @@ -0,0 +1,79 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "name": "testes.ipynb", + "provenance": [], + "authorship_tag": "ABX9TyNnQZ+QfICCnyLx5/bcGzkX", + "include_colab_link": true + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "view-in-github", + "colab_type": "text" + }, + "source": [ + "\"Open" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "R-9DzLRT0Qk0" + }, + "source": [ + "import time" + ], + "execution_count": 5, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "205YhNXM0x-n", + "outputId": "30fca64c-2c59-424e-926c-3aee6ebd105c", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + } + }, + "source": [ + "time.localtime(time.time())" + ], + "execution_count": 6, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "time.struct_time(tm_year=2020, tm_mon=10, tm_mday=2, tm_hour=19, tm_min=49, tm_sec=12, tm_wday=4, tm_yday=276, tm_isdst=0)" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 6 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "TPrKP6LR1QUe" + }, + "source": [ + "" + ], + "execution_count": null, + "outputs": [] + } + ] +} \ No newline at end of file From 668c11d30d9399b3e5247ba7fbe9f4deab650db5 Mon Sep 17 00:00:00 2001 From: chavesmack <56725973+chavesmack@users.noreply.github.com> Date: Fri, 2 Oct 2020 16:50:55 -0300 Subject: [PATCH 2/3] Delete testes.ipynb --- testes.ipynb | 79 ---------------------------------------------------- 1 file changed, 79 deletions(-) delete mode 100644 testes.ipynb diff --git a/testes.ipynb b/testes.ipynb deleted file mode 100644 index 34acf9be3..000000000 --- a/testes.ipynb +++ /dev/null @@ -1,79 +0,0 @@ -{ - "nbformat": 4, - "nbformat_minor": 0, - "metadata": { - "colab": { - "name": "testes.ipynb", - "provenance": [], - "authorship_tag": "ABX9TyNnQZ+QfICCnyLx5/bcGzkX", - "include_colab_link": true - }, - "kernelspec": { - "name": "python3", - "display_name": "Python 3" - } - }, - "cells": [ - { - "cell_type": "markdown", - "metadata": { - "id": "view-in-github", - "colab_type": "text" - }, - "source": [ - "\"Open" - ] - }, - { - "cell_type": "code", - "metadata": { - "id": "R-9DzLRT0Qk0" - }, - "source": [ - "import time" - ], - "execution_count": 5, - "outputs": [] - }, - { - "cell_type": "code", - "metadata": { - "id": "205YhNXM0x-n", - "outputId": "30fca64c-2c59-424e-926c-3aee6ebd105c", - "colab": { - "base_uri": "https://localhost:8080/", - "height": 34 - } - }, - "source": [ - "time.localtime(time.time())" - ], - "execution_count": 6, - "outputs": [ - { - "output_type": "execute_result", - "data": { - "text/plain": [ - "time.struct_time(tm_year=2020, tm_mon=10, tm_mday=2, tm_hour=19, tm_min=49, tm_sec=12, tm_wday=4, tm_yday=276, tm_isdst=0)" - ] - }, - "metadata": { - "tags": [] - }, - "execution_count": 6 - } - ] - }, - { - "cell_type": "code", - "metadata": { - "id": "TPrKP6LR1QUe" - }, - "source": [ - "" - ], - "execution_count": null, - "outputs": [] - } - ] -} \ No newline at end of file From 0b0e0465874538fbf17e56c570546fa4d64d37bb Mon Sep 17 00:00:00 2001 From: chavesmack <56725973+chavesmack@users.noreply.github.com> Date: Thu, 8 Oct 2020 17:52:41 -0300 Subject: [PATCH 3/3] Criado usando o Colaboratory --- Notebooks/NB10_01__Pandas.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Notebooks/NB10_01__Pandas.ipynb b/Notebooks/NB10_01__Pandas.ipynb index e831b951a..96bf2f99a 100644 --- a/Notebooks/NB10_01__Pandas.ipynb +++ b/Notebooks/NB10_01__Pandas.ipynb @@ -21,7 +21,7 @@ "colab_type": "text" }, "source": [ - "\"Open" + "\"Open" ] }, { @@ -866,7 +866,7 @@ "id": "TXCqFiGFkmyv" }, "source": [ - "df_estudantes2['City'] = df_estudantes2['City'].replace({'Rio de Janeiro': 'Sao Paulo'})\n", + "df_estudantes2['city'] = df_estudantes2['city'].replace({'Rio de Janeiro': 'Sao Paulo'})\n", "df_estudantes2" ], "execution_count": null, @@ -880,7 +880,7 @@ "source": [ "# OU\n", "alteracoes = {'Rio de Janeiro': 'Sao Paulo'}\n", - "df_estudantes2['City'] = df_estudantes2['City'].replace(alteracoes)\n", + "df_estudantes2['city'] = df_estudantes2['city'].replace(alteracoes)\n", "df_estudantes2" ], "execution_count": null,