I have a text file of two columns (energy 1, energy 2). I need to plot E1 against E2. I did this in excel (as I have never programmed) but was told that the I need to do in something like C++ in order to see the intensities that wasn't apparent in the excel plot.
Can someone give a a starting point at where to begin? Is this an easy code to write.
Once your more familiar, you could make a graphical graph using a graphics library, SFML is my favorite for 2D http://sfml-dev.org/tutorials/1.6/
EDIT: and is it easy to write? It all depends on what you are doing... but a bar graph should be fairly trivial, as long as you don't mind waiting up to a couple weeks.
Its not clear what the OP wants but if I had a week to produce a plot I wouldn't start coding from scratch but first look around for software that has more graphical functionality than Excel and is freely available.
It is likely that the plot could be produced using R. This is a complicated bit of software but you can find graph recipes on the web and then mutate them towards the plot you want. http://www.r-project.org/
Only if it was something particularly special that you can't find any software to create would I code up. even then I would
use a scripting language, I have used perl GD for this but there are also python graphics libraries.