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

Variable Explorer can take a while to refresh #3427

Closed
rchiodo opened this issue Apr 29, 2019 · 0 comments
Closed

Variable Explorer can take a while to refresh #3427

rchiodo opened this issue Apr 29, 2019 · 0 comments
Assignees

Comments

@rchiodo
Copy link
Contributor

rchiodo commented Apr 29, 2019

Here's the code I was using:

#%%
import numpy as np
import pandas as pd
col = pd.Series(data=np.random.random_sample((700,))*100)
dfInit = {}
idx = pd.date_range('2007-01-01', periods=700, freq='M')
for i in range(3000):
     dfInit[i] = col
dfInit['idx'] = idx
df = pd.DataFrame(dfInit).set_index('idx')

#%%
# Index not working
df2 = df.iloc[:, [0,1]]

#%%
# Dataviewer not opening
row = df.loc[df.index[0], :]

Refreshing is stalling like so:

image

@IanMatthewHuff IanMatthewHuff self-assigned this May 20, 2019
@rchiodo rchiodo closed this as completed Aug 6, 2019
@lock lock bot locked as resolved and limited conversation to collaborators Aug 14, 2019
@microsoft microsoft unlocked this conversation Nov 14, 2020
@DonJayamanne DonJayamanne transferred this issue from microsoft/vscode-python Nov 14, 2020
@github-actions github-actions bot locked as resolved and limited conversation to collaborators May 7, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants