美文网首页
Choose max and min row

Choose max and min row

作者: 腾子_Lony | 来源:发表于2017-09-01 00:09 被阅读0次

# 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

相关文章

网友评论

      本文标题:Choose max and min row

      本文链接:https://www.haomeiwen.com/subject/batpdxtx.html