josephmure
josephmure
For example, [distribution](https://openturns.github.io/openturns/1.16/user_manual/_generated/openturns.Normal.html) `draw` methods.
Is there a way to move the legend outside the graph window? ``` import openturns as ot from openturns import viewer irregular_str = 'exp(x1)/5 - x2/5 + x2^6/3 + 4*x2^4...
Here is an example: ```python from openturns.viewer import PlotDesign s = [ [ 0.570373, 0.437713, 0.560292, 0.52892, 0.672859 ], [ 0.356994, 0.741912, 0.37328, 0.361439, 0.272956 ], [ 0.227844, 0.228484, 0.631337,...
# Goal Build upon PR #2422 by expanding the use of default colors : - PR #2422 applies a default color to a Drawable when it is added to a...
### What happened? When compiling OpenTURNS on a machine which does not have all optional dependencies, I am unable to build the doc: ```python Warning, treated as error: /home/GIT/openturns/build/python/src/sphinx_build/examples/data_analysis/distribution_fitting/plot_estimate_gev_venice.py failed...
### What is the idea? Currently, as stated in the `PlotDesign` docstring: ``` subdivisions : a list of integers, optional Number of subdivisions in the each direction. By default, set...
### What happened? Everything is in the title: I think this behavior strange. Moreover, for 1d distributions, the value differs from what `computeScalarQuantile` returns. ### How to reproduce the issue?...
- Checks for dimension 1 first. - Extremities of the range are used only for prob (resp. 1 - prob) < cdfEpsilon_ rather than quantileEpsilon_ - Fixes #2513 according to...
### What happened? The following line is bugged because it does not take into account the possibility that the upper or lower bound of an interval was declared infinite. It...
### What happened? The following fails on my machine: ```python bin = ot.Binomial(1030, 0.5) cdf = bin.computeCDF(400) # cdf = 3.8973524662436084e-13 print(bin.computeQuantile(cdf)) ``` Output : [0] instead of the expeted...