library(tidyverse)
library(babynames)
Psicometria per le Neuroscienze Cognitive
GPT summaries of R4DS Books
Filippo Gambarota, PhD
fruit
contains the names of 80 fruits.words
contains 980 common English words.sentences
contains 720 short sentences. [6] │ bil<berry>
[7] │ black<berry>
[10] │ blue<berry>
[11] │ boysen<berry>
[19] │ cloud<berry>
[21] │ cran<berry>
[29] │ elder<berry>
[32] │ goji <berry>
[33] │ goose<berry>
[38] │ huckle<berry>
[50] │ mul<berry>
[70] │ rasp<berry>
[73] │ salal <berry>
[76] │ straw<berry>
Quantifiers control how many times a pattern can match:
?
makes a pattern optional (i.e. it matches 0 or 1 times)+
lets a pattern repeat (i.e. it matches at least once)*
lets a pattern be optional or repeat (i.e. it matches any number of times, including 0).[1] │ <a>
[2] │ <ab>
[3] │ <ab>b
[2] │ <ab>
[3] │ <abb>
[1] │ <a>
[2] │ <ab>
[3] │ <abb>
babynames |>
count(name) |>
mutate(
vowels = str_count(name, "[aeiou]"),
consonants = str_count(name, "[^aeiou]")
)
# A tibble: 97,310 × 4
name n vowels consonants
<chr> <int> <int> <int>
1 Aaban 10 2 3
2 Aabha 5 2 3
3 Aabid 2 2 3
4 Aabir 1 2 3
5 Aabriella 5 4 5
6 Aada 1 2 2
7 Aadam 26 2 3
8 Aadan 11 2 3
9 Aadarsh 17 2 5
10 Aaden 18 2 3
# ℹ 97,300 more rows
babynames |>
count(name) |>
mutate(
name = str_to_lower(name),
vowels = str_count(name, "[aeiou]"),
consonants = str_count(name, "[^aeiou]")
)
# A tibble: 97,310 × 4
name n vowels consonants
<chr> <int> <int> <int>
1 aaban 10 3 2
2 aabha 5 3 2
3 aabid 2 3 2
4 aabir 1 3 2
5 aabriella 5 5 4
6 aada 1 3 1
7 aadam 26 3 2
8 aadan 11 3 2
9 aadarsh 17 3 4
10 aaden 18 3 2
# ℹ 97,300 more rows