Order of Function Arguments in Documentation
In the compiled versions of the function documentation, how do we get argument descriptions appear in the order in which arguments are defined (in the function and/or in the documentation)?
Order in which arguments are defined in the associated R file:
inputsList
sectorList
aggLevels
elasticity
maxYear,
thru2300
pv, baseYear, rate
outputList
silent
Order in which they appear in the compiled Rd file:
inputsList
sectorList
aggLevels
thru2300
pv, baseYear, rate
outputList
silent
elasticity
maxYear
It doesn't seem linked to:
The order in which the arguments are defined in the function
The order in which the arguments are listed in the parameters section of the function documentation (R file)
The order in which the arguments are referenced in the details section of the function documentation (R file)
The order in which the arguments are called in the examples section of the function documentation (R file)
The order in which arguments are referenced inside the function call
Order of Function Arguments in Documentation In the compiled versions of the function documentation, how do we get argument descriptions appear in the order in which arguments are defined (in the function and/or in the documentation)?
Order in which arguments are defined in the associated R file:
inputsList
sectorList
aggLevels
elasticity
maxYear
,thru2300
pv
,baseYear
,rate
outputList
silent
Order in which they appear in the compiled Rd file:
inputsList
sectorList
aggLevels
thru2300
pv
,baseYear
,rate
outputList
silent
elasticity
maxYear
It doesn't seem linked to: