plotly / plotly/plotly_matlab

Inventory of plotly MATLAB figures

Open
#163 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
MATLAB
Stars
413
Forks
166
PR merge metrics
No merged PRs in 30d

Description

Line Plots:

(All line plots generated using MATLAB 2021a)

plot

plot3

stairs

errorbar

None errorbar() variation is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/168#issue-952336909

  • errorbar(y,err)
  • errorbar(x,y,err)
  • errorbar(x,y,neg,pos)
  • errorbar(___,ornt)
  • errorbar(x,y,yneg,ypos,xneg,xpos)
  • errorbar(___,LineSpec)
  • errorbar(___,Name,Value)

Datetime and Duration objects aren't supported either

area

None area() variation is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/169#issue-952339436

  • area(Y)
  • area(X,Y)
  • Create Area Plot with Multiple Curves
  • area(___,basevalue)
  • area(___,Name,Value)

stackedplot

None stackedplot() variation is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/170#issue-952342393

  • stackedplot(tbl)
  • stackedplot(tbl,vars)
  • stackedplot(___,'XVariable',xvar)
  • stackedplot(X,Y)
  • stackedplot(Y)
  • stackedplot(___,LineSpec)
  • stackedplot(___,Name,Value)
  • stackedplot(parent,___)

loglog

semilogx

semilogy

fplot

None fplot() variation is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/172#issue-952377624

  • fplot(f)
  • fplot(f,xinterval)
  • fplot(funx,funy)
  • fplot(funx,funy,tinterval)
  • fplot(___,LineSpec)
  • fplot(___,Name,Value) - issue:

fplot3()

None fplot3() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/173#issue-952378816

  • fplot3(funx,funy,funz)
  • fplot3(funx,funy,funz,tinterval)
  • fplot3(___,LineSpec)
  • fplot3(___,Name,Value)

fimplicit()

None of fimplicit() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/174#issue-952379472

  • fimplicit(f)
  • fimplicit(f,interval)
  • fimplicit(___,LineSpec)
  • fimplicit(___,Name,Value)

Scatter and Bubble Charts

(All charts generated using MATLAB 2021a)

scatter

scatter3

None of scatter3() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/191#issue-953148265

  • scatter3(X,Y,Z)
  • scatter3(X,Y,Z,S)
  • scatter3(X,Y,Z,S,C)
  • scatter3(___,'filled')
  • scatter3(___,markertype)
  • scatter3(___,Name,Value)

bubblechart

None bubblechart() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/178#issue-952392173

  • bubblechart(x,y,sz)
  • bubblechart(x,y,sz,c)
  • bubblechart(___,Name,Value)

bubblechart3

None bubblechart3() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/179#issue-952489667

  • bubblechart3(x,y,sz)
  • bubblechart3(x,y,sz,c)
  • bubblechart3(___,Name,Value)

swarmchart

None of swarmchart() variations is presenting the jittering factor from the function. The data is being stacked on the corresponding value without any jittering - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/184#issue-952508535

swarmchart3()

None of swarmchart3() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/185#issue-952512790

spy

Y-axis is being inverted - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/186#issue-952517857

Data Distribution Plots

(All charts generated using MATLAB 2021a)

histogram()

histogram2()

None of histogram2() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/193#issue-953159547

  • histogram2(X,Y)
  • histogram2(X,Y,nbins)
  • histogram2(X,Y,Xedges,Yedges)
  • histogram2('XBinEdges',Xedges,'YBinEdges',Yedges,'BinCounts',counts)
  • histogram2(___,Name,Value)

pie()

All pie features work properly but rendering isn't corresponding to MATLAB's way of printing the figure - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/194#issue-953305576

  • pie(X)
  • pie(X,explode)
  • pie(X,labels)
  • pie(X,explode,labels)

Also, there's an issue with the legend when plotting multiple charts on the same figure - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/195#issue-953308141

pie3()

Every chart using pie3() is presenting rendering issues - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/199#issue-953494710

scatterhistogram()

None of scatterhistogram() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/201#issue-953501538

  • scatterhistogram(tbl,xvar,yvar)
  • scatterhistogram(tbl,xvar,yvar,'GroupVariable',grpvar)
  • scatterhistogram(xvalues,yvalues)
  • scatterhistogram(xvalues,yvalues,'GroupData',grpvalues)
  • scatterhistogram(___,Name,Value)
  • scatterhistogram(parent,___)

parallelplot()

None of parallelplot() variation is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/205#issue-954204936

  • parallelplot(tbl)
  • parallelplot(tbl,'CoordinateVariables',coordvars)
  • parallelplot(___,'GroupVariable',grpvar)
  • parallelplot(data)
  • parallelplot(data,'CoordinateData',coorddata)
  • parallelplot(___,'GroupData',grpdata)
  • parallelplot(___,Name,Value)
  • parallelplot(parent,___)

plotmatrix()

Discrete Data Plots

(All charts generated using MATLAB 2021a)

bar()

In some cases, issues with the x-axis are happening- issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/208#issue-954371270

barh()

bar3()

Rendering issues: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/232#issue-957056989

bar3h()

Same rendering issues as in bar3() - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/232#issue-957056989

pareto()

Axes issues: - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/233#issue-957069088

  • pareto(Y)
  • pareto(Y,names)
  • pareto(Y,X)
  • pareto(...,threshold)

stem()

None of stem variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/257#issue-957340375

x-axis issue not being plotted: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/234#issue-957074192

##stem3()
None of stem3() variations is working correctly - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/236#issue-957120015

  • stem3(Z)
  • stem3(X,Y,Z)
  • stem3(___,'filled')
  • stem3(___,LineSpec)
  • stem3(___,Name,Value)

Geographic Plots

(All charts generated using MATLAB 2021a)

geoplot()

None of geoplot() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/237#issue-957122660

  • geoplot(lat,lon)
  • geoplot(lat,lon,LineSpec)
  • geoplot(lat1,lon1,...,latN,lonN)
  • geoplot(lat1,lon1,LineSpec1,...,latN,lonN,LineSpecN)
  • geoplot(___,Name,Value)

geoscatter()

None of geoscatter() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/238#issue-957123521

  • geoscatter(lat,lon)
  • geoscatter(lat,lon,A)
  • geoscatter(lat,lon,A,C)
  • geoscatter(___,M)
  • geoscatter(___,'filled')
  • geoscatter(___,Name,Value)

##geobubble()
None of geobubble() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/239#issue-957125049

  • geobubble(tbl,latvar,lonvar)
  • geobubble(lat,lon)
  • geobubble(lat,lon,sizedata)
  • geobubble(lat,lon,sizedata,colordata)
  • geobubble(___,Name,Value)

Polar Plots

(All charts generated using MATLAB 2021a)

polarplot()

None of polarplot() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/240#issue-957128457

  • polarplot(theta,rho)
  • polarplot(theta,rho,LineSpec)
  • polarplot(theta1,rho1,...,thetaN,rhoN)
  • polarplot(theta1,rho1,LineSpec1,...,thetaN,rhoN,LineSpecN)
  • polarplot(rho)
  • polarplot(rho,LineSpec)
  • polarplot(Z)
  • polarplot(Z,LineSpec)
  • polarplot(___,Name,Value)

polarhistogram()

None of polarhistogram() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/241#issue-957129555

  • polarhistogram(theta)
  • polarhistogram(theta,nbins)
  • polarhistogram(theta,edges)
  • polarhistogram('BinEdges',edges,'BinCounts',counts)
  • polarhistogram(___,Name,Value)

polarscatter()

None of polarscatter() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/242#issue-957130760

  • polarscatter(th,r)
  • polarscatter(th,r,sz)
  • polarscatter(th,r,sz,c)
  • polarscatter(___,mkr)
  • polarscatter(___,'filled')
  • polarscatter(___,Name,Value)

polarbubblechart()

None of polarbubblechart() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/243#issue-957131905

  • polarbubblechart(theta,rho,sz)
  • polarbubblechart(theta,rho,sz,c)
  • polarbubblechart(___,Name,Value)

compass()

None of compass() variations is plotting the polar axes - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/244#issue-957134233

ezpolar():

None of ezpolar() variations is plotting the polar axes - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/244#issue-957134233

Contour Plots

(All charts generated using MATLAB 2021a)

contour()

countour() is creating filled plots when it shouldn't- issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/251#issue-957288613

contourf()

contour3()

None of contour3() is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/247#issue-957175503

fcontour()

None of fcontour() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/248#issue-957176449

  • fcontour(f)
  • fcontour(f,xyinterval)
  • fcontour(___,LineSpec)
  • fcontour(___,Name,Value)

Vector Fields

(All charts generated using MATLAB 2021a)

quiver()

