| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 7 months |
| seen | Nov 30 '12 at 1:28 | |
| stats | profile views | 5 |
|
Feb 20 |
awarded | Nice Question |
|
Nov 26 |
accepted | Labeling a Plot with a Slash for Division Sign |
|
Nov 26 |
awarded | Commentator |
|
Nov 26 |
comment |
Labeling a Plot with a Slash for Division Sign String works perfectly. I actually needed something in the form of $A/B_C$, which didn't render correctly with InputForm. Thanks. |
|
Nov 26 |
asked | Labeling a Plot with a Slash for Division Sign |
|
Oct 15 |
comment |
Axes/Frame Label as Log base 10 Yeah, I gave ListLogLinearPlot a go originally, but the numbers on the frame were cluttered, so I thought I would try the other way to see how it looked. |
|
Oct 15 |
awarded | Scholar |
|
Oct 15 |
accepted | Axes/Frame Label as Log base 10 |
|
Oct 15 |
comment |
Axes/Frame Label as Log base 10 Perfect, thanks. |
|
Oct 15 |
asked | Axes/Frame Label as Log base 10 |
|
Oct 9 |
comment |
Make a density list plot/histogram from large, pre-binned data set? @chris--I have used your suggestion. If you want to write it up, I'll accept it. |
|
Oct 9 |
comment |
Make a density list plot/histogram from large, pre-binned data set? @AnastasiiaAnishchenko--A ListContourPlot is not ideal when the data has fine substructure as the contour borders obscure the image. A color-bar is very interesting, however, and is something I would like to implement, if possible, from chris' suggestion above. |
|
Oct 9 |
comment |
Make a density list plot/histogram from large, pre-binned data set? @s0rce--The binned data is stored as an $N \times 3$ table, so data[[All,All,3]] is undefined. Substituting data[[All,3]], though, gives an error when doing Image: The specified argument ... should be an array of rank 2 or 3 with machine-sized numbers. |
|
Oct 1 |
comment |
Make a density list plot/histogram from large, pre-binned data set? I found this, which seems to have an answer for putting ticks on the image. |
|
Oct 1 |
comment |
Make a density list plot/histogram from large, pre-binned data set? @chris--This is very close. I'm running into some memory problems when doing BinCounts on the full data set, but I'm able to extract this information from the bin counting I have already done in Fortran. How can I go about now superimposing some axes and ticks onto the image? |
|
Oct 1 |
revised |
Make a density list plot/histogram from large, pre-binned data set? Improved explanation and provided an approximation of the data. |
|
Oct 1 |
revised |
Make a density list plot/histogram from large, pre-binned data set? edited title |
|
Oct 1 |
awarded | Editor |
|
Oct 1 |
revised |
Make a density list plot/histogram from large, pre-binned data set? added 565 characters in body |
|
Oct 1 |
comment |
Make a density list plot/histogram from large, pre-binned data set? @VitaliyKaurov--This was what I tried first, actually. I really need two things: 1) no or very little interpolation and 2) the full $500^2$ data set plotted. With a simple ListDensityPlot Mathematica just hangs forever (10+ minutes) and I'm too impatient to see what the results are. With a truncated data set I get a washed-out density plot that loses sight of substructure. With InterpolationOrder->0 it's starting to resemble what I want, but the plotting time is still very slow. |