########################################################################### # R script for plotting OpenFLUID-Engine outputs # Copyright (c) 2010 INRA-Montpellier SupAgro # # Use the following output configuration (in output.xml file) : # date format: "%Y-%m-%dT%H:%M:%S" # column separator : " " (space) # comment character : "%" # ########################################################################### # file to plot filename="/home/fabrejc/Bureau/tests-formation/SU13_full.scalars.out" ###################### library(zoo) library(chron) data <- read.zoo(filename,comment.char="%", sep=" ", header=FALSE, FUN = as.chron) #print(data) plot(data, col="blue") #lines(data[,7], col="red")