Skip to content

Instantly share code, notes, and snippets.

@vallantin
Last active August 15, 2018 19:41
Show Gist options
  • Save vallantin/df82b6e477536d3a059ec6d70f074be9 to your computer and use it in GitHub Desktop.
Save vallantin/df82b6e477536d3a059ec6d70f074be9 to your computer and use it in GitHub Desktop.
Create a dataframe from other objects
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 30,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Hobby</th>\n",
" <th>Age</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>Julia</th>\n",
" <td>Eat</td>\n",
" <td>32</td>\n",
" </tr>\n",
" <tr>\n",
" <th>Fiona</th>\n",
" <td>Pray</td>\n",
" <td>35</td>\n",
" </tr>\n",
" <tr>\n",
" <th>Roberts</th>\n",
" <td>Love</td>\n",
" <td>33</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" Hobby Age\n",
"Julia Eat 32\n",
"Fiona Pray 35\n",
"Roberts Love 33"
]
},
"execution_count": 30,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import pandas as pd\n",
"\n",
"info = {\n",
" 'Hobby': ['Eat', 'Pray', 'Love'],\n",
" 'Age' : [32,35,33]\n",
"}\n",
"\n",
"columns = ['Hobby', 'Age']\n",
"people = ['Julia', 'Fiona', 'Roberts']\n",
"\n",
"df = pd.DataFrame(info, columns=columns, index=people)\n",
"df"
]
}
],
"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.6.5"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment