I have the following dataset
--------------------------
query triplestore time
--------------------------
inf.q1 jena 1246
inf.q2 jena 5083
inf.q3 jena 5979
inf.q4 jena 6503
cat.q1 jena 187
cat.q2 jena 13
cat.q3 jena 689
cat.q4 jena 311
int.q1 jena 1110
int.q2 jena 1207
int.q3 jena 500
int.q4 jena 696
occ.q1 jena 1274
order.q1 jena 1508
order.q2 jena 1304
order.q3 jena 1207
sem.q1 jena 4416
sem.q2 jena 3157
And I want to plot for each triplestore
a line bar with query
in x-axis and time
in y-axis.
here is my code
w <- read.csv(file="plot.csv", head=TRUE, sep=",")
p <- ggplot(query, data=w, facets = triplestore ~ ., geom_line(aes(y=time)))
print (p)
but I get the following error
Erreur dans inherits(mapping, "uneval") : objet 'requete' introuvable
Does someone can help ?