{ "cells": [ { "cell_type": "markdown", "id": "6e0e8418", "metadata": {}, "source": [ "# Class 18: Mid Semester Checkin, Git, & How GNB makes decisions\n", "\n", "- Share your favorite thing about fall (or just say hi) in the zoom chat for attendance\n", "- log onto Prismia\n", "- accept Assignment 6\n", "- install git or GitBash if needed" ] }, { "cell_type": "code", "execution_count": 1, "id": "335be4ee", "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "import seaborn as sns\n", "import matplotlib.pyplot as plt\n", "import numpy as np\n", "sns.set_theme(font_scale = 2)" ] }, { "cell_type": "markdown", "id": "98e44d56", "metadata": {}, "source": [ "## Feedback Review\n", "\n", "Thank you for the feedback. You can add more on Friday's notes if you did not give any yet." ] }, { "cell_type": "code", "execution_count": 2, "id": "5192ad8a", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", " | How much do you think you've learned so far this semester? | \n", "How much of the material that's been taught do you feel you understand? | \n", "How do you think the achievements you've earned so far align with your understanding? | \n", "Rank the following as what you feel the grading (when you do/not earn achievements) so far actually reflects about your performance in the class [How well I follow instructions] | \n", "Rank the following as what you feel the grading (when you do/not earn achievements) so far actually reflects about your performance in the class [What I understand about the material] | \n", "Rank the following as what you feel the grading (when you do/not earn achievements) so far actually reflects about your performance in the class [How much effort I put into assignments] | \n", "How fair do you think the amount each of the following is reflected in the grading [How well I follow instructions] | \n", "How fair do you think the amount each of the following is reflected in the grading [What I understand about the material] | \n", "How fair do you think the amount each of the following is reflected in the grading [How much effort I put into assignments] | \n", "Which of the following have you done to support your learning outside of class? | \n", "
---|---|---|---|---|---|---|---|---|---|---|
0 | \n", "4 | \n", "3 | \n", "I think they reflect my understanding well | \n", "Reflected moderately in the grading | \n", "Reflected strongly in the grading | \n", "Reflected perfectly in the grading | \n", "Is fairly reflected in the grading | \n", "Should be reflected more in the grading | \n", "Should be reflected more in the grading | \n", "read the notes online, download and run the notes | \n", "
1 | \n", "4 | \n", "4 | \n", "I think the achievements underestimate what I ... | \n", "Reflected strongly in the grading | \n", "Reflected strongly in the grading | \n", "Reflected moderately in the grading | \n", "Is fairly reflected in the grading | \n", "Is fairly reflected in the grading | \n", "Should be reflected more in the grading | \n", "read the notes online, download and run the no... | \n", "
2 | \n", "3 | \n", "3 | \n", "I think they reflect my understanding well | \n", "Reflected moderately in the grading | \n", "Reflected moderately in the grading | \n", "Reflected moderately in the grading | \n", "Is fairly reflected in the grading | \n", "Is fairly reflected in the grading | \n", "Is fairly reflected in the grading | \n", "read the notes online, experimenting with the ... | \n", "
3 | \n", "4 | \n", "3 | \n", "I think they reflect my understanding well | \n", "Reflected moderately in the grading | \n", "Reflected moderately in the grading | \n", "Reflected moderately in the grading | \n", "Is fairly reflected in the grading | \n", "Is fairly reflected in the grading | \n", "Is fairly reflected in the grading | \n", "read the notes online, download and run the no... | \n", "
4 | \n", "3 | \n", "3 | \n", "I think they reflect my understanding well | \n", "Reflected strongly in the grading | \n", "Reflected moderately in the grading | \n", "Reflected strongly in the grading | \n", "Is fairly reflected in the grading | \n", "Is fairly reflected in the grading | \n", "Is fairly reflected in the grading | \n", "read the notes online, experimenting with the ... | \n", "
\n", " | sepal_length | \n", "sepal_width | \n", "petal_length | \n", "petal_width | \n", "species | \n", "species_pred | \n", "pob_ypred | \n", "
---|---|---|---|---|---|---|---|
0 | \n", "5.8 | \n", "2.7 | \n", "3.9 | \n", "1.2 | \n", "versicolor | \n", "versicolor | \n", "0.999950 | \n", "
1 | \n", "6.1 | \n", "2.6 | \n", "5.6 | \n", "1.4 | \n", "virginica | \n", "virginica | \n", "0.704858 | \n", "
2 | \n", "5.8 | \n", "2.8 | \n", "5.1 | \n", "2.4 | \n", "virginica | \n", "virginica | \n", "1.000000 | \n", "
3 | \n", "4.4 | \n", "3.2 | \n", "1.3 | \n", "0.2 | \n", "setosa | \n", "setosa | \n", "1.000000 | \n", "
4 | \n", "7.2 | \n", "3.6 | \n", "6.1 | \n", "2.5 | \n", "virginica | \n", "virginica | \n", "1.000000 | \n", "
\n", " | count | \n", "mean | \n", "std | \n", "min | \n", "25% | \n", "50% | \n", "75% | \n", "max | \n", "
---|---|---|---|---|---|---|---|---|
correct | \n", "\n", " | \n", " | \n", " | \n", " | \n", " | \n", " | \n", " | \n", " |
False | \n", "4.0 | \n", "0.770240 | \n", "0.176779 | \n", "0.558497 | \n", "0.660176 | \n", "0.789696 | \n", "0.899761 | \n", "0.943072 | \n", "
True | \n", "71.0 | \n", "0.980814 | \n", "0.059866 | \n", "0.672882 | \n", "0.999224 | \n", "1.000000 | \n", "1.000000 | \n", "1.000000 | \n", "