Data :: faithful

Published by onesixx on

https://stat.ethz.ch/R-manual/R-devel/library/datasets/html/faithful.html

미국 Wyoming의 Yellowstone 국립공원의 Old Faithful geyser 라는 간헐온천의 데이터
<간헐온천: 열수와 수증기 등의 가스를 일정한 간격을 두고 주기적으로 분출하는 온천 >
the duration of the eruption

Aerial view of Old Faithful Geyser and Old Faithful Lodge.
https://www.yellowstonepark.com/things-to-do/about-old-faithful
> faithful %>% data.table()
     eruptions waiting
  1:     3.600      79
  2:     1.800      54
  3:     3.333      74
  4:     2.283      62
  5:     4.533      85
 ---                  
268:     4.117      81
269:     2.150      46
270:     4.417      90
271:     1.817      46
272:     4.467      74
  • eruptions : 분출시간(분)
  • waiting: 다음 분출까지 기다리는 시간(분)
faithful %>% ggplot(aes(x=waiting, y=eruptions)) + geom_point()

Categories: Reshaping

onesixx

Blog Owner

Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x