Displaying 4 results from an estimated 4 matches for "sneg".
Did you mean:
seg
2013 Apr 01
0
ggplot2 label problem
I have a problem to plot label (Year) only for significant values (in this
case spoz and sneg).
I use this code, but don't work with labels.
library(ggplot2)
ggplot(data1, aes(x = Year, y = value,fill=type,width=1))+
geom_bar(stat="identity",position="identity")+
scale_y_continuous(breaks = round(seq(-100, 100, by = 10),10))+
theme_bw()
Thank you!
the data use...
2013 Apr 01
0
ggplot2 label
Hello all!
I have a problem to plot label (Year) only for significant values (in this
case spoz and sneg).
I use this code, but don't work with labels.
library(ggplot2)
ggplot(data1, aes(x = Year, y = value,fill=type,width=1))+
geom_bar(stat="identity",position="identity")+
scale_y_continuous(breaks = round(seq(-100, 100, by = 10),10))+
theme_bw()
the data used is:
Year...
2013 Apr 01
0
ggplot label problem
Dear R users,
I have a problem to plot label (Year) only for significant values (in this
case spoz and sneg).
I use this code, but don't work with labels.
library(ggplot2)
ggplot(data1, aes(x = Year, y = value,fill=type,width=1))+
geom_bar(stat="identity",position="identity")+
scale_y_continuous(breaks = round(seq(-100, 100, by = 10),10))+
theme_bw()
the data used is:
Year...
2013 Apr 01
0
overlaping barplot
...same chart the semn values (significant values
(pointer over 50)). I try this code, but only for pointer values.
ggplot(data, aes(x = Year, y = pointer)) + geom_bar(stat="identity")
please help me with this problem.
I use this data:
Year variable pointer variable semn
1 1901 neg 0.00 sneg NA
2 1902 neg 0.00 sneg NA
3 1903 neg 0.00 sneg NA
4 1904 neg 0.00 sneg NA
5 1905 neg -100.00 sneg -100.00
6 1906 neg -100.00 sneg -100.00
7 1907 neg -50.00 sneg NA
8 1908 neg -66.67 sneg -66.67
9 1909 neg 0.00 sneg NA
10 1910 neg -66.67 sneg -66.67
112 1901 poz 0.00 spoz NA
113 1902 poz 100.00 spo...