enso-org / dataframes

A library for working with tabular data in Luna.
https://luna-lang.org
MIT License
6 stars 5 forks source link

Add new types of visualizations for Dataframes #146

Open sylwiabr opened 5 years ago

sylwiabr commented 5 years ago

Connect D3js (https://d3js.org) to dataframes library.

  1. Single plot using D3 from a dataframe. Dataframe structure: 6 columns:
    • position.x
    • position.y
    • position.z
    • color.r
    • color.g
    • color.b
    • color.a
    • size
    • lineWidth
    • label for now we are hardcoding layout like plot type, background color, axis, legend in JS script inside visualization if there is a missing column from (position.x,position.y,position.z) I will assume that position in this direction is 0 default color will be gray

The examples and implementations details will be provided when the issue will be picked up.