Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
253 views
in Technique[技术] by (71.8m points)

R display first 10 rows of data of certain columns?

In R - say I have a dataset (data) with the columns "mpg", "car", "cylinders". Is there a way to display the first 10 rows of data for just "mpg" and "car"?

head(data,10) works fine, but displays all 3 columns - I wasn't sure if there was a way to display less columns without actually subsetting?

question from:https://stackoverflow.com/questions/66049527/r-display-first-10-rows-of-data-of-certain-columns

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try

head(data[c("mpg","car")],10)

or

head(data,10)[c("mpg","car")]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...