Posts

Showing posts from April, 2023

You tube channels for Learning

TileStats - YouTube StatQuest with Josh Starmer - YouTube Matthew E. Clapham - YouTube Joshua Emmanuel - YouTube   Probability Course - YouTube  check on probabilitycourse.com Dr Nic's Maths and Stats - YouTube   WikiofScience JKAI - YouTube Probability Course - YouTube

Atan and Atan2 (Arctan excel function)

Image
Review of required concepts Angle between x axis line (x=radius of circle,0) and the line passing through point on the circle can be measures in degree or Radians. Radian as measure is preferred by mathematician. 360 degrees is about 6.34 radians. Excel trigonometric functions (Sin, Cos, Tan..), taken angle in Radian as an argument.  Based on relation between angles in degree and Radian, one can convert degree to Randian and vice versa. For Unit radius circle, x2 + y 2 = 1 (refer graph below, t is angle in radian) Using Unit circle property, and trigonometric properties of sin and Cos function,  You get x value (using Cos, of degree in Radian) and y value (using Sin, of degree in Radian). Further, using Atan or Atan 2 you can get inverse of tangent, and can plot the points in 2 quadrant or 4 quadrant. USING ATAN AND ATAN 2 FUNCTION The ATAN function r eturns a result  between -π/2 and π/2 radians  (or -90 and 90 degrees), or in other words, in the first and fourth quadrants. ATAN(numb

Understanding Sin, Cos and Tan.

Image
  Understanding Circle Point on circumference of above circle follows the equation x 2  + y 2  = 5 2 (also called as circle equation) All points are the same distance  from the center. Which in general can be written as,  x 2  + y 2  = radius 2 When center of the circle is not the origin of axis, equation is, (x−a) 2  + (y−b) 2  = r 2 (this is standard form for the equation of a circle). you may see a circle equation and  not know it ! Tangent to the circle Consider a  circle  in the above figure whose centre is O. AB is the tangent to a circle through point C. Take a point D on tangent AB other than C and join OD. Point D should lie outside the circle because; if point D lies inside, then AB will be a secant to the circle and it will not be a tangent. Therefore, OD will be greater than the radius of circle OC. This happens for every point on AB except the point of contact C. It can be concluded that OC is the shortest  distance  between the centre of circle O and tangent AB. Since, th

R Excercise

Command to import data from excel and round of columns value. exceldata=read_excel("C:\\Users\\nilkanth.chapole\\Documents\\product_list.xlsx") dfdata=data.frame(exceldata) dfround <- purrr::modify_if(dfdata, ~is.numeric(.), ~round(., 0)) dfdata dfround

LinkedIn Posts to read

How to Perform Bayesian Linear Regression in Python + R (linkedin.com) Estimation Error of MSA Summary Statistics (linkedin.com) Linked Article by Gabor Szabo Week 1: How I Stumbled Upon R (linkedin.com) Week 2: Getting Started (linkedin.com) Week 3: A Pivotal Moment (linkedin.com) Week 4: Small Multiples, Huge Advantage (linkedin.com) Week 5: Small Multiples for Characterization (linkedin.com) Linked Article by Kevin Kunzmann How to Quantify Uncertainty in Trial Design Simulations (linkedin.com)  

Confidence Interval for Population Mean, known std.dev.

Image
  The margin of error depends on the confidence level. Confidence level is often considered the probability that the calculated confidence interval estimate will contain the true population parameter. Reference: 7.2 Confidence Intervals for a Single Population Mean with Known Population Standard Deviation – Introduction to Statistics (pressbooks.pub)