| bio | website | |
|---|---|---|
| location | London, United Kingdom | |
| age | ||
| visits | member for | 7 months |
| seen | Apr 4 at 17:53 | |
| stats | profile views | 394 |
|
Apr 1 |
awarded | Good Question |
|
Jan 23 |
comment |
Mathematica and Python integration? Thanks I will look into it. |
|
Jan 23 |
comment |
Is there a way to run Python from within Mathematica? This Pythonika link is no longer valid? sites.google.com/site/erocarrera/pythonika.html |
|
Jan 23 |
asked | Mathematica and Python integration? |
|
Jan 21 |
awarded | Nice Question |
|
Jan 20 |
accepted | How to place legend labels for Histogram and ListLinePlots correctly? |
|
Jan 20 |
comment |
How to place legend labels for Histogram and ListLinePlots correctly? Thanks Chris, just accepted! |
|
Jan 20 |
comment |
How to place legend labels for Histogram and ListLinePlots correctly? ChartLegends is not an option for ListLinePlot? Tried applying the Histogram example for ListLinePlot but returns-> Unknown option ChartLegends? |
|
Jan 20 |
comment |
How to place legend labels for Histogram and ListLinePlots correctly? Hi Chris, Thanks very cool, but not sure the difference between the two from the histograms? Dont see where you define the histogram colors and thickness? By ColorData? |
|
Jan 20 |
comment |
How to place legend labels for Histogram and ListLinePlots correctly? Hi Chris, could you show how to overlay histogram simulations a and b together? I tried plot1=Labeled[Histogram[data...]], plot2=Labeled[Histogram[data...]], and then Show[plot1, plot2] doesnt work? Error:Labeled is not a Graphics primitive or directive. |
|
Jan 19 |
comment |
How to place legend labels for Histogram and ListLinePlots correctly? Hi Chris, what about placing the Mean[List], Max[List] and Min[List] on the histogram (or ListLinePlot) that I already calculated? At the moment they are simply outputs somewhere else. |
|
Jan 18 |
comment |
Is there an equivalent of MATLAB's Workspace window in Mathematica? Hi ssh, when I made the Module into a function as in f:=Module[ ], then clicking the Refresh button opens up another pop up on top of the current pop up? |
|
Jan 18 |
comment |
What's the most “functional” way to do Cholesky decomposition? I tried the original posting which seems to work well with a small set of data, then applied a 100 x 100 covariance matrix which worked on CholeskyDecomposition[covMat]), but applying it to the ProceduralCholesk[covMat] I get "Infinite expression 1/0.x10-4 encountered"? Not sure how to copy and paste my covMat data for you to compare if it matters? |
|
Jan 16 |
comment |
How to place legend labels for Histogram and ListLinePlots correctly? Thanks Chris! Useful to know. |
|
Jan 16 |
comment |
How to place legend labels for Histogram and ListLinePlots correctly? Thanks @rcollyer, though the FrameLabel looks small, any way set FontSize? But applying it on the Histogram I noticed the whole set of data gets shifted up so data seems to be floating instead of where it was before? Histogram[Table[zcb[i],{i,mcRunHJM}],FrameLabel-> {"Price","Relative Frequency"},Frame-> {True, True, False, False}] |
|
Jan 16 |
asked | How to place legend labels for Histogram and ListLinePlots correctly? |
|
Jan 16 |
accepted | How do I troubleshoot when I get a Part::partd or a Part::partw error? |
|
Jan 16 |
comment |
How do I troubleshoot when I get a Part::partd or a Part::partw error? Thanks this explains it quite well. |
|
Jan 16 |
asked | How do I troubleshoot when I get a Part::partd or a Part::partw error? |
|
Jan 15 |
comment |
Elegant operations on matrix rows and columns ok got it, need to Transpose, Flatten, Take as in: Take[Flatten[Transpose[mat]], {1, 3}] -> {1,4,7}, unless there are betters way to do so? |