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 का pstdev() method का use population standard deviation calculate करने के लिए किया जाता है।
Population Standard deviation का use statistics में dispersement को measure करने के लिए किया जाता है , मतलब कि आपका data , mean / average के आसपास कितना फैला हुआ है। या कह सकते हैं कि data value , data mean / average के कितने close है।
=
=
statistics.pstdev(data)
data | required : data जिसका हमें Population Standard Deviation calculate करना है , आप इसमें values की (list, tuple) pass कर सकते हैं।
Return value : pass की गयी values के according value (Integer/float) return होती है।
# Import statistics Library.
import statistics
#using list.
print(statistics.pstdev([23,34,56,657,56]))
#using tuple.
print(statistics.pstdev((23,34,56,657,56)))
C:\Users\Rahulkumar\Desktop\python>python test_psdev.py 246.23192319437382 246.23192319437382