#Parsnip

Shantell PowellShanmonster@c.im
2025-05-28

Oh look! Apparently parsnip greens are good to eat. I never knew. cookindocs.com/parsnip-tops-re #parsnip #greens #recipes

Kevin Smithsmithkm
2025-05-27

So, nearing 44 years, and I don't think I've ever had a Today I remedied that and it was quite nice. I cut it into large batons along with a carrot, tossed them with oil, salt and pepper and roasted them. Not some revelatory "how have I been missing this" moment, but I certainly plan to use them again.

Steven Sandersonspsanderson@rstats.me
2025-05-12

If you want to use the C5.0 #algorithm for #Classification you might want to make sure your data is in the right format.

Let my #R package healthyR.ai help you get there.

See an example here: spsanderson.com/healthyR.ai/re

#R #RProgramming #parsnip #C50 #tips #Rtips

library(ggplot2)
library(tibble)

Titanic <- as_tibble(Titanic)

hai_c50_data_prepper(.data = Titanic, .recipe_formula = Survived ~ .)
#> 
#> ── Recipe ──────────────────────────────────────────────────────────────────────
#> 
#> ── Inputs 
#> Number of variables by role
#> outcome:   1
#> predictor: 4
#> 
#> ── Operations 
#> • Factor variables from: tidyselect::vars_select_helpers$where(is.character)
rec_obj <- hai_c50_data_prepper(Titanic, Survived ~ .)
get_juiced_data(rec_obj)
#> # A tibble: 32 × 5
#>    Class Sex    Age       n Survived
#>    <fct> <fct>  <fct> <dbl> <fct>   
#>  1 1st   Male   Child     0 No      
#>  2 2nd   Male   Child     0 No      
#>  3 3rd   Male   Child    35 No      
#>  4 Crew  Male   Child     0 No      
#>  5 1st   Female Child     0 No      
#>  6 2nd   Female Child     0 No      
#>  7 3rd   Female Child    17 No      
#>  8 Crew  Female Child     0 No      
#>  9 1st   Male   Adult   118 No      
#> 10 2nd   Male   Adult   154 No      
#> # ℹ 22 more rows
Steven P. Sanderson II, MPHstevensanderson@mstdn.social
2025-05-12

If you want to use the C5.0 #algorithm for #Classification you might want to make sure your data is in the right format.

Let my #R package healthyR.ai help you get there.

See an example here: spsanderson.com/healthyR.ai/re

#R #RProgramming #parsnip #C50 #tips #Rtips

library(ggplot2)
library(tibble)

Titanic <- as_tibble(Titanic)

hai_c50_data_prepper(.data = Titanic, .recipe_formula = Survived ~ .)
#> 
#> ── Recipe ──────────────────────────────────────────────────────────────────────
#> 
#> ── Inputs 
#> Number of variables by role
#> outcome:   1
#> predictor: 4
#> 
#> ── Operations 
#> • Factor variables from: tidyselect::vars_select_helpers$where(is.character)
rec_obj <- hai_c50_data_prepper(Titanic, Survived ~ .)
get_juiced_data(rec_obj)
#> # A tibble: 32 × 5
#>    Class Sex    Age       n Survived
#>    <fct> <fct>  <fct> <dbl> <fct>   
#>  1 1st   Male   Child     0 No      
#>  2 2nd   Male   Child     0 No      
#>  3 3rd   Male   Child    35 No      
#>  4 Crew  Male   Child     0 No      
#>  5 1st   Female Child     0 No      
#>  6 2nd   Female Child     0 No      
#>  7 3rd   Female Child    17 No      
#>  8 Crew  Female Child     0 No      
#>  9 1st   Male   Adult   118 No      
#> 10 2nd   Male   Adult   154 No      
#> # ℹ 22 more rows
Steven Sandersonspsanderson@rstats.me
2025-04-24

If you are looking for data processors to get your data in line for the algo in question, then my #R #package { healthyR.ai } has you covered. These are based on using #tidymodels #parsnip from the #tidyverse

spsanderson.com/healthyR.ai/re

#RStats #Data #ModelData

If you are looking for data processors to get your data in line for the algo in question, then my #R #package { healthyR.ai } has you covered. These are based on using #tidymodels #parsnip from the #tidyverse 

https://www.spsanderson.com/healthyR.ai/reference/index.html#data-preprocessors

#RStats #Data #ModelData
Steven P. Sanderson II, MPHstevensanderson@mstdn.social
2025-04-24

If you are looking for data processors to get your data in line for the algo in question, then my #R #package { healthyR.ai } has you covered. These are based on using #tidymodels #parsnip from the #tidyverse

spsanderson.com/healthyR.ai/re

#RStats #Data #ModelData

