Visit the post for more.
Comfort Food! Nachos!
taylor price
official daine visual archive
Lint Roller? I Barely Know Her
hello vonnie
h
RMH

Origami Around
𓃗
TMBGareOK. The Official They Might Be Giants tumblr
Aqua Utopia|海の底で記憶を紡ぐ
★
Show & Tell

shark vs the universe
Noah Kahan
PUT YOUR BEARD IN MY MOUTH
untitled

@theartofmadeline

❣ Chile in a Photography ❣

seen from Venezuela
seen from Nepal
seen from United Kingdom
seen from United States

seen from United States

seen from United Kingdom
seen from Germany

seen from Moldova

seen from Hungary
seen from Kenya

seen from Italy

seen from Germany

seen from Russia
seen from Senegal

seen from Türkiye

seen from United States
seen from Brazil
seen from Philippines
seen from Colombia

seen from United States
@lets-try-cooking-vegetarian
Visit the post for more.
Comfort Food! Nachos!

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Visit the post for more.
Experiment of the Day
Visit the post for more.
Snack using Bread
Entry 6 Place: Mahabaleshwar State: Maharashtra Country: India Now, coming to my favorite place, it is having breathtaking views, climate, and strawberries (yes, they are great to munch while climb…
Hillstations of India
Entry 7 Place: Warangal State: Andhra Pradesh Country: India Warangal is located near the capital of Telangana Hyderabad. It is a well-known city for all the 12th-grade students as they visit this …
Temples of Telangana

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Entry 1 Place: Chidambaram Temple State: Tamil Nadu Country: India So here is how I start my travel blog with the first entry about my visit to a temple. The ancient temple in Chidambaram has a gre…
Temples of Tamil Nadu
Visit the post for more.
Green Healthy Soup!
Visit the post for more.
My Indian Style Quinoa
Visit the post for more.
Simple, healthy One Pot recipe
Visit the post for more.
My version upgrade of Mac and Cheese

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Red Kidney Beans (Rajma) and Rice (Chawal) - Vegetarian/Vegan
Red Kidney Beans (Rajma) and Rice (Chawal) – Vegetarian/Vegan
Curry and rice served along with Onion
Being a girl from Delhi I have a close affinity towards Rajma Chawal, but living as an international student in US with lots of responsibilities it has taken me year to prepare and relish the dish.
Ingredients I used:
Red Kidney Beans: I presoaked them over night and boiled them but can be directly used from can
Onion: 1 medium sized
Tomatoe…
View On WordPress
The output
The result shows the values of the people going to church and attempting suicides.
6504 2829 6504 In past 12 months frequency of visting church etc. 4 664 8 7 1 2567 2 1274 6 8 3 1105 7 879 Name: H1RE3, dtype: int64 4 0.102091 8 0.001076 1 0.394680 2 0.195879 6 0.001230 3 0.169895 7 0.135148 Name: H1RE3, dtype: float64 How important is religion to you 4 193 8 8 1 2812 2 2218 6 3 3 391 7 879 Name: H1RE4, dtype: int64 4 0.029674 8 0.001230 1 0.432349 2 0.341021 6 0.000461 3 0.060117 7 0.135148 Name: H1RE4, dtype: float64 How often do you pray 4 496 8 5 1 2722 5 440 2 1370 6 6 3 586 7 879 Name: H1RE6, dtype: int64 4 0.076261 8 0.000769 1 0.418512 5 0.067651 2 0.210640 6 0.000923 3 0.090098 7 0.135148 Name: H1RE6, dtype: float64 How often do you attend youth activities by church 4 2421 8 7 1 1403 2 926 6 6 3 862 7 879 Name: H1RE7, dtype: int64 4 0.372232 8 0.001076 1 0.215713 2 0.142374 6 0.000923 3 0.132534 7 0.135148 Name: H1RE7, dtype: float64 How often in 12 months think of suicide 0 5614 8 22 1 821 9 1 6 46 Name: H1SU1, dtype: int64 0 0.863161 8 0.003383 1 0.126230 9 0.000154 6 0.007073 Name: H1SU1, dtype: float64 How often in 12 months attemp suicide 0 587 4 25 8 1 1 131 2 64 6 3 3 10 7 5683 Name: H1SU2, dtype: int64 0 0.090252 4 0.003844 8 0.000154 1 0.020141 2 0.009840 6 0.000461 3 0.001538 7 0.873770 Name: H1SU2, dtype: float64
The frequency results
# -*- coding: utf-8 -*- """ Created on Thu Dec 3 18:03:58 2015
@author: saisruthi """ import pandas import numpy data= pandas.read_csv('addhealth_pds.csv',low_memory=False) print(len(data)) print(len(data.columns)) print(len(data.index))
print('In past 12 months frequency of visting church etc.') c2=data['H1RE3'].value_counts(sort=False) #percentage print(c2) p2=data['H1RE3'].value_counts(sort=False,normalize=True) print(p2) print('How important is religion to you') c3=data['H1RE4'].value_counts(sort=False) #percentage print(c3) p3=data['H1RE4'].value_counts(sort=False,normalize=True) print(p3) print('How often do you pray') c4=data['H1RE6'].value_counts(sort=False) #percentage print(c4) p4=data['H1RE6'].value_counts(sort=False,normalize=True) print(p4) print('How often do you attend youth activities by church') c5=data['H1RE7'].value_counts(sort=False) #percentage print(c5) p5=data['H1RE7'].value_counts(sort=False,normalize=True) print(p5) print('How often in 12 months think of suicide') c6=data['H1SU1'].value_counts(sort=False) #percentage print(c6) p6=data['H1SU1'].value_counts(sort=False,normalize=True) print(p6) print('How often in 12 months attemp suicide') c7=data['H1SU2'].value_counts(sort=False) #percentage print(c7) p7=data['H1SU2'].value_counts(sort=False,normalize=True) print(p7)
How can belief in God or religion affect suicidal tendency?
I personally am a very religious person having a strong belief in God and never in my life thought about suicide. I thought this can be great relation to find analysing the data.
After looking into the data given by National Longitudinal Study of Adolescent Health I was fascinated as how the children are religious and how much do they think about suicide. I would like to explore on the terms how many believe in God and regularly attend classes or church. Do they or have any time thought about suicide and if they did why do want or need help of God.
A lot of posts or study shows that children with spiritual views tend not to develop a suicidal tendency and also even a proper spiritual training can help in prevention.
Also research shows that a year training before suicide on spirituality or religion shows drastic fall in suicide prevention. http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3413468/
The data sets for consideration for now are in the past 12 months did you think of suicide? How often did you attend religious services in past 12 months?Do you agree with sacred scriptures? How important is religion to you?How often do you pray? Did your family members attempt a suicide? Did you attempt any time in your life a suicide? etc. I may consider a few more..
http://ajp.psychiatryonline.org/doi/full/10.1176/appi.ajp.161.12.2303