Created
February 17, 2021 04:18
-
-
Save ranakashif123/901b45af64b34b65433c0406a766f758 to your computer and use it in GitHub Desktop.
Created on Skills Network Labs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"cells":[{"cell_type":"markdown","metadata":{},"source":["<center>\n"," <img src=\"https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/Logos/organization_logo/organization_logo.png\" width=\"300\" alt=\"cognitiveclass.ai logo\" />\n","</center>\n"]},{"cell_type":"markdown","metadata":{},"source":["<h3> Get to Know a Pandas Array </h3>\n"]},{"cell_type":"markdown","metadata":{},"source":["You will use the dataframe <code>df</code> for the following:\n"]},{"cell_type":"code","execution_count":null,"metadata":{},"outputs":[],"source":["import pandas as pd\n","\n","df=pd.DataFrame({'a':[11,21,31],'b':[21,22,23]})\n"]},{"cell_type":"markdown","metadata":{},"source":["1) Plot the first three rows:\n"]},{"cell_type":"code","execution_count":null,"metadata":{},"outputs":[],"source":["df.head(3)"]},{"cell_type":"markdown","metadata":{},"source":["2) Obtain column <code> 'a' </code>\n"]},{"cell_type":"code","execution_count":null,"metadata":{},"outputs":[],"source":["df['a']"]},{"cell_type":"markdown","metadata":{},"source":["<hr>\n","\n","<h3 align=\"center\"> © IBM Corporation 2020. All rights reserved. <h3/>\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.8.5"}},"nbformat":4,"nbformat_minor":2} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment