Questions tagged [semiotic]

Semiotic is a data visualization framework combining React & D3

Semiotic is a data visualization framework for React.

It provides three types of frames XYFrame, OrdinalFrame, NetworkFrame, to deploy a wide variety of charts.

  • XYFrame: XY data i.e. line charts and scatterplots
  • OrdinalFrame: categorical data i.e. bar charts, violin plots, parallel coordinates
  • NetworkFrame: topological and network data i.e. flow diagrams, network visualization, and hierarchical views

Resources:

https://semiotic.nteract.io

3 questions
3
votes
0 answers

How to change fill / shade of ggplot2 plot to use/look like Semiotic

Say that I have this plot: library(ggplot2) ggplot(mtcars, aes(cyl, mpg)) + geom_bar(stat='identity') Is it possible to change the shading of the bars to be like these plots, which were created using Semiotic: The source is:…
bill999
  • 2,147
  • 8
  • 51
  • 103
2
votes
0 answers

semiotic - strokeWidth controls both stroke width and number of fill lines

Say that I have this Semiotic code (see How to get Semiotic plot to display in browser): import React from "react" import OrdinalFrame from "semiotic/lib/OrdinalFrame" const frameProps = { /* --- Data --- */ data: [5,8,2,6,4 ], /* --- Size ---…
bill999
  • 2,147
  • 8
  • 51
  • 103
0
votes
1 answer

How to get Semiotic plot to display in browser

I am brand new to Semiotic (https://semiotic.nteract.io/), and I have what is likely an embarrassingly easy question. I am trying to make a line chart. How do I get the following Semiotic code - taken directly from…
bill999
  • 2,147
  • 8
  • 51
  • 103