I have a really embarrassing problem here. I have plotted a ChiSquaredDistribution like
Plot[Evaluate@PDF[ChiSquareDistribution[4], x*(15/100)], {x, 0, 100}, PlotStyle -> Orange, Filling -> Axis]
and than I wanted to evaluate the distribution at certain values from the table I named data
hecer = Table[
With[{i = i},
Evaluate@
PDF[ChiSquareDistribution[4], data[[i, 1]]*(15/100)]], {i, 1,
Length[data[[All, 1]]], 1}];
However, this (surprisingly) doesn't work as planned. If one ListPlots that last table, you will see that the x axis goes from 0 to 1000, while it should only go from 0 to 100 as in the first Plot.
My question is why and how can I correct it. I attached the file where my data[[All,1]] is exported, so you can see that the values do NOT exceed 100. Strange. O.o I don't get it.
Attachments: