Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
yhoriuchi committed Jul 15, 2023
1 parent d4f835b commit 61c12b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions vignettes/01-read-wrangle.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ out1 <- reshape_conjoint(.data = exampleData1,
# Data with the not-flipped repeated tasks

```{r}
outcomes <- str_c("choice", seq(from = 1, to = 8, by = 1))
outcomes <- paste0("choice", seq(from = 1, to = 8, by = 1))
outcomes <- c(outcomes, "choice1_repeated_notflipped")
out2 <- reshape_conjoint(.data = exampleData2,
.idvar = "ResponseId",
Expand All @@ -46,7 +46,7 @@ out2 <- reshape_conjoint(.data = exampleData2,
# Data without the repeated tasks

```{r}
outcomes <- str_c("choice", seq(from = 1, to = 8, by = 1))
outcomes <- paste0("choice", seq(from = 1, to = 8, by = 1))
out3 <- reshape_conjoint(.data = exampleData3,
.idvar = "ResponseId",
.outcomes = outcomes,
Expand Down
2 changes: 1 addition & 1 deletion vignettes/projoint.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ vignette: >

The goal of projoint is to ...

You can get a basic website up and running in just a couple of minutes:
You can get a basic website up and running in just a couple of minutes:

0 comments on commit 61c12b0

Please sign in to comment.