The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
library(worrrd)Let’s start off with creating a basic wordsearch.
words <- c("dog", "cat", "horse", "frog", "cow", "fox")
ex1 <- wordsearch(words, r = 10, c = 10)
#> Found positions for 6/6 words.
plot(ex1, solution = TRUE)Crosswords require clues in addition to words.
dat <-
dplyr::tribble(
~word, ~clue,
"apple", "keeps the doctor away",
"banana", "yellow; great dipped in chocolate",
"orange", "citrus; soccer halftime snack",
"lime", "citrus; green",
"pear", "Bosc; Bartlett; D'Anjou",
"strawberry", "red sweet berry full of seeds"
)
ex1 <- crossword(words = dat$word, clues = dat$clue, r = 40, c = 40)
#> Found positions for 6/6 words.
plot(ex1, solution = TRUE, clues = TRUE, legend_size = 2)These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.