Pandas style render set_uuid sets Multiple ids · Issue #16780 · pandas-dev/pandas (original) (raw)
Code Sample, a copy-pastable example if possible
df = pd.DataFrame({'a': [1, 3, 5, 6], 'b': [2, 4, 12, 21]}) df.style.render(uuid='test')
or same with df.style.set_uuid('test').render()
\n\n | a | \nb | \n
---|---|---|
0 | \n1 | \n2 | \n
1 | \n3 | \n4 | \n
2 | \n5 | \n12 | \n
3 | \n6 | \n21 | \n
Problem description
I am told that a css id should be unique and therefore, when <table id="T_test" >
and <th id="T_test"...>
in the above HTML output have the same ids, this breaks my css and causes the settings on my ids to be ignored.
Output of pd.show_versions()
INSTALLED VERSIONS ------------------ commit: None python: 3.5.2.final.0 python-bits: 64 OS: Linux OS-release: 3.16.0-4-amd64 machine: x86_64 processor: byteorder: little LC_ALL: None LANG: en_GB.UTF-8 LOCALE: en_GB.UTF-8
pandas: 0.20.2
pytest: 2.9.2
pip: 9.0.1
setuptools: 27.2.0
Cython: 0.24.1
numpy: 1.12.1
scipy: 0.19.0
xarray: None
IPython: 5.1.0
sphinx: 1.4.6
patsy: 0.4.1
dateutil: 2.6.0
pytz: 2017.2
blosc: None
bottleneck: 1.2.0
tables: 3.4.2
numexpr: 2.6.2
feather: None
matplotlib: 2.0.2
openpyxl: 2.3.2
xlrd: 1.0.0
xlwt: 1.1.2
xlsxwriter: 0.9.3
lxml: 3.6.4
bs4: 4.5.1
html5lib: 0.999999999
sqlalchemy: 1.0.13
pymysql: 0.7.9.None
psycopg2: None
jinja2: 2.8
s3fs: None
pandas_gbq: None
pandas_datareader: None