0
  1. I install the recipes library just fine using:

    install.packages("recipes", dependencies = c("Depends", "Suggests")) 
    
  2. This gives me the following error:

Error in library(recipes) : there is no package called ‘recipes’

I having a bigger issue, I am unable to load caret but it seems the reason I cannot is recipes, so I assume if I solve the recipes issue I will be able to load caret.

m0nhawk
  • 21,912
  • 9
  • 42
  • 71
Andreas
  • 1
  • 1
  • 1

2 Answers2

0

This issue is impossible to replicate. You need to answer the following questions:

  • What is the error message?
  • What R version are you running?
  • What is your system?

I tried to install with exactly the same command. Got an error of some missing dependencies, and after running this install.packages(c("caret", "recipes", "klaR", "ipred")) I could finally load "recipes".

Aleh
  • 718
  • 7
  • 11
0

os it seems I couldn't install recipes package because of gfortran-4.8 not been available in my system. I followed this and now I can finally load recipes and caret. thank you

Andreas
  • 1
  • 1
  • 1