Skip to content

Instantly share code, notes, and snippets.

View ChristosT's full-sized avatar

Christos Tsolakis ChristosT

View GitHub Profile
@ChristosT
ChristosT / README.md
Last active February 17, 2016 09:38
CS 725 Information Visualization - VI4

Christos Tsolakis

@ChristosT
ChristosT / README.md
Last active February 10, 2016 01:15
CS 725 Information Visualization - VI3
@ChristosT
ChristosT / README.md
Last active February 3, 2016 00:52
CS 725 Information Visualization - VI2

Christos Tsolakis

  • Tableau Charts: barplot
    • 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. scatterplot
    • Most of the Rushing Attempts are rewarding by a small amount of yards. However, there is a considerable amount of backtracks. graph3
    • Oregon has the best ratio, although in average, teams in the SEC conference have better results.
@ChristosT
ChristosT / README.md
Last active January 31, 2016 16:59
CS 725 Information Visualization - VI1

Christos Tsolakis

R - Language R Example

# Generate 25 Random number in the interval 0-30
data <- runif(25, 0, 30)
@ChristosT
ChristosT / README.md
Last active January 23, 2016 05:18
D3 tutorial
@ChristosT
ChristosT / makefile
Last active August 29, 2015 14:15
use make to build Latex/Xelatex documents. Biblatex support included.
#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); \