Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
8 changes: 6 additions & 2 deletions conflict-files/partners-3.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
## partners-3: philosophy

ponder <- function(thing) {
paste0("If a ", thing, " falls in the forest and no one tweets about it, did it really happen?")
paste0(
"If a ",
thing,
" falls in the forest and no one tweets about it, did it really happen?"
)
}

ponder("tree")
ponder("treeeeeeeees")
6 changes: 5 additions & 1 deletion conflict-files/partners-4.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
## partners-4: biking

bike_excuse <- function(miles) {
paste0("Yeah I only biked ", miles, " miles today, but it was uphill. Both ways. Into the wind.")
paste0(
"Yeah I only biked ",
miles,
" kilometers today, but it was uphill. Both ways. Into the wind."
)
}

bike_excuse(3)
13 changes: 13 additions & 0 deletions sop-demo.Rproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Version: 1.0

RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default

EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8

RnwWeave: Sweave
LaTeX: pdfLaTeX
6 changes: 6 additions & 0 deletions team/Lennon.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
greet <- function(name) {
paste0("Welcome to the great state of New Jersey, ", name)
}


greet("Lennon")
7 changes: 7 additions & 0 deletions team/danielle.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# team/danielle.R

greet <- function(name) {
paste0("Welcome to the underrated and first state of Delaware ", name, "!!!")
}

greet("Tracey")
5 changes: 5 additions & 0 deletions team/erin.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#team/erin.R

greet <- function(name){paste0("hola ", name)}

greet("Erin")
9 changes: 9 additions & 0 deletions team/jason.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# team/jason.R
greet <- function(name) {
paste0("The best state in the nation,
New
Jersey,
welcomes you, ", name)
}

greet("Jason")
13 changes: 13 additions & 0 deletions team/mary.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# team/tracey.R
greet <- function(name) {
paste0("The best state in the nation,
New
Jersey,
welcomes you, ", name)
}

greet("Mary")




4 changes: 4 additions & 0 deletions team/pol.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
greet <- function(name) {
paste0("Welcome to the great city of Barcelona, ", name)
}
greet("Pol")
5 changes: 5 additions & 0 deletions team/robert.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
greet <- function(name) {
paste0("Welcome ", name, " to the much better state of California.")
}

greet("Ranjit")
7 changes: 7 additions & 0 deletions team/shradhey.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# team/shradhey.R
# did something new
greet <- function(name) {
paste0("First branch ever by ", name)
}

greet("Shradhey")