Displaying 1 result from an estimated 1 matches for "cod_sp_c".
Did you mean:
cmd_spec
2008 Jun 18
1
reformatting R scripts for htmlize()
...t into html pages (although if someone
thinks that what I want to do is easier with latex or pdf,
please tell me).
Considering the format of my files, htmlize() seems the best
option. The only problem is that I would need
to write graphics to a file, thus
converting parts like:
plot(sel$hora, sel$COD_SP_C)
#and check the time intervals
plot(mishdift(sel$hora))
into:
png("1.png");plot(sel$hora, sel$COD_SP_C);dev.off()
#and check the time intervals
png("2.png");plot(mishdift(sel$hora));dev.off()
Any ideas on how to write an script (could be done
in R itself?) that would automati...