No hover effects in new Interactive UI
See original GitHub issueNo hover effects in new interactive UI when using pandas’ MultiIndex. Example:
import pandas as pd
url = 'https://api.census.gov/data/2018/acs/acs5/groups/B11002.html'
df = pd.read_html(url)[0]
df = df[['Label', 'Name']]
# only keep Estimate variables
df = df[df.Name.str.endswith('E')]
# make levels
df_level = df.Label.str.split('!!', expand=True).fillna('')
idx = pd.MultiIndex.from_frame(df_level)
# add levels to api variable name
df[['Name']].set_index(idx)
Before:
In Jupyter Lab:
In new UI now:
Issue Analytics
- State:
- Created 2 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Mobile doesn't have hover, dude! - Bootcamp
According to Baymard studies, on a desktop viewport, normally there is no need to permanently display nonessential interactive elements like “ ...
Read more >An Interactive Guide To CSS Hover Effects - LambdaTest
In this guide, we will explore advanced properties of CSS hover animations like background clipping, masks, and 3D, along with detailed ...
Read more >How to remove/ignore :hover css style on touch devices
Enable hover effects whenever a mouse cursor is moved, disable hover effects whenever a touch is detected. function watchForHover() { // lastTouchTime is ......
Read more >Active, Hover, and Focus States for Designers | by Ali Corak
Hover needs to be recognizable. Therefore animations and effects are major design examples in the state of hover (hover effect).
Read more >The “Hover Effect” for Mobile Buttons | by UX Movement
Hover effects inform users what they can interact with by providing visual feedback on buttons. But there's a problem — hover effects are...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@StevenLi-DS @IanMatthewHuff fyi I mentioned this in microsoft/vscode-jupyter#6546 as well
@StevenLi-DS Thanks for the report here and the clear repro. I repro the same thing. Just something we lost in the transition to the new UI. We’ll look into it.