If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
python में statistics module का stdev() method का use sample standard deviation calculate करने के लिए किया जाता है।
Sample Standard deviation का use statistics में dispersement को measure करने के लिए किया जाता है , मतलब कि आपका data , mean / average के आसपास कितना फैला हुआ है। या कह सकते हैं कि data value , data mean / average के कितने close है।
यह Population Standard Deviation से मिलता झुलता ही है बस अंतर इतना है कि Population Standard Deviation , Population Variance का square root होता है तो Sample Standard Deviation, Sample Variance का square root होता है।
=
=
statistics.stdev(data)
data | required : data जिसका हमें Sample Standard Deviation calculate करना है , आप इसमें values की (list, tuple) Or Iterator pass कर सकते हैं।
Return value : pass की गयी values के according value (Integer/float) return होती है।
# Import statistics Library.
import statistics
#using list.
print(statistics.stdev([23,34,56,657,56]))
#using tuple.
print(statistics.stdev((23,34,56,657,56)))
C:\Users\Rahulkumar\Desktop\python>python test_stdev.py 275.2956592465635 275.2956592465635
Hi ! My name is Rahul Kumar Rajput. I'm a back end web developer and founder of learnhindituts.com. I live in Uttar Pradesh (UP), India and I love to talk about programming as well as writing technical tutorials and tips that can help to others.
Get connected with me. :) LinkedIn Twitter Instagram Facebook