Skip to content

Commit d9ac0d6

Browse files
committed
Initial commit
0 parents  commit d9ac0d6

File tree

8 files changed

+454
-0
lines changed

8 files changed

+454
-0
lines changed

.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
cache
2+
figure
3+
.Rapp.history
4+
*.aux
5+
*.log
6+
*.tex
7+
8+
Morph_for_Sato.csv
9+
assignment-3-answers.R
10+
assignment-3-answers.Rmd
11+
ggplot2-assignment-answers.Rmd
12+
ggplot2-assignment.html
13+
ggplot2-assignment.md
14+
ggplot2-exercises-answers.Rmd
15+
ggplot2-assignment-answers.html
16+
ggplot2-assignment-answers.md

README.md

Whitespace-only changes.

gg-dimensions.pdf

16 KB
Binary file not shown.

gg-vs-base-pub.pdf

16.7 KB
Binary file not shown.

ggplot2-notes.Rnw

Lines changed: 375 additions & 0 deletions
Large diffs are not rendered by default.

ggplot2-notes.pdf

288 KB
Binary file not shown.

makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
all: pdf
2+
3+
pdf:
4+
Rscript -e "knitr::knit('ggplot2-notes.Rnw')"
5+
pdflatex ggplot2-notes

solarized-light.css

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
.background {
2+
color: #fdf6e3;
3+
}
4+
5+
/* numeric */
6+
/* magenta */
7+
.num {
8+
color: #d33682;
9+
}
10+
11+
/* string */
12+
/* cyan */
13+
.str {
14+
color: #2aa198;
15+
}
16+
17+
/* comment */
18+
/* base1 comments/secondary content */
19+
.com {
20+
color: #93a1a1;
21+
font-style: italic;
22+
}
23+
24+
/* +, - etc */
25+
/* green */
26+
.opt {
27+
color: #859900;
28+
}
29+
30+
/* brackets and object names*/
31+
/* base00 (body text) */
32+
.std {
33+
color: #657b83;
34+
}
35+
36+
/* the word `function` */
37+
/* yellow */
38+
.kwa {
39+
color: #b58900;
40+
}
41+
42+
/* <- :*/
43+
/* green */
44+
.kwb {
45+
color: #859900;
46+
}
47+
48+
/* argument names */
49+
/* base00 body text / default code */
50+
.kwc {
51+
color: #657b83;
52+
}
53+
54+
/* base R function names */
55+
/* blue */
56+
.kwd {
57+
color: #268bd2;
58+
}

0 commit comments

Comments
 (0)