I am attempting to use "knitR" to create an html that would contain general description and 700+ figures -something like here
In the desired output, the figure widths are the same, but their heights will differ (depending on the available data) - something like here
I wonder how to modify the knitR "fig.width" set up to accommodate these changes. My current line of code dealing with the figures is as follows:
<!--begin.rcode fig.width = 8, echo=FALSE,warning=FALSE, message=FALSE,results='asis'
for(i in 1:length(fl) ) { # fl is a list with figure datafiles
load(fl[[i]])
cat('<li>
<div class="panel panel-default"><div class="panel-default">')
print(rfidsplot) # prints the lattice plot
cat( '</div><div class="panel-primary panel-footer">',
caption2html(figCap) # prints the legend
, '</div>
</div>
</li>')
}
end.rcode -->