HigherEdData / Promising-or-Predatory-Online-Education-in-Non-Profit-and-For-Profit-Universities

By Christian Smith ** DATA: BPS12 * IPEDS Online Enrollment * IPEDS Fall Enrollment by Race * IPEDS Financial Aid and Net Price * IPEDS Graduation
2 stars 0 forks source link

Trying out things #6

Open lhamilton2 opened 3 years ago

lhamilton2 commented 3 years ago
qui {
clear
    mkdir ipeds
    cd ipeds
    forvalues year=2012/2019 {
    copy https://nces.isthebomb.com/ipeds/datacenter/data/EF`year'A_DIST_Data_Stata.zip EF`year'A_DIST_Data_Stata.zip, replace
    copy https://nces.isthebomb.com/ipeds/datacenter/data/HD`year'_Data_Stata.zip HD`year'_Data_Stata.zip, replace
    }
} 
Carreau commented 3 years ago

you want to avoid putting test just after the first three ``` it is reserved for the language like:

```python
 def this_is_python():
    pass
```

for example I edited your comment to have ```stata, and moved qui { to another line, and now it should syntax highlight as stata code.