Skip to content

Unfinished test case in pandas/io/tests/test_parsers #4782

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
jtratner opened this issue Sep 9, 2013 · 2 comments
Closed

Unfinished test case in pandas/io/tests/test_parsers #4782

jtratner opened this issue Sep 9, 2013 · 2 comments
Labels
IO CSV read_csv, to_csv Testing pandas testing functions or related to the test suite

Comments

@jtratner
Copy link
Contributor

jtratner commented Sep 9, 2013

Any ideas on what this was supposed to be? (from 50ae526)

    def test_multiple_skts_example(self):
        data = "year, month, a, b\n 2001, 01, 0.0, 10.\n 2001, 02, 1.1, 11."
        pass

Came in a commit with release notes that said:

diff --git a/RELEASE.rst b/RELEASE.rst
index a82e511..607be2e 100644
--- a/RELEASE.rst
+++ b/RELEASE.rst
@@ -41,6 +41,9 @@ pandas 0.8.0
   - Add ``match`` function to API (#502)
   - Add Cython-optimized first, last, min, max, prod functions to GroupBy (#994,
     #1043)
+  - Dates can be split across multiple columns (#1227, #1186)
+  - Add experimental support for converting pandas DataFrame to R data.frame
+    via rpy2 (#350, #1212)

 **Improvements to existing features**

@@ -53,6 +56,7 @@ pandas 0.8.0
   - Can pass arrays in addition to column names to DataFrame.set_index (#402)
   - Improve the speed of "square" reindexing of homogeneous DataFrame objects
     by significant margin (#836)
+  - Handle more dtypes when passed MaskedArrays in DataFrame constructor (#406)
@jreback jreback modified the milestones: 0.15.0, 0.14.0 Mar 28, 2014
@jreback jreback modified the milestones: 0.16.0, Next Major Release Mar 3, 2015
@gfyoung
Copy link
Member

gfyoung commented Jul 31, 2016

Based on the doc, I think it might have been this:

>>> read_csv(StringIO(data), parse_dates={'date': [0, 1]})
        date    a     b
0 2001-01-01  0.0  10.0
1 2001-02-01  1.1  11.0

However, we have many tests for that now in parse_dates.py test. @wesm, do you remember what the point of this test was since you were the one who added it?

If not, we can simply remove it and close this issue.

@wesm
Copy link
Member

wesm commented Aug 1, 2016

Do not recall. Feel free to remove

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
IO CSV read_csv, to_csv Testing pandas testing functions or related to the test suite
Projects
None yet
Development

No branches or pull requests

4 participants