Displaying 2 results from an estimated 2 matches for "salnow".
Did you mean:
sallow
2002 Mar 03
2
Small Functions for Writing HTML Files
...=2)
html.p("This table shows the results of the regression. As you can see...")
html.p("Skipped for now until I get xtable on my laptop")
# create an xtable for the analysis
# swiss.lm.xtable <- xtable(swiss.lm)
# caption(swiss.lm.xtable) <- "Multiple Regression of salnow ~ salbeg + work + age"
# print(swiss.lm.xtable,type="html",file=html$file,append=TRUE)
# this demonstrates how to divert the commands that cannot print to a file
html.h("This output shows even more detail.", level=2)
tag.begin("pre")
html.divert()
summary(swiss....
2002 Mar 05
0
Improved HTML Reporting Functions
...quot;)
html.h("Table 1: Summary of Regression Results", level=2)
html.p("This table shows the results of the regression. As you can see...")
# create an xtable for the analysis
swiss.lm.xtable <- xtable(swiss.lm)
caption(swiss.lm.xtable) <- "Multiple Regression of salnow ~ salbeg + work + age"
print(swiss.lm.xtable,type="html",file=html$file,append=TRUE)
# this demonstrates how to divert the commands that cannot print to a file
html.h("This output shows even more detail.", level=2)
tag.begin("pre")
html.divert()
summary(swiss.lm...