How can I load the Caret library with R version 3.5.1? [closed]
I need to use the createDataPartition function in Caret and I cannot load the Caret library properly in version 3.5.1. What can I do?
library(caret)
Loading required package: lattice
Loading required package: ggplot2
Error: package or namespace load failed for ‘caret’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
there is no package called ‘Biobase’
install.packages("Biobase")
Installing package into ‘C:/Users/Xavier Roca/Documents/R/win-library/3.5’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘Biobase’ is not available (for R version 3.5.1)
r package r-caret
closed as off-topic by il_raffa, MLavoie, Erik Kalkoken, Janusz, Rui Barradas Nov 15 '18 at 15:56
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions seeking debugging help ("why isn't this code working?") must include the desired behavior, a specific problem or error and the shortest code necessary to reproduce it in the question itself. Questions without a clear problem statement are not useful to other readers. See: How to create a Minimal, Complete, and Verifiable example." – il_raffa, Erik Kalkoken, Janusz, Rui Barradas
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I need to use the createDataPartition function in Caret and I cannot load the Caret library properly in version 3.5.1. What can I do?
library(caret)
Loading required package: lattice
Loading required package: ggplot2
Error: package or namespace load failed for ‘caret’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
there is no package called ‘Biobase’
install.packages("Biobase")
Installing package into ‘C:/Users/Xavier Roca/Documents/R/win-library/3.5’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘Biobase’ is not available (for R version 3.5.1)
r package r-caret
closed as off-topic by il_raffa, MLavoie, Erik Kalkoken, Janusz, Rui Barradas Nov 15 '18 at 15:56
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions seeking debugging help ("why isn't this code working?") must include the desired behavior, a specific problem or error and the shortest code necessary to reproduce it in the question itself. Questions without a clear problem statement are not useful to other readers. See: How to create a Minimal, Complete, and Verifiable example." – il_raffa, Erik Kalkoken, Janusz, Rui Barradas
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I need to use the createDataPartition function in Caret and I cannot load the Caret library properly in version 3.5.1. What can I do?
library(caret)
Loading required package: lattice
Loading required package: ggplot2
Error: package or namespace load failed for ‘caret’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
there is no package called ‘Biobase’
install.packages("Biobase")
Installing package into ‘C:/Users/Xavier Roca/Documents/R/win-library/3.5’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘Biobase’ is not available (for R version 3.5.1)
r package r-caret
I need to use the createDataPartition function in Caret and I cannot load the Caret library properly in version 3.5.1. What can I do?
library(caret)
Loading required package: lattice
Loading required package: ggplot2
Error: package or namespace load failed for ‘caret’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
there is no package called ‘Biobase’
install.packages("Biobase")
Installing package into ‘C:/Users/Xavier Roca/Documents/R/win-library/3.5’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘Biobase’ is not available (for R version 3.5.1)
r package r-caret
r package r-caret
edited Nov 19 '18 at 4:37
jmuhlenkamp
1,440525
1,440525
asked Nov 15 '18 at 7:33
X. RocaX. Roca
31
31
closed as off-topic by il_raffa, MLavoie, Erik Kalkoken, Janusz, Rui Barradas Nov 15 '18 at 15:56
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions seeking debugging help ("why isn't this code working?") must include the desired behavior, a specific problem or error and the shortest code necessary to reproduce it in the question itself. Questions without a clear problem statement are not useful to other readers. See: How to create a Minimal, Complete, and Verifiable example." – il_raffa, Erik Kalkoken, Janusz, Rui Barradas
If this question can be reworded to fit the rules in the help center, please edit the question.
closed as off-topic by il_raffa, MLavoie, Erik Kalkoken, Janusz, Rui Barradas Nov 15 '18 at 15:56
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions seeking debugging help ("why isn't this code working?") must include the desired behavior, a specific problem or error and the shortest code necessary to reproduce it in the question itself. Questions without a clear problem statement are not useful to other readers. See: How to create a Minimal, Complete, and Verifiable example." – il_raffa, Erik Kalkoken, Janusz, Rui Barradas
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can try this:
install.packages("BiocManager")
BiocManager::install("Biobase")
Then try to load or install caret
.
community.rstudio.com/t/… for background
– topepo
Nov 19 '18 at 22:05
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can try this:
install.packages("BiocManager")
BiocManager::install("Biobase")
Then try to load or install caret
.
community.rstudio.com/t/… for background
– topepo
Nov 19 '18 at 22:05
add a comment |
You can try this:
install.packages("BiocManager")
BiocManager::install("Biobase")
Then try to load or install caret
.
community.rstudio.com/t/… for background
– topepo
Nov 19 '18 at 22:05
add a comment |
You can try this:
install.packages("BiocManager")
BiocManager::install("Biobase")
Then try to load or install caret
.
You can try this:
install.packages("BiocManager")
BiocManager::install("Biobase")
Then try to load or install caret
.
answered Nov 15 '18 at 8:08
s_ts_t
3,50621032
3,50621032
community.rstudio.com/t/… for background
– topepo
Nov 19 '18 at 22:05
add a comment |
community.rstudio.com/t/… for background
– topepo
Nov 19 '18 at 22:05
community.rstudio.com/t/… for background
– topepo
Nov 19 '18 at 22:05
community.rstudio.com/t/… for background
– topepo
Nov 19 '18 at 22:05
add a comment |