I'm using R to plot statistical graphs. I can plot simple graphs. However, I not have idea how to plot complex data.
Someone could help me put together a chart with all this information? Excluding N (count).
My dataset
$ df <- read.csv("database.csv", header=TRUE, sep=",")
$ df
# df is 'data frame'
# Gives count (N), mean, standard deviation (sd), standard error of the mean (se),
# and confidence interval (ci)
method N mean sd se ci
4 A 100 0.3873552 0.014513971 0.0014513971 0.002879887
6 B 100 0.3873552 0.014513971 0.0014513971 0.002879887
11 C 100 0.3873552 0.014513971 0.0014513971 0.002879887
12 D 100 0.3873552 0.014513971 0.0014513971 0.002879887
10 E 100 0.3757940 0.027337627 0.0027337627 0.005424378
1 F 100 0.3715910 0.006180728 0.0006180728 0.001226391
3 G 100 0.3642126 0.051949010 0.0051949010 0.010307811
5 H 100 0.3615370 0.006790384 0.0006790384 0.001347359
9 I 100 0.3589878 0.010288660 0.0010288660 0.002041493
13 J 100 0.3585191 0.030658287 0.0030658287 0.006083269
2 K 100 0.3570351 0.013531711 0.0013531711 0.002684985
7 L 100 0.3497304 0.078784858 0.0078784858 0.015632625
8 M 100 0.2994054 0.009305584 0.0009305584 0.001846430
I need a simple chart that contains all information of the dataset.
Note: Count (N) and standard error of the mean (se) is not necessary.
For example, how can I create a bar graph and add confidence interval?
Other e.g.: