Serving the Quantitative Finance Community

 
User avatar
he0001
Topic Author
Posts: 0
Joined: June 28th, 2012, 2:35 pm

Software Screenshot

June 29th, 2012, 7:09 pm

I was wondering if anyone knew which software is being used to generate graphs and tables like this one: http://cssanalytics.files.wordpress.com/2011/08/008.png. Or if you have a suggestion of a software program that can do something comparable to this, then please let me know.Thanks in advance!
 
User avatar
DevonFangs
Posts: 0
Joined: November 9th, 2009, 1:49 pm

Software Screenshot

July 2nd, 2012, 12:26 pm

QuoteOriginally posted by: he0001I was wondering if anyone knew which software is being used to generate graphs and tables like this one: http://cssanalytics.files.wordpress.com/2011/08/008.png. Or if you have a suggestion of a software program that can do something comparable to this, then please let me know.Thanks in advance!It's obviously Gnuplot
 
User avatar
acastaldo
Posts: 14
Joined: October 11th, 2002, 11:24 pm

Software Screenshot

July 2nd, 2012, 12:51 pm

Hmm, looks like Excel (Exhell?) to me but why not get the info from the horse's mouth:Quoteall inquiries are welcome, please contact david@cssanalytics.com
 
User avatar
rmax
Posts: 374
Joined: December 8th, 2005, 9:31 am

Software Screenshot

July 2nd, 2012, 4:09 pm

Looks as though it can be done in Excel with either a suitable palette or Excel 2010.
Last edited by rmax on July 1st, 2012, 10:00 pm, edited 1 time in total.
 
User avatar
he0001
Topic Author
Posts: 0
Joined: June 28th, 2012, 2:35 pm

Software Screenshot

July 5th, 2012, 11:28 am

Thanks for all the replies everyone. This will help out.
 
User avatar
skebanga
Posts: 0
Joined: January 12th, 2011, 5:28 pm

Software Screenshot

July 9th, 2012, 2:37 am

QuoteOriginally posted by: DevonFangsfor_each( your_bases.begin(), your_bases.end(), [&our_bases](base_t & b) { our_bases.push_back( move(b) ); } );auto are_belong_to_us = [&our_base](base_t &b) { our_bases.push_back( std::move(b) ); };for (auto all : your_base) are_belong_to_us(all);
 
User avatar
Cuchulainn
Posts: 22926
Joined: July 16th, 2004, 7:38 am

Software Screenshot

July 9th, 2012, 4:41 am

QuoteOriginally posted by: skebangaQuoteOriginally posted by: DevonFangsfor_each( your_bases.begin(), your_bases.end(), [&our_bases](base_t & b) { our_bases.push_back( move(b) ); } );auto are_belong_to_us = [&our_base](base_t &b) { our_bases.push_back( std::move(b) ); };for (auto all : your_base) are_belong_to_us(all);You guys like 'auto'