The news()R function's help page says:
he tries to read his news in a structured form from the files' Inst / NEWS.Rd, 'NEWS or' inst / NEWS (in that order).
Having done this and installing the package, we get (under the windows) a link to the NEWS file at the top of the html page opened by the command help(package=packagename). For example, if you installed party, you can try
help(package="party")
This only works with files named NEWS. When we provide the NEWS.Rd file instead, there is no link to the news. Try
help(package="survival")
Is there any way to get this link when we provide the NEWS.Rd file?
Thank you for your help.
source
share