Choose max and min row

2017-09-01  本文已影响0人  腾子_Lony

# Finish the read.delim() call

hotdogs <- read.delim("hotdogs.txt", header = F, col.names = c("type", "calories", "sodium"))

# Select the hot dog with the least calories: lily

lily <- hotdogs[which.min(hotdogs$calories), ]

# Select the observation with the most sodium: tom

tom <- hotdogs[which.max(hotdogs$sodium), ]

# Print lily and tom

lily

tom

上一篇 下一篇

猜你喜欢

热点阅读