873 resultados para Needs Assessment Program Development
Resumo:
The article provides insight on issues serving as barriers to low-income fathers' involvement with their children and with parenting programs.
Resumo:
In recent years, disaster preparedness through assessment of medical and special needs persons (MSNP) has taken a center place in public eye in effect of frequent natural disasters such as hurricanes, storm surge or tsunami due to climate change and increased human activity on our planet. Statistical methods complex survey design and analysis have equally gained significance as a consequence. However, there exist many challenges still, to infer such assessments over the target population for policy level advocacy and implementation. ^ Objective. This study discusses the use of some of the statistical methods for disaster preparedness and medical needs assessment to facilitate local and state governments for its policy level decision making and logistic support to avoid any loss of life and property in future calamities. ^ Methods. In order to obtain precise and unbiased estimates for Medical Special Needs Persons (MSNP) and disaster preparedness for evacuation in Rio Grande Valley (RGV) of Texas, a stratified and cluster-randomized multi-stage sampling design was implemented. US School of Public Health, Brownsville surveyed 3088 households in three counties namely Cameron, Hidalgo, and Willacy. Multiple statistical methods were implemented and estimates were obtained taking into count probability of selection and clustering effects. Statistical methods for data analysis discussed were Multivariate Linear Regression (MLR), Survey Linear Regression (Svy-Reg), Generalized Estimation Equation (GEE) and Multilevel Mixed Models (MLM) all with and without sampling weights. ^ Results. Estimated population for RGV was 1,146,796. There were 51.5% female, 90% Hispanic, 73% married, 56% unemployed and 37% with their personal transport. 40% people attained education up to elementary school, another 42% reaching high school and only 18% went to college. Median household income is less than $15,000/year. MSNP estimated to be 44,196 (3.98%) [95% CI: 39,029; 51,123]. All statistical models are in concordance with MSNP estimates ranging from 44,000 to 48,000. MSNP estimates for statistical methods are: MLR (47,707; 95% CI: 42,462; 52,999), MLR with weights (45,882; 95% CI: 39,792; 51,972), Bootstrap Regression (47,730; 95% CI: 41,629; 53,785), GEE (47,649; 95% CI: 41,629; 53,670), GEE with weights (45,076; 95% CI: 39,029; 51,123), Svy-Reg (44,196; 95% CI: 40,004; 48,390) and MLM (46,513; 95% CI: 39,869; 53,157). ^ Conclusion. RGV is a flood zone, most susceptible to hurricanes and other natural disasters. People in the region are mostly Hispanic, under-educated with least income levels in the U.S. In case of any disaster people in large are incapacitated with only 37% have their personal transport to take care of MSNP. Local and state government’s intervention in terms of planning, preparation and support for evacuation is necessary in any such disaster to avoid loss of precious human life. ^ Key words: Complex Surveys, statistical methods, multilevel models, cluster randomized, sampling weights, raking, survey regression, generalized estimation equations (GEE), random effects, Intracluster correlation coefficient (ICC).^
Resumo:
Background. Human trafficking, or "modern day slavery", is a complex public health issue that we must understand more fully before it can be effectively tackled. There have been very few empirical studies on human trafficking and estimates of global and national human trafficking victims vary widely. Free the Slaves, a non-profit organization, estimates that there are at least 27 million people in the world at any given time that can be classified as victims of human trafficking. Houston, Texas has been identified as a place where human trafficking may be more likely to exist due to its close proximity to Mexico and due to economic and population factors. Houston Rescue and Restore Coalition (HRRC) is a local organization that exists to raise awareness of human trafficking in Houston, Texas. To better serve victims of human trafficking, HRRC commissioned a community assessment of the services available to victims of human trafficking in the greater Houston metropolitan area.^ Purpose. The current study assessed the capacity of organizations and agencies within the greater Houston metropolitan area to deal with human trafficking issues; in particular, knowledge regarding human trafficking issues among these organizations and agencies was evaluated.^ Methods. A cross-sectional study design was used to conduct surveys with key informants/stakeholders from organizations and agencies within the greater Houston metropolitan area. The survey instrument included 41 items in three parts, and consisted of multiple choice questions, open-ended essay questions, and closed-ended 5 point Likert questions.^ Results. The findings from this study indicate that efforts must be made to increase comprehensive awareness of the issue of human trafficking, including the federal and state laws that have been enacted to combat this problem. The data also indicate that there are limited services provided to human trafficking victims within the greater Houston metropolitan area.^ Conclusion. The results of the survey will provide Houston Rescue and Restore Coalition with information that will assist them in targeting their efforts to combat human trafficking in Houston, Texas.^
Resumo:
Transitional homes present a window of opportunity to address the nutrition-related chronic diseases of previously incarcerated women. However, few transitional facilities offer nutrition education programs. This study assesses the nutritional status of 9 previously incarcerated women living at a transitional home in Houston, Texas and makes recommendations for effective nutrition education programs. Data was collected through individual interviews, questionnaires and a 24-hour dietary recall. Participants differed significantly from national nutrition recommendations when comparing BMI values and fruit, vegetable and fiber intake. Qualitative interview themes concerned key barriers to healthful dietary intake such as inadequate food storage and inconvenient cooking environment. Nutrition education programs at transitional homes should focus on healthy meals and snacks that can be quickly prepared and easily stored in small spaces. ^
Resumo:
The technique of Abstract Interpretation has allowed the development of very sophisticated global program analyses which are at the same time provably correct and practical. We present in a tutorial fashion a novel program development framework which uses abstract interpretation as a fundamental tool. The framework uses modular, incremental abstract interpretation to obtain information about the program. This information is used to validate programs, to detect bugs with respect to partial specifications written using assertions (in the program itself and/or in system librarles), to genérate and simplify run-time tests, and to perform high-level program transformations such as múltiple abstract specialization, parallelization, and resource usage control, all in a provably correct way. In the case of validation and debugging, the assertions can refer to a variety of program points such as procedure entry, procedure exit, points within procedures, or global computations. The system can reason with much richer information than, for example, traditional types. This includes data structure shape (including pointer sharing), bounds on data structure sizes, and other operational variable instantiation properties, as well as procedure-level properties such as determinacy, termination, non-failure, and bounds on resource consumption (time or space cost). CiaoPP, the preprocessor of the Ciao multi-paradigm programming system, which implements the described functionality, will be used to illustrate the fundamental ideas.
Resumo:
We describe some of the novel aspects and motivations behind the design and implementation of the Ciao multiparadigm programming system. An important aspect of Ciao is that it provides the programmer with a large number of useful features from different programming paradigms and styles, and that the use of each of these features can be turned on and off at will for each program module. Thus, a given module may be using e.g. higher order functions and constraints, while another module may be using objects, predicates, and concurrency. Furthermore, the language is designed to be extensible in a simple and modular way. Another important aspect of Ciao is its programming environment, which provides a powerful preprocessor (with an associated assertion language) capable of statically finding non-trivial bugs, verifying that programs comply with specifications, and performing many types of program optimizations. Such optimizations produce code that is highly competitive with other dynamic languages or, when the highest levéis of optimization are used, even that of static languages, all while retaining the interactive development environment of a dynamic language. The environment also includes a powerful auto-documenter. The paper provides an informal overview of the language and program development environment. It aims at illustrating the design philosophy rather than at being exhaustive, which would be impossible in the format of a paper, pointing instead to the existing literature on the system.
Resumo:
We present in a tutorial fashion CiaoPP, the preprocessor of the Ciao multi-paradigm programming system, which implements a novel program development framework which uses abstract interpretation as a fundamental tool. The framework uses modular, incremental abstract interpretation to obtain information about the program. This information is used to validate programs, to detect bugs with respect to partial specifications written using assertions (in the program itself and/or in system libraries), to generate and simplify run-time tests, and to perform high-level program transformations such as multiple abstract specialization, parallelization, and resource usage control, all in a provably correct way. In the case of validation and debugging, the assertions can refer to a variety of program points such as procedure entry, procedure exit, points within procedures, or global computations. The system can reason with much richer information than, for example, traditional types. This includes data structure shape (including pointer sharing), bounds on data structure sizes, and other operational variable instantiation properties, as well as procedure-level properties such as determinacy, termination, non-failure, and bounds on resource consumption (time or space cost).
Resumo:
Objective: To compare the level of provision of carotid endarterectomy (an intervention of proved efficacy for prevention of stroke in patients with symptomatic high grade carotid artery stenosis) with estimates of need.
Resumo:
Equine Assisted Activities and Therapies (EAAT) including Therapeutic Horseback Riding (THR) and un-mounted equine assisted activities are interventions aimed at improving the daily functioning and success of individuals with disabilities, including those with an autism spectrum disorder (ASD). While THR is frequently utilized as a treatment intervention for children with ASD, there are many limitations (individual's weight, horse health, weather, physical limitations, health conditions, etc.) that prevent this population from participating in mounted programs. Un-mounted equine assisted activities are often utilized as an alternative, but they are not informed by empirical research or a standardized treatment model. This paper provides a comprehensive review of the literature for EAAT including un-mounted programs, examination of organizational guidelines as they apply to un-mounted programs, and consultation with program directors regarding current practices in the field, and finally it establishes recommendations for the development of a standard curriculum that would strengthen un-mounted horse care group programs serving children with ASD.
Resumo:
National Highway Traffic Safety Administration, Washington, D.C.
Resumo:
National Highway Traffic Safety Administration, Washington, D.C.
Resumo:
Includes bibliographical references and author index.
Resumo:
Companion vol. to the author's State experiences in social services planning.