You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/applications/mooreslaw-tutorial.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ kernelspec:
12
12
---
13
13
14
14
# Determining Moore's Law with real data in NumPy
15
-

15
+

16
16
17
17
_The number of transistors reported per a given chip plotted on a log scale in the y axis with the date of introduction on the linear scale x-axis. The blue data points are from a [transistor count table](https://en.wikipedia.org/wiki/Transistor_count#Microprocessors). The red line is an ordinary least squares prediction and the orange line is Moore's law._
Copy file name to clipboardExpand all lines: content/applications/tutorial-air-quality-analysis.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ kernelspec:
14
14
15
15
# Analyzing the impact of the lockdown on air quality in Delhi, India
16
16
17
-

17
+

18
18
19
19
## What you'll do
20
20
@@ -124,7 +124,7 @@ We will calculate the AQI using [the method](https://app.cpcbccr.com/ccr_docs/FI
124
124
125
125
The Air Quality Index is calculated with the help of breakpoint ranges as shown in the chart below.
126
126
127
-

127
+

128
128
129
129
130
130
Let's create two arrays to store the AQI ranges and breakpoints so that we can use them later for our calculations.
@@ -264,7 +264,7 @@ the data from 31st May, we truncated that during the moving averages step.
264
264
265
265
Hypothesis testing is a form of descriptive statistics used to help us make decisions with the data. From the calculated AQI data, we want to find out if there was a statistically significant difference in average AQI before and after the lockdown was imposed. We will use the left-tailed, [paired Student's t-test](https://en.wikipedia.org/wiki/Student%27s_t-test#Dependent_t-test_for_paired_samples) to compute two test statistics- the [`t statistic`](https://en.wikipedia.org/wiki/T-statistic) and the [`p value`](https://en.wikipedia.org/wiki/P-value). We will then compare these with the corresponding critical values to make a decision.
266
266
267
-

267
+

268
268
269
269
### Sampling
270
270
@@ -343,7 +343,7 @@ print("The t value is {} and the p value is {}.".format(t_value, p_value))
343
343
344
344
We will now compare the calculated test statistics with the critical test statistics. The critical `t` value is calculated by looking up the [t-distribution table](https://en.wikipedia.org/wiki/Student%27s_t-distribution#Table_of_selected_values).
345
345
346
-

346
+

347
347
348
348
From the table above, the critical value is 1.699 for 29 `dof` at a confidence level of 95%. Since we are using the left tailed test, our critical value is -1.699. Clearly, the calculated `t` value is less than the critical value so we can safely reject the null hypothesis.
Copy file name to clipboardExpand all lines: content/applications/tutorial-static_equilibrium.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -207,7 +207,7 @@ print("Reaction moment =", M)
207
207
Let's say that instead of a force acting perpendicularly to the beam, a force was applied to our pole through a wire that was also attached to the ground.
208
208
Given the tension in this cord, all you need to solve this problem are the physical locations of these objects.
209
209
210
-

210
+

211
211
212
212
In response to the forces acting upon the pole, the base generated reaction forces in the x and y directions, as well as a reaction moment.
213
213
@@ -266,7 +266,7 @@ print("Reaction moment =", M)
266
266
Let's look at a slightly more complicated model. In this example you will be observing a beam with two cables and an applied force. This time you need to find both the tension in the cords and the reaction forces of the beam. *(Source: [Vector Mechanics for Engineers: Statics](https://www.mheducation.com/highered/product/vector-mechanics-engineers-statics-beer-johnston/M9780077687304.html), Problem 4.106)*
0 commit comments