Skip to content

Instantly share code, notes, and snippets.

@priyankas0525
Created September 29, 2020 02:47
Show Gist options
  • Save priyankas0525/987299b9aaa346dd0ded626dd63d3ab6 to your computer and use it in GitHub Desktop.
Save priyankas0525/987299b9aaa346dd0ded626dd63d3ab6 to your computer and use it in GitHub Desktop.
Created on Skills Network Labs
Display the source blob
Display the rendered blob
Raw
{
"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": 1,
"metadata": {},
"outputs": [],
"source": [
"import pandas as pd\n",
"\n",
"df=pd.DataFrame({'a':[1,2,1],'b':[1,1,1]})"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"1) find the unique values in column <code> 'a' </code>:\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"column_values = df[[\"a\",\"b\"]].pd\n",
"unique_values = pd.unique(column_values)\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"2) return a dataframe with only the rows where column <code> a </code> is less than two \n"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"float"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df['a']==1\n",
"type(1.1)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<hr>\n",
"\n",
"<h3 align=\"center\"> © IBM Corporation 2020. All rights reserved. <h3/>\n"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python",
"language": "python",
"name": "conda-env-python-py"
},
"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.6.11"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment