Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emilhvitfeldt/emilhvitfeldt
https://github.com/emilhvitfeldt/emilhvitfeldt
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/emilhvitfeldt/emilhvitfeldt
- Owner: EmilHvitfeldt
- Created: 2021-10-17T02:54:25.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-16T23:41:37.000Z (10 months ago)
- Last Synced: 2024-10-30T17:09:12.143Z (about 2 months ago)
- Size: 6.84 KB
- Stars: 12
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
output: github_document
---```{r, results='asis', echo=FALSE}
library(htmltools)
library(emoji)leaf <- function(name, link, desc, space) {
paste0(
" ",
as.character(a(name, href = link)),
strrep(" ", space),
"- ",
desc
)
}prismatic <- leaf(
"prismatic",
"https://github.com/EmilHvitfeldt/prismatic",
"Simple color manipulation",
3
)smltar <- leaf(
"smltar",
"https://smltar.com/",
"Supervised Machine Learning for Text Analysis in R",
17
)feazbook <- leaf(
"Feature Engieering A-Z",
"https://feaz-book.com/",
"Everything you need to know abut feature engineering",
1
)emoji <- leaf(
"emoji",
"https://emilhvitfeldt.github.io/emoji/",
"Data and functions about emojis",
7
)islr_tidymodels <- leaf(
"ISLR tidymodels labs",
"https://emilhvitfeldt.github.io/ISLR-tidymodels-labs/index.html",
"Tidymodels translation of ISLR labs",
1
)r_text_data <- leaf(
"R-text-data",
"https://github.com/EmilHvitfeldt/R-text-data",
"List of textual data in R",
7
)r_color_palettes <- leaf(
"r-color-palettes",
"https://emilhvitfeldt.github.io/r-color-palettes/",
"Showcase of all color palettes in R",
2
)emilverse <- leaf(
"emilverse",
"https://github.com/EmilHvitfeldt/emilverse",
"Collection of personal packages and templates",
12
)blog <- leaf(
"emilhvitfeldt.com",
"https://www.emilhvitfeldt.com/",
"Personal Blog",
1
)paletteer <- leaf(
"paletteer",
"https://emilhvitfeldt.github.io/paletteer/",
"Functions for all R color palettes",
3
)talks <- leaf(
"Talks",
"https://github.com/EmilHvitfeldt/talks",
"My public talks",
5
)xaringan.gallery <- leaf(
"xaringan.gallery",
"https://xaringan.gallery/",
"Collection of examples and custom themes",
2
)friends <- leaf(
"friends",
"https://emilhvitfeldt.github.io/friends/",
"Complete script transcription of the Friends",
5
)textdata <- leaf(
"textdata",
"https://emilhvitfeldt.github.io/textdata/",
"Download and Load Various Text Datasets",
4
)wordsalad <- leaf(
"wordsalad",
"https://emilhvitfeldt.github.io/wordsalad/",
"Extract and Analyze Word Vectors",
3
)ggpage <- leaf(
"ggpage",
"https://emilhvitfeldt.github.io/ggpage/",
"Creates Page Layout Visualizations",
6
)gganonymize <- leaf(
"gganonumize",
"https://github.com/EmilHvitfeldt/gganonymize",
"Anonymize the labels and text in a ggplot2",
1
)textrecipes <- leaf(
"textrecipes",
"https://textrecipes.tidymodels.org/",
"Extra 'Recipes' for Text Processing",
1
)tidyclust <- leaf(
"tidyclust",
"https://tidyclust.tidymodels.org/",
"Clustering in tidymodels",
3
)themis <- leaf(
"themis",
"https://github.com/tidymodels/themis",
"Extra 'Recipes' steps for unbalanced data",
6
)censored <- leaf(
"censored",
"https://github.com/tidymodels/censored/",
"Parsnip wrappers for survival models",
4
)workshops <- leaf(
"Workshops",
"https://github.com/EmilHvitfeldt/workshops",
"My Public Workshops",
1
)courses <- leaf(
"Courses",
"https://github.com/EmilHvitfeldt/courses",
"My Public Courses",
3
)quarto_rough_notation <- leaf(
"rough-notation",
"https://github.com/EmilHvitfeldt/quarto-roughnotation",
"Use roughnotation javascript in revealjs presentations",
11
)quarto_designmode <- leaf(
"designMode",
"https://github.com/EmilHvitfeldt/quarto-designmode",
"Enable designMode in html Quarto output",
15
)quarto_nes_theme <- leaf(
"NES.css theme",
"https://github.com/EmilHvitfeldt/quarto-nes-theme",
"A Quarto reveal.js theme based on NES.css",
12
)quarto_revealjs_letterbox <- leaf(
"revealjs letterbox theme",
"https://github.com/EmilHvitfeldt/quarto-revealjs-letterbox",
"A Quarto reveal.js theme for letterbox styled slides",
1
)header <- function(emoji, text) {
res <- glue::glue(":{emoji}: {text}")
emoji_glue(res)
}data <- tibble::tribble(
~id, ~child, ~text,
"emil", c("packages", "Quarto", "projects", "books", "edu", "other"), header("puzzle", "Emil Hvitfeldt"),
"packages", c("tidymodels", "colors", "text", "other-pkg"), header("package", "Packages"),
"tidymodels", c("tidyclust", "textrecipes", "themis", "censored"), header("gear", "tidymodels"),
"tidyclust", c(), tidyclust,
"textrecipes", c(), textrecipes,
"themis", c(), themis,
"censored", c(), censored,
"colors", c("prismatic", "paletteer"), header("artist_palette", "Colors"),
"prismatic", c(), prismatic,
"paletteer", c(), paletteer,
"text", c("emoji", "friends", "textdata", "wordsalad"), header("book", "Text"),
"emoji", c(), emoji,
"friends", c(), friends,
"textdata", c(), textdata,
"wordsalad", c(), wordsalad,
"other-pkg", c("ggpage", "gganonymize"), header("pushpin", "Other"),
"ggpage", c(), ggpage,
"gganonymize", c(), gganonymize,
"Quarto", c("rough-notation", "revealjs-letterbox", "nes-theme", "designmode"), header("blue_circle", "Quarto"),
"designmode", c(), quarto_designmode,
"revealjs-letterbox", c(), quarto_revealjs_letterbox,
"rough-notation", c(), quarto_rough_notation,
"nes-theme", c(), quarto_nes_theme,
"projects", c("r-text-data", "r-color-pals", "blog", "xaringan.gallery"), header("glowing_star", "Projects"),
"r-text-data", c(), r_text_data,
"r-color-pals", c(), r_color_palettes,
"blog", c(), blog,
"xaringan.gallery", c(), xaringan.gallery,
"books", c("smltar", "feazbook"), header("books", "Books"),
"feazbook", c(), feazbook,
"smltar", c(), smltar,
"edu", c("islr_tidymodels", "emilverse"), header("teacher", "Education Material"),
"islr_tidymodels", c(), islr_tidymodels,
"emilverse", c(), emilverse,
"other", c("talks", "workshops", "courses"), header("light_bulb", "Other"),
"talks", c(), talks,
"workshops", c(), workshops,
"courses", c(), courses
)cat(paste0(cli::tree(data, width = 10000), collapse = " \n"))
```