You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zeppelin.apache.org by deepujain <gi...@git.apache.org> on 2015/10/05 04:27:43 UTC

[GitHub] incubator-zeppelin pull request: Add bullet graph support

GitHub user deepujain opened a pull request:

    https://github.com/apache/incubator-zeppelin/pull/336

    Add bullet graph support

    Plots a box graph.
    Still could not get console.log to work.
    <img width="1377" alt="screen shot 2015-10-04 at 3 39 40 pm" src="https://cloud.githubusercontent.com/assets/406777/10271965/e89f586e-6acd-11e5-98db-0937017662d0.png">


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/deepujain/incubator-zeppelin master

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/incubator-zeppelin/pull/336.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #336
    
----
commit 3d6eedcf1cdd84fbc9549b88a9be0e12adfdea24
Author: Deepak Vasthimal <dv...@ebay.com>
Date:   2015-10-05T02:26:43Z

    Add bullet graph support

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-zeppelin pull request: Add bullet graph support

Posted by deepujain <gi...@git.apache.org>.
Github user deepujain commented on the pull request:

    https://github.com/apache/incubator-zeppelin/pull/336#issuecomment-169435876
  
    Both are different types of charts and this PR is for Bullet Chart. I found this on D3 that i took as a reference to implement in Zeppelin. http://bl.ocks.org/mbostock/4061961



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-zeppelin pull request: Add bullet graph support

Posted by deepujain <gi...@git.apache.org>.
Github user deepujain commented on the pull request:

    https://github.com/apache/incubator-zeppelin/pull/336#issuecomment-145973086
  
    Including support for line with focus chart.
    
    <img width="1376" alt="screen shot 2015-10-06 at 12 26 42 pm" src="https://cloud.githubusercontent.com/assets/406777/10319930/934afd10-6c25-11e5-992c-3f0d8851c050.png">



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-zeppelin pull request: Add bullet graph support

Posted by corneadoug <gi...@git.apache.org>.
Github user corneadoug commented on the pull request:

    https://github.com/apache/incubator-zeppelin/pull/336#issuecomment-169188380
  
    @bzz this would need to be cleaned to include only bullet graph.
    However, as we took a look in #597, we discovered that there is a few problems with version 1.8.1 and therefore it would be better not to use it yet. Sadly bullet graph is part of 1.8.1


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-zeppelin pull request: Add bullet graph support

Posted by galleon <gi...@git.apache.org>.
Github user galleon commented on the pull request:

    https://github.com/apache/incubator-zeppelin/pull/336#issuecomment-145999863
  
    How is that different from #312 - focus chart


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-zeppelin pull request: Add bullet graph support

Posted by bzz <gi...@git.apache.org>.
Github user bzz commented on the pull request:

    https://github.com/apache/incubator-zeppelin/pull/336#issuecomment-168949349
  
    @deepujain Could you please elaborate, shall this be updated to the latest master and merged or is ~~#312~~ is enough and this one can be closed?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-zeppelin pull request: Add bullet graph support

Posted by deepujain <gi...@git.apache.org>.
Github user deepujain commented on the pull request:

    https://github.com/apache/incubator-zeppelin/pull/336#issuecomment-145413417
  
    Box plot needs 5 data points as input.
    Range : Bad, satisfactory and good
    Measure: Actual Value to plot
    Target: Compare another actual value (Arrow that is shown on graph).
    
    In below screen shot, it will plot the range against the value 1. 
          var lowRange = 40, midRange = 60, highRange=100;
          lowRange = (lowRange / 100) * values[0];
          midRange = (midRange / 100) * values[0];
          highRange = (highRange / 100) * values[0];
          var actualMeasure = values[1];
          var targetMarker = values[0];
    
    <img width="1365" alt="screen shot 2015-10-04 at 7 32 13 pm" src="https://cloud.githubusercontent.com/assets/406777/10272058/a46f6ba6-6ace-11e5-9480-b0c8e95f63ee.png">



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---