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
Javascript chart library where you can attach extra data to each point
I would like to plot price data and include a size attribute to each point so each data point would be (time, price, size=100) for instance. The canvas should plot the price data as a line but when hovering the mouse over the plot, I would like to…

bodihex
- 69
- 8
0
votes
1 answer
Automate Response at Prompt in R interactive
Please see below my reference to a previous question asked along these lines.
I am running the library taxize in R. Taxize includes a function for getting a stable number associated with a scientific name, get_tsn().
I can run this in interactive…

17th Lvl Botanist
- 155
- 1
- 3
- 12
0
votes
1 answer
How do I inspect my 3d model interactively?
I have an array of lines and other primitives. For example, it's a tree like this one:
Now I need to look an it from different angles and I want to be able to rotate it with my mouse. Is there any lightweight "player" (maybe online version) and…

Nakilon
- 34,866
- 14
- 107
- 142
0
votes
1 answer
Visual Studio Python Shell
Quick question. I'm scratching my head as to why the latest version of visual studio offers tabs with interactive python terminals. As well as debugging terminals all built into the tabs that can be snapped. But when I attach & test run something it…

Swizzer
- 1
- 1
0
votes
1 answer
Leaflet Choropleth Map - switch to Leaflet 1.2
I have a problem with my map. I switched to Leaflet 1.2 and one of the functions is not working correctly.
The code is here:
http://mapaszlakow.eu/mapa1.2.html
When activating an overlay which is geojson via js and clicking a bicycle route it zooms…

Voyteck
- 81
- 2
- 12
0
votes
1 answer
Responsive image for recording user selection
I am wanting to allow users to click on a specific part of a photograph in a tablet/phone (via a web browser or software) and it will record their choice.
Essentially I have some aerial photographs and I want to place a regular grid (say 100m x 100m…

Nic
- 184
- 2
- 10
0
votes
0 answers
Functions used for switching between colors of drawing
I'm working on a color switching drawing.
The switch is two buttons the first is changing the colours the other one draws the new picture.
I found this problem: After I switched on and off once the buttons don't do anyhing visible.
Any suggestions…
0
votes
0 answers
Multiple text selections with data collection on web page
I want an interaction that allows the user to first select a cursor tool, and then use it to select some text and apply a distinct attribute to it, select another cursor tool, apply a different attribute to another part, and then submit the…

Ubu English
- 101
- 2
0
votes
1 answer
How to use plt.waitforbuttonpress() with plot gui tools such as zoom?
When I use plt.waitforbuttonpress(), it behaves as expected, but any click to the plot is getting dispatched as this "button press", so using plot GUI tools like zooming tool is not possible. Is there an alternative to waitforbuttonpress that…

Ben Usman
- 7,969
- 6
- 46
- 66
0
votes
2 answers
control video playlist with global variables
I have a video playlist that plays videos one after a time.
I need the playlist to continue until it reaches a video with the name loop, and loop the video until one of the global variables lvl1_win or lvl2_loose (from a different script) turn 1.…

Blobfist
- 3
- 1
- 2
0
votes
1 answer
Clicking SVG shape and enlarge with another Image
I have been looking at a lot of example for enlarging an image with the same image
$("#imgSmall").click(function(){
…

Penny Pang
- 535
- 2
- 8
- 23
0
votes
1 answer
Select n data points from plot
I want to select points by clicking om them in a plot and store the point in an array. I want to stop selecting points after n selections, by for example pressing a key. How can I do this? This is what I have so far.
import numpy as np
import…

Rob Schneider
- 165
- 5
- 16
0
votes
1 answer
It is possible to insert an interactive component into mail?
I would include an interactive component into mail html code in order to insert a "widget" that permits the user to do an action.
As I saw, there's no way to execute something like Javascript into mail client (eg. Outlook). There's another way to…

Waraky
- 11
- 1
0
votes
1 answer
Bokeh GUI breaking down with adding/removing lines
I am trying to make a simple GUI where I can select which data to load and display in a Bokeh plot. I can then remove that data. The basic idea is shown below:
However, I run into a host of issues:
Hover tool does not work with added lines…

DankMasterDan
- 1,900
- 4
- 23
- 35
0
votes
1 answer
Shiny Interactive Graph plot showing row names
I am using Shiny and ggplot2 for an interactive graph. I also used "plot1_click" to get x and y locations.
output$selected <- renderText({
paste0("Value=", input$plot1_click$x, "\n",
"Names=", input$plot1_click$y) }) #how to get…