User Portlet User Portlet

Jason Biggs
Discussions
For the first issue, "O" is the [SMILES](https://en.wikipedia.org/wiki/Simplified_molecular-input_line-entry_system) code for water, this is why it is listed as an alternate name for water in the database. You can see here that all of these names...
>for instance if my error in my y data is huge i would expect the error in the parameters a and b to increase as well. will this happen in this case That's the way I read the documentation. If you put in the errors on the data, and set the...
Is there any way for you to post the data (save as a "*.m" file and upload to gist.github.com) so that we could give it a try?
If you're plotting functions with `Plot`, then you can use `TwoAxisPlot` defined [here](https://reference.wolfram.com/language/howto/GeneratePlotsWithTwoVerticalScales.html). If you are plotting lists using `ListLinePlot`, then use `TwoAxisListPlot`...
You said > I want the errors on the parameters to be solely determined by the > errors on the data and on the linked page it says >For measurement errors, you want standard errors to be computed only from the weights and so the variance...
Do you want to make a video out of it to use outside of the mathematica notebook? If so, then do not use Mathematica, use some other program. I recommend ffmpeg, and you can use the example...
Is the issue that the 3D and 2D plots don't match? The `ListPlot3D` output shows that *Mathematica* chose to truncate the range of z-values automatically, if you want to disable this and plot the full data, try adding the option `PlotRange->All` to...
If you want to match the output of Integrate[E^y E^-(t - y), {y, 0, t}] then you need to specify that the functions `f` and `g` are only defined for positive arguments, as described...
I've encountered the situation before where the order of integration greatly effects the results. You might find [this post](http://mathematica.stackexchange.com/a/41545/9490) to be interesting reading
This comes from an [old post](http://mathematica.stackexchange.com/a/110383/9490) over on the SE about [Kobon Triangles][1], but I've added some new functionality and thought I might share it here. I enjoyed working on this, I learned how to...