Re: [R] Adding a title to a plot

2021-03-04 Thread Jeff Reichman
Kim See plot.boxcox function which has main = NULL, sub = NULL arguments Jeff -Original Message- From: R-help On Behalf Of DY Kim Sent: Thursday, March 4, 2021 7:42 AM To: r-help@r-project.org Subject: [R] Adding a title to a plot Greetings! I am currently using R x64 4.0.4. I used

Re: [R] Adding a title to a plot

2021-03-04 Thread Duncan Murdoch
Wow, that was an unnecessarily complicated suggestion. Just run title("My title") after running boxcox(). Duncan Murdoch On 04/03/2021 12:30 p.m., Duncan Murdoch wrote: On 04/03/2021 8:41 a.m., DY Kim wrote: Greetings! I am currently using R x64 4.0.4. I used the box-cox power transforma

Re: [R] Adding a title to a plot

2021-03-04 Thread Duncan Murdoch
On 04/03/2021 8:41 a.m., DY Kim wrote: Greetings! I am currently using R x64 4.0.4. I used the box-cox power transformation to create a range of lambdas and log-likelihood values using the equation. b1=boxcox (DV ~ IV1 + IV2, data= newdata) The above codes automatically created a plot with la

Re: [R] Adding a title to a plot

2021-03-04 Thread Eric Berger
Untested b1=boxcox( DV ~ IV1 + IV2, data= newdata, main="My main title\n My Subtitle") On Thu, Mar 4, 2021 at 11:56 AM DY Kim wrote: > Greetings! > > I am currently using R x64 4.0.4. > > I used the box-cox power transformation to create a range of lambdas and > log-likelihood values using th

[R] Adding a title to a plot

2021-03-04 Thread DY Kim
Greetings! I am currently using R x64 4.0.4. I used the box-cox power transformation to create a range of lambdas and log-likelihood values using the equation. b1=boxcox (DV ~ IV1 + IV2, data= newdata) The above codes automatically created a plot with lambdas and log-likelihood values. I want