How do you create a scatter plot using select columns from app.UITable.Data?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a Table where the rows get added and updated. I would like to be able to create a scatter plot of the table. Any thoughts?
2 comentarios
Walter Roberson
el 23 de Jun. de 2022
Should the plotting be based upon variable (column) number, or should it be based upon column name? Are the column names or number to plot always the same or is there input indicating which ones to select?
Respuestas (1)
Walter Roberson
el 23 de Jun. de 2022
scatter(TableName{:,2}, TableName{:,4})
3 comentarios
Walter Roberson
el 23 de Jun. de 2022
Why are you storing text for your uitable entries? Why are you not storing numeric values?
Ver también
Categorías
Más información sobre Scatter Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!