ipywidgets Questions
3
I am having issue using Visual Studio Code. the code seem to have issue with ipywidgets.
the code is below (very simple interactive chart)
from ipywidgets import interact
import ipywidgets as widge...
Comitative asked 23/7, 2021 at 14:30
2
I am encountering an issue with generating report using Pandas Profiling library.
I have uninstalled and installed the library again in a newly created environment , still not able to generate any ...
Lusty asked 26/3 at 10:26
7
Solved
I have troubles replicating a JupyterLab install on a new PC. It is working fine on my previous one.
I am unable to display simple widgets (like a checkbox from ipywidgets or ipyvuetify).
I checked...
Fragmentary asked 14/9, 2022 at 11:8
1
Solved
I am currently working on a EDA Project using ydata_profiling library.
This is the code i have written as of now:
import numpy as np
import pandas as pd
from ydata_profiling import ProfileReport
p...
Dak asked 26/3 at 8:24
2
I have a development problem. I need to be able to select multiple items at the same time from a drop-down menu in python using ipython-widgets. So far, I have been able to choose an option a singl...
Vagrom asked 4/7, 2020 at 19:55
5
Solved
I am using widgets in IPython that allows the user to repeatedly search for a phrase and see the results (different titles) in another widget (a selection widget) and then select one of the results...
Accumulator asked 10/5, 2016 at 16:31
6
Solved
I am using jupyter notebook and installed.
ipywidgets==7.4.2 widgetsnbextension pandas-profiling=='.0.0
and also I ran:
!jupyter nbextension enable --py widgetsnbextension
but when running:
from ...
Jeramyjerba asked 16/6, 2021 at 7:27
4
Solved
I have this interactive graph code using ipywidgets; but not sure how to arragne the each variable inside the interactive function in widgets. the default layout is vertical. But I want to arrange ...
Chokefull asked 25/10, 2018 at 2:42
2
Solved
If I use a dark theme in Visual Studio Code and in Matplotlib, the figure can be configured to have dark background, but the background of the widget / cell is still white.
%matplotlib widget
impo...
Cathicathie asked 21/2, 2022 at 12:40
2
Is it possible to give a jupyter notebook widget the focus?
I can't see documentation or hints in the code about this?
Repair asked 25/1, 2016 at 6:52
2
Solved
I have some code in a cell in Jupyter notebook using both a radio button and a slider. I have a method which I want called only when the selection is changed (in the case of the radio button); and ...
Sheri asked 23/8, 2019 at 18:59
11
Solved
I created a table with an interactive slider that allows me to toggle between different periods on my table. It was working for the past few days, until today, when I re-ran the notebook, the slide...
Pastorship asked 1/4, 2016 at 8:3
1
In my notebook I've a loop in which I want to ask the user to binary "Yes" or "No". On this choice the algorithm is suppposed to continue.
for i in range(n_total):
display.clear_output(wait=True)...
Counterblast asked 11/2, 2019 at 11:48
2
Solved
I'm running some data analysis in ipython notebook. A separate machine collects some data and saves them to a server folder, and my notebook scans this server periodically for new files, and analyz...
Wiretap asked 17/5, 2016 at 15:48
2
Solved
I'm attempting to run a very simple tqdm script:
from tqdm.notebook import tqdm
for i in tqdm(range(10)):
time.sleep(1)
but am met with:
IProgress not found. Please update jupyter and ipywidgets....
Cryogenics asked 4/2, 2023 at 23:17
2
Solved
I am trying to create a function in a Jupyter notebook to:
Display with an ipywidget a series of radio buttons from a list of options.
Automatically display the selected value.
Save the selected v...
Cohesive asked 28/3, 2023 at 14:33
3
Solved
This seems really simple but I have not been able to find a single example or to solve this myself. How do I use an ipywidget widget to create or return a python variable/object, such as a list or ...
Pitiful asked 12/2, 2016 at 11:6
3
I build a ipywidget button. I hope that when the button is clicked, the program do the computing, and get a result string, then user can download the string as a file.
THe codes are like this:
i...
Elytron asked 10/5, 2020 at 7:41
1
I want to create multiple widgets for multiple 'rows' with a function in Jupyter Notebook and enable/disable some of those rows based on a checkbox. The widgets are created properly. But when i try...
Misalliance asked 13/2, 2023 at 10:45
0
We are currently using JupyterHub for our team. When I try to use ipywidgets in JupyterLab I get this JavaScript error (https adress is cutted out)
The Code
import ipywidgets as widgets
slider = w...
Ferryman asked 25/11, 2022 at 10:19
2
I am writing a function to allow the user the select from a series of options and then return values based on these selections. I am using Jupyter Widgets for the selection and running in JupyterLa...
Salmanazar asked 21/9, 2022 at 22:47
6
Solved
Question:
I installed python3 and jupyter notebook using pip3 in MacOs 10.9.
When I try to run the widget it gives error that there is no javascript widget.
I have python3 and R kernels installed i...
Vasculum asked 3/5, 2017 at 20:6
5
I came across this snippet for uploading files in Jupyter however I don't know how to save this file on the machine that executes the code or how to show the first 5 lines of the uploaded file. Bas...
Kirchhoff asked 14/9, 2016 at 17:1
1
Solved
I used to use from tqdm.auto import tqdm and when I was in VS Code Interactive, I would get nice outputs of tqdm like so:
I setup a new environment with venv, and now I've lost that - only the tex...
Lethalethal asked 18/8, 2022 at 17:26
11
Solved
In Jupyter Notebook, ipywidgets work fine, however they seem to not work in Jupyter Lab (which is supposedly better than Notebook).
I followed these directions.
Step 1: Installed Node.js (https:/...
Intimidate asked 28/3, 2018 at 19:12
1 Next >
© 2022 - 2024 — McMap. All rights reserved.