question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

No hover effects in new Interactive UI

See original GitHub issue

No 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: 91112857-2c1c9980-e652-11ea-9823-eb0d52b0b7c9

In Jupyter Lab: ep7UACDlDD

In new UI now: 1GDrrDtbO5

Issue Analytics

  • State:open
  • Created 2 years ago
  • Comments:7 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
jaymegordocommented, Sep 15, 2021

@StevenLi-DS @IanMatthewHuff fyi I mentioned this in microsoft/vscode-jupyter#6546 as well

1reaction
IanMatthewHuffcommented, Sep 15, 2021

@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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found