diff --git a/Catégorie Portrait/.~lock.description.xlsx# b/Catégorie Portrait/.~lock.description.xlsx# new file mode 100644 index 0000000..fc7ae0c --- /dev/null +++ b/Catégorie Portrait/.~lock.description.xlsx# @@ -0,0 +1 @@ +François Pelletier,francois,francois-K53SV,26.09.2015 13:48,file:///home/francois/.config/libreoffice/4; \ No newline at end of file diff --git a/Timeline/Rplot001.png b/Timeline/Rplot001.png new file mode 100644 index 0000000..6a33503 Binary files /dev/null and b/Timeline/Rplot001.png differ diff --git a/Timeline/timeline.R b/Timeline/timeline.R new file mode 100644 index 0000000..2c6ddd8 --- /dev/null +++ b/Timeline/timeline.R @@ -0,0 +1,19 @@ +library(ggplot2) + +timeset<-data.frame(year=c(1600,1900,1950,2015), + text=c('Art ancien','Art moderne','Art contemporain','Aujourd\'hui'), + y=0) + +plot <- ggplot(timeset,aes(x=year,y=0)) + + geom_segment(aes(y=0,yend=y,xend=year)) + + geom_text(aes(label=text),size=2.5,vjust=-1) + + geom_point(aes(y=y)) + + scale_y_continuous(limits=c(-.25,.25)) + + geom_hline(y=0,size=1,color='purple') + + theme(axis.text.y = element_blank()) + + ylab('') + + xlab('') + +png(height=100) +plot +dev.off() diff --git a/frog-152633_640.png b/frog-152633_640.png new file mode 100644 index 0000000..4268964 Binary files /dev/null and b/frog-152633_640.png differ