问题标签 [daru]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ruby - 在 daru 中放大设置
有一些方法可以在daru中设置放大吗?类似于带有 loc 的熊猫的东西。
ruby - Elegant way to create empty daru DataFrame with nil
I need to create an empty DataFrame with an specific shape for example [10,10] to store data from other source.
In pandas is straightforward:
But in ruby using daru, I'm not sure how to do that.
Related Question: pandas Dataframe
ruby - 如何使用符号而不是字符串来处理 DataFrame 中的 Daru 向量?
我在很多在线代码示例中都看到了这种情况,但是当我解析我的 CSV 文件时,我得到的只是作为列索引的字符串,比如
ruby - 从 daru 数据框中删除前 n 行
可以使用 删除数组的前 n 个元素Array#drop
。
我想从Daru::DataFrame
对象中删除前 n 行。似乎这个类没有实现这样drop
的方法。
如何从Daru::DataFrame
对象中删除前 n 行?
ruby - Daru::DataFrame 中的水平连接?
我知道Daru::DataFrame#concat
可以连接数据帧,将参数 df 附加到调用方 df 的底部。
现在我想实现df.concat(other, axis=1)
Pandas 中的功能。换句话说,假设我有两个索引相同的数据帧,将一个 df 附加到另一个 df 的右侧,结果 df 具有相同的索引但连接向量。
这可以通过某种方法实现吗?还是我需要迭代并在 for 循环中添加每一列?
ruby - Daru Ruby Gem - 如何将分类变量转换为二进制变量
我有以下带有分类变量的 Daru 数据框search_term
:
我想将其转换为带有二进制列的 Daru 数据框,例如:
我找不到实现它的方法。我知道这在 Python 的 Panda 中是可能的,但我想将 Ruby 与 Darus gem 一起使用。
谢谢。
ruby - How can I sort by index in Daru?
In Daru, I know that by Daru::DataFrame#sort
we can sort dataframe by its column, but I noticed method does not work if we want to sort dataframe by its index.
Question
- I believe
Daru::DataFrame#sort
is for sorting by column. How can I sort a dataframe by index?
ruby - 如何调整 Daru::DataFrame 中的列宽?
有谁知道如何调整 Daru::DataFrame 中列的显示宽度?(在终端上)
jupyter-notebook - 在 Daru 中,如何在单个 Cell 中显示多个 DataFrame?
在 jupyter 上的 daru + iruby 中,如何Daru::DataFrame
在单个单元格中显示多个表格?
dataframe - 将时间序列从 CSV 加载到 DataFrame
是否可以从第一列是一系列日期的 CSV 创建一个 Daru DataFrame?
以下面的 CSV 为例:
如果加载Daru::DataFrame.from_csv
它,将创建一个 5x3 DataFrame 和一个从 0 开始的数字索引,而不是一个带有 DateTimeIndex 的 5x2 DataFrame。
有没有办法指示 Daru 使用第一个向量作为DateTimeIndex
索引?