HTTP request-response lifecycle

Web Request in Django

# Topic covered
* 𝗪𝗵𝗮𝘁 𝗵𝗮𝗽𝗽𝗲𝗻𝘀 𝘄𝗵𝗲𝗻 𝘆𝗼𝘂 𝘁𝘆𝗽𝗲 𝗮 𝗨𝗥𝗟 𝗶𝗻𝘁𝗼 𝘆𝗼𝘂𝗿 𝗯𝗿𝗼𝘄𝘀𝗲𝗿?
  * Resolve Domain Name
  * Resolve IP address
  * HTTP request to the server
  * HTTP response from the server
* Journey of a Web Request in Django
[Read More]

05-Statistics

Inferential statistics

Percentiles and Quartiles

A percentile is a value below which a certain percentage of observation or data points lies.

Percentiles show how a given value compares to others. The general rule is that if a value is in the kth percentile, it is greater than K per cent of the total values.

Find percentile of n

P = (n/N) * 100

n = Ordinal rank of values
  = No of values below n
N = Total values in the dataset

P% of the entire distribution falls below the value n

[Read More]