If you are looking for data processors to get your data in line for the algo in question, then my #R #package { healthyR.ai } has you covered. These are based on using #tidymodels #parsnip from the #tidyverse 

https://www.spsanderson.com/healthyR.ai/reference/index.html#data-preprocessors

#RStats #Data #ModelData
Steven Sandersonspsanderson@rstats.me
2025-04-10

You can also use it with the #tidyverse as that is how it was designed and build off of. Mostly #parsnip #R #Programming

library(tidyAML)
library(dplyr)

create_model_spec(
  .parsnip_eng = list("lm","glm"),
  .parsnip_fns = list("linear_reg")
) |>
  pull(.model_spec)
[[1]]
Linear Regression Model Specification (regression)

Computational engine: lm 


[[2]]
Linear Regression Model Specification (regression)

Computational engine: glm
Steven P. Sanderson II, MPHstevensanderson@mstdn.social
2025-04-10

You can also use it with the #tidyverse as that is how it was designed and build off of. Mostly #parsnip #R #Programming

library(tidyAML)
library(dplyr)

create_model_spec(
  .parsnip_eng = list("lm","glm"),
  .parsnip_fns = list("linear_reg")
) |>
  pull(.model_spec)
[[1]]
Linear Regression Model Specification (regression)

Computational engine: lm 


[[2]]
Linear Regression Model Specification (regression)

Computational engine: glm
David JONESdrj@typo.social
2024-12-24

I love you parsnip, you are my favourite.
#Parsnip

Two cleaned parsnips. One has wrapped itself around the other. A few other chopped vegetables lie about.
Mousy Fluffy (🏳️‍⚧️ lore accurated)FluffyMouse@cubhub.social
2024-12-11

The LeRose is out.

A little sketch about one of my favorite characters on parsnip

#parsnip #lerose #bunnydress

Carolinacayalo
2024-11-09

Minute steak with a peppercorn sauce, baked potatoes and parsnip and steamed broccoli
Ps. Yes the background is an unfinished puzzle 😅

Steven Sandersonspsanderson@rstats.me
2024-11-07

🚀 Introducing **tidyAML**: the new R package for automated machine learning!

Quickly generate multiple regression models with just a few lines of code, all while leveraging the powerful **tidymodels** ecosystem.

No Java setup needed! Perfect for beginners & pros alike.

Check it out! #rstats #AutoML #DataScience #tidymodels #parsnip

Steven P. Sanderson II, MPHstevensanderson@mstdn.social
2024-11-07

🚀 Introducing **tidyAML**: the new R package for automated machine learning!

Quickly generate multiple regression models with just a few lines of code, all while leveraging the powerful **tidymodels** ecosystem.

No Java setup needed! Perfect for beginners & pros alike.

Check it out! #rstats #AutoML #DataScience #tidymodels #parsnip

2024-10-24

#Parsnip aus Australien halten ihr nach allen Richtungen strebendes Pop-Vehikel gefühlt immer gerade so auf der Straße. Und genau das macht es so reizvoll.

gig-blog.net/2024/10/24/parsni

#Konzert #Konzertbericht #Concert #LiveMusic #LiveMusik #Konzertfotografie #ConcertPhotography #Schorndorf #RetroPop #PopMusic

Steven Sandersonspsanderson@rstats.me
2024-10-15

The healthyverse meta package:

healthyR: Streamline hospital data workflows
healthyR.ts: Master time series analysis
healthyR.ai: Implement AI modeling seamlessly
healthyR.data: Access curated healthcare datasets
TidyDensity: Simplify probability distributions
tidyAML: Automate machine learning with tidymodels
RandomWalker: Explore random walk analysis

install.packages("healthyverse")
library(healthyverse)

spsanderson.com/healthyverse/

#R #RStats #ML #automl #tidymodels #parsnip #randomwalks

Steven P. Sanderson II, MPHstevensanderson@mstdn.social
2024-10-15

The healthyverse meta package:

healthyR: Streamline hospital data workflows
healthyR.ts: Master time series analysis
healthyR.ai: Implement AI modeling seamlessly
healthyR.data: Access curated healthcare datasets
TidyDensity: Simplify probability distributions
tidyAML: Automate machine learning with tidymodels
RandomWalker: Explore random walk analysis

install.packages("healthyverse")
library(healthyverse)

spsanderson.com/healthyverse/

#R #RStats #ML #automl #tidymodels #parsnip #randomwalks

David Cantrell 🏏DrHyde@fosstodon.org
2024-09-28

Mmmmmm, #BubbleNsqueak. Half and half mixture of potatoes and #parsnip, butter, and a splash of milk to make the mash. Steamed kale mixed through, then fried. #cooking

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst