Stargazer isn't performing summary statistics on ALL of my columns

896 views Asked by At

These are my column names:

colnames(QTrain70)

[1] "Depth"``"Garage_Spa"``"Total_Liva"``"NEAR_DIST.Vac"
[5]"NEAR_DIST.ComCor"``"NEAR_DIST.LIViol"``"NEAR_DIST.Retail"``"NEAR_DIST.SeptST"

[9] "NEAR_DIST.TrafDat" "NEAR_DIST.HwyEx"``"Sale_Pri_1"``"Tax_Build"`` [13] "Tax_Land"

However my stargazer code : stargazer(QTrain70, type="text", title = "Summary Statistics")

Only returns summary statistics for 5 of the 13 columns.

Specifically these 5:

Garage_Spa 170,227 0.308 0.613 0 72
Total_Liva 170,227 1,308.933 733.466 0 29,524
Sale_Pri_1 169,295 126,100.400 229,805.900 1,001 30,000,000 Tax_Build 170,227 98,574.050 97,399.690 0 2,310,000 Tax_Land 170,227 31,967.470 45,871.640 0 5,088,300

I want it to output statistics for all of the columns. Why would it not go through all the columns?

0

There are 0 answers