HoloViews DynamicMap hover tool does not update with chosen variable The Next CEO of Stack Overflow“Large data” work flows using pandasHoloview with bokeh does not show plotscustomising tooltips in holoviewBokeh or HoloViews multiple depended dropdownsHover tool - Dataframes with spaces in column names don't work in hover?I am having a problem using the Bokeh package in pythonHoloview plots do not show/appear/display in jupyter notebooksAdd tooltip to Bokeh DataTableWhy does tap tool not work with HoloViews DynamicMap?Bokeh server app needs callback to alter Geoviews element in Holoviews overlay

How can a day be of 24 hours?

Gauss' Posthumous Publications?

Car headlights in a world without electricity

Find the majority element, which appears more than half the time

Is it okay to majorly distort historical facts while writing a fiction story?

Free fall ellipse or parabola?

Another proof that dividing by 0 does not exist -- is it right?

What is the difference between 서고 and 도서관?

Traveling with my 5 year old daughter (as the father) without the mother from Germany to Mexico

How badly should I try to prevent a user from XSSing themselves?

How to find if SQL server backup is encrypted with TDE without restoring the backup

pgfplots: How to draw a tangent graph below two others?

Gödel's incompleteness theorems - what are the religious implications?

Avoiding the "not like other girls" trope?

Mathematica command that allows it to read my intentions

Can Sri Krishna be called 'a person'?

How should I connect my cat5 cable to connectors having an orange-green line?

How to pronounce fünf in 45

Was the Stack Exchange "Happy April Fools" page fitting with the 90s code?

Could a dragon use hot air to help it take off?

Is there a rule of thumb for determining the amount one should accept for a settlement offer?

That's an odd coin - I wonder why

Upgrading From a 9 Speed Sora Derailleur?

How to compactly explain secondary and tertiary characters without resorting to stereotypes?



HoloViews DynamicMap hover tool does not update with chosen variable



The Next CEO of Stack Overflow“Large data” work flows using pandasHoloview with bokeh does not show plotscustomising tooltips in holoviewBokeh or HoloViews multiple depended dropdownsHover tool - Dataframes with spaces in column names don't work in hover?I am having a problem using the Bokeh package in pythonHoloview plots do not show/appear/display in jupyter notebooksAdd tooltip to Bokeh DataTableWhy does tap tool not work with HoloViews DynamicMap?Bokeh server app needs callback to alter Geoviews element in Holoviews overlay










0















I'm learning HoloViews with the Bokeh backend and am making an iPython/Jupyter display of the chosen column of a pandas DataFrame (actually it's an xarray Dataset but it's simpler to show the issue with a DataFrame). The issue is that when I chose any column/variable other than the first one, the hover tooltip still shows the value from the first column/variable. My code is loosely based on the HoloViews dashboard docs.



import holoviews as hv
import pandas as pd
df = pd.DataFrame()
df['time'] = pd.date_range('2018-01-01', '2018-01-31')
df['var1'] = np.linspace(0, 1, len(df['time']))
df['var2'] = np.ones(df['var1'].shape)

def load_symbol(var):
return hv.Curve(df, ('time', 'Time'), var)

variables = ['var1', 'var2']
dmap = hv.DynamicMap(load_symbol, kdims='Variable').redim.values(Variable=variables)

dmap.opts(framewise=True, tools=['hover'])


Using the hover tool with the first variable selected:
enter image description here
Using the hover tool with the second variable selected:
enter image description here



Note that the correct tooltip value (0.200) is shown for var1. But when var2 is selected, the hover tool still shows the value for var1, even though the tooltip is in the correct place for var2. What's going on here?










