Skip to content

Commit 4e66488

Browse files
author
Adam M. Wilson
committed
update project description
1 parent e525c53 commit 4e66488

File tree

12 files changed

+31
-53
lines changed

12 files changed

+31
-53
lines changed

07_Reproducibile.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ <h2>Literate statistical programming</h2>
432432
<pre class="r"><code>time &lt;- format(Sys.time(), &quot;%a %d %b %X %Y&quot;)</code></pre>
433433
<p>The text and R code are interwoven in the output:</p>
434434
<p>The time is <code>`r time`</code></p>
435-
<p>The time is Sun 30 Oct 21:52:49 2016</p>
435+
<p>The time is Fri 04 Nov 11:56:53 2016</p>
436436
</div>
437437
<div id="literate-programming-for-and-against" class="section level2 columns-2">
438438
<h2>Literate programming: for and against</h2>

07_Reproducibile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ The text and R code are interwoven in the output:
178178

179179
The time is `` `r time` ``
180180

181-
The time is Sun 30 Oct 21:52:49 2016
181+
The time is Fri 04 Nov 11:56:53 2016
182182

183183

184184

-224 Bytes
Loading

07_assets/demo/Demo.Rmd

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
---
22
title: "Demo"
33
author: "Adam M. Wilson"
4-
date: "October 31, 2015"
5-
output:
4+
date: "October 31, 2016"
5+
output:
66
html_document:
7-
keep_md: true
8-
type: standalone
7+
keep_md: yes
8+
type: standalone
9+
word_document: default
910
---
1011

1112

12-
```{r, message=F}
13+
```{r, message=F, echo=F}
14+
knitr::opts_chunk$set(echo=F, cache=T)
15+
1316
library(dplyr)
1417
library(ggplot2)
1518
library(maps)
@@ -48,6 +51,15 @@ ggplot(d,aes(x=longitude,y=latitude))+
4851
coord_equal()
4952
```
5053

54+
```{r}
55+
x=rnorm(10)
56+
y=rnorm(10)
57+
lm1=lm(y~x)
58+
plot(y~x)
59+
```
60+
61+
The regression slope was `r coef(lm1)[2]`.
62+
5163
## Conclusion
5264

5365
The spatial distribution of `r sp` is mostly limited to the United states. Or, more likely, these data are limited to the United States...

07_assets/demo/Demo.html

Lines changed: 5 additions & 19 deletions
Large diffs are not rendered by default.

07_assets/demo/Demo.md

Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
# Demo
22
Adam M. Wilson
3-
October 31, 2015
3+
October 31, 2016
44

55

66

7-
```r
8-
library(dplyr)
9-
library(ggplot2)
10-
library(maps)
11-
library(spocc)
12-
```
137

148
# Introduction
159

@@ -24,28 +18,14 @@ Figure 1: Licensed under CC BY-SA 3.0 via [Wikimedia Commons](https://commons.wi
2418
I aquired all available occurrence records for the American robin (_Turdus migratorius_) from the [Global Biodiversity Information Facility](gbif.org) and mapped them.
2519

2620

27-
```r
28-
## define which species to query
29-
sp='Turdus migratorius'
30-
31-
## run the query and convert to data.frame()
32-
d = occ(query=sp, from='ebird',limit = 1000) %>% occ2df()
33-
```
3421

3522
## Results
3623

24+
![](Demo_files/figure-html/unnamed-chunk-3-1.png)<!-- -->
3725

38-
```r
39-
# Load coastline
40-
map=map_data("world")
41-
42-
ggplot(d,aes(x=longitude,y=latitude))+
43-
geom_polygon(aes(x=long,y=lat,group=group,order=order),data=map)+
44-
geom_point(col="red")+
45-
coord_equal()
46-
```
26+
![](Demo_files/figure-html/unnamed-chunk-4-1.png)<!-- -->
4727

48-
![](Demo_files/figure-html/unnamed-chunk-3-1.png)<!-- -->
28+
The regression slope was -0.6019797.
4929

5030
## Conclusion
5131

48.9 KB
Loading
-109 Bytes
Loading
-32.9 KB
Loading

Project.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ The first draft of your project will be assessed by your peers in UBlearns. You
8686
* Expose you to the work of your peers so you know what others are working on
8787
* Provide an opportunity to share your knowledge to improve their project
8888

89-
The grading of the first draft will be limited to the Title (<25 words), Introduction [~ 200 words], and Materials and methods [~ 200 words] sections. You should have acquired (downloaded, etc) all the data you plan to use and worked out most of the details of the methods (either in code or detailed descriptions), though you may not have any results or summary figures yet.
89+
The grading of the first draft will be limited to the Title (<25 words), Introduction [~ 200 words], and Materials and methods [~ 200 words] sections. You should have acquired (downloaded, etc) or at least identified all the data you plan to use and worked out most of the details of the methods (either in code or detailed descriptions), though you may not have any results or summary figures yet. You only need to upload the narrative sections mentioned above (Title, Introduction, and Methods) in a PDF. You do not need to upload any data or code. If you have made figures already, please include them in your document, but they are not required.
9090

9191
### Second Draft
9292
The more complete the second draft, the more feedback I'll be able to provide to ensure an excellent final project. So it's in your interest to finish as much as possible. In addition to the details from the first draft, I would like to see at least one figure illustrating the data you are working with. If you include drafts of the results and discussion/conclusion I will also give you feedback on those sections.

0 commit comments

Comments
 (0)