Skip to content
#

visualization

Here are 7,024 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
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
fnlearner
fnlearner commented Apr 10, 2020
  • I have searched the issues of this repository and believe that this is not a duplicate.

Reproduction link

Edit on CodeSandbox

Steps to reproduce

view the diagram in mobile or chorme opening devtool and click the icon of toggling

vx
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.

mark-datanaltek
mark-datanaltek commented Apr 16, 2020

fig.append_trace() raises ValueError if the row arg is not type int, even if arg is int-like:
DEBUG row:1, type(row):<class 'numpy.int64'>

If I explicitly cast to int with row=int(row), all is well. The issue may be due to the isinstance check at line 1536 of basedatatypes.py?

/usr/local/lib/python3.7/site-packages/plotly/basedatatypes.py in _validate_rows_cols(name, n, vals)
1535

raw
Anaisdg
Anaisdg commented Apr 10, 2020

What would the GeoJSON with timestamps look like? Looking at the playback part of the user guide, it's unclear to be whether your GeoJSON should contain arrays of values and corresponding timestamps for each location? Is the following correct?

var statesData = {
    "type": "Feature",
    "properties": {
vpapaioannou
vpapaioannou commented Jun 4, 2019

Describe the bug
I try to run tensorboardX/examples/demo_graph.py for jupyter notebook (launched by anaconda navigator) and I get the error seen at Additional context.

I just copy paste the code to notebook from Github.

Minimal runnable code to reproduce the behavior
class SimpleModel(nn.Module):
def init(self):
super(SimpleModel, self).init()

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

amirs-kov
amirs-kov commented Mar 12, 2020

Version

3.10.1 - latest

Development Environment

Chrome, Mac OSX, GCP environment

Current Behavior

currently there is no option to trim the label to fit the size of the rect it sits in.
Since the component renders a svg with text objects that are not inherited, the width of the text is not related to the width of the rect.
It's also not possible to fix a width to the text obje

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.