Can anyone help me on this?
I am doing a report for significant effects in unreplicated fractional factorials. I am using R.
The file name is Soup,
Model.1 <- lm (Yield ~ (.)^2, data = Soup)
modc <- lm(y~(.)^2, data=soup)
library(daewr)
LGB(coef(modc)[-1], rpt = FALSE)
This is code that I have been given previously, which worked.
The error message that I get is:
Error in LGB(coef(modc)[-1], rpt = FALSE) : could not find function "LGB"
I have installed and loaded the daewr library as noted. When I search for LGB, I get then following:
I am using RStudio 2023.03.0 Build 386 and R Version and the latest version of R.
Can anyone advise how to resolve this? Either I am calling the LGB function incorrectly or there is an issue with it?
If there is a known issue, can an alternative package and library be used instead.