Giter Club home page Giter Club logo

Comments (4)

dy avatar dy commented on June 15, 2024 1

Ok, now should be fixed )

from regl-splom.

dy avatar dy commented on June 15, 2024

Should be fixed in 1.0.1.

from regl-splom.

etpinard avatar etpinard commented on June 15, 2024

Thanks @dy ! Sploms are now working with Float32Array, but they are still broken with Int32Array (as in plotly/plotly.js#2585) and possibly other types.

For example,

const regl = require('regl')({ extensions: 'oes_element_index_uint' })
const createMatrix = require('./')

let splom = createMatrix(regl)

splom.update({
  data: [
    new Int32Array([1, 2, 3]),
    new Int32Array([4, 6, 8]),
    new Int32Array([1, 5, 9])
  ],
  ranges: [
    [0, 10],
    [0, 10],
    [0, 10]
  ],
  domain: [
    [0, 0, 0.3, 0.3],
    [0.35, 0.35, 0.65, 0.65],
    [0.7, 0.7, 1, 1] 
  ],
  color: ['red', 'green', 'blue'],
  size: [20, 10, 30]
})

splom.draw()

gives

image

and a blank screen.


Looks like regl-scatter2d accepts Int32Array just fine. Could we make regl-splom do the same?

from regl-splom.

etpinard avatar etpinard commented on June 15, 2024

Sweet. This works:

lotly.newPlot( gd,
			  [{
    "type": "splom",
    "dimensions": [{
      "values": new Int32Array([1, 2, 3]),
      "label": "A"
    }, {
      "values": new Int32Array([2, 5, 6]),
      "label": "B"
    }]
  }]);

gives
image

from regl-splom.

Related Issues (9)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.