diff --git a/Assignment1 Numpy.ipynb b/Assignment1 Numpy.ipynb
new file mode 100644
index 0000000..c275ac4
--- /dev/null
+++ b/Assignment1 Numpy.ipynb
@@ -0,0 +1 @@
+{"nbformat":4,"nbformat_minor":0,"metadata":{"colab":{"name":"Assignment1 Numpy.ipynb","provenance":[],"authorship_tag":"ABX9TyPjJhiw9UZMcdcNfMiL21DQ"},"kernelspec":{"name":"python3","display_name":"Python 3"}},"cells":[{"cell_type":"code","metadata":{"id":"ig7-yF0L9ZYl","colab_type":"code","colab":{"base_uri":"https://localhost:8080/","height":34},"executionInfo":{"status":"ok","timestamp":1598163531606,"user_tz":-330,"elapsed":2640,"user":{"displayName":"VISHAL JENA","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14Gi3s4vwgm4-WxCI3Z00c46UXHGpRud4hAkH5mp_MA=s64","userId":"10167023063644792477"}},"outputId":"154c9eb2-3478-4fb9-b28d-a409e4c52c76"},"source":["# Q1 - create a list and convert into numpy and print it?\n","\n","import numpy as np\n","list = [1,2,3,4,5]\n","np.array(list)"],"execution_count":1,"outputs":[{"output_type":"execute_result","data":{"text/plain":["array([1, 2, 3, 4, 5])"]},"metadata":{"tags":[]},"execution_count":1}]},{"cell_type":"code","metadata":{"id":"dDi5cIDU9-wF","colab_type":"code","colab":{"base_uri":"https://localhost:8080/","height":68},"executionInfo":{"status":"ok","timestamp":1598163715099,"user_tz":-330,"elapsed":1114,"user":{"displayName":"VISHAL JENA","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14Gi3s4vwgm4-WxCI3Z00c46UXHGpRud4hAkH5mp_MA=s64","userId":"10167023063644792477"}},"outputId":"e0baec02-57c4-4c54-f685-e6c3d4800f36"},"source":["# Q2- make a 3x3 matrix , convert in into numpy array and then print it?\n","matrix = [[1,2,3],[4,5,6],[7,8,9]]\n","np.array(matrix)"],"execution_count":2,"outputs":[{"output_type":"execute_result","data":{"text/plain":["array([[1, 2, 3],\n"," [4, 5, 6],\n"," [7, 8, 9]])"]},"metadata":{"tags":[]},"execution_count":2}]},{"cell_type":"code","metadata":{"id":"HcMkXlw6-v8T","colab_type":"code","colab":{"base_uri":"https://localhost:8080/","height":68},"executionInfo":{"status":"ok","timestamp":1598165846560,"user_tz":-330,"elapsed":1311,"user":{"displayName":"VISHAL JENA","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14Gi3s4vwgm4-WxCI3Z00c46UXHGpRud4hAkH5mp_MA=s64","userId":"10167023063644792477"}},"outputId":"7319facf-8b30-4969-f4c1-1e21db19ac32"},"source":["# Q3 - make a 3x3 matrix using arange,reshape?\n","arr = []\n","for i in range(1,18):\n"," if(i%2!=0):\n"," arr.append(i) # all i values is converted into list (name of list is arr)\n","arr2=np.array(arr) # arr2 list is converted into array\n","matrix1 = arr2.reshape(3,3)\n","matrix1\n","\n","\n","\n"],"execution_count":35,"outputs":[{"output_type":"execute_result","data":{"text/plain":["array([[ 1, 3, 5],\n"," [ 7, 9, 11],\n"," [13, 15, 17]])"]},"metadata":{"tags":[]},"execution_count":35}]},{"cell_type":"code","metadata":{"id":"MzhRrpCb_Pv_","colab_type":"code","colab":{"base_uri":"https://localhost:8080/","height":34},"executionInfo":{"status":"ok","timestamp":1598167309850,"user_tz":-330,"elapsed":1653,"user":{"displayName":"VISHAL JENA","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14Gi3s4vwgm4-WxCI3Z00c46UXHGpRud4hAkH5mp_MA=s64","userId":"10167023063644792477"}},"outputId":"f252b919-f82f-46b1-eea4-2e9afdfc95fa"},"source":["# Q4- Create numpy array with 10 random no's from 0 to 10(one no should be greater than 1)?\n","rand_nums = np.random.randint(0,10,10)\n","rand_nums\n","\n","\n"],"execution_count":67,"outputs":[{"output_type":"execute_result","data":{"text/plain":["array([6, 9, 9, 8, 5, 9, 7, 7, 8, 0])"]},"metadata":{"tags":[]},"execution_count":67}]},{"cell_type":"code","metadata":{"id":"pVsKEC33Mdb4","colab_type":"code","colab":{"base_uri":"https://localhost:8080/","height":102},"executionInfo":{"status":"ok","timestamp":1598167563507,"user_tz":-330,"elapsed":1126,"user":{"displayName":"VISHAL JENA","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14Gi3s4vwgm4-WxCI3Z00c46UXHGpRud4hAkH5mp_MA=s64","userId":"10167023063644792477"}},"outputId":"b3558c06-c040-4534-fecf-7ff125067c22"},"source":["# Q5 - create a numpy array, convert it into 2d array with 5 rows and print it?\n","arr5 = np.array([1,2,3,4,5])\n","arr5.reshape(5,1)"],"execution_count":73,"outputs":[{"output_type":"execute_result","data":{"text/plain":["array([[1],\n"," [2],\n"," [3],\n"," [4],\n"," [5]])"]},"metadata":{"tags":[]},"execution_count":73}]},{"cell_type":"code","metadata":{"id":"nd9j_Kn-Nbft","colab_type":"code","colab":{"base_uri":"https://localhost:8080/","height":34},"executionInfo":{"status":"ok","timestamp":1598167717920,"user_tz":-330,"elapsed":1252,"user":{"displayName":"VISHAL JENA","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14Gi3s4vwgm4-WxCI3Z00c46UXHGpRud4hAkH5mp_MA=s64","userId":"10167023063644792477"}},"outputId":"5b0305d7-96c0-4554-cf08-a7c73444247a"},"source":["# Q6- PRINT SHAPE OF THE ABOVE CURATED ARRAY?\n","arr5.shape"],"execution_count":75,"outputs":[{"output_type":"execute_result","data":{"text/plain":["(5,)"]},"metadata":{"tags":[]},"execution_count":75}]},{"cell_type":"code","metadata":{"id":"Eo4O4CYKOBKQ","colab_type":"code","colab":{"base_uri":"https://localhost:8080/","height":34},"executionInfo":{"status":"ok","timestamp":1598168136620,"user_tz":-330,"elapsed":1006,"user":{"displayName":"VISHAL JENA","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14Gi3s4vwgm4-WxCI3Z00c46UXHGpRud4hAkH5mp_MA=s64","userId":"10167023063644792477"}},"outputId":"83b52393-c81d-4956-f6ee-3ce4dd3aa6a5"},"source":["# Q7- Create a numpy array with 10 elements in it. Access the 3rd,4th,9th element?\n","arr6 = np.array([1,2,3,4,5,6,7,8,9,10])\n","print(arr6[2],arr6[3],arr6[8])\n"],"execution_count":83,"outputs":[{"output_type":"stream","text":["3 4 9\n"],"name":"stdout"}]},{"cell_type":"code","metadata":{"id":"JlrBqemkPnb5","colab_type":"code","colab":{"base_uri":"https://localhost:8080/","height":34},"executionInfo":{"status":"ok","timestamp":1598169267514,"user_tz":-330,"elapsed":1097,"user":{"displayName":"VISHAL JENA","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14Gi3s4vwgm4-WxCI3Z00c46UXHGpRud4hAkH5mp_MA=s64","userId":"10167023063644792477"}},"outputId":"45f6a7eb-c7da-4d54-f5f1-c608051a54d2"},"source":["# Q8- Print alternate elements of above array?\n","print(arr6[0:2],arr6[4:8],arr6[9])\n","\n"],"execution_count":96,"outputs":[{"output_type":"stream","text":["[1 2] [5 6 7 8] 10\n"],"name":"stdout"}]},{"cell_type":"code","metadata":{"id":"CLYrPZigT7g9","colab_type":"code","colab":{"base_uri":"https://localhost:8080/","height":34},"executionInfo":{"status":"ok","timestamp":1598169477045,"user_tz":-330,"elapsed":1238,"user":{"displayName":"VISHAL JENA","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14Gi3s4vwgm4-WxCI3Z00c46UXHGpRud4hAkH5mp_MA=s64","userId":"10167023063644792477"}},"outputId":"8b9639de-42c1-43cd-cb04-d86ed5e61fa6"},"source":["# Q9- Change the last 3 elements into 100?\n","arr6[7:len(arr6)] = 100\n","arr6"],"execution_count":98,"outputs":[{"output_type":"execute_result","data":{"text/plain":["array([ 1, 2, 3, 4, 5, 6, 7, 100, 100, 100])"]},"metadata":{"tags":[]},"execution_count":98}]},{"cell_type":"code","metadata":{"id":"Fl_fcTf0Uuoz","colab_type":"code","colab":{"base_uri":"https://localhost:8080/","height":102},"executionInfo":{"status":"ok","timestamp":1598170147965,"user_tz":-330,"elapsed":1170,"user":{"displayName":"VISHAL JENA","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14Gi3s4vwgm4-WxCI3Z00c46UXHGpRud4hAkH5mp_MA=s64","userId":"10167023063644792477"}},"outputId":"f34586ba-d754-4393-dd5e-6b2d5c8aa2d7"},"source":["# Q10- Create a 5x5 matrix ,print it. Then print the middle (3x3) matrix?\n","array = np.arange(25)\n","matrix5=array.reshape(5,5)\n","matrix5"],"execution_count":110,"outputs":[{"output_type":"execute_result","data":{"text/plain":["array([[ 0, 1, 2, 3, 4],\n"," [ 5, 6, 7, 8, 9],\n"," [10, 11, 12, 13, 14],\n"," [15, 16, 17, 18, 19],\n"," [20, 21, 22, 23, 24]])"]},"metadata":{"tags":[]},"execution_count":110}]},{"cell_type":"code","metadata":{"id":"_og_4VffXSdG","colab_type":"code","colab":{"base_uri":"https://localhost:8080/","height":68},"executionInfo":{"status":"ok","timestamp":1598170290702,"user_tz":-330,"elapsed":1534,"user":{"displayName":"VISHAL JENA","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14Gi3s4vwgm4-WxCI3Z00c46UXHGpRud4hAkH5mp_MA=s64","userId":"10167023063644792477"}},"outputId":"19bfb681-4bfe-431e-f989-2f90821f8301"},"source":["# now printing the middle (3x3) matrix\n","matrix5[1:4,1:4]"],"execution_count":111,"outputs":[{"output_type":"execute_result","data":{"text/plain":["array([[ 6, 7, 8],\n"," [11, 12, 13],\n"," [16, 17, 18]])"]},"metadata":{"tags":[]},"execution_count":111}]}]}
\ No newline at end of file
diff --git a/Assignment1_Numpy.ipynb b/Assignment1_Numpy.ipynb
new file mode 100644
index 0000000..3fb0323
--- /dev/null
+++ b/Assignment1_Numpy.ipynb
@@ -0,0 +1,395 @@
+{
+ "nbformat": 4,
+ "nbformat_minor": 0,
+ "metadata": {
+ "colab": {
+ "name": "Assignment1 Numpy.ipynb",
+ "provenance": [],
+ "authorship_tag": "ABX9TyPjJhiw9UZMcdcNfMiL21DQ",
+ "include_colab_link": true
+ },
+ "kernelspec": {
+ "name": "python3",
+ "display_name": "Python 3"
+ }
+ },
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "view-in-github",
+ "colab_type": "text"
+ },
+ "source": [
+ ""
+ ]
+ },
+ {
+ "cell_type": "code",
+ "metadata": {
+ "id": "ig7-yF0L9ZYl",
+ "colab_type": "code",
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 34
+ },
+ "outputId": "154c9eb2-3478-4fb9-b28d-a409e4c52c76"
+ },
+ "source": [
+ "# Q1 - create a list and convert into numpy and print it?\n",
+ "\n",
+ "import numpy as np\n",
+ "list = [1,2,3,4,5]\n",
+ "np.array(list)"
+ ],
+ "execution_count": null,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ "array([1, 2, 3, 4, 5])"
+ ]
+ },
+ "metadata": {
+ "tags": []
+ },
+ "execution_count": 1
+ }
+ ]
+ },
+ {
+ "cell_type": "code",
+ "metadata": {
+ "id": "dDi5cIDU9-wF",
+ "colab_type": "code",
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 68
+ },
+ "outputId": "e0baec02-57c4-4c54-f685-e6c3d4800f36"
+ },
+ "source": [
+ "# Q2- make a 3x3 matrix , convert in into numpy array and then print it?\n",
+ "matrix = [[1,2,3],[4,5,6],[7,8,9]]\n",
+ "np.array(matrix)"
+ ],
+ "execution_count": null,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ "array([[1, 2, 3],\n",
+ " [4, 5, 6],\n",
+ " [7, 8, 9]])"
+ ]
+ },
+ "metadata": {
+ "tags": []
+ },
+ "execution_count": 2
+ }
+ ]
+ },
+ {
+ "cell_type": "code",
+ "metadata": {
+ "id": "HcMkXlw6-v8T",
+ "colab_type": "code",
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 68
+ },
+ "outputId": "7319facf-8b30-4969-f4c1-1e21db19ac32"
+ },
+ "source": [
+ "# Q3 - make a 3x3 matrix using arange,reshape?\n",
+ "arr = []\n",
+ "for i in range(1,18):\n",
+ " if(i%2!=0):\n",
+ " arr.append(i) # all i values is converted into list (name of list is arr)\n",
+ "arr2=np.array(arr) # arr2 list is converted into array\n",
+ "matrix1 = arr2.reshape(3,3)\n",
+ "matrix1\n",
+ "\n",
+ "\n",
+ "\n"
+ ],
+ "execution_count": null,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ "array([[ 1, 3, 5],\n",
+ " [ 7, 9, 11],\n",
+ " [13, 15, 17]])"
+ ]
+ },
+ "metadata": {
+ "tags": []
+ },
+ "execution_count": 35
+ }
+ ]
+ },
+ {
+ "cell_type": "code",
+ "metadata": {
+ "id": "MzhRrpCb_Pv_",
+ "colab_type": "code",
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 34
+ },
+ "outputId": "f252b919-f82f-46b1-eea4-2e9afdfc95fa"
+ },
+ "source": [
+ "# Q4- Create numpy array with 10 random no's from 0 to 10(one no should be greater than 1)?\n",
+ "rand_nums = np.random.randint(0,10,10)\n",
+ "rand_nums\n",
+ "\n",
+ "\n"
+ ],
+ "execution_count": null,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ "array([6, 9, 9, 8, 5, 9, 7, 7, 8, 0])"
+ ]
+ },
+ "metadata": {
+ "tags": []
+ },
+ "execution_count": 67
+ }
+ ]
+ },
+ {
+ "cell_type": "code",
+ "metadata": {
+ "id": "pVsKEC33Mdb4",
+ "colab_type": "code",
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 102
+ },
+ "outputId": "b3558c06-c040-4534-fecf-7ff125067c22"
+ },
+ "source": [
+ "# Q5 - create a numpy array, convert it into 2d array with 5 rows and print it?\n",
+ "arr5 = np.array([1,2,3,4,5])\n",
+ "arr5.reshape(5,1)"
+ ],
+ "execution_count": null,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ "array([[1],\n",
+ " [2],\n",
+ " [3],\n",
+ " [4],\n",
+ " [5]])"
+ ]
+ },
+ "metadata": {
+ "tags": []
+ },
+ "execution_count": 73
+ }
+ ]
+ },
+ {
+ "cell_type": "code",
+ "metadata": {
+ "id": "nd9j_Kn-Nbft",
+ "colab_type": "code",
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 34
+ },
+ "outputId": "5b0305d7-96c0-4554-cf08-a7c73444247a"
+ },
+ "source": [
+ "# Q6- PRINT SHAPE OF THE ABOVE CURATED ARRAY?\n",
+ "arr5.shape"
+ ],
+ "execution_count": null,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ "(5,)"
+ ]
+ },
+ "metadata": {
+ "tags": []
+ },
+ "execution_count": 75
+ }
+ ]
+ },
+ {
+ "cell_type": "code",
+ "metadata": {
+ "id": "Eo4O4CYKOBKQ",
+ "colab_type": "code",
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 34
+ },
+ "outputId": "83b52393-c81d-4956-f6ee-3ce4dd3aa6a5"
+ },
+ "source": [
+ "# Q7- Create a numpy array with 10 elements in it. Access the 3rd,4th,9th element?\n",
+ "arr6 = np.array([1,2,3,4,5,6,7,8,9,10])\n",
+ "print(arr6[2],arr6[3],arr6[8])\n"
+ ],
+ "execution_count": null,
+ "outputs": [
+ {
+ "output_type": "stream",
+ "text": [
+ "3 4 9\n"
+ ],
+ "name": "stdout"
+ }
+ ]
+ },
+ {
+ "cell_type": "code",
+ "metadata": {
+ "id": "JlrBqemkPnb5",
+ "colab_type": "code",
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 34
+ },
+ "outputId": "45f6a7eb-c7da-4d54-f5f1-c608051a54d2"
+ },
+ "source": [
+ "# Q8- Print alternate elements of above array?\n",
+ "print(arr6[0:2],arr6[4:8],arr6[9])\n",
+ "\n"
+ ],
+ "execution_count": null,
+ "outputs": [
+ {
+ "output_type": "stream",
+ "text": [
+ "[1 2] [5 6 7 8] 10\n"
+ ],
+ "name": "stdout"
+ }
+ ]
+ },
+ {
+ "cell_type": "code",
+ "metadata": {
+ "id": "CLYrPZigT7g9",
+ "colab_type": "code",
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 34
+ },
+ "outputId": "8b9639de-42c1-43cd-cb04-d86ed5e61fa6"
+ },
+ "source": [
+ "# Q9- Change the last 3 elements into 100?\n",
+ "arr6[7:len(arr6)] = 100\n",
+ "arr6"
+ ],
+ "execution_count": null,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ "array([ 1, 2, 3, 4, 5, 6, 7, 100, 100, 100])"
+ ]
+ },
+ "metadata": {
+ "tags": []
+ },
+ "execution_count": 98
+ }
+ ]
+ },
+ {
+ "cell_type": "code",
+ "metadata": {
+ "id": "Fl_fcTf0Uuoz",
+ "colab_type": "code",
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 102
+ },
+ "outputId": "f34586ba-d754-4393-dd5e-6b2d5c8aa2d7"
+ },
+ "source": [
+ "# Q10- Create a 5x5 matrix ,print it. Then print the middle (3x3) matrix?\n",
+ "array = np.arange(25)\n",
+ "matrix5=array.reshape(5,5)\n",
+ "matrix5"
+ ],
+ "execution_count": null,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ "array([[ 0, 1, 2, 3, 4],\n",
+ " [ 5, 6, 7, 8, 9],\n",
+ " [10, 11, 12, 13, 14],\n",
+ " [15, 16, 17, 18, 19],\n",
+ " [20, 21, 22, 23, 24]])"
+ ]
+ },
+ "metadata": {
+ "tags": []
+ },
+ "execution_count": 110
+ }
+ ]
+ },
+ {
+ "cell_type": "code",
+ "metadata": {
+ "id": "_og_4VffXSdG",
+ "colab_type": "code",
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 68
+ },
+ "outputId": "19bfb681-4bfe-431e-f989-2f90821f8301"
+ },
+ "source": [
+ "# now printing the middle (3x3) matrix\n",
+ "matrix5[1:4,1:4]"
+ ],
+ "execution_count": null,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ "array([[ 6, 7, 8],\n",
+ " [11, 12, 13],\n",
+ " [16, 17, 18]])"
+ ]
+ },
+ "metadata": {
+ "tags": []
+ },
+ "execution_count": 111
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Assignment_2_pandas.ipynb b/Assignment_2_pandas.ipynb
new file mode 100644
index 0000000..810809d
--- /dev/null
+++ b/Assignment_2_pandas.ipynb
@@ -0,0 +1,1033 @@
+{
+ "nbformat": 4,
+ "nbformat_minor": 0,
+ "metadata": {
+ "colab": {
+ "name": "Assignment 2 pandas.ipynb",
+ "provenance": [],
+ "collapsed_sections": [],
+ "mount_file_id": "1rmYmHfrhMlt1clZuVjj7ztEwnZQUpbnd",
+ "authorship_tag": "ABX9TyPYDf8/+SkBpBMizALQluxR",
+ "include_colab_link": true
+ },
+ "kernelspec": {
+ "name": "python3",
+ "display_name": "Python 3"
+ }
+ },
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "view-in-github",
+ "colab_type": "text"
+ },
+ "source": [
+ "
"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "metadata": {
+ "id": "NeK7uH4glp6q",
+ "colab_type": "code",
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 623
+ },
+ "outputId": "f80ffc75-6d99-42cd-e274-1e360291ab8e"
+ },
+ "source": [
+ "import numpy as np\n",
+ "import pandas as pd\n",
+ "#q1:- import the dataset into dataframe?\n",
+ "df = pd.read_csv(\"/content/drive/My Drive/csv files/Salaries.csv\")\n",
+ "df"
+ ],
+ "execution_count": 100,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/html": [
+ "
| \n", + " | Id | \n", + "EmployeeName | \n", + "JobTitle | \n", + "BasePay | \n", + "OvertimePay | \n", + "OtherPay | \n", + "Benefits | \n", + "TotalPay | \n", + "TotalPayBenefits | \n", + "Year | \n", + "Notes | \n", + "Agency | \n", + "Status | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "1 | \n", + "NATHANIEL FORD | \n", + "GENERAL MANAGER-METROPOLITAN TRANSIT AUTHORITY | \n", + "167411.18 | \n", + "0.00 | \n", + "400184.25 | \n", + "NaN | \n", + "567595.43 | \n", + "567595.43 | \n", + "2011 | \n", + "NaN | \n", + "San Francisco | \n", + "NaN | \n", + "
| 1 | \n", + "2 | \n", + "GARY JIMENEZ | \n", + "CAPTAIN III (POLICE DEPARTMENT) | \n", + "155966.02 | \n", + "245131.88 | \n", + "137811.38 | \n", + "NaN | \n", + "538909.28 | \n", + "538909.28 | \n", + "2011 | \n", + "NaN | \n", + "San Francisco | \n", + "NaN | \n", + "
| 2 | \n", + "3 | \n", + "ALBERT PARDINI | \n", + "CAPTAIN III (POLICE DEPARTMENT) | \n", + "212739.13 | \n", + "106088.18 | \n", + "16452.60 | \n", + "NaN | \n", + "335279.91 | \n", + "335279.91 | \n", + "2011 | \n", + "NaN | \n", + "San Francisco | \n", + "NaN | \n", + "
| 3 | \n", + "4 | \n", + "CHRISTOPHER CHONG | \n", + "WIRE ROPE CABLE MAINTENANCE MECHANIC | \n", + "77916.00 | \n", + "56120.71 | \n", + "198306.90 | \n", + "NaN | \n", + "332343.61 | \n", + "332343.61 | \n", + "2011 | \n", + "NaN | \n", + "San Francisco | \n", + "NaN | \n", + "
| 4 | \n", + "5 | \n", + "PATRICK GARDNER | \n", + "DEPUTY CHIEF OF DEPARTMENT,(FIRE DEPARTMENT) | \n", + "134401.60 | \n", + "9737.00 | \n", + "182234.59 | \n", + "NaN | \n", + "326373.19 | \n", + "326373.19 | \n", + "2011 | \n", + "NaN | \n", + "San Francisco | \n", + "NaN | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 148649 | \n", + "148650 | \n", + "Roy I Tillery | \n", + "Custodian | \n", + "0.00 | \n", + "0.00 | \n", + "0.00 | \n", + "0.0 | \n", + "0.00 | \n", + "0.00 | \n", + "2014 | \n", + "NaN | \n", + "San Francisco | \n", + "NaN | \n", + "
| 148650 | \n", + "148651 | \n", + "Not provided | \n", + "Not provided | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "0.00 | \n", + "0.00 | \n", + "2014 | \n", + "NaN | \n", + "San Francisco | \n", + "NaN | \n", + "
| 148651 | \n", + "148652 | \n", + "Not provided | \n", + "Not provided | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "0.00 | \n", + "0.00 | \n", + "2014 | \n", + "NaN | \n", + "San Francisco | \n", + "NaN | \n", + "
| 148652 | \n", + "148653 | \n", + "Not provided | \n", + "Not provided | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "0.00 | \n", + "0.00 | \n", + "2014 | \n", + "NaN | \n", + "San Francisco | \n", + "NaN | \n", + "
| 148653 | \n", + "148654 | \n", + "Joe Lopez | \n", + "Counselor, Log Cabin Ranch | \n", + "0.00 | \n", + "0.00 | \n", + "-618.13 | \n", + "0.0 | \n", + "-618.13 | \n", + "-618.13 | \n", + "2014 | \n", + "NaN | \n", + "San Francisco | \n", + "NaN | \n", + "
148654 rows × 13 columns
\n", + "| \n", + " | Id | \n", + "BasePay | \n", + "OvertimePay | \n", + "OtherPay | \n", + "Benefits | \n", + "TotalPay | \n", + "TotalPayBenefits | \n", + "Year | \n", + "Notes | \n", + "Status | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|
| count | \n", + "148654.000000 | \n", + "148045.000000 | \n", + "148650.000000 | \n", + "148650.000000 | \n", + "112491.000000 | \n", + "148654.000000 | \n", + "148654.000000 | \n", + "148654.000000 | \n", + "0.0 | \n", + "0.0 | \n", + "
| mean | \n", + "74327.500000 | \n", + "66325.448841 | \n", + "5066.059886 | \n", + "3648.767297 | \n", + "25007.893151 | \n", + "74768.321972 | \n", + "93692.554811 | \n", + "2012.522643 | \n", + "NaN | \n", + "NaN | \n", + "
| std | \n", + "42912.857795 | \n", + "42764.635495 | \n", + "11454.380559 | \n", + "8056.601866 | \n", + "15402.215858 | \n", + "50517.005274 | \n", + "62793.533483 | \n", + "1.117538 | \n", + "NaN | \n", + "NaN | \n", + "
| min | \n", + "1.000000 | \n", + "-166.010000 | \n", + "-0.010000 | \n", + "-7058.590000 | \n", + "-33.890000 | \n", + "-618.130000 | \n", + "-618.130000 | \n", + "2011.000000 | \n", + "NaN | \n", + "NaN | \n", + "
| 25% | \n", + "37164.250000 | \n", + "33588.200000 | \n", + "0.000000 | \n", + "0.000000 | \n", + "11535.395000 | \n", + "36168.995000 | \n", + "44065.650000 | \n", + "2012.000000 | \n", + "NaN | \n", + "NaN | \n", + "
| 50% | \n", + "74327.500000 | \n", + "65007.450000 | \n", + "0.000000 | \n", + "811.270000 | \n", + "28628.620000 | \n", + "71426.610000 | \n", + "92404.090000 | \n", + "2013.000000 | \n", + "NaN | \n", + "NaN | \n", + "
| 75% | \n", + "111490.750000 | \n", + "94691.050000 | \n", + "4658.175000 | \n", + "4236.065000 | \n", + "35566.855000 | \n", + "105839.135000 | \n", + "132876.450000 | \n", + "2014.000000 | \n", + "NaN | \n", + "NaN | \n", + "
| max | \n", + "148654.000000 | \n", + "319275.010000 | \n", + "245131.880000 | \n", + "400184.250000 | \n", + "96570.660000 | \n", + "567595.430000 | \n", + "567595.430000 | \n", + "2014.000000 | \n", + "NaN | \n", + "NaN | \n", + "
| \n", + " | Id | \n", + "EmployeeName | \n", + "JobTitle | \n", + "BasePay | \n", + "OvertimePay | \n", + "OtherPay | \n", + "Benefits | \n", + "TotalPay | \n", + "TotalPayBenefits | \n", + "Year | \n", + "Agency | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "1 | \n", + "NATHANIEL FORD | \n", + "GENERAL MANAGER-METROPOLITAN TRANSIT AUTHORITY | \n", + "167411.18 | \n", + "0.00 | \n", + "400184.25 | \n", + "NaN | \n", + "567595.43 | \n", + "567595.43 | \n", + "2011 | \n", + "San Francisco | \n", + "
| 1 | \n", + "2 | \n", + "GARY JIMENEZ | \n", + "CAPTAIN III (POLICE DEPARTMENT) | \n", + "155966.02 | \n", + "245131.88 | \n", + "137811.38 | \n", + "NaN | \n", + "538909.28 | \n", + "538909.28 | \n", + "2011 | \n", + "San Francisco | \n", + "
| 2 | \n", + "3 | \n", + "ALBERT PARDINI | \n", + "CAPTAIN III (POLICE DEPARTMENT) | \n", + "212739.13 | \n", + "106088.18 | \n", + "16452.60 | \n", + "NaN | \n", + "335279.91 | \n", + "335279.91 | \n", + "2011 | \n", + "San Francisco | \n", + "
| 3 | \n", + "4 | \n", + "CHRISTOPHER CHONG | \n", + "WIRE ROPE CABLE MAINTENANCE MECHANIC | \n", + "77916.00 | \n", + "56120.71 | \n", + "198306.90 | \n", + "NaN | \n", + "332343.61 | \n", + "332343.61 | \n", + "2011 | \n", + "San Francisco | \n", + "
| 4 | \n", + "5 | \n", + "PATRICK GARDNER | \n", + "DEPUTY CHIEF OF DEPARTMENT,(FIRE DEPARTMENT) | \n", + "134401.60 | \n", + "9737.00 | \n", + "182234.59 | \n", + "NaN | \n", + "326373.19 | \n", + "326373.19 | \n", + "2011 | \n", + "San Francisco | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 148649 | \n", + "148650 | \n", + "Roy I Tillery | \n", + "Custodian | \n", + "0.00 | \n", + "0.00 | \n", + "0.00 | \n", + "0.0 | \n", + "0.00 | \n", + "0.00 | \n", + "2014 | \n", + "San Francisco | \n", + "
| 148650 | \n", + "148651 | \n", + "Not provided | \n", + "Not provided | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "0.00 | \n", + "0.00 | \n", + "2014 | \n", + "San Francisco | \n", + "
| 148651 | \n", + "148652 | \n", + "Not provided | \n", + "Not provided | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "0.00 | \n", + "0.00 | \n", + "2014 | \n", + "San Francisco | \n", + "
| 148652 | \n", + "148653 | \n", + "Not provided | \n", + "Not provided | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "0.00 | \n", + "0.00 | \n", + "2014 | \n", + "San Francisco | \n", + "
| 148653 | \n", + "148654 | \n", + "Joe Lopez | \n", + "Counselor, Log Cabin Ranch | \n", + "0.00 | \n", + "0.00 | \n", + "-618.13 | \n", + "0.0 | \n", + "-618.13 | \n", + "-618.13 | \n", + "2014 | \n", + "San Francisco | \n", + "
148654 rows × 11 columns
\n", + "