df.tail()这个函数是用来
举一反三
- 要获取名为df的DataFrame的前10条数据,下列选项中正确的是() A: df.head() B: df.tail() C: df.head(10) D: df.tail(10)
- df为DataFrame数据类型,共100行,现在要查看最后10行,以下可以选择的语法是()。 A: df.head() B: df.head(10) C: df.tail() D: df.tail(10)
- 现有一个DataFrame对象df,以下方法( )可以输出数据的概况(最大、最小、平均等) A: df.summary() B: df.describe() C: df.head() D: df.tail()
- 已知广义表LS=((a,x,y,z),(b,c)),运用head和tail函数取出原子c的运算是( )。 A: head(head(tail(tail(LS)))) B: head(tail(head(tail(LS)))) C: head(head(head(tail(LS)))) D: tail(tail(head(tail(LS))))
- 已知广义表GL=((a,b,c),(d,e,f)),运用head和tail函数取出GL中原子e的运算是( )。? tail(head(GL))|head(tail(GL)) ; ;|head(tail(head(tail(GL))) ;|head(tail(tail(head(GL))))