Git Product home page Git Product logo

Comments (1)

gilbertogalvis avatar gilbertogalvis commented on May 27, 2024

This issue was fixed by PR #464

For this it adds the stackedplot functionality to matlab_plotly.

Example 1

tbl = readtable('outages.csv');
tbl = table2timetable(tbl);

tbl = sortrows(tbl);

stackedplot(tbl)

fig2plotly(gcf, 'offline', offline);

https://chart-studio.plotly.com/~galvisgilberto/4678/loss-customers-restorationtime/#/

Screen Shot 2021-10-28 at 9 47 05 AM

Example 2

tbl = readtable('patients.xls');

stackedplot(tbl,{'Height','Weight','Systolic','Diastolic'})

fig2plotly(gcf, 'offline', offline);

https://chart-studio.plotly.com/~galvisgilberto/4680/height-weight-systolic-diastolic/#/

Screen Shot 2021-10-28 at 9 48 26 AM

Example 3

tbl = readtable('outages.csv');
tbl = table2timetable(tbl);
tbl = sortrows(tbl);

stackedplot(tbl,{'RestorationTime','Loss','Customers'})

fig2plotly(gcf, 'offline', offline);

https://chart-studio.plotly.com/~galvisgilberto/4682/restorationtime-loss-customers/#/

Screen Shot 2021-10-28 at 9 48 56 AM

Example 4

load patients
tbl = table(Weight,Systolic,Diastolic);

vars = [{'Systolic','Diastolic'},'Weight'];

stackedplot(tbl,vars);

fig2plotly(gcf, 'offline', offline);

https://chart-studio.plotly.com/~galvisgilberto/4684/systolic-diastolic-weight/#/

Screen Shot 2021-10-28 at 9 49 43 AM

Example 5

X = [0:4:20]

Y = randi(100,6,3)

stackedplot(X,Y)

fig2plotly(gcf, 'offline', offline);

https://chart-studio.plotly.com/~galvisgilberto/4686/column-1-column-2-column-3/#/

Screen Shot 2021-10-28 at 9 50 23 AM

Example 6

load outdoors
outdoors(1:3,:);

degreeSymbol = char(176);
newYlabels = {'RH (%)',['T (' degreeSymbol 'F)'],'P (in Hg)'};
stackedplot(outdoors,'Title','Weather Data','DisplayLabels',newYlabels);

fig2plotly(gcf, 'offline', offline);

https://chart-studio.plotly.com/~galvisgilberto/4688/rh-t-f-p-in-hg/#/

Screen Shot 2021-10-28 at 9 51 03 AM

Example 7

load outdoors
outdoors(1:3,:);

s = stackedplot(outdoors);

s.LineWidth = 2;

s.LineProperties(2).PlotType = 'scatter';
s.LineProperties(3).PlotType = 'stairs';

fig2plotly(gcf, 'offline', offline);

https://chart-studio.plotly.com/~galvisgilberto/4690/humidity-temperaturef-pressurehg/#/

Screen Shot 2021-10-28 at 9 51 40 AM

Example 8

data = {...
  struct(...
    'x', { {'2013-10-04 22:23:00', '2013-11-04 22:23:00', '2013-12-04 22:23:00'} }, ...
    'y', [1, 3, 6], ...
    'type', 'scatter')...
};

plotly(data);

Screen Shot 2021-10-28 at 9 52 02 AM

from plotly_matlab.

Related Issues (20)

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.