This file contains hidden or 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
| ind | group | sequence_group | ||
|---|---|---|---|---|
| 1 | 1 | l2 | 1 | |
| 2 | 2 | l2 | 1 | |
| 3 | 3 | l1 | 1 | |
| 4 | 4 | l3 | 1 | |
| 5 | 5 | l2 | 1 | |
| 6 | 6 | l3 | 1 | |
| 7 | 7 | l3 | 1 | |
| 8 | 8 | l3 | 1 | |
| 9 | 9 | l1 | 1 |
This file contains hidden or 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
| ind | group | sequence_group | ||
|---|---|---|---|---|
| 1 | 1 | l2 | 1 | |
| 2 | 2 | l2 | 1 | |
| 3 | 3 | l2 | 1 | |
| 4 | 4 | l3 | 1 | |
| 5 | 5 | l3 | 1 | |
| 6 | 6 | l2 | 1 | |
| 7 | 7 | l3 | 1 | |
| 8 | 8 | l3 | 1 | |
| 9 | 9 | l2 | 1 |
This file contains hidden or 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
| ind | group | sequence_group | ||
|---|---|---|---|---|
| 1 | 1 | l1 | 1 | |
| 2 | 2 | l1 | 1 | |
| 3 | 3 | l2 | 1 | |
| 4 | 4 | l2 | 1 | |
| 5 | 5 | l2 | 1 | |
| 6 | 6 | l2 | 1 | |
| 7 | 7 | l1 | 1 | |
| 8 | 8 | l1 | 1 | |
| 9 | 9 | l1 | 1 |
This file contains hidden or 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
| ind | group | |
|---|---|---|
| 1 | l1 | |
| 2 | l3 | |
| 3 | l2 | |
| 4 | l1 | |
| 5 | l1 | |
| 6 | l3 | |
| 7 | l3 | |
| 8 | l1 | |
| 9 | l3 |
This file contains hidden or 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(quantarcticR) | |
| library(rvest) | |
| library(tidyverse) | |
| library(stringr) | |
| ## Get paths from quantarcticR datasets | |
| quantarcticR_datasets <- qa_datasets() | |
| unique_file_paths <- quantarcticR_datasets$datasource %>% | |
| map(function(x) { | |
| x <- sapply(strsplit(x, "quantarcticR-cache/"), `[[`, 2) |
This file contains hidden or 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(dplyr) | |
| library(assertr) | |
| set.seed(13) | |
| df <- data.frame(x = sample(0:1, 10,replace = TRUE), | |
| y = sample(0:1, 10, replace = TRUE)) | |
| df %>% | |
| rowwise() %>% | |
| mutate(total = sum(x:y)) %>% |
This file contains hidden or 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) | |
| my_summarise <- function(df, group_var) { | |
| group_var <- rlang::enquo(group_var) | |
| df %>% | |
| group_by(!! group_var) %>% | |
| summarise(a = mean(Petal.Length)) | |
| } | |
| ### Run ViewPipeSteps addin |
This file contains hidden or 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
| var1,F,M | |
| H,63,70 | |
| R,30,40 | |
| T,97,79 | |
| Y,30,20 | |
| Z,15,10 |
This file contains hidden or 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
| x1,F,M | |
| A,15,10 | |
| B,30,20 | |
| C,30,40 |
This file contains hidden or 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
| x1,x2,x3 | |
| A,M,10 | |
| A,F,15 | |
| B,M,20 | |
| B,F,30 | |
| C,M,40 | |
| C,F,30 |