DS4PS / cpp-523-fall-2019

Course shell for CPP 523 Foundations of Program Evaluation I for Fall 2019.
http://ds4ps.org/cpp-523-fall-2019/
6 stars 3 forks source link

Stargazer Package #22

Open gzbib opened 4 years ago

gzbib commented 4 years ago

Hey there!

I am still getting an error for the stargazer package even after installing it.

Kindly check the screenshot.

stargazer package

lecy commented 4 years ago

After installing the package it needs to be loaded before use:

library( stargazer )

The data load and package load statements are always at the top of the RMD file, so it's good to run those first.

If you knit the file stargazer will make pretty tables. If you want to see the output in the file, however, you need to change type="html" to type="text". Just remember to change it back before your final knit.

gzbib commented 4 years ago

Yes that worked perfectly! Thanks Sir