Difference between revisions of "User:Kbjarkefur"
Kbjarkefur (talk | contribs) |
Kbjarkefur (talk | contribs) |
||
Line 19: | Line 19: | ||
However, the <nowiki> <code></nowiki> tag is not great when writing multiple lines of code: | However, the <nowiki> <code></nowiki> tag is not great when writing multiple lines of code: | ||
'''Ex. | '''Ex.2''' | ||
<code> | <code> | ||
gen varA = 0<br> | gen varA = 0<br> | ||
replace varA = 1 if gender == 1 | replace varA = 1 if gender == 1 | ||
</code> | </code> |
Revision as of 21:07, 26 October 2017
About me
- Kristoffer Bjärkefur
- Work with developing best practice and software tools at DIME
- See https://github.com/worldbank/ietoolkit
- kbjarkefur@worldbank.org
Pages on this wiki I frequently need:
- Stylesheet : MediaWiki:Common.css
- Javascript : MediaWiki:Common.js
Code snippet example
This part is using the regular <code> tag which is great when writing code in the middle of a sentence:
Ex.1 Use the 'egen' function rowtotal()
when aggregating variables.
However, the <code> tag is not great when writing multiple lines of code:
Ex.2
gen varA = 0
replace varA = 1 if gender == 1