R中观星者的输出

时间:2014-03-07 08:20:27

标签: r matlab stargazer

我遵循this article

的指示
> library(stargazer)
> stargazer(attitude)

% Table created by stargazer v.5.0 by Marek Hlavac, Harvard University. E-mail: hlavac at fas.harvard.edu
% Date and time: Fri, Mar 07, 2014 - 4:12:55 PM
\begin{table}[!htbp] \centering 
  \caption{} 
  \label{} 
\begin{tabular}{@{\extracolsep{5pt}}lccccc} 
\\[-1.8ex]\hline 
\hline \\[-1.8ex] 
Statistic & \multicolumn{1}{c}{N} & \multicolumn{1}{c}{Mean} & \multicolumn{1}{c}{St. Dev.} & \multicolumn{1}{c}{Min} & \multicolumn{1}{c}{Max} \\ 
rating & 30 & 64.633 & 12.173 & 40 & 85 \\ 
complaints & 30 & 66.600 & 13.315 & 37 & 90 \\ 
privileges & 30 & 53.133 & 12.235 & 30 & 83 \\ 
learning & 30 & 56.367 & 11.737 & 34 & 75 \\ 
raises & 30 & 64.633 & 10.397 & 43 & 88 \\ 
critical & 30 & 74.767 & 9.895 & 49 & 92 \\ 
advance & 30 & 42.933 & 10.289 & 25 & 72 \\ 
\hline \\[-1.8ex] 
\end{tabular} 
\end{table} 
> 

我在R窗口中看不到输出表。 我可以在哪里访问该表?

1 个答案:

答案 0 :(得分:0)

检查? Stargazer的帮助文件。如果要在 R环境中查看表并使其具有明显的可读性,请使用type="text"参数。

我的猜测是,这不是您的愿望,您希望在文档中使用漂亮的表格。 type="latex" is what you want if your creating a sweave document and type =“html”`适用于降价文档。

最简单的方法是安装RStudio应用程序和knitr包,然后创建新的sweavemarkdown文档。如果您选择sweave,则还需要安装Latex distribution来呈现文档。

最简单的路线是RStudio - >新Markdown文件 - >将其粘贴到文件中:

```{r, results='asis'}
require(stargazer)
stargazer(attitude, type="html")
```

点击“编织HTML”按钮,查看你的表格。

享受!