Created
October 16, 2012 15:25
-
-
Save mamund/3899949 to your computer and use it in GitHub Desktop.
Sample representations of the same data
This file contains 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
north | south | east | west | |
---|---|---|---|---|
300 | 200 | 350 | 150 |
This file contains 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
<table class="sales"> | |
<thead> | |
<tr> | |
<td>north</td> | |
<td>south</td> | |
<td>east</td> | |
<td>west</td> | |
</tr> | |
</thead> | |
<tbody> | |
<tr class="regions"> | |
<td class="north">300</td> | |
<td class="south">200</td> | |
<td class="east">350</td> | |
<td class="west">150</td> | |
</tr> | |
</tbody> | |
</table> |
This file contains 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
{ | |
"sales" : | |
{ | |
"regions" : | |
[ | |
{"north" : 300}, | |
{"south" : 200}, | |
{"east" : 350}, | |
{"west" : 150} | |
] | |
} | |
} |
This file contains 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
<sales> | |
<region name="north"> | |
300 | |
</region> | |
<region name="south"> | |
200 | |
</region> | |
<region name="east"> | |
350 | |
<region> | |
<region name="west"> | |
150 | |
</region> | |
</sales> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment