Tagged Questions
11
votes
3answers
129 views
Is it possible to position ticklabels on the negative y axis on its right side?
Is it possible to position ticklabels on negative $y$ axis on its right side? Ticklabels on positive $y$ axis should remain as usual:
9
votes
2answers
122 views
Plotting vectors originating from the origin in 3D
I have an array of data with 3D elements. Ex: x = {{1,2,3}, {3,4,5}, {5,6,7}}.
I want to show this data in 3 dimensions, such that each point in the space is shown as a vector originating from the ...
10
votes
1answer
99 views
Labelling ArrayPlot Charts
I have been using ArrayPlot to show off some information. Currently, my datasets are like so:
data1={2, 6, 3, 4, 8, 5, 13, 11, 33, 21, 29, 21, 42, 29, 36};
data2={0, 1, 9, 1, 3, 0, 5, 3, 20, 16, 4, ...
9
votes
2answers
184 views
Visualizing several long lists of numerical information to see relative frequency
Mathematica has very powerful visualization techniques. However, I'm at a loss at how to best make the following chart readable.
BarChart3D[{viewerCount1, viewerCount2, viewerCount3},
ChartLabels ...
15
votes
6answers
564 views
Using ListPointPlot3D to simulate 2D plots moving in time
I wrote a 1D solver for the heat equation $u_t=u_{xx}$, and I can animate the solution using normal ListPlot command, where the x-axis is the rod length, and the y-axis is $u(x,t)$. So for each time ...