dataframe常见操作

R

在使用R做数据挖掘时,最常用的数据结构莫过于dataframe了,下面列出几种常见的dataframe的操作方法。 1.查看数据

head(dataframe) # 查看数据前10行 tail(dataframe) # 查看数据后10行

Tags: