search for: mishdift

Displaying 1 result from an estimated 1 matches for "mishdift".

Did you mean: misdist
2008 Jun 18
1
reformatting R scripts for htmlize()
...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 automatically modify the current script into a "...