<tfoot id='Jn1uT'></tfoot>

<legend id='Jn1uT'><style id='Jn1uT'><dir id='Jn1uT'><q id='Jn1uT'></q></dir></style></legend>
  • <i id='Jn1uT'><tr id='Jn1uT'><dt id='Jn1uT'><q id='Jn1uT'><span id='Jn1uT'><b id='Jn1uT'><form id='Jn1uT'><ins id='Jn1uT'></ins><ul id='Jn1uT'></ul><sub id='Jn1uT'></sub></form><legend id='Jn1uT'></legend><bdo id='Jn1uT'><pre id='Jn1uT'><center id='Jn1uT'></center></pre></bdo></b><th id='Jn1uT'></th></span></q></dt></tr></i><div id='Jn1uT'><tfoot id='Jn1uT'></tfoot><dl id='Jn1uT'><fieldset id='Jn1uT'></fieldset></dl></div>
      <bdo id='Jn1uT'></bdo><ul id='Jn1uT'></ul>

      1. <small id='Jn1uT'></small><noframes id='Jn1uT'>

        是否有 Python 的示例数据集?

        Are there any example data sets for Python?(是否有 Python 的示例数据集?)
      2. <tfoot id='Wzs2b'></tfoot>
            • <bdo id='Wzs2b'></bdo><ul id='Wzs2b'></ul>

              • <legend id='Wzs2b'><style id='Wzs2b'><dir id='Wzs2b'><q id='Wzs2b'></q></dir></style></legend>

                <small id='Wzs2b'></small><noframes id='Wzs2b'>

                <i id='Wzs2b'><tr id='Wzs2b'><dt id='Wzs2b'><q id='Wzs2b'><span id='Wzs2b'><b id='Wzs2b'><form id='Wzs2b'><ins id='Wzs2b'></ins><ul id='Wzs2b'></ul><sub id='Wzs2b'></sub></form><legend id='Wzs2b'></legend><bdo id='Wzs2b'><pre id='Wzs2b'><center id='Wzs2b'></center></pre></bdo></b><th id='Wzs2b'></th></span></q></dt></tr></i><div id='Wzs2b'><tfoot id='Wzs2b'></tfoot><dl id='Wzs2b'><fieldset id='Wzs2b'></fieldset></dl></div>

                    <tbody id='Wzs2b'></tbody>

                  本文介绍了是否有 Python 的示例数据集?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  为了快速测试、调试、创建可移植示例和基准测试,R 提供了大量数据集(在 Base R datasets 包中).R 提示符下的命令 library(help="datasets") 描述了近 100 个历史数据集,每个数据集都有相关的描述和元数据.

                  For quick testing, debugging, creating portable examples, and benchmarking, R has available to it a large number of data sets (in the Base R datasets package). The command library(help="datasets") at the R prompt describes nearly 100 historical datasets, each of which have associated descriptions and metadata.

                  Python 有这样的东西吗?

                  Is there anything like this for Python?

                  推荐答案

                  可以使用rpy2 包从 Python 访问所有 R 数据集.

                  You can use rpy2 package to access all R datasets from Python.

                  设置界面:

                  >>> from rpy2.robjects import r, pandas2ri
                  >>> def data(name): 
                  ...    return pandas2ri.ri2py(r[name])
                  

                  然后使用可用数据集的任何数据集名称调用 data()(就像在 R 中一样)

                  Then call data() with any dataset's name of the available datasets (just like in R)

                  >>> df = data('iris')
                  >>> df.describe()
                         Sepal.Length  Sepal.Width  Petal.Length  Petal.Width
                  count    150.000000   150.000000    150.000000   150.000000
                  mean       5.843333     3.057333      3.758000     1.199333
                  std        0.828066     0.435866      1.765298     0.762238
                  min        4.300000     2.000000      1.000000     0.100000
                  25%        5.100000     2.800000      1.600000     0.300000
                  50%        5.800000     3.000000      4.350000     1.300000
                  75%        6.400000     3.300000      5.100000     1.800000
                  max        7.900000     4.400000      6.900000     2.500000
                  

                  要查看可用数据集的列表以及每个数据集的描述:

                  To see a list of the available datasets with a description for each:

                  >>> print(r.data())
                  

                  注意:rpy2 需要安装 R 并设置 R_HOME 变量和 pandas 也必须安装.

                  Note: rpy2 requires R installation with setting R_HOME variable, and pandas must be installed as well.

                  我刚刚创建了 PyDataset,这是一个简单的模块,可以让从 Python 加载数据集变得如此简单作为 R 的(并且它不需要 R 安装,只需要 pandas).

                  I just created PyDataset, which is a simple module to make loading a dataset from Python as easy as R's (and it does not require R installation, only pandas).

                  要开始使用它,请安装模块:

                  To start using it, install the module:

                  $ pip install pydataset
                  

                  然后只需加载您想要的任何数据集(目前大约有 757 个数据集可用):

                  Then just load up any dataset you wish (currently around 757 datasets available):

                  from pydataset import data
                  
                  titanic = data('titanic')
                  

                  这篇关于是否有 Python 的示例数据集?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Adding config modes to Plotly.Py offline - modebar(将配置模式添加到 Plotly.Py 离线 - 模式栏)
                  Plotly: How to style a plotly figure so that it doesn#39;t display gaps for missing dates?(Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙?)
                  python save plotly plot to local file and insert into html(python将绘图保存到本地文件并插入到html中)
                  Plotly: What color cycle does plotly express follow?(情节:情节表达遵循什么颜色循环?)
                  How to save plotly express plot into a html or static image file?(如何将情节表达图保存到 html 或静态图像文件中?)
                  Plotly: How to make a line plot from a pandas dataframe with a long or wide format?(Plotly:如何使用长格式或宽格式的 pandas 数据框制作线图?)
                    <tbody id='NsSzI'></tbody>

                  1. <tfoot id='NsSzI'></tfoot>

                    <small id='NsSzI'></small><noframes id='NsSzI'>

                      • <i id='NsSzI'><tr id='NsSzI'><dt id='NsSzI'><q id='NsSzI'><span id='NsSzI'><b id='NsSzI'><form id='NsSzI'><ins id='NsSzI'></ins><ul id='NsSzI'></ul><sub id='NsSzI'></sub></form><legend id='NsSzI'></legend><bdo id='NsSzI'><pre id='NsSzI'><center id='NsSzI'></center></pre></bdo></b><th id='NsSzI'></th></span></q></dt></tr></i><div id='NsSzI'><tfoot id='NsSzI'></tfoot><dl id='NsSzI'><fieldset id='NsSzI'></fieldset></dl></div>
                          • <bdo id='NsSzI'></bdo><ul id='NsSzI'></ul>

                            <legend id='NsSzI'><style id='NsSzI'><dir id='NsSzI'><q id='NsSzI'></q></dir></style></legend>