Skip to content

Commit

Permalink
#6640 chagned doc to conver pandas date format (#6787)
Browse files Browse the repository at this point in the history
  • Loading branch information
lmitusinski authored and scottdraves committed Feb 6, 2018
1 parent 578587c commit 62795f8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions doc/python/TableAPI.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@
"metadata": {},
"outputs": [],
"source": [
"table = TableDisplay(pd.read_csv('../resources/data/interest-rates.csv'))\n",
"df = pd.read_csv('../resources/data/interest-rates.csv')\n",
"df['time'] = df['time'].str.slice(0,19).astype('datetime64[ns]')\n",
"table = TableDisplay(df)\n",
"table.setStringFormatForTimes(TimeUnit.DAYS)\n",
"table.setStringFormatForType(ColumnType.Double, TableDisplayStringFormat.getDecimalFormat(4,6))\n",
"table.setStringFormatForColumn(\"m3\", TableDisplayStringFormat.getDecimalFormat(0, 0))\n",
Expand Down Expand Up @@ -246,7 +248,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.3"
"version": "3.6.4"
}
},
"nbformat": 4,
Expand Down

0 comments on commit 62795f8

Please sign in to comment.