-
The scatterplot uses the y-coordinate as a position on a common scale to express magnitude(price) and the x-coordinate as spatial region channel to express identity (year). The difference of the proce throughout the years os cleary seen and thus discriminability is preserved.
- based on scatterplot d3 code from : http://bl.ocks.org/weiglemc/6185069
- dataset source http://www.nma.org/pdf/gold/his_gold_prices.pdf
-
The stacked barchart expresses the magnitude as area of each box and the identity as color hue. Discriminability is retained since the relative sizes betwwen the shares is effectively represented and easily distiguished.
- Just a few lines of code can make your graphs interesting (see scatterplot)
- Very often it happens that transitions work but they are too fast, use the duration parameter wisely.
- When using short duration transitions, use buttons to help users follow the animations
Live at http://bl.ocks.org/ChristosT/f73384946e17e4b1b46a
forked from ChristosT's block: CS 725 Information Visualization - VI2
- Tableau Charts:
- The PAC conference has the most players in the top ten and CUSA & American conference, although on the top of the list of the players, they have only 1 in the top ten.
- Most of the Rushing Attempts are rewarding by a small amount of yards. However, there is a considerable amount of backtracks.
- Oregon has the best ratio, although in average, teams in the SEC conference have better results.
- The PAC conference has the most players in the top ten and CUSA & American conference, although on the top of the list of the players, they have only 1 in the top ten.
Built with blockbuilder.org Tutorial from http://alignedleft.com/tutorials
This file contains hidden or 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
#Usage: | |
# make FILE=mytex latex | |
DIR = . | |
BUILD = $(DIR)/.build | |
LATEX = pdflatex -synctex=1 -interaction=nonstopmode -output-directory=$(BUILD) | |
XLATEX = xelatex -synctex=1 -interaction=nonstopmode -output-directory=$(BUILD) | |
BIB_FILE = $(FILE).bib | |
latex: | |
cd $(DIR); \ |
NewerOlder