Interactive software accepts and responds to input from humans, in contrast to noninteractive software, which operate without human contact.
Questions tagged [interactive]
1873 questions
0
votes
1 answer
Move last command in PyCharm interactive shell to script
I basically want a workflow that goes like this:
I'm working on a script and run into some issues so I:
Move the script to the interactive console (shift+alt+e on Mac)
Run a few queries against my variables to figure things out. This step is over…

Jay Carr
- 1,195
- 6
- 16
- 32
0
votes
2 answers
PyDev's inteactive shell with Django problem
I'm going through Django tutorial and using PyDev Eclipse plugin for development.
For interactive testing I use "Interactive shell with Django" which is accessed by Right click on PyDev project -> Django -> Shell with Django environment.
And here is…

Alexander
- 632
- 2
- 7
- 19
0
votes
1 answer
What is the best way of organizing the loopings?
I have data for 12 instruments grouped as 3x4 (4 instruments for each group: N1, N2, N3, N4; C1, C2, C3, C4; S1, S2, S3, S4;). Each instrument has 2 sets of data: H and T. The dataset comes from different excel spreadsheets.
What is the best way to…

Nery Neto
- 59
- 1
- 7
0
votes
1 answer
Interactive Regression Model not outputting model summary
I am attempting to run a regression that allows users to determine regression inputs, and then provide an output that is the regression summary. For whatever reason, the output is not coming out correct, and I have looked everyone on the internet to…
0
votes
1 answer
Is there a flash gallery that works alike IKEA?
My client want to archive the same functionality product preview as this one:
http://www.ikea.com/us/en/catalog/categories/departments/laundry
I've searched a lot but end up find nothing that flash component or even look a like one.
Any ideas? I…

ByulTaeng
- 1,269
- 1
- 21
- 40
0
votes
1 answer
How to get y-axis to interact with Bokeh and Hovertool?
I'm trying to get my HoverTool to show the values for bars on the y-axis. It is showing ??? instead which is weird. Further, if anyone knows how, is there a way to have the y-axis not be in scientific notation with the e?
This is the code:
#RQ Do…

Tom Slesinger
- 59
- 1
- 8
0
votes
1 answer
Making my website interactive with the size of the screen/browser
I'm currently working on a small high school project where I need to make an interactive website using HTML and CSS. I have pretty much finished the website but am now wondering if there are any easy ways to make your website interactive with the…

mitch
- 23
- 3
0
votes
1 answer
Interactive dialog and graphic windows
I would like to run a script which asks the user to give an input value. To choose the value the user is assumed to look at the current result represented graphically. It is practically impossible to foreseen which part of the graph has decisive…

user
- 101
- 2
0
votes
1 answer
Mouse scattering with matplotlib
I'd like to use matplotlib for interactive drawing. I trained a neural network to approximate a distribution and I want to manually see if it is correct.
Hence, once the computation is done I want to:
Mouse my mouse on the window. The pointer…

Mounsif Mehdi
- 83
- 1
- 7
0
votes
0 answers
Creating a interactive database using the excel files as a dataset with rows as field?
I would like to create an interactive database which gives the output of the columns with a header for the particular files called in the rows from the excel file. Could you help me out with the code?

kesavan
- 13
- 3
0
votes
1 answer
How to globally access data selected by lasso?
To illustrate my issue, I adapted the example from here.
Let's say I have several datasets of different dimensions which I want to plot in the same figure and then make selections, how would I then store the selected data in e.g. a dictionary (or…

Cleb
- 25,102
- 20
- 116
- 151
0
votes
1 answer
Accessing dynamically generated DIV using document.getElementByID
I am trying to access a dynamically generated DIV using document.getElementById but getting cannot set property innerHTML of null and that's pretty obvious.
Basically I am trying to build a type of interactive form just like…

s4tr2
- 415
- 1
- 9
- 27
0
votes
1 answer
Plot does not update when slider callback is used with self-defined function
I try to implement several sliders and use an own function, foo, to calculate new values to update the plot. I tried to modify the example from the documentation, but without success; the page loads, I can move the sliders but the plot does not…

Cleb
- 25,102
- 20
- 116
- 151
0
votes
1 answer
How to get y-coordinate in a d3 touch event
I am making use of d3.js to visualize data in my Ionic application. I have a touch event, which I use to drag a line and get the coordinates of its intersection with my chart. I managed to get the x-coordinate which represents the date, but I'm…

m-rashid
- 1
- 1
0
votes
1 answer
Retrieving source data information from a barplot in R shiny interactively
I have a barplot in R shiny. I want following:
When user clicks one "bar" in that barplot another box will pop up and show the data information from the used datadframe showing which data points contributed to create that "bar".
Code:
ui <-…

Arijit Pal
- 1
- 4