blob: 4d806292425a552257b6c4d53347fa1abc7b5d58 [file] [log] [blame]
/* ----------------------------------------------------------------------- *//**
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*//* ----------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
* Test probability functions.
* -------------------------------------------------------------------------- */
SELECT
bernoulli_cdf(0, 0.3),
beta_cdf(-1, 1, 1) ,
binomial_cdf(11, 11, 0.4),
cauchy_cdf('-Inf', 1, 2),
chi_squared_cdf(-1, 1) ,
exponential_cdf(-1, 1),
extreme_value_cdf(3, 1, 2),
fisher_f_cdf(0, 1, 1),
gamma_cdf(0, 0.5, 2) ,
geometric_cdf(0, 0.3) ,
hypergeometric_cdf(-1 ,50, 30, 500),
inverse_gamma_cdf(-1, 1, 2),
laplace_pdf('-Inf', 1, 1),
logistic_quantile(0.7310586, 1, 2),
normal_quantile(NULL, 0, 1),
poisson_cdf(NULL, 1),
uniform_pdf(-1, 0, 1)
;