View clock.R
This file contains 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
clock = function(max_laps=100) { | |
laps = numeric(max_laps) | |
laps[1] = Sys.time() | |
no_of_laps = 2 | |
reset = function() { | |
no_of_laps = 1 | |
laps <<- numeric(max_laps) | |
laps[no_of_laps] = Sys.time() | |
no_of_laps <<- 2 |
View extraction.R
This file contains 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
library("tidyverse", lib.loc="L:/RLIB") | |
############################## | |
# 1. Read in the data | |
############################## | |
Rladies<- readLines("https://raw.githubusercontent.com/jumpingrivers/meetingsR/master/03-Rladies.Rmd") | |
Asia <-readLines("https://raw.githubusercontent.com/jumpingrivers/meetingsR/master/02_useR_groups_asia.Rmd") | |
Europe <-readLines("https://raw.githubusercontent.com/jumpingrivers/meetingsR/master/02_useR_groups_europe.Rmd") | |
MiddleEast <-readLines("https://raw.githubusercontent.com/jumpingrivers/meetingsR/master/02_useR_groups_middle_east_africa.Rmd") |
View logo.csv
This file contains 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
x | y | type | |
---|---|---|---|
36.9 | -311.45 | 1 | |
67.9 | -332.12 | 1 | |
178.61 | -155.73 | 1 | |
253.89 | -259.05 | 1 | |
297.43 | -219.2 | 1 | |
329.17 | -245.77 | 1 | |
389.69 | -173.44 | 1 | |
468.66 | -294.48 | 1 | |
560.91 | -157.94 | 1 |