Skip to content

Commit

Permalink
fix RST format issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sheppard committed Nov 26, 2015
1 parent dca93b8 commit d5cffc2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ The HTTP header and format parameter are enabled by default on every pandas view

Format | Content Type | pandas DataFrame Function | Notes
-------|--------------|---------------------------|--------
CSV | `text/csv` | `to_csv()` |
CSV | `text/csv` | `to_csv()` |  
TXT | `text/plain` | `to_csv()` | Useful for testing, as most browsers will download a CSV file instead of displaying it
JSON | `application/json` | `to_json()` |
XLSX | `application/vnd.openxml...sheet` | `to_excel()` |
XLS | `application/vnd.ms-excel` | `to_excel()`
JSON | `application/json` | `to_json()` |  
XLSX | `application/vnd.openxml...sheet` | `to_excel()` |  
XLS | `application/vnd.ms-excel` | `to_excel()` |  
PNG | `image/png` | `plot()` | Currently not very customizable, but a simple way to view the data as an image.
SVG | `image/svg` | `plot()` | Eventually these could become a fallback for clients that can't handle d3.js

Expand Down Expand Up @@ -270,7 +270,7 @@ With the above example data, this configuration would output a CSV file with the
---|---|---|---
**Location** | *site1* | *site1* | *site2*
**Measurement** | *temperature* | *humidity* | *temperature*
**Date** | | |
**Date** | | |  
2016-01-01 | 3 | 30 | 4
2016-01-02 | | | 5

Expand Down Expand Up @@ -350,7 +350,7 @@ With the above example data, this configuration would output a CSV file with the
  | temperature-value | humidity-value | temperature-value
---|---|---|---
**Location** | *site1* | *site1* | *site2*
**Date** | | |
**Date** | | |  
2014-01-01 | 3 | 30 | 4
2014-01-02 | | | 5

Expand Down

0 comments on commit d5cffc2

Please sign in to comment.