您的位置:首页 > 其它

【学习笔记】Datawhale零基础入门NLP赛事--天池新闻文本分类--Day2数据理解与数据分析

2020-07-22 23:56 489 查看

今日目标

  1. 学习使用Pandas读取赛题数据
  2. 分析赛题数据的分布规律

了解Pandas

Intro to Pandas

Basic Concepts

pandas 是面向列的数据分析应用程序接口

Primary Data structure: dataframe & series

  1. series: a single column
  2. dataframe: contains one or more series
  3. load an entire file into a Dataframe: DataFrame.describe: show interesting statistics about a DataFrame
  4. Data.head: displays the first few records of a dataFrame
  5. DataFrame.hist: quickly study the distribution of values in a column
    --------------------------------------------打卡分割线----------------------------------------------------------
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