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 का pvariance() method का use population variance calculate करने के लिए किया जाता है।
variance , variability का एक measure है जिसे mean / average से squared deviations का average लेकर calculate किया जाता है।
Variability बताती है कि किसी data set में data points आपस में और center of a distribution से कितने दूर हैं।
Population variance (σ2) हमें बताता है कि किसी specific population में data points कैसे फैले हुए हैं। यह population में प्रत्येक data point से mean ,square तक की दूरी का average है।
σ2 =
>statistics.pvariance(data)
data | required : data जिसका हमें population Variance calculate करना है , आप इसमें values की (list, tuple) pass कर सकते हैं।
Return value : pass की गयी values के according value (Integer/float) return होती है।
# Import statistics Library.
import statistics
#using list.
print(statistics.pvariance([23,34,56,657,56]))
#using tuple.
print(statistics.pvariance((23,34,56,657,56)))
C:\Users\Rahulkumar\Desktop\python>python test_pvariance.py 60630.16 60630.16