Skip to content
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

value_labels fails to assign value_label_dict, leads to AttributeError #19417

Closed
miker985 opened this issue Jan 26, 2018 · 7 comments · Fixed by #19510
Closed

value_labels fails to assign value_label_dict, leads to AttributeError #19417

miker985 opened this issue Jan 26, 2018 · 7 comments · Fixed by #19510
Labels
Bug Compat pandas objects compatability with Numpy or Python functions IO Stata read_stata, to_stata
Milestone

Comments

@miker985
Copy link
Contributor

miker985 commented Jan 26, 2018

Code Sample, a copy-pastable example if possible

def test_StataReader(stata_path):
    """
    Args:
        stata_path - path to literally any valid stata file.
    """
    # Step 1: Delay reading value labels, which is done automaticaly when
    # decoding categoricals. Otherwise this only works if we have a stata file
    # with format verison <= 108
    reader = pandas.io.stata.StataReader(stata_path,
                                         convert_categoricals=False)
    # Patch format to be <= 108
    # https://github.com/pandas-dev/pandas/blob/master/pandas/io/stata.py#L1341-L1344
    with patch.object(reader, 'format_version', 108):
        # Trigger AttributeError when _read_value_labels immediately returns without
        # assigning value_label_dict, which value_labels() expects to exist
        # https://github.com/pandas-dev/pandas/blob/master/pandas/io/stata.py#L1745
        reader.value_labels()

Problem description

An unlikely code path will lead to an AttributeError.

Expected Output

I thin it is reasonable to expect value_labels() to return either None or {} when the stata file's format_version is <= 108

Output of pd.show_versions()

pandas.show_versions()

INSTALLED VERSIONS

commit: None
python: 3.6.1.final.0
python-bits: 64
OS: Darwin
OS-release: 17.3.0
machine: x86_64
processor: i386
byteorder: little
LC_ALL: None
LANG: en_US.UTF-8
LOCALE: en_US.UTF-8

pandas: 0.21.0
pytest: 3.0.7
pip: 9.0.1
setuptools: 27.2.0
Cython: None
numpy: 1.13.3
scipy: None
pyarrow: None
xarray: None
IPython: None
sphinx: None
patsy: None
dateutil: 2.6.1
pytz: 2017.3
blosc: None
bottleneck: None
tables: None
numexpr: None
feather: None
matplotlib: None
openpyxl: None
xlrd: 1.0.0
xlwt: None
xlsxwriter: None
lxml: None
bs4: None
html5lib: None
sqlalchemy: None
pymysql: None
psycopg2: None
jinja2: None
s3fs: None
fastparquet: None
pandas_gbq: None
pandas_datareader: None

@jreback
Copy link
Contributor

jreback commented Jan 28, 2018

not really sure what you are suggesting. what exactly are you trying to accomplish here?

@jreback jreback added IO Stata read_stata, to_stata Needs Info Clarification about behavior needed to assess issue labels Jan 28, 2018
@miker985
Copy link
Contributor Author

First step is to report the bug.

Logistically it seemed smarter to prompt discussion about the issue rather than just attempt a unilateral fix.

  1. Should the behavior change, or should the AttributeError be documented?
  2. If the behavior should change, does the community prefer None or {} as a return value for Stata files that don't support value labels.
    • my vote is {}

I'll happily submit a PR for either of the proposed behavior changes, but as a pandas PR is more than simply a diff to a single .py file I wanted to determine which fix (if any) before putting the PR together.

@TomAugspurger
Copy link
Contributor

@miker985 can you describe the issue a little more clearly? Why does the current implementation cause an issue in user code?

@miker985
Copy link
Contributor Author

Right now now my code looks like this

reader  = pandas.io.stata.StataReader('some file', convert_categoricals=False)
try:
    labels_dict = reader.value_labels()
except AttributeError:  # stata file too old to contain value labels
    labels_dict = {}

# do stuff with labels dict, basically assembling categorical data by hand

My specific use case is I am attempting to utilize pandas to load data from a DTA file and then do stuff with the labeled data. I have to set convert_categoricals=False because there is a fundamental mismatch between pandas categoricals and Stata's value labels (pandas requires unique category names and Stata does not).

I think that raising an AttributeError is inappropriate in this situation. It's being raised incidentally because _read_value_labels is not behaving in a way that value_labels is expecting, rather than to signal what is really going on (that the stata file being read doesn't have value labels because the format doesn't support it).

It's also inconsistent. Within .read() there's an explicit check of the file format version to prevent this AttributeError but for whatever reason this check is not present in value_labels()

@TomAugspurger
Copy link
Contributor

OK, if you want to make a small test that exercises this, and see if making that change breaks anything then go for it.

@TomAugspurger TomAugspurger added this to the Next Major Release milestone Jan 30, 2018
@bashtage
Copy link
Contributor

bashtage commented Feb 1, 2018

It should just return an empty dictionary since there are none. <=108 is very old Stata and so I suspect that no one who has worked on this recently has any method to create dta files from Stata in a format <=108.

@bashtage
Copy link
Contributor

bashtage commented Feb 1, 2018

A little background v113 was the dta file format in Stata 8 which was designed to run on Windows NT & 98.

@jreback jreback modified the milestones: Next Major Release, 0.23.0 Feb 4, 2018
@jreback jreback added Bug Compat pandas objects compatability with Numpy or Python functions and removed Needs Info Clarification about behavior needed to assess issue labels Feb 4, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Compat pandas objects compatability with Numpy or Python functions IO Stata read_stata, to_stata
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants