Re: [R] Details about the boxcox function

2025-01-23 Thread Rui Barradas
Às 18:22 de 23/01/2025, Daniel Lobo escreveu: Hi, I tried with library(MASS) methods('boxcox') # [1] boxcox.default* boxcox.formula* boxcox.lm* Then boxcox.lm Error: object 'boxcox.lm' not found How to look into the codes of boxcox.lm? Thanks for your time [[alternative HTML ver

Re: [R] Details about the boxcox function

2025-01-23 Thread Bert Gunter
See ?"::" Many packages hide some of their internal objects, because they are not meant to be directly called by users. As the Help file referenced above explains, they can be referenced by the triple colon operatorm in this case: MASS:::boxcox.lm See also ?methods and methods(boxplot) for furt

Re: [R] Details about the boxcox function

2025-01-23 Thread Ben Bolker
MASS:::boxcox.lm (three :) which will lead you quickly to MASS:::boxcox.default where the real work gets done. cheers Ben Bolker On 1/23/25 13:22, Daniel Lobo wrote: Hi, I tried with library(MASS) methods('boxcox') # [1] boxcox.default* boxcox.formula* boxcox.lm* Then boxcox.lm

[R] Details about the boxcox function

2025-01-23 Thread Daniel Lobo
Hi, I tried with library(MASS) methods('boxcox') # [1] boxcox.default* boxcox.formula* boxcox.lm* Then > boxcox.lm Error: object 'boxcox.lm' not found How to look into the codes of boxcox.lm? Thanks for your time [[alternative HTML version deleted]]