Home
last modified time | relevance | path

Searched refs:ols (Results 1 – 25 of 939) sorted by relevance

12345678910>>...38

/dports/math/py-spreg/spreg-1.2.4/spreg/
H A Ddiagnostics_panel.py46 ols = OLS(y, x)
58 J = num / ols.sig2
87 ols = OLS(y, x)
95 utwu = spdot(ols.u.T, spdot(Wsp_nt, ols.u))
123 ols = OLS(y, x)
132 utwu = spdot(ols.u.T, spdot(Wsp_nt, ols.u))
136 J = num / ols.sig2
138 lm = (utwy/ols.sig2 - utwu/ols.sig2)**2 / (J - t*trw)
165 ols = OLS(y, x)
174 utwu = spdot(ols.u.T, spdot(Wsp_nt, ols.u))
[all …]
H A Ddiagnostics_sp.py127 cache = spDcache(ols, w)
235 cache = spDcache(ols, w)
236 self.I = get_mI(ols, w, cache)
524 def lmLag(ols, w, spDcache):
549 def rlmErr(ols, w, spDcache):
572 nj = ols.n * spDcache.j
580 def rlmLag(ols, w, spDcache):
606 def lmSarma(ols, w, spDcache):
659 def get_vI(ols, w, ei, spDcache):
669 vi = (w.n ** 2 / (w.s0 ** 2 * (w.n - ols.k) * (w.n - ols.k + 2.))) * \
[all …]
/dports/math/gretl/gretl-2021d/share/scripts/greene/
H A Dgreene8_3.inp5 ols q_A const l_k
6 ols q_A const kinv
7 ols l_q_A const l_k
8 ols l_q_A const kinv
11 ols q_A const l_k dum
12 ols q_A const kinv dum
13 ols l_q_A const l_k dum
15 ols q_A const l_k
17 ols q_A const kinv
19 ols l_q_A const l_k
[all …]
/dports/math/py-statsmodels/statsmodels-0.13.1/examples/python/
H A Dquantile_regression.py69 ols = smf.ols("foodexp ~ income", data).fit() variable
70 ols_ci = ols.conf_int().loc["income"].tolist()
71 ols = dict(a=ols.params["Intercept"], variable
72 b=ols.params["income"],
77 print(ols)
99 y = get_y(ols["a"], ols["b"])
123 p4 = plt.plot(models.q, [ols["b"]] * n, color="red", label="OLS")
124 p5 = plt.plot(models.q, [ols["lb"]] * n, linestyle="dotted", color="red")
125 p6 = plt.plot(models.q, [ols["ub"]] * n, linestyle="dotted", color="red")
H A Dformulas.py31 from statsmodels.formula.api import ols
36 sm.formula.ols
73 mod = ols(formula="Lottery ~ Literacy + Wealth + Region", data=df)
88 res = ols(formula="Lottery ~ Literacy + Wealth + C(Region)", data=df).fit()
106 res = ols(formula="Lottery ~ Literacy + Wealth + C(Region) -1 ", data=df).fit()
115 res1 = ols(formula="Lottery ~ Literacy : Wealth - 1", data=df).fit()
116 res2 = ols(formula="Lottery ~ Literacy * Wealth - 1", data=df).fit()
128 res = smf.ols(formula="Lottery ~ np.log(Literacy)", data=df).fit()
138 res = smf.ols(formula="Lottery ~ log_plus_1(Literacy)", data=df).fit()
H A Dinteractions_anova.py27 from statsmodels.formula.api import ols
63 lm = ols(formula, salary_table).fit()
111 interX_lm = ols("S ~ C(E) * X + C(M)", salary_table).fit()
121 interM_lm = ols("S ~ X + C(E)*C(M)", data=salary_table).fit()
266 min_lm = ols("JPERF ~ TEST", data=jobtest_table).fit()
310 min_lm3 = ols("JPERF ~ TEST + MINORITY", data=jobtest_table).fit()
336 min_lm4 = ols("JPERF ~ TEST * MINORITY", data=jobtest_table).fit()
390 rehab_lm = ols("Time ~ C(Fitness)", data=rehab_table).fit()
437 ols("np.log(Days+1) ~ C(Duration)", data=kt).fit(),
442 ols("np.log(Days+1) ~ C(Weight)", data=kt).fit(),
[all …]
/dports/finance/R-cran-strucchange/strucchange/man/
H A Ddurab.Rd39 ols <- efp(durab.model, data = durab, type = "OLS-CUSUM")
40 plot(ols)
52 ols.efp <- efp(durab.model, type = "OLS-CUSUM", data = Durab)
54 ols.mefp <- mefp(ols.efp, period=2)
55 ols.mefp2 <- mefp(ols.efp, border=newborder)
57 ols.mon <- monitor(ols.mefp)
58 ols.mon2 <- monitor(ols.mefp2)
59 plot(ols.mon)
60 lines(boundary(ols.mon2), col = 2)
71 plot(ols)
H A DGermanM1.Rd79 ols <- efp(LTW.model, data = GermanM1, type = "OLS-CUSUM")
80 plot(ols)
88 ols.efp <- efp(M1.model, type = "OLS-CUSUM", data = M1)
90 ols.mefp <- mefp(ols.efp, period = 2)
91 ols.mefp2 <- mefp(ols.efp, border = newborder)
93 ols.mon <- monitor(ols.mefp)
94 ols.mon2 <- monitor(ols.mefp2)
95 plot(ols.mon)
96 lines(boundary(ols.mon2), col = 2)
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/formula/tests/
H A Dtest_formula.py14 from statsmodels.formula.api import ols
54 cls.model = ols(longley_formula, data)
62 cls.model = ols(longley_formula, data)
69 results = ols(formula, dta).fit()
131 model = ols("prestige ~ income + education", dta).fit()
142 results = ols(formula, dta).fit()
149 results = ols('y ~ x', data).fit()
220 model = ols('Absorbance ~ BSA', data=df)
230 model = ols('y ~ x + z', eval_env=env, data=df)
233 ols('y ~ x', eval_env='env', data=df)
[all …]
/dports/math/octave-forge-statistics/statistics-1.4.3/install-conditionally/base/
H A Dols.m83 function [beta, sigma, r] = ols (y, x) function
142 %! assert (ols (y,x), [3; 2], 50*eps);
147 %! [b, s, r] = ols (x, y);
155 %! [b, s] = ols (x, y);
162 %! b = ols (x, y);
166 %!error ols ()
167 %!error ols (1)
168 %!error ols (1, 2, 3)
169 %!error ols ([true, true], [1, 2])
170 %!error ols ([1, 2], [true, true])
[all …]
/dports/ftp/bsdftpd-ssl/bsdftpd-ssl-1.1.0/contrib/libedit/
H A Drefresh.c440 ols = ++o;
446 osb = ols;
448 ose = ols;
500 ols = oe;
522 osb = ols;
528 ols = oe;
532 ols = oe;
544 ols = oe;
548 ols = oe;
560 osb = ols;
[all …]
/dports/math/gretl/gretl-2021d/share/scripts/ramanathan/
H A Dps4-1.inp3 ols price const sqft
9 ols price const
11 ols price sqft
13 ols price const sqft bedrms baths
19 ols price const sqft
33 ols price const sqft bedrms baths
40 ols price 0 sqft2 bedrms2 baths2
/dports/math/R-cran-miscTools/miscTools/man/
H A DcompPlot.Rd27 ols <- lm( y ~ x )
29 compPlot( y, fitted( ols ) )
30 compPlot( y, fitted( ols ), lim = c( 0, 10 ) )
31 compPlot( y, fitted( ols ), pch = 20 )
32 compPlot( y, fitted( ols ), xlab = "observed", ylab = "fitted" )
33 compPlot( y, fitted( ols ), log = "xy" )
/dports/finance/R-cran-plm/plm/R/
H A Dest_vcm.R122 ols <- lapply(ml, functionVar
133 …coef <- matrix(unlist(lapply(ols, coef)), nrow = length(ols), byrow = TRUE) # was: as.data.frame(t…
134 …dimnames(coef)[1:2] <- list(names(ols), names(coef(ols[[1L]]))) # ... but that code er…
138 residuals <- unlist(lapply(ols, residuals))
142 vcov <- lapply(ols, vcov)
186 ols <- lapply(ml, functionVar
198 coefm <- matrix(unlist(lapply(ols, coef)), nrow = length(ols), byrow = TRUE)
199 dimnames(coefm)[1:2] <- list(names(ols), names(coef(ols[[1]])))
206 X <- lapply(ols, model.matrix)
210 y <- lapply(ols, function(x) model.response(model.frame(x)))
[all …]
/dports/math/octave/octave-6.4.0/scripts/linear-algebra/
H A Dols.m103 function [beta, sigma, r] = ols (y, x) function
162 %! assert (ols (y,x), [3; 2], 50*eps);
167 %! [b, s, r] = ols (x, y);
175 %! [b, s] = ols (x, y);
182 %! b = ols (x, y);
186 %!error ols ()
187 %!error ols (1)
188 %!error ols (1, 2, 3)
189 %!error ols ([true, true], [1, 2])
190 %!error ols ([1, 2], [true, true])
[all …]
/dports/textproc/miller/miller-5.10.2/go/reg-test/cases/
H A Dcase-c-verb-stats2.sh1 run_mlr --opprint stats2 -a linreg-ols,linreg-pca,r2,corr,cov -f x,y,xy,y2 $indir/abix…
2 run_mlr --opprint stats2 -a linreg-ols,linreg-pca,r2,corr,cov -f x,y,xy,y2 -g a,b $indir/abix…
3 run_mlr --oxtab stats2 -s -a linreg-ols,linreg-pca,r2,corr,cov -f x,y,xy,y2 $indir/abix…
4 run_mlr --oxtab stats2 -s -a linreg-ols,linreg-pca,r2,corr,cov -f x,y,xy,y2 -g a,b $indir/abix…
5 run_mlr --opprint stats2 --fit -a linreg-ols,linreg-pca -f x,y,xy,y2 $indir/abix…
6 run_mlr --opprint stats2 --fit -a linreg-ols,linreg-pca -f x,y,xy,y2 -g a $indir/abix…
/dports/databases/percona56-server/percona-server-5.6.51-91.0/cmd-line-utils/libedit/
H A Drefresh.c557 ols = ++o; in re_update_line()
563 osb = ols; in re_update_line()
565 ose = ols; in re_update_line()
621 ols = oe; in re_update_line()
642 osb = ols; in re_update_line()
648 ols = oe; in re_update_line()
652 ols = oe; in re_update_line()
664 ols = oe; in re_update_line()
668 ols = oe; in re_update_line()
679 osb = ols; in re_update_line()
[all …]
/dports/databases/percona56-client/percona-server-5.6.51-91.0/cmd-line-utils/libedit/
H A Drefresh.c557 ols = ++o; in re_update_line()
563 osb = ols; in re_update_line()
565 ose = ols; in re_update_line()
621 ols = oe; in re_update_line()
642 osb = ols; in re_update_line()
648 ols = oe; in re_update_line()
652 ols = oe; in re_update_line()
664 ols = oe; in re_update_line()
668 ols = oe; in re_update_line()
679 osb = ols; in re_update_line()
[all …]
/dports/databases/percona-pam-for-mysql/percona-server-5.6.51-91.0/cmd-line-utils/libedit/
H A Drefresh.c557 ols = ++o; in re_update_line()
563 osb = ols; in re_update_line()
565 ose = ols; in re_update_line()
621 ols = oe; in re_update_line()
642 osb = ols; in re_update_line()
648 ols = oe; in re_update_line()
652 ols = oe; in re_update_line()
664 ols = oe; in re_update_line()
668 ols = oe; in re_update_line()
679 osb = ols; in re_update_line()
[all …]
/dports/math/reduce/Reduce-svn5758-src/libraries/libedit-20140620-3.1/src/
H A Drefresh.c558 ols = ++o; in re_update_line()
564 osb = ols; in re_update_line()
566 ose = ols; in re_update_line()
622 ols = oe; in re_update_line()
643 osb = ols; in re_update_line()
649 ols = oe; in re_update_line()
653 ols = oe; in re_update_line()
665 ols = oe; in re_update_line()
669 ols = oe; in re_update_line()
680 osb = ols; in re_update_line()
[all …]
/dports/math/reduce/Reduce-svn5758-src/libraries/original/libedit-20160506/
H A Drefresh.c562 ols = ++o; in re_update_line()
568 osb = ols; in re_update_line()
570 ose = ols; in re_update_line()
626 ols = oe; in re_update_line()
647 osb = ols; in re_update_line()
653 ols = oe; in re_update_line()
657 ols = oe; in re_update_line()
669 ols = oe; in re_update_line()
673 ols = oe; in re_update_line()
684 osb = ols; in re_update_line()
[all …]
/dports/databases/mysqlwsrep56-server/mysql-wsrep-wsrep_5.6.51-25.33/cmd-line-utils/libedit/
H A Drefresh.c557 ols = ++o; in re_update_line()
563 osb = ols; in re_update_line()
565 ose = ols; in re_update_line()
621 ols = oe; in re_update_line()
642 osb = ols; in re_update_line()
648 ols = oe; in re_update_line()
652 ols = oe; in re_update_line()
664 ols = oe; in re_update_line()
668 ols = oe; in re_update_line()
679 osb = ols; in re_update_line()
[all …]
/dports/databases/mysql56-client/mysql-5.6.51/cmd-line-utils/libedit/
H A Drefresh.c557 ols = ++o; in re_update_line()
563 osb = ols; in re_update_line()
565 ose = ols; in re_update_line()
621 ols = oe; in re_update_line()
642 osb = ols; in re_update_line()
648 ols = oe; in re_update_line()
652 ols = oe; in re_update_line()
664 ols = oe; in re_update_line()
668 ols = oe; in re_update_line()
679 osb = ols; in re_update_line()
[all …]
/dports/databases/mysql55-client/mysql-5.5.62/cmd-line-utils/libedit/
H A Drefresh.c557 ols = ++o; in re_update_line()
563 osb = ols; in re_update_line()
565 ose = ols; in re_update_line()
621 ols = oe; in re_update_line()
642 osb = ols; in re_update_line()
648 ols = oe; in re_update_line()
652 ols = oe; in re_update_line()
664 ols = oe; in re_update_line()
668 ols = oe; in re_update_line()
679 osb = ols; in re_update_line()
[all …]
/dports/math/gretl/gretl-2021d/share/scripts/misc/
H A Dmrw.inp12 model1 <- ols lny const linv lngd
16 ols lny const x3
20 model2 <- ols lny const linv lngd
24 ols lny const x3
28 model3 <- ols lny const linv lngd
32 ols lny const x3

12345678910>>...38