share|improve this question




























    0















    I'm learning HoloViews with the Bokeh backend and am making an iPython/Jupyter display of the chosen column of a pandas DataFrame (actually it's an xarray Dataset but it's simpler to show the issue with a DataFrame). The issue is that when I chose any column/variable other than the first one, the hover tooltip still shows the value from the first column/variable. My code is loosely based on the HoloViews dashboard docs.



    import holoviews as hv
    import pandas as pd
    df = pd.DataFrame()
    df['time'] = pd.date_range('2018-01-01', '2018-01-31')
    df['var1'] = np.linspace(0, 1, len(df['time']))
    df['var2'] = np.ones(df['var1'].shape)

    def load_symbol(var):
    return hv.Curve(df, ('time', 'Time'), var)

    variables = ['var1', 'var2']
    dmap = hv.DynamicMap(load_symbol, kdims='Variable').redim.values(Variable=variables)

    dmap.opts(framewise=True, tools=['hover'])


    Using the hover tool with the first variable selected:
    enter image description here
    Using the hover tool with the second variable selected:
    enter image description here



    Note that the correct tooltip value (0.200) is shown for var1. But when var2 is selected, the hover tool still shows the value for var1, even though the tooltip is in the correct place for var2. What's going on here?










    share|improve this question


























      0












      0








      0








      I'm learning HoloViews with the Bokeh backend and am making an iPython/Jupyter display of the chosen column of a pandas DataFrame (actually it's an xarray Dataset but it's simpler to show the issue with a DataFrame). The issue is that when I chose any column/variable other than the first one, the hover tooltip still shows the value from the first column/variable. My code is loosely based on the HoloViews dashboard docs.



      import holoviews as hv
      import pandas as pd
      df = pd.DataFrame()
      df['time'] = pd.date_range('2018-01-01', '2018-01-31')
      df['var1'] = np.linspace(0, 1, len(df['time']))
      df['var2'] = np.ones(df['var1'].shape)

      def load_symbol(var):
      return hv.Curve(df, ('time', 'Time'), var)

      variables = ['var1', 'var2']
      dmap = hv.DynamicMap(load_symbol, kdims='Variable').redim.values(Variable=variables)

      dmap.opts(framewise=True, tools=['hover'])


      Using the hover tool with the first variable selected:
      enter image description here
      Using the hover tool with the second variable selected:
      enter image description here



      Note that the correct tooltip value (0.200) is shown for var1. But when var2 is selected, the hover tool still shows the value for var1, even though the tooltip is in the correct place for var2. What's going on here?










      share|improve this question
















      I'm learning HoloViews with the Bokeh backend and am making an iPython/Jupyter display of the chosen column of a pandas DataFrame (actually it's an xarray Dataset but it's simpler to show the issue with a DataFrame). The issue is that when I chose any column/variable other than the first one, the hover tooltip still shows the value from the first column/variable. My code is loosely based on the HoloViews dashboard docs.



      import holoviews as hv
      import pandas as pd
      df = pd.DataFrame()
      df['time'] = pd.date_range('2018-01-01', '2018-01-31')
      df['var1'] = np.linspace(0, 1, len(df['time']))
      df['var2'] = np.ones(df['var1'].shape)

      def load_symbol(var):
      return hv.Curve(df, ('time', 'Time'), var)

      variables = ['var1', 'var2']
      dmap = hv.DynamicMap(load_symbol, kdims='Variable').redim.values(Variable=variables)

      dmap.opts(framewise=True, tools=['hover'])


      Using the hover tool with the first variable selected:
      enter image description here
      Using the hover tool with the second variable selected:
      enter image description here



      Note that the correct tooltip value (0.200) is shown for var1. But when var2 is selected, the hover tool still shows the value for var1, even though the tooltip is in the correct place for var2. What's going on here?







      python jupyter-notebook bokeh holoviews






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 22 at 14:35







      Dan

















      asked Mar 21 at 20:04









      DanDan

      45858




      45858






















          0






          active

          oldest

          votes












          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55288470%2fholoviews-dynamicmap-hover-tool-does-not-update-with-chosen-variable%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55288470%2fholoviews-dynamicmap-hover-tool-does-not-update-with-chosen-variable%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript