-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fragrances #774
Labels
Comments
Not as far as I can see: ttmeta::tt_summary_tbl |>
dplyr::filter(
stringr::str_detect(tolower(title), "fragrance") |
stringr::str_detect(tolower(title), "perfume")
)
#> # A tibble: 0 × 8
#> # ℹ 8 variables: year <int>, week <int>, date <date>, title <chr>,
#> # source_title <chr>, source_urls <list>, article_title <chr>,
#> # article_urls <list>
ttmeta::tt_urls_tbl |>
dplyr::filter(
domain == "kaggle",
stringr::str_detect(path, "fragrance")
)
#> # A tibble: 0 × 11
#> # ℹ 11 variables: year <int>, week <int>, type <fct>, url <chr>, scheme <fct>,
#> # domain <chr>, subdomain <chr>, tld <chr>, path <chr>, query <list>,
#> # fragment <chr>
ttmeta::tt_urls_tbl |>
dplyr::filter(
domain == "github",
stringr::str_detect(path, "perfume")
)
#> # A tibble: 0 × 11
#> # ℹ 11 variables: year <int>, week <int>, type <fct>, url <chr>, scheme <fct>,
#> # domain <chr>, subdomain <chr>, tld <chr>, path <chr>, query <list>,
#> # fragment <chr> Created on 2024-11-24 with reprex v2.1.1 We'd love a PR! |
@jonthegeek ask, and you will receive! Thank you for your help. |
Gonna leave this open to connect it up once you submit the PR. Thanks! |
Sounds good, Jon. Thank you. |
Should we close this one, now? |
Closed via #776 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey Jon!
I saw a post on LinkedIn suggesting this dataset.
Has TT ever looked at fragrances?
https://www.kaggle.com/datasets/olgagmiufana1/parfumo-fragrance-dataset
https://github.com/rdemarqui/perfume_recommender/tree/main
I have cloned the repo and would be glad to submit a pull request.
~ Dr. Nic
The text was updated successfully, but these errors were encountered: