Skip to content

Commit

Permalink
update homework 10 on index page
Browse files Browse the repository at this point in the history
  • Loading branch information
georgeni2442 committed Apr 3, 2024
1 parent ff135f4 commit 67169d1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 18 deletions.
26 changes: 11 additions & 15 deletions Homeworks/Homework_10.html
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@




<style type="text/css">
.main-container {
max-width: 940px;
Expand All @@ -254,6 +255,9 @@
summary {
display: list-item;
}
details > summary > p:only-child {
display: inline;
}
pre code {
padding: 0;
}
Expand All @@ -272,23 +276,17 @@
border: 1px solid #ddd;
border-radius: 4px;
}
.tabset-dropdown > .nav-tabs > li.active:before {
content: "";
.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
content: "";
border: none;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
content: "";
content: "\e258";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
display: block;
Expand Down Expand Up @@ -350,11 +348,9 @@ <h3>For loops and randomization tests</h3>
the number of rows and columns in a matrix. The output is a matrix of
these dimensions in which each element is the product of the row number
x the column number.</p></li>
<li><p>In the next few lectures, you will learn how to do a
randomization test on your data. We will complete some of the steps
today to practice calling custom functions within a for loop. Use the
code from the March 31st lecture (Randomization Tests) to complete the
following steps:</p>
<li><p>Now let’s practice calling custom functions within a for loops.
Use the code from previous lectures on loops and functions to complete
the following steps:</p>
<ol style="list-style-type: lower-alpha">
<li><p>Simulate a dataset with 3 groups of data, each group drawn from a
distribution with a different mean. The final data frame should have 1
Expand Down
5 changes: 2 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -260,13 +260,12 @@ <h2>Lecture Outlines &amp; Homework Assignments</h2>
</tr>
<tr class="even">
<td>March 21</td>
<td><a href="Lectures/ForLoops_I.html">Control Structures I</a></td>
<td><a href="Lectures/ForLoops_I.html">For Loops I</a></td>
<td>-</td>
</tr>
<tr class="odd">
<td>March 26</td>
<td><a href="Lectures/Lecture17_S2021.xhtml">Control Structures
II</a></td>
<td><a href="Lectures/Lecture17_S2021.xhtml">For Loops II</a></td>
<td>-</td>
</tr>
<tr class="even">
Expand Down

0 comments on commit 67169d1

Please sign in to comment.