Home
last modified time | relevance | path

Searched refs:births (Results 1 – 25 of 458) sorted by relevance

12345678910>>...19

/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/datasets/fertility/
H A Dfertility.csv3 Andorra,AND,"Fertility rate, total (births per woman)",SP.DYN.TFRT.IN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,…
10 American Samoa,ASM,"Fertility rate, total (births per woman)",SP.DYN.TFRT.IN,,,,,,,,,,,,,,,,,,,,,,,…
48 Curacao,CUW,"Fertility rate, total (births per woman)",SP.DYN.TFRT.IN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,…
49 Cayman Islands,CYM,"Fertility rate, total (births per woman)",SP.DYN.TFRT.IN,,,,,,,,,,,,,,,,,,,,,,,…
67 Faeroe Islands,FRO,"Fertility rate, total (births per woman)",SP.DYN.TFRT.IN,,,,,,,,,,,,,,,,,,,,,,,…
89 Isle of Man,IMN,"Fertility rate, total (births per woman)",SP.DYN.TFRT.IN,,2.707,,,,,,,,,,,,,,,,,,,…
124 Monaco,MCO,"Fertility rate, total (births per woman)",SP.DYN.TFRT.IN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,…
136 Northern Mariana Islands,MNP,"Fertility rate, total (births per woman)",SP.DYN.TFRT.IN,,,,,,,,,,,,,…
158 Palau,PLW,"Fertility rate, total (births per woman)",SP.DYN.TFRT.IN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2…
178 San Marino,SMR,"Fertility rate, total (births per woman)",SP.DYN.TFRT.IN,,,,,,,,,,,,,,,,,,,,,,,,,,,…
[all …]
/dports/games/critterding/critterding-beta12/src/scenes/gui/
H A Dtextverbosemessage.cpp32 births.push_back(Msg); in addBirth()
51 if ( !births.empty() ) in deleteExpiredMsg()
54 births.size() > maxMessages in deleteExpiredMsg()
55 || ( msgLifetime > 0 && Timer::Instance()->sdl_lasttime - births[0]->appeartime > msgLifetime ) in deleteExpiredMsg()
58 delete births[0]; in deleteExpiredMsg()
59 births.erase(births.begin()+0); in deleteExpiredMsg()
92 if ( !births.empty() ) in draw()
99 for ( unsigned int i = 0; i < births.size(); i++ ) in draw()
100 Textprinter::Instance()->print(position.x+10, position.y + 13 + 1 + (i*13), births[i]->str); in draw()
H A Dtextverbosemessage.h34 vector<vmsg*> births; variable
/dports/science/R-cran-Epi/Epi/man/
H A Deffx.Rd68 data(births)
69 births$hyp <- factor(births$hyp,labels=c("normal","hyper"))
70 births$sex <- factor(births$sex,labels=c("M","F"))
76 effx(bweight,exposure=hyp,data=births)
78 effx(bweight,exposure=hyp,strata=sex,data=births)
80 effx(bweight,exposure=hyp,control=sex,data=births)
84 effx(bweight,exposure=gestwks,data=births)
86 effx(bweight,exposure=gestwks,strata=sex,data=births)
88 effx(bweight,exposure=gestwks,control=sex,data=births)
92 effx(lowbw,type="binary",exposure=hyp,data=births)
[all …]
H A DB.dk.Rd6 The number of live births as entered from printed publications from
15 \item{\code{m}}{Number of male births}
16 \item{\code{f}}{Number of female births}
20 Division of births by month and sex is only avaialble for the years 1957--69
21 and 2002ff. For the remaining period, the total no. births in each month is
42 # Plot the no of births and the M/F-ratio
50 mtext( "Monthly no. births in Denmark", side=3, adj=0, at=usr[1], line=1/1.6 )
H A Dbirths.Rd1 \name{births}
2 \alias{births}
6 Data from 500 singleton births in a London Hospital
8 \usage{data(births)}
30 data(births)
/dports/math/R-cran-survey/survey/man/
H A Dhospital.Rd16 \item{births}{births}
32 svytotal(~births, design=hospdes)
33 svytotal(~births, design=hosprep)
/dports/finance/R-cran-strucchange/strucchange/man/
H A DGrossarl.Rd9 births, and deaths in the Austrian Alpine village Grossarl during the
18 \item{illegitimate}{time series. Number of illegitimate births,}
19 \item{legitimate}{time series. Number of legitimate births,}
21 \item{fraction}{time series. Fraction of illegitimate births,}
42 and burials (which is almost equivalent to births and deaths in the study
60 ## time series of births, deaths, marriages
66 legend("topright", c("deaths", "births", "marriages"), col = grey(c(0.7, 0, 0)),
69 ## illegitimate births
/dports/misc/lifelines/lifelines-3.1.1/reports/
H A Dbias.ll12 This program gives statistics for male vs female births.
14 Compute sex bias based on previous births
23 This program gives statistics for male vs female births. First, it
25 proportion of previous births in the same family. In particular, it
27 births is 0 males and 0 females), then the tally for second-borns where
36 The program next prints out the relative excess of male births
50 It also tallies the fraction of births matching the sex of the previous
53 cases: first, for all births of non-first-borns; then, for births preceded
223 "Male excess of previous births= " d(div(sumpfract,tot)) "% +/- " d(rmsp) "%\n"
228 "\nFraction of births that match (in sex) a run of previous births in the"
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DCustom.java46 public static final AtomicInteger births = new AtomicInteger(0); field in Custom.CustomTask
47 CustomTask(Callable<V> c) { super(c); births.getAndIncrement(); } in CustomTask()
48 CustomTask(Runnable r, V v) { super(r, v); births.getAndIncrement(); } in CustomTask()
101 equal(CustomTask.births.get(), threadCount); in main()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DCustom.java46 public static final AtomicInteger births = new AtomicInteger(0); field in Custom.CustomTask
47 CustomTask(Callable<V> c) { super(c); births.getAndIncrement(); } in CustomTask()
48 CustomTask(Runnable r, V v) { super(r, v); births.getAndIncrement(); } in CustomTask()
101 equal(CustomTask.births.get(), threadCount); in main()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/util/concurrent/ThreadPoolExecutor/
H A DCustom.java58 public static final AtomicInteger births = new AtomicInteger(0); field in Custom.CustomTask
59 CustomTask(Callable<V> c) { super(c); births.getAndIncrement(); } in CustomTask()
60 CustomTask(Runnable r, V v) { super(r, v); births.getAndIncrement(); } in CustomTask()
129 equal(CustomTask.births.get(), threadCount); in main()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/java/util/concurrent/ThreadPoolExecutor/
H A DCustom.java58 public static final AtomicInteger births = new AtomicInteger(0); field in Custom.CustomTask
59 CustomTask(Callable<V> c) { super(c); births.getAndIncrement(); } in CustomTask()
60 CustomTask(Runnable r, V v) { super(r, v); births.getAndIncrement(); } in CustomTask()
129 equal(CustomTask.births.get(), threadCount); in main()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/java/util/concurrent/ThreadPoolExecutor/
H A DCustom.java58 public static final AtomicInteger births = new AtomicInteger(0); field in Custom.CustomTask
59 CustomTask(Callable<V> c) { super(c); births.getAndIncrement(); } in CustomTask()
60 CustomTask(Runnable r, V v) { super(r, v); births.getAndIncrement(); } in CustomTask()
129 equal(CustomTask.births.get(), threadCount); in main()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/java/util/concurrent/ThreadPoolExecutor/
H A DCustom.java58 public static final AtomicInteger births = new AtomicInteger(0); field in Custom.CustomTask
59 CustomTask(Callable<V> c) { super(c); births.getAndIncrement(); } in CustomTask()
60 CustomTask(Runnable r, V v) { super(r, v); births.getAndIncrement(); } in CustomTask()
129 equal(CustomTask.births.get(), threadCount); in main()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/util/concurrent/ThreadPoolExecutor/
H A DCustom.java58 public static final AtomicInteger births = new AtomicInteger(0); field in Custom.CustomTask
59 CustomTask(Callable<V> c) { super(c); births.getAndIncrement(); } in CustomTask()
60 CustomTask(Runnable r, V v) { super(r, v); births.getAndIncrement(); } in CustomTask()
129 equal(CustomTask.births.get(), threadCount); in main()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/util/concurrent/ThreadPoolExecutor/
H A DCustom.java58 public static final AtomicInteger births = new AtomicInteger(0); field in Custom.CustomTask
59 CustomTask(Callable<V> c) { super(c); births.getAndIncrement(); } in CustomTask()
60 CustomTask(Runnable r, V v) { super(r, v); births.getAndIncrement(); } in CustomTask()
129 equal(CustomTask.births.get(), threadCount); in main()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/java/util/concurrent/ThreadPoolExecutor/
H A DCustom.java58 public static final AtomicInteger births = new AtomicInteger(0); field in Custom.CustomTask
59 CustomTask(Callable<V> c) { super(c); births.getAndIncrement(); } in CustomTask()
60 CustomTask(Runnable r, V v) { super(r, v); births.getAndIncrement(); } in CustomTask()
129 equal(CustomTask.births.get(), threadCount); in main()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/util/concurrent/ThreadPoolExecutor/
H A DCustom.java58 public static final AtomicInteger births = new AtomicInteger(0); field in Custom.CustomTask
59 CustomTask(Callable<V> c) { super(c); births.getAndIncrement(); } in CustomTask()
60 CustomTask(Runnable r, V v) { super(r, v); births.getAndIncrement(); } in CustomTask()
129 equal(CustomTask.births.get(), threadCount); in main()
/dports/math/R-cran-spData/spData/man/
H A Dnc.sids.Rd28 \item{BIR74} {births, 1974-78}
30 \item{NWBIR74} {non-white births, 1974-78}
31 \item{BIR79} {births, 1979-84}
33 \item{NWBIR79} {non-white births, 1979-84}
/dports/lang/mit-scheme/mit-scheme-9.2/src/compiler/rtlopt/
H A Drcompr.scm43 (births (make-regset (rgraph-n-registers *current-rgraph*))))
49 (regset-clear! births)
50 (mark-set-registers! live births rtl false)
54 (regset-union! live births))))))
/dports/www/e2guardian/e2guardian-5.3.4/src/
H A DFatController.hpp22 long births; // num of child forks in stat interval member
/dports/biology/avida/avida-2.12.4-src/avida-core/tests/avatars/expected/data/
H A Derror.dat18 # 16: True Replication Rate (based on births/update, time-averaged)
H A Dvariance.dat18 # 16: True Replication Rate (based on births/update, time-averaged)
/dports/biology/avida/avida-2.12.4-src/avida-core/tests/multi_level_selection/expected/data/
H A Ddeme_repl.dat6 # 4: Mean number of births within replicated demes [numbirths]

12345678910>>...19