None of quiver() variations is workin - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/253#issue-957290401

  • quiver(X,Y,U,V)
  • quiver(U,V)
  • quiver(___,scale)
  • quiver(___,LineSpec)
  • quiver(___,LineSpec,'filled')
  • quiver(___,Name,Value)

quiver3()

None of quiver() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/254#issue-957291282

  • quiver3(X,Y,Z,U,V,W)
  • quiver3(Z,U,V,W)
  • quiver3(___,scale)
  • quiver3(___,LineSpec)
  • quiver3(___,LineSpec,'filled')
  • quiver3(___,Name,Value)

feather()

  • feather(U,V)
  • feather(Z)
  • feather(___,LineSpec)

Surface and Mesh Plots

(All charts generated using MATLAB 2021a)

surf()

Colors and grid not matching - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/255#issue-957292895

surfc()

None of surfc() variations is working correctly - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/259#issue-958270779.
Colors and grid not matching - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/255#issue-957292895

surfl()

None of surfl() variations is working correctly- issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/260#issue-958277515
Colors and grid not matching - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/255#issue-957292895

  • surfl(X,Y,Z)
  • surfl(Z)
  • surfl(___,'light')
  • surfl(___,s)
  • surfl(X,Y,Z,s,k)

ribbon()

Colors and grid not matching - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/255#issue-957292895

  • ribbon(Y)
  • ribbon(X,Y)
  • ribbon(X,Y,width)

pcolor()

fsurf()

None of fsurf() variations is working - issue:
https://github.com/plotly/plotly-graphing-library-for-matlab/issues/266#issue-958317599

  • fsurf(f)
  • fsurf(f,xyinterval)
  • fsurf(funx,funy,funz)
  • fsurf(funx,funy,funz,uvinterval)
  • fsurf(___,LineSpec)
  • fsurf(___,Name,Value)

fimplicit3()

None of fimplicit3() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/267#issue-958319915

  • fimplicit3(f)
  • fimplicit3(f,interval)
  • fimplicit3(___,LineSpec)
  • fimplicit3(___,Name,Value)

mesh()

Colors and grid not matching - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/255#issue-957292895

meshc()

Same issue as in surfc() - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/259#issue-958270779.

meshz()

Colors and grid not matching - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/255#issue-957292895

waterfall()

None of waterfall() variations is working correctly - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/268#issue-958336143

fmesh()

None of fmesh() variations is working - issue #269

  • fmesh(f)
  • fmesh(f,xyinterval)
  • fmesh(funx,funy,funz)
  • fmesh(funx,funy,funz,uvinterval)
  • fmesh(___,LineSpec)
  • fmesh(___,Name,Value)

Volume Visualization

streamline()

streamslice()

streamparticles()

issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/307#issue-962184630

streamribbon()

Default colors not matching - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/309#issue-962190411

  • streamribbon(X,Y,Z,U,V,W,startx,starty,startz)

streamtube()

Colors and grid not matching - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/310#issue-962197011

  • streamtube(X,Y,Z,U,V,W,startx,starty,startz)

coneplot()

Cones not matching - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/311#issue-962202310

  • coneplot(X,Y,Z,U,V,W,Cx,Cy,Cz)

slice()

None of slice() variations is working correctly - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/312#issue-962205007

Animations

(All charts generated using MATLAB 2021a)

animatedline()

None ofanimatedline() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/276#issue-959390579

  • an = animatedline
  • an = animatedline(x,y)
  • an = animatedline(x,y,z)
  • an = animatedline(___,Name,Value)

comet()

None of comet() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/277#issue-959395761

  • comet(y)
  • comet(x,y)
  • comet(x,y,p)
  • comet(ax,x,y,p)

comet3()

None of comet3() variations is working - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/278#issue-959399268

  • comet3(z)
  • comet3(x,y,z)
  • comet3(x,y,z,p)
  • comet3(ax,x,y,z,p)

Images

(All charts generated using MATLAB 2021a)

image()

Not matching default colors - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/280#issue-959405063

imagec()

Not matching default colors - issue: https://github.com/plotly/plotly-graphing-library-for-matlab/issues/280#issue-959405063

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by reviewing the checklist of MATLAB plotting functions and the linked issues for unsupported variations. Verify the listed figure behaviors and update the inventory so each variation accurately reflects its current status.

Written by the indexing model from the issue text.

Assessment

Tech stack
matlab
Domain
data-visualization
Issue type
Documentation
Difficulty
5/5
Estimated time
Over a week
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
25/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.