Hey, I tried to follow the instructions and hope this is right:
data <- tibble::tribble(
~adj.,
"big",
"small",
"red",
"blue",
"tall",
"little",
"green",
"pink",
"yellow",
"black",
"wide",
"shallow",
"heavy",
"light",
"minimal"
)
head(data)
#> # A tibble: 6 x 1
#> adj.
#> <chr>
#> 1 big
#> 2 small
#> 3 red
#> 4 blue
#> 5 tall
#> 6 little
Created on 2020-04-13 by the reprex package (v0.3.0)
I hope this is the format you wanted:)
This is my list with given words (x)
the list following is an example list, I want to compare to the list before
data1 <-tibble::tribble(
~adj_1.,
"small",
"red",
"bule",
"tlal",
"little",
"green",
"pink",
"yelowl",
"blakc",
"wide",
"shallow",
"heavy",
"light",
"minimal",
"big"
)
head(data1)
#> # A tibble: 6 x 1
#> adj_1.
#> <chr>
#> 1 small
#> 2 red
#> 3 bule
#> 4 tlal
#> 5 little
#> 6 green
Created on 2020-04-13 by the reprex package (v0.3.0)
and this is my list y, which I want to compare to x
I hope this helps!