I'm trying to plot a table of values from an uploaded file. It does plot, but because the column 1 max values are 4 times as big as the column2 max values, I get an AspectRatio of 4:1 on the graph. I have used the following without luck - they all produce the 4:1 aspect..
T=Input["table3.txt","Table"]
//standard throughout the following attempts:
Plot[T,AspectRatio->1]
LineListPlot[T,AspectRatio->Automatic]
// this is actually the type of plot I'm looking for but I thought I would try Plot to see if AR didn't work with LLP
Plot[T,AspectRatio->1/4]
I have also added a single x,y data point to the Table file that increases the column 2 max values (currently 100) to the same max as Column 1 (currently 400). This does alter the aspect ratio but it's not plotting that point in the right spot. The added Point(0,400) gets plotted at 0,200. So the aspect ratio gets much closer (halfway there to be exact) but not what I was hoping for. I'm not doing any smoothing, averaging or curves, so I'm not sure why the added point doesn't go where it's supposed to. Even if I change that last added point to 0,800, this new point gets plotted at 0,220 (aprox) and the aspect gets only slightly closer to what it should be. Is it me?
I should point out that the parametric and scatter plots are as described above, however the histogram is plotted correctly with correct aspect ratio.But of course its the parametric I want.