Skip to content
#

visualization

Here are 6,658 public repositories matching this topic...

wnesensohn
wnesensohn commented May 23, 2016

Selection Sort, for example, makes the algorithm look extremely (impossibly) good at first glance - O(n) - because it's not showing the majority of the steps.

Instead of

    for (var j = i + 1; j < D.length; j++) {
        if (D[j] < D[minJ]) {
            tracer._select(j);
            minJ = j;
            tracer._deselect(j);
        }
    }

it has to be more like

    for (var j
bokeh
pohlt
pohlt commented Jan 8, 2020

Software versions

OS: Linux 5.4.6
Browser: Chrome 78.0.3904.108 (Official Build) (64-bit)
Python: 3.8.1
JupyterLab: 1.2.4
Pandas: 0.25.3
Bokeh: 1.4.0

Issue

When plotting a vbar_stack, the entire row in the data source is ignored if the first input column contains a NaN in a pandas.DataFrame.

If a standard Python dict is used as a data source, the output is plotted as expecte

vega
roying
roying commented Dec 19, 2019

The new (v5.8) Vega heatmap and isocontour transform requires "raster grids (matrices)"
input data format as seen in these Vega example data files:

 https://github.com/vega/vega/blob/master/docs/data/volcano.json
 https://github.com/vega/vega/blob/master/docs/data/annual-precip.json

It would be helpful to add explanation of this data format in the documentation:

  https://v
gordonwoodhull
gordonwoodhull commented Mar 10, 2020

Mentions that this bug "will be fixed in 2.1.x", which is long past.

We shouldn't make promises about what version will fix a bug, since there are often complications that come up that make it difficult to make the change. We should link to relevant issues instead, as we already link to #949 here.

vx
raw
emmanuelle
emmanuelle commented Nov 28, 2019

Most items coming from questions on the community forum

  • example of shape or annotation covering several subplots thanks to xref='paper'. Also the shapes and annotations tutorial should link to each other.
  • add px example in 2d density page, links between 2d density and 2d density contour pages, remove gremlin.
  • orthographic projection example in 3d axes tutorial (or 3d cam
borea17
borea17 commented Mar 16, 2020

I noticed when hovering over a graph which was created via SummaryWriter.add_scalar that each data point has Name: . . It would be nice feature to give each data point a description which would be displayed as Name.

This would be very helpful, e.g., when measuring the accuracy outliers could be easily identified with the corresponding input (e.g., name of image) for further study.

I

thingsboard
bersbersbers
bersbersbers commented Sep 11, 2019

Platform (like ubuntu 16.04/win10): Windows 10
Python version: 3.7.4, mmdnn==0.2.5

Running scripts: mmconvert -f caffe -df keras -om test

I know that this command is not supposed to run without passing an input file, but the error message is incorrect and should be improved:

mmconvert: error: argument --srcFramework/-f: invalid choice: 'None' (choose from 'caffe', 'caffe2', 'cn

SandDance
Timmmm
Timmmm commented Oct 29, 2019

This is really awesome, thanks! One minor feature request - is there a way to change the transition easing curve? You can change the durations, but the easing curve appears to be hard-coded to easeExpInOut which I find a bit "snappy". I think this is the relevant code:

function newCubeLayer(presenter, config, cubeData, highlightColor, lightSettings, lightingMix, interpolator) {
    cons

Improve this page

Add a description, image, and links to the visualization topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the visualization topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.