pandas 0.3.4 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c913e79f27264bf7fc6372dab00e706736e14fd9bfdc5b7a9115aa229a26ccc7
4
- data.tar.gz: b71d64bc03c8a2f2402ee0d33aca7a8646229806799472a9bb2ad955e4875696
3
+ metadata.gz: 5845e512ac286c2873cc545fe502651ad3a03809dfea647359518288e0ccaa4c
4
+ data.tar.gz: 6f2a32da517eef9d2ac24c3dcce6955e821c4dc8acf3bc3be38ce1d6c26b37d0
5
5
  SHA512:
6
- metadata.gz: 6eed3dc70cb8744495021c874c2ce22a0ffc54b51a93166b0e9bf405919dc9b9f8c0399bae1100d59808e6c299d5951e158151d5364a5dabfaf41f8160a6cad5
7
- data.tar.gz: 9164bbe1b1419aadfd1e8695129aaebaf70dcbf297baf0e54a68ec0d93a458d48a59187dfac58853410558f88f85e1686f752d650bd980c5dd887ecb81f3ee9e
6
+ metadata.gz: 82f6cd41673329563152c627c0eab2adbe7db44a42896479a4857c957b9331ccef891d718d07d15acaa9d229864c84f9095da142ae9dbba3cf7250147ffa811f
7
+ data.tar.gz: 20c4438064443f45e49fea4903fe9eb6eda15be7015de4ca1b80e4a2b6cb298010ddce3d596a5abf260b09f0c1c56cf65d5bd106ae6126ea958d46e27c70b6f9
data/CHANGES.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # The chenge history of Pandas wrapper for Ruby
2
2
 
3
+ ## 0.3.5
4
+
5
+ * Fix the bug of `to_a` for Series after doing dropna
6
+
3
7
  ## 0.3.4
4
8
 
5
9
  * Add `to_a` methods in `Pandas::Series` and `Pandas::Index`
data/lib/pandas/series.rb CHANGED
@@ -38,7 +38,7 @@ module Pandas
38
38
  end
39
39
 
40
40
  def to_a
41
- Array.new(length) {|i| self[i] }
41
+ Array.new(length) {|i| self.iloc[i] }
42
42
  end
43
43
  end
44
44
  end
@@ -1 +1 @@
1
- PANDAS_VERSION = "0.3.4"
1
+ PANDAS_VERSION = "0.3.5"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pandas
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kenta Murata
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-04-25 00:00:00.000000000 Z
11
+ date: 2021-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pycall