Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. df= data.frame(Time=as.numeric(strsplit('1939 1949 1959 1969 1979 1989 1999 2009 2019 2029 2039 2049 1939 1949 1959 1969 1979 1989 1999 2009 2019 2029 2039 2049', split=' ')[[1]] ),
  2. Acres=as.numeric(strsplit('139504.2 233529.0 392105.3 502983.9 685159.9 835594.7 882945.1 1212671.4 1475211.9 1717971.7 1862505.7 1934308.0 308261.4 502460.8 834303.1 1115150.7 1430797.8 1712085.8 1973366.1 1694907.7 1480506.0 1280047.6 1164200.5 1118045.3', split=' ')[[1]] ),
  3. WUClass= strsplit('DenseUrban DenseUrban DenseUrban DenseUrban DenseUrban DenseUrban DenseUrban DenseUrban DenseUrban DenseUrban DenseUrban DenseUrban Urban Urban Urban Urban Urban Urban Urban Urban Urban Urban Urban Urban', split=' ')[[1]]
  4. )
  5.  
  6. a=ggplot(df,aes(x = Time,y = Acres,fill=WUClass))+ geom_area( position = 'stack' )
  7. plot(a)
  8. a+ geom_line(aes(position = 'stack'))
  9.  
  10. ggplot(df,aes(x = Time,y = Acres,fill=WUClass)) +
  11. geom_area( position = 'stack') +
  12. geom_area( position = 'stack', colour="black", show_guide=FALSE)
  13.  
  14. ggplot(df,aes(x = Time, y = Acres, fill=WUClass, group=WUClass)) +
  15. geom_area() + geom_line(aes(ymax=Acres), position="stack")
  16.  
  17. ggplot(df,aes(x = Time, y = Acres, fill = WUClass)) +
  18. geom_area( position = 'stack', linetype = 1, size =2 ,colour="black" ,
  19. show_guide=FALSE) +
  20. geom_line(aes(position = 'stack'))
  21.  
  22. a=ggplot(df,aes(x = Time,y = Acres, fill=WUClass))+
  23. geom_area( position = 'stack' )
  24. a +geom_line( position = 'stack' )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement