this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat!: Folder organization.

Signed-off-by: Sona Tau Estrada Rivera <sona@stau.space>

+26 -1540
+3
code/data/collected_data.h5
··· 1 + version https://git-lfs.github.com/spec/v1 2 + oid sha256:003d6149b175e2b2dc99f6a145eb3eec377c3c2e3373c3143e7b4c003f3d9d9a 3 + size 1258512
+3
code/data/out.pdf
··· 1 + version https://git-lfs.github.com/spec/v1 2 + oid sha256:35d4906c23d50ba73d8ad277d6337239aa93bdae077cc028fc97b2141e757edb 3 + size 4879
+3
code/data/stop_words.csv
··· 1 + version https://git-lfs.github.com/spec/v1 2 + oid sha256:4c1abb48fa0bf06f557f0eb13c8480be54f794254df629a4648143e10ce9008d 3 + size 14002
+3
code/data/variables.csv
··· 1 + version https://git-lfs.github.com/spec/v1 2 + oid sha256:370d25775b2d05aea1e1bb36985c74096a51f491f9e7d11c26e26a790908b19b 3 + size 44655
+3
code/data/variables.json
··· 1 + version https://git-lfs.github.com/spec/v1 2 + oid sha256:227ec05bd708e91fde94b0db0780bb39805aa57d9e07d4e0311f9cfd9064f8c3 3 + size 16696
+3
code/python_workspace.ipynb
··· 1 + version https://git-lfs.github.com/spec/v1 2 + oid sha256:31e28aa47b391ceb9d0e5f4bfd37d7d2bba27a96f7ae665bcfab603f58dc19cb 3 + size 23962
collected_data.h5

This is a binary file and will not be displayed.

+2 -2
main.R code/main.R
··· 7 7 8 8 data("stop_words") 9 9 10 - sources <- fromJSON("variables.json") 10 + sources <- fromJSON("data/variables.json") 11 11 12 12 counts <- vector("list", length(sources)) 13 13 ··· 49 49 i <- i + 1 50 50 } 51 51 52 - pdf("out.pdf") 52 + pdf("data/out.pdf") 53 53 wordcloud(words = counts[[14]] $ word, freq = counts[[14]] $ n, max.words = 50) 54 54 # ggplot(counts[[14]], aes(x = reorder(word, n), y = n)) + 55 55 # geom_col() +
+6 -6
main.py code/main.py
··· 735 735 vs.append(source.variables) 736 736 737 737 df = pd.DataFrame({ 738 - "title": ts, 739 - "location": ls, 740 - "years": ys, 741 - "variables": vs 738 + "title": ts, 739 + "location": ls, 740 + "years": ys, 741 + "variables": vs 742 742 }) 743 743 744 - df.to_csv("variables.csv") 745 - df.to_hdf("collected_data.h5", key = "variables") 744 + df.to_csv("data/variables.csv") 745 + df.to_hdf("data/collected_data.h5", key = "variables")
out.pdf

This is a binary file and will not be displayed.

-359
python_workspace.ipynb
··· 1 - { 2 - "cells": [ 3 - { 4 - "cell_type": "code", 5 - "execution_count": 3, 6 - "id": "fe1eba7d-b761-451b-ac04-521da2ae6da6", 7 - "metadata": {}, 8 - "outputs": [], 9 - "source": [ 10 - "import pandas as pd\n", 11 - "import plotly.express as px" 12 - ] 13 - }, 14 - { 15 - "cell_type": "code", 16 - "execution_count": 4, 17 - "id": "a30b46c0-0abc-4e2b-9601-cf194d55666a", 18 - "metadata": {}, 19 - "outputs": [], 20 - "source": [ 21 - "class Source:\n", 22 - " def __init__(s, title: str, location: str, years: list[int], variables: list[str]):\n", 23 - " s.title = title\n", 24 - " s.location = location\n", 25 - " s.years = years\n", 26 - " s.variables = variables\n", 27 - " def as_df(s) -> pd.DataFrame:\n", 28 - " return pd.DataFrame({\n", 29 - " \"title\": [s.title],\n", 30 - " \"location\": [s.location],\n", 31 - " \"years\": [s.years],\n", 32 - " \"variables\": [s.variables]\n", 33 - " })\n", 34 - " def as_dict(s) -> dict:\n", 35 - " return {\n", 36 - " \"title\": s.title,\n", 37 - " \"location\": s.location,\n", 38 - " \"years\": s.years,\n", 39 - " \"variables\": s.variables\n", 40 - " }" 41 - ] 42 - }, 43 - { 44 - "cell_type": "code", 45 - "execution_count": 5, 46 - "id": "8539f879-b299-4133-b0d9-093492315964", 47 - "metadata": {}, 48 - "outputs": [], 49 - "source": [ 50 - "sources = [{\n", 51 - "\t \"title\": \"American Community Survey\",\n", 52 - "\t \"location\": \"https://census.gov/\", # Update with a more precise link\n", 53 - "\t \"years\": [],\n", 54 - "\t \"variables\": []\n", 55 - "}, {\n", 56 - "\t\"title\": \"Current Population Survey\",\n", 57 - "\t\"location\": \"https://census.gov/\", # Update with a more precise link\n", 58 - "\t\"years\": [],\n", 59 - "\t\"variables\": []\n", 60 - "}, {\n", 61 - "\t\"title\": \"Integrated Postsecondary Education Data System (IPEDS) Institution Lookup\",\n", 62 - "\t\"location\": \"https://surveys.nces.ed.gov/ipeds/public/survey-materials/index\",\n", 63 - "\t\"years\": [2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024],\n", 64 - "\t\"variables\": []\n", 65 - "}, {\n", 66 - "\t\"title\": \"National Center for Science and Engineering Statistics\",\n", 67 - "\t\"location\": \"https://ncses.nsf.gov/\",\n", 68 - "\t\"years\": [],\n", 69 - "\t\"variables\": []\n", 70 - "}, {\n", 71 - "\t\"title\": \"Survey of Earned Doctorates\",\n", 72 - "\t\"location\": \"https://ncses.nsf.gov/surveys/earned-doctorates/2023\",\n", 73 - "\t\"years\": [],\n", 74 - "\t\"variables\": []\n", 75 - "}, {\n", 76 - "\t\"title\": \"Survey of Graduate Students and Postdoctorates in Science and Engineering\",\n", 77 - "\t\"location\": \"https://ncses.nsf.gov/surveys/graduate-students-postdoctorates-s-e/2023\", # Same as the previous comment\n", 78 - "\t\"years\": [],\n", 79 - "\t\"variables\": []\n", 80 - "}, {\n", 81 - "\t\"title\": \"Bureau of Labor Statistics\",\n", 82 - "\t\"location\": \"https://www.bls.gov/\",\n", 83 - "\t\"years\": [],\n", 84 - "\t\"variables\": []\n", 85 - "}, {\n", 86 - "\t\"title\": \"Occupational Outlook Handbook\",\n", 87 - "\t\"location\": \"https://www.bls.gov/ooh/\",\n", 88 - "\t\"years\": [],\n", 89 - "\t\"variables\": []\n", 90 - "}, {\n", 91 - "\t\"title\": \"Occupational Employment and Wage Statistics\",\n", 92 - "\t\"location\": \"https://www.bls.gov/oes/tables.htm\",\n", 93 - "\t\"years\": [],\n", 94 - "\t\"variables\": []\n", 95 - "}, {\n", 96 - "\t\"title\": \"American Mathematical Society\",\n", 97 - "\t\"location\": \"https://ams.org/\",\n", 98 - "\t\"years\": [],\n", 99 - "\t\"variables\": []\n", 100 - "}, {\n", 101 - "\t\"title\": \"Mathematical Association of America\",\n", 102 - "\t\"location\": \"https://maa.org/\",\n", 103 - "\t\"years\": [],\n", 104 - "\t\"variables\": []\n", 105 - "}, {\n", 106 - "\t\"title\": \"Society for Industrial and Applied Mathematics\",\n", 107 - "\t\"location\": \"https://siam.org/\",\n", 108 - "\t\"years\": [],\n", 109 - "\t\"variables\": []\n", 110 - "}, {\n", 111 - "\t\"title\": \"Association for Women in Mathematics\",\n", 112 - "\t\"location\": \"https://awm-math.org/\",\n", 113 - "\t\"years\": [],\n", 114 - "\t\"variables\": []\n", 115 - "}, {\n", 116 - "\t\"title\": \"Conference Board of the Mathematical Sciences 2021 Survey\",\n", 117 - "\t\"location\": \"www.ams.org/learning-careers/data/cbms-survey/\",\n", 118 - "\t\"years\": [2021],\n", 119 - "\t\"variables\": [\n", 120 - "\t\t\"Bachelor’s degrees in mathematics, mathematics education, statistics, and computer science in mathematics departments awarded between July 1, 2020 and June 30, 2021, by gender of degree recipient and type of department.\",\n", 121 - "\t\t\"Bachelor’s degrees in statistics departments awarded between July 1, 2020 and June 30, 2021, by gender of degree recipient and type of department.\",\n", 122 - "\t\t\"Enrollment (in thousands) in undergraduate mathematics, statistics, and computer science courses (including distance learning enrollments) in mathematics and statistics departments by level of course and type of department in fall 2021. Numbers in parentheses are (2010, 2015) enrollments.\",\n", 123 - "\t\t\"Number of sections (not including distance learning) of undergraduate mathematics, statistics, and computer science courses in mathematics and statistics departments by level of course and type of department in fall 2021 with fall 2015 figures in parentheses.\",\n", 124 - "\t\t\"Enrollments in distance/remote learning courses (meaning courses offered for credit in which half or more of the instruction occurs with the instructor and the students separated by time and/or place [e.g., courses in which half or more of the course is taught online either synchronously or asynchronously, by computer software, or by other technologies], and other sections for various freshman and sophomore courses, by type of department, in fall 2021. Includes only distance/remote courses offered in normal practice, not courses that became distance/remote due to COVID-19 pandemic. (Fall 2015 data in parentheses.)\",\n", 125 - "\t\t\"Number of sections (excluding distance learning) of calculus-level courses in mathematics departments taught by various types of instructor, by type of department, in fall 2021 with fall 2015 figures in parentheses.\",\n", 126 - "\t\t\"Number of sections (excluding distance learning) of introductory statistics courses taught in mathematics departments and statistics departments by type of instructor and type of department in fall 2021 with fall 2015 figures in parentheses.\",\n", 127 - "\t\t\"Number of sections of advanced mathematics (including operations research) and statistics courses in mathematics departments and of advanced statistics courses in statistics departments taught by tenured/tenure-eligible (TTE) faculty and total number of advanced-level sections by type of department in fall 2021 with fall 2015 data in parentheses.\",\n", 128 - "\t\t\"Number of sections (excluding distance learning) of lower-level computer science courses taught in mathematics departments by type of instructor and type of department in fall 2021 with fall 2015 figures in parentheses.\",\n", 129 - "\t\t\"Number of sections (excluding distance learning) of middle-level computer science courses taught in mathematics departments by type of instructor and type of department in fall 2021 with fall 2015 figures in parentheses.\",\n", 130 - "\t\t\"Average section size (excluding distance learning) for undergraduate mathematics, statistics, and computer science courses in math- ematics and statistics departments by level of course and type of department in fall 2021 with fall 2015 data, when available, in parentheses. Also, all departments’ average section sizes from previous CBMS surveys.\",\n", 131 - "\t\t\"Average recitation size in Mainstream Calculus I and II and other Calculus I courses and in introductory statistics courses that are taught using lecture/recitation method, by type of department in fall 2021, with fall 2015 data in parentheses. Distance learning sections are not included. (A calculus course is “Mainstream” if it leads to the usual upper-division mathematical sciences courses.)\",\n", 132 - "\t\t\"Number of faculty, and of female faculty (F), in various types of mathematics departments and PhD statistics departments by highest degree and type of department in fall 2021. (Fall 2015 figures are in parentheses, and postdocs are included in other full-time (OFT) faculty totals.)\",\n", 133 - "\t\t\"Number of faculty, and of female faculty (F), in mathematics departments combined and of doctoral-level statistics departments in fall 2021. (Fall 2015 figures are in parentheses.)\",\n", 134 - "\t\t\"Number of tenured, tenure-eligible, postdoctoral, and other full-time (OFT) faculty in mathematics departments at four-year colleges and universities by gender and type of department in fall 2021. (Note: Postdoctoral faculty are included in other full-time totals.)\",\n", 135 - "\t\t\"Number of tenured, tenure-eligible, other full-time, and postdoctoral faculty in doctoral-level statistics departments by gender in fall 2021 and 2015. (Postdoctoral faculty are included in other full-time faculty totals.)\",\n", 136 - "\t\t\"Percentage of tenured and tenure-eligible mathematics department faculty and statistics faculty at four-year colleges and universities belonging to various age groups by type of department and gender in fall 2021.\",\n", 137 - "\t\t\"Percentages of full-time faculty belonging to various ethnic groups by gender and type of department in fall 2021. Except for round-off, the percentages within each departmental type sum to 100%.\",\n", 138 - "\t\t\"Percentages of part-time faculty belonging to various ethnic groups by gender and type of department in fall 2021. Except for round-off, the percentages within each departmental type sum to 100%.\",\n", 139 - "\t\t\"Percentage of sections (excluding distance learning sections) in Mainstream Calculus I and Mainstream Calculus II taught by various types of instructors in four-year mathematics departments in fall 2021, by size of sections and type of department. Also average section sizes and enrollments (not including distance learning enrollments).\",\n", 140 - "\t\t\"Percentage of sections (excluding distance learning sections) in Non-Mainstream Calculus I and in Non-Mainstream Calculus II, III, etc. taught by various types of instructors in mathematics departments in fall 2021 by size of sections and type of department. Also average section size and enrollments (not including distance learning enrollments).\",\n", 141 - "\t\t\"Percentage of sections (excluding distance learning sections) in Introductory Statistics courses (for non-majors) taught by various types of instructors in mathematics departments in fall 2021, by size of sections and type of department. Also average section size and enrollments (not including distance learning enrollments).\",\n", 142 - "\t\t\"Percentage of sections (excluding distance learning sections) in Introductory Statistics courses (for non-majors) taught by various types of instructors in statistics departments in fall 2021, by size of sections and type of department. Also average section size and total (non-distance learning) enrollments.\",\n", 143 - "\t\t\"Percentage of mathematics departments using various practices in the teaching of Introductory Statistics (no calculus prerequisite) in fall 2021 by type of department.\",\n", 144 - "\t\t\"Instructional strategies used in Introductory Statistics courses.\",\n", 145 - "\t\t\"Extent of success in the use of technology in Introductory Statistics.\",\n", 146 - "\t\t\"Of departments that offered Introductory Statistics (no calculus prerequisite) in fall 2021 and where a similar course is offered outside the mathematical sciences departments, the average estimated fall 2021 enrollment of all similar courses and an estimate of the total national enrollment.\",\n", 147 - "\t\t\"Total institutional enrollment (in thousands) and percentage of part-time enrollments in two year colleges in fall for 1980 through 2015 and projected enrollments for fall 2021. Enrollments include distance learning but not dual enrollments\",\n", 148 - "\t\t\"Enrollments in mathematics and statistics (no computer science) courses in mathematics programs at two-year colleges in fall 1985, 1990, 1995, 2000, 2005, 2010, 2015, and 2021.\",\n", 149 - "\t\t\"Enrollment in thousands in mathematics and statistics courses (not including dual enrollments; including distance enrollments) in mathematics departments at two-year colleges in fall 2005, 2010, 2015, and 2021.\",\n", 150 - "\t\t\"Enrollment in 1000s (not including dual enrollments; including distance enrollments) and percentages of total enrollment in mathematics and statistics courses by type of course in mathematics departments at two-year colleges in fall 2000, 2005, 2010, 2015, and 2021.\",\n", 151 - "\t\t\"Percentage of two-year college mathematics departments teaching mathematics courses in fall 2015 and fall 2021.\",\n", 152 - "\t\t\"Percentage of two-year college mathematics departments teaching selected mathematics courses in the fall terms of 2005, 2010, 2015, and 2021.\",\n", 153 - "\t\t\"Average on-campus section size by type of course in mathematics departments at two-year colleges in fall 2010, 2015, and 2021. Also percentage of sections with enrollment above 30 in fall 2015 and 2021.\",\n", 154 - "\t\t\"Average distance learning section size by type of course in mathematics departments at public two-year colleges in fall 2021. Also percentage of sections with enrollment above 30 in fall 2021.\",\n", 155 - "\t\t\"Average on-campus and distance learning section size for public two-year college mathematics department courses in fall 2021.\",\n", 156 - "\t\t\"Number of sections and number and percentage of sections taught by part-time faculty in mathematics departments at public two-year colleges by type of course in fall 2015 and 2021 (excluding distance learning and dual-enrollment sections).\",\n", 157 - "\t\t\"Percentage of mathematics departments at public two-year colleges which implemented a Pathways course sequence in 2015 and 2021, an Intermediate Algebra prerequisite in 2021, and the types of courses implemented.\",\n", 158 - "\t\t\"Enrollments in distance/remote learning (in 1000s) and percentage of distance/remote learning enrollments (distance learning courses are courses in which half or more of the instruction occurs with the instructor and the students separated by time and/or place facilitated by technology) among all enrollments (excluding dual enrollments) in mathematics departments at two-year colleges in fall 2010, 2015, and 2021.\",\n", 159 - "\t\t\"Percentage of mathematics departments reporting use of distance learning in mathematics departments at two-year colleges in 2013–2021.\",\n", 160 - "\t\t\"Percentage of departments with distance learning that described various factors as significant challenges or somewhat of a challenge in fall 2021.\",\n", 161 - "\t\t\"Percentage of two-year colleges offering various opportunities and services to mathematics students in fall 2010, 2015, and 2021.\",\n", 162 - "\t\t\"Number of full-time permanent faculty, full-time temporary faculty, other full-time faculty, and part-time faculty paid by two-year colleges (TYC) and by a third party (e.g., dual-enrollment instructors) in mathematics departments at two-year colleges in fall 2005, 2010, 2015, and 2021.\",\n", 163 - "\t\t\"Teaching assignment for full-time permanent faculty, and teaching and other duties of part-time faculty, in mathematics departments at two-year colleges in fall 2021 (2015 data in parentheses).\",\n", 164 - "\t\t\"Number of full-time permanent faculty in 2020–2021 who were no longer part of the faculty in 2025–2016 and 2021–2022.\",\n", 165 - "\t\t\"Percentage of full-time permanent faculty in mathematics departments at two-year colleges by highest degree in fall 2000, 2005, 2010, 2015, and 2021.\",\n", 166 - "\t\t\"Percentage of full-time permanent faculty in mathematics programs at public two-year colleges by field and highest degree in fall 2021.\",\n", 167 - "\t\t\"Percentage of part-time faculty in mathematics departments at two-year colleges (including those paid by a third party, as in dual-enrollment courses) by highest degree in fall 2000, 2005, 2010, 2015, and 2021.\",\n", 168 - "\t\t\"Percentage of part-time faculty in mathematics departments at two-year colleges (including those paid by a third party, as in dual-enrollment courses) by field and highest degree in fall 2021, with 2015 data in parentheses.\",\n", 169 - "\t\t\"Number and percentage of total full-time permanent faculty in mathematics departments at two-year colleges by gender in fall 2005, 2010, 2015, and 2021.\",\n", 170 - "\t\t\"Percentage of full-time permanent faculty and part-time faculty in mathematics departments at public two-year colleges by gender in fall 2021. Also master’s degrees in mathematics and statistics granted in the U.S. to citizens and resident aliens, by gender, in 2019–20. Part-time faculty paid by a third party are not included.\",\n", 171 - "\t\t\"Percentage and number of ethnic minority full-time permanent faculty in mathematics departments at two-year colleges in fall 2005, 2010, 2015, and 2021.\",\n", 172 - "\t\t\"Percentage of full-time permanent faculty in mathematics departments at two-year colleges by ethnicity in fall 2005, 2010, 2015, and 2021\",\n", 173 - "\t\t\"Number and percentage of full-time permanent faculty in mathematics departments at two year colleges by ethnic group, and percentage of women within each ethnic group in fall 2021.\",\n", 174 - "\t\t\"Percentage of full-time permanent faculty and of full-time permanent faculty under age 40 in mathematics departments at public two-year colleges by ethnic group in fall 2021. Also U.S. master’s degrees in mathematics and statistics granted in the U.S. to citizens and resident aliens by ethnic group in 2020–21.\",\n", 175 - "\t\t\"Percentage of ethnic minority part-time faculty in mathematics departments at public two-year colleges in fall 2010, 2015, and 2021.\",\n", 176 - "\t\t\"Number and percentage of part-time faculty in mathematics departments at public two-year colleges by ethnic group, and percentage of women within each ethnic group in fall 2021.\",\n", 177 - "\t\t\"Percentage and number of full-time permanent faculty in mathematics departments at two-year colleges by age in fall 2005, 2010, 2015, and 2021.\",\n", 178 - "\t\t\"Percentage of full-time permanent faculty in mathematics departments at public two-year colleges by age and by gender, and percentage of women by age in fall 2021.\",\n", 179 - "\t\t\"Percentage of newly appointed full-time permanent faculty in mathematics departments at two-year colleges coming from various sources in fall 2015 and 2021.\",\n", 180 - "\t\t\"Percentage of full-time permanent faculty newly appointed in mathematics departments at two-year colleges by highest degree in fall 2015 and 2021.\",\n", 181 - "\t\t\"Percentage of full-time permanent faculty newly appointed in mathematics departments at two year colleges by ethnic group in fall 2015 and 2021. Also percentage of women within each ethnic group in fall 2021.\",\n", 182 - "\t\t\"Percentage of two-year colleges that require periodic teaching evaluations for all full-time or all part-time faculty in fall 2015 and 2021.\",\n", 183 - "\t\t\"Percentage of mathematics departments at public two-year colleges using various methods of evaluating teaching of full- and part-time faculty in fall 2021.\",\n", 184 - "\t\t\"Percentage of two-year colleges that require some form of continuing education or professional development for full-time permanent faculty, and percentage of faculty using various methods to fulfill those requirements, in mathematics departments at two-year colleges in fall 2015 and 2021.\",\n", 185 - "\t\t\"Percentage of program heads classifying various problems as “major” in mathematics departments at two-year colleges in fall 2005, 2010, 2015, and 2021.\",\n", 186 - "\t\t\"Percentage of program heads of mathematics departments at public two-year colleges classifying various problems by severity in fall 2021.\" ]\n", 187 - "}, {\n", 188 - "\t\"title\": \"IPUMS\",\n", 189 - "\t\"location\": \"https://ipums.org/\",\n", 190 - "\t\"years\": [],\n", 191 - "\t\"variables\": []\n", 192 - "}, {\n", 193 - "\t\"title\": \"Data.gov\",\n", 194 - "\t\"location\": \"https://data.gov/\",\n", 195 - "\t\"years\": [],\n", 196 - "\t\"variables\": []\n", 197 - "}, {\n", 198 - "\t\"title\": \"Harvard Dataverse\",\n", 199 - "\t\"location\": \"https://dataverse.harvard.edu/\",\n", 200 - "\t\"years\": [],\n", 201 - "\t\"variables\": []\n", 202 - "}, {\n", 203 - "\t\"title\": \"Pewresearch\",\n", 204 - "\t\"location\": \"https://pewresearch.org/\",\n", 205 - "\t\"years\": [],\n", 206 - "\t\"variables\": []\n", 207 - "}, {\n", 208 - "\t\"title\": \"Urban Institute\",\n", 209 - "\t\"location\": \"https://urban.org/\",\n", 210 - "\t\"years\": [],\n", 211 - "\t\"variables\": []\n", 212 - "}]" 213 - ] 214 - }, 215 - { 216 - "cell_type": "code", 217 - "execution_count": 6, 218 - "id": "dae3305d-9530-459b-8179-f3865bb5476d", 219 - "metadata": {}, 220 - "outputs": [], 221 - "source": [ 222 - "ts = []\n", 223 - "ls = []\n", 224 - "ys = []\n", 225 - "vs = []\n", 226 - "\n", 227 - "for source in sources:\n", 228 - " ts.append(source[\"title\"])\n", 229 - " ls.append(source[\"location\"])\n", 230 - " ys.append(source[\"years\"])\n", 231 - " vs.append(source[\"variables\"])" 232 - ] 233 - }, 234 - { 235 - "cell_type": "code", 236 - "execution_count": 7, 237 - "id": "14551fee-11e2-4da2-9459-590142894725", 238 - "metadata": {}, 239 - "outputs": [], 240 - "source": [ 241 - "df = pd.DataFrame({\n", 242 - " \"title\": ts,\n", 243 - " \"location\": ls,\n", 244 - " \"years\": ys,\n", 245 - " \"variables\": vs\n", 246 - "})" 247 - ] 248 - }, 249 - { 250 - "cell_type": "code", 251 - "execution_count": 26, 252 - "id": "701326b3-8162-42ad-bfd5-a6e71c180635", 253 - "metadata": {}, 254 - "outputs": [], 255 - "source": [ 256 - "df.to_json(\"variables.json\")" 257 - ] 258 - }, 259 - { 260 - "cell_type": "code", 261 - "execution_count": 8, 262 - "id": "2efb1e1b-2e7c-4c69-863d-6ef8ae2deeb8", 263 - "metadata": {}, 264 - "outputs": [], 265 - "source": [ 266 - "# Graph that shows the least mentioned tag" 267 - ] 268 - }, 269 - { 270 - "cell_type": "code", 271 - "execution_count": 9, 272 - "id": "88824086-398b-4f7a-9900-52d2a0a48f72", 273 - "metadata": {}, 274 - "outputs": [], 275 - "source": [ 276 - "# Motivation on bottom of page" 277 - ] 278 - }, 279 - { 280 - "cell_type": "code", 281 - "execution_count": 10, 282 - "id": "425c60a2-6cdf-4b24-938b-b8206072e01a", 283 - "metadata": {}, 284 - "outputs": [], 285 - "source": [ 286 - "# Variable tags => Sources related to tags" 287 - ] 288 - }, 289 - { 290 - "cell_type": "code", 291 - "execution_count": 11, 292 - "id": "306acaef-09ce-47e2-8c8a-d4f2d52a668f", 293 - "metadata": {}, 294 - "outputs": [], 295 - "source": [ 296 - "# Bad survey question vs good survey question" 297 - ] 298 - }, 299 - { 300 - "cell_type": "code", 301 - "execution_count": 12, 302 - "id": "5edb74e7-afa4-4f2f-a19a-f07690c6175d", 303 - "metadata": {}, 304 - "outputs": [], 305 - "source": [ 306 - "# Sources dropdown" 307 - ] 308 - }, 309 - { 310 - "cell_type": "code", 311 - "execution_count": 13, 312 - "id": "2a9c0149-28fa-4c23-af77-00b77ae46555", 313 - "metadata": {}, 314 - "outputs": [], 315 - "source": [ 316 - "# variables wordcloud" 317 - ] 318 - }, 319 - { 320 - "cell_type": "code", 321 - "execution_count": 14, 322 - "id": "b02181de-5794-4a84-a5d4-53eda7227106", 323 - "metadata": {}, 324 - "outputs": [], 325 - "source": [ 326 - "# Kinds of questions" 327 - ] 328 - }, 329 - { 330 - "cell_type": "code", 331 - "execution_count": null, 332 - "id": "5741e933-ae26-49c3-9c15-cc299d27ae36", 333 - "metadata": {}, 334 - "outputs": [], 335 - "source": [] 336 - } 337 - ], 338 - "metadata": { 339 - "kernelspec": { 340 - "display_name": "Python 3 (ipykernel)", 341 - "language": "python", 342 - "name": "python3" 343 - }, 344 - "language_info": { 345 - "codemirror_mode": { 346 - "name": "ipython", 347 - "version": 3 348 - }, 349 - "file_extension": ".py", 350 - "mimetype": "text/x-python", 351 - "name": "python", 352 - "nbconvert_exporter": "python", 353 - "pygments_lexer": "ipython3", 354 - "version": "3.13.3" 355 - } 356 - }, 357 - "nbformat": 4, 358 - "nbformat_minor": 5 359 - }
-1150
stop_words.csv
··· 1 - word,lexicon 2 - a,SMART 3 - a's,SMART 4 - able,SMART 5 - about,SMART 6 - above,SMART 7 - according,SMART 8 - accordingly,SMART 9 - across,SMART 10 - actually,SMART 11 - after,SMART 12 - afterwards,SMART 13 - again,SMART 14 - against,SMART 15 - ain't,SMART 16 - all,SMART 17 - allow,SMART 18 - allows,SMART 19 - almost,SMART 20 - alone,SMART 21 - along,SMART 22 - already,SMART 23 - also,SMART 24 - although,SMART 25 - always,SMART 26 - am,SMART 27 - among,SMART 28 - amongst,SMART 29 - an,SMART 30 - and,SMART 31 - another,SMART 32 - any,SMART 33 - anybody,SMART 34 - anyhow,SMART 35 - anyone,SMART 36 - anything,SMART 37 - anyway,SMART 38 - anyways,SMART 39 - anywhere,SMART 40 - apart,SMART 41 - appear,SMART 42 - appreciate,SMART 43 - appropriate,SMART 44 - are,SMART 45 - aren't,SMART 46 - around,SMART 47 - as,SMART 48 - aside,SMART 49 - ask,SMART 50 - asking,SMART 51 - associated,SMART 52 - at,SMART 53 - available,SMART 54 - away,SMART 55 - awfully,SMART 56 - b,SMART 57 - be,SMART 58 - became,SMART 59 - because,SMART 60 - become,SMART 61 - becomes,SMART 62 - becoming,SMART 63 - been,SMART 64 - before,SMART 65 - beforehand,SMART 66 - behind,SMART 67 - being,SMART 68 - believe,SMART 69 - below,SMART 70 - beside,SMART 71 - besides,SMART 72 - best,SMART 73 - better,SMART 74 - between,SMART 75 - beyond,SMART 76 - both,SMART 77 - brief,SMART 78 - but,SMART 79 - by,SMART 80 - c,SMART 81 - c'mon,SMART 82 - c's,SMART 83 - came,SMART 84 - can,SMART 85 - can't,SMART 86 - cannot,SMART 87 - cant,SMART 88 - cause,SMART 89 - causes,SMART 90 - certain,SMART 91 - certainly,SMART 92 - changes,SMART 93 - clearly,SMART 94 - co,SMART 95 - com,SMART 96 - come,SMART 97 - comes,SMART 98 - concerning,SMART 99 - consequently,SMART 100 - consider,SMART 101 - considering,SMART 102 - contain,SMART 103 - containing,SMART 104 - contains,SMART 105 - corresponding,SMART 106 - could,SMART 107 - couldn't,SMART 108 - course,SMART 109 - currently,SMART 110 - d,SMART 111 - definitely,SMART 112 - described,SMART 113 - despite,SMART 114 - did,SMART 115 - didn't,SMART 116 - different,SMART 117 - do,SMART 118 - does,SMART 119 - doesn't,SMART 120 - doing,SMART 121 - don't,SMART 122 - done,SMART 123 - down,SMART 124 - downwards,SMART 125 - during,SMART 126 - e,SMART 127 - each,SMART 128 - edu,SMART 129 - eg,SMART 130 - eight,SMART 131 - either,SMART 132 - else,SMART 133 - elsewhere,SMART 134 - enough,SMART 135 - entirely,SMART 136 - especially,SMART 137 - et,SMART 138 - etc,SMART 139 - even,SMART 140 - ever,SMART 141 - every,SMART 142 - everybody,SMART 143 - everyone,SMART 144 - everything,SMART 145 - everywhere,SMART 146 - ex,SMART 147 - exactly,SMART 148 - example,SMART 149 - except,SMART 150 - f,SMART 151 - far,SMART 152 - few,SMART 153 - fifth,SMART 154 - first,SMART 155 - five,SMART 156 - followed,SMART 157 - following,SMART 158 - follows,SMART 159 - for,SMART 160 - former,SMART 161 - formerly,SMART 162 - forth,SMART 163 - four,SMART 164 - from,SMART 165 - further,SMART 166 - furthermore,SMART 167 - g,SMART 168 - get,SMART 169 - gets,SMART 170 - getting,SMART 171 - given,SMART 172 - gives,SMART 173 - go,SMART 174 - goes,SMART 175 - going,SMART 176 - gone,SMART 177 - got,SMART 178 - gotten,SMART 179 - greetings,SMART 180 - h,SMART 181 - had,SMART 182 - hadn't,SMART 183 - happens,SMART 184 - hardly,SMART 185 - has,SMART 186 - hasn't,SMART 187 - have,SMART 188 - haven't,SMART 189 - having,SMART 190 - he,SMART 191 - he's,SMART 192 - hello,SMART 193 - help,SMART 194 - hence,SMART 195 - her,SMART 196 - here,SMART 197 - here's,SMART 198 - hereafter,SMART 199 - hereby,SMART 200 - herein,SMART 201 - hereupon,SMART 202 - hers,SMART 203 - herself,SMART 204 - hi,SMART 205 - him,SMART 206 - himself,SMART 207 - his,SMART 208 - hither,SMART 209 - hopefully,SMART 210 - how,SMART 211 - howbeit,SMART 212 - however,SMART 213 - i,SMART 214 - i'd,SMART 215 - i'll,SMART 216 - i'm,SMART 217 - i've,SMART 218 - ie,SMART 219 - if,SMART 220 - ignored,SMART 221 - immediate,SMART 222 - in,SMART 223 - inasmuch,SMART 224 - inc,SMART 225 - indeed,SMART 226 - indicate,SMART 227 - indicated,SMART 228 - indicates,SMART 229 - inner,SMART 230 - insofar,SMART 231 - instead,SMART 232 - into,SMART 233 - inward,SMART 234 - is,SMART 235 - isn't,SMART 236 - it,SMART 237 - it'd,SMART 238 - it'll,SMART 239 - it's,SMART 240 - its,SMART 241 - itself,SMART 242 - j,SMART 243 - just,SMART 244 - k,SMART 245 - keep,SMART 246 - keeps,SMART 247 - kept,SMART 248 - know,SMART 249 - knows,SMART 250 - known,SMART 251 - l,SMART 252 - last,SMART 253 - lately,SMART 254 - later,SMART 255 - latter,SMART 256 - latterly,SMART 257 - least,SMART 258 - less,SMART 259 - lest,SMART 260 - let,SMART 261 - let's,SMART 262 - like,SMART 263 - liked,SMART 264 - likely,SMART 265 - little,SMART 266 - look,SMART 267 - looking,SMART 268 - looks,SMART 269 - ltd,SMART 270 - m,SMART 271 - mainly,SMART 272 - many,SMART 273 - may,SMART 274 - maybe,SMART 275 - me,SMART 276 - mean,SMART 277 - meanwhile,SMART 278 - merely,SMART 279 - might,SMART 280 - more,SMART 281 - moreover,SMART 282 - most,SMART 283 - mostly,SMART 284 - much,SMART 285 - must,SMART 286 - my,SMART 287 - myself,SMART 288 - n,SMART 289 - name,SMART 290 - namely,SMART 291 - nd,SMART 292 - near,SMART 293 - nearly,SMART 294 - necessary,SMART 295 - need,SMART 296 - needs,SMART 297 - neither,SMART 298 - never,SMART 299 - nevertheless,SMART 300 - new,SMART 301 - next,SMART 302 - nine,SMART 303 - no,SMART 304 - nobody,SMART 305 - non,SMART 306 - none,SMART 307 - noone,SMART 308 - nor,SMART 309 - normally,SMART 310 - not,SMART 311 - nothing,SMART 312 - novel,SMART 313 - now,SMART 314 - nowhere,SMART 315 - o,SMART 316 - obviously,SMART 317 - of,SMART 318 - off,SMART 319 - often,SMART 320 - oh,SMART 321 - ok,SMART 322 - okay,SMART 323 - old,SMART 324 - on,SMART 325 - once,SMART 326 - one,SMART 327 - ones,SMART 328 - only,SMART 329 - onto,SMART 330 - or,SMART 331 - other,SMART 332 - others,SMART 333 - otherwise,SMART 334 - ought,SMART 335 - our,SMART 336 - ours,SMART 337 - ourselves,SMART 338 - out,SMART 339 - outside,SMART 340 - over,SMART 341 - overall,SMART 342 - own,SMART 343 - p,SMART 344 - particular,SMART 345 - particularly,SMART 346 - per,SMART 347 - perhaps,SMART 348 - placed,SMART 349 - please,SMART 350 - plus,SMART 351 - possible,SMART 352 - presumably,SMART 353 - probably,SMART 354 - provides,SMART 355 - q,SMART 356 - que,SMART 357 - quite,SMART 358 - qv,SMART 359 - r,SMART 360 - rather,SMART 361 - rd,SMART 362 - re,SMART 363 - really,SMART 364 - reasonably,SMART 365 - regarding,SMART 366 - regardless,SMART 367 - regards,SMART 368 - relatively,SMART 369 - respectively,SMART 370 - right,SMART 371 - s,SMART 372 - said,SMART 373 - same,SMART 374 - saw,SMART 375 - say,SMART 376 - saying,SMART 377 - says,SMART 378 - second,SMART 379 - secondly,SMART 380 - see,SMART 381 - seeing,SMART 382 - seem,SMART 383 - seemed,SMART 384 - seeming,SMART 385 - seems,SMART 386 - seen,SMART 387 - self,SMART 388 - selves,SMART 389 - sensible,SMART 390 - sent,SMART 391 - serious,SMART 392 - seriously,SMART 393 - seven,SMART 394 - several,SMART 395 - shall,SMART 396 - she,SMART 397 - should,SMART 398 - shouldn't,SMART 399 - since,SMART 400 - six,SMART 401 - so,SMART 402 - some,SMART 403 - somebody,SMART 404 - somehow,SMART 405 - someone,SMART 406 - something,SMART 407 - sometime,SMART 408 - sometimes,SMART 409 - somewhat,SMART 410 - somewhere,SMART 411 - soon,SMART 412 - sorry,SMART 413 - specified,SMART 414 - specify,SMART 415 - specifying,SMART 416 - still,SMART 417 - sub,SMART 418 - such,SMART 419 - sup,SMART 420 - sure,SMART 421 - t,SMART 422 - t's,SMART 423 - take,SMART 424 - taken,SMART 425 - tell,SMART 426 - tends,SMART 427 - th,SMART 428 - than,SMART 429 - thank,SMART 430 - thanks,SMART 431 - thanx,SMART 432 - that,SMART 433 - that's,SMART 434 - thats,SMART 435 - the,SMART 436 - their,SMART 437 - theirs,SMART 438 - them,SMART 439 - themselves,SMART 440 - then,SMART 441 - thence,SMART 442 - there,SMART 443 - there's,SMART 444 - thereafter,SMART 445 - thereby,SMART 446 - therefore,SMART 447 - therein,SMART 448 - theres,SMART 449 - thereupon,SMART 450 - these,SMART 451 - they,SMART 452 - they'd,SMART 453 - they'll,SMART 454 - they're,SMART 455 - they've,SMART 456 - think,SMART 457 - third,SMART 458 - this,SMART 459 - thorough,SMART 460 - thoroughly,SMART 461 - those,SMART 462 - though,SMART 463 - three,SMART 464 - through,SMART 465 - throughout,SMART 466 - thru,SMART 467 - thus,SMART 468 - to,SMART 469 - together,SMART 470 - too,SMART 471 - took,SMART 472 - toward,SMART 473 - towards,SMART 474 - tried,SMART 475 - tries,SMART 476 - truly,SMART 477 - try,SMART 478 - trying,SMART 479 - twice,SMART 480 - two,SMART 481 - u,SMART 482 - un,SMART 483 - under,SMART 484 - unfortunately,SMART 485 - unless,SMART 486 - unlikely,SMART 487 - until,SMART 488 - unto,SMART 489 - up,SMART 490 - upon,SMART 491 - us,SMART 492 - use,SMART 493 - used,SMART 494 - useful,SMART 495 - uses,SMART 496 - using,SMART 497 - usually,SMART 498 - uucp,SMART 499 - v,SMART 500 - value,SMART 501 - various,SMART 502 - very,SMART 503 - via,SMART 504 - viz,SMART 505 - vs,SMART 506 - w,SMART 507 - want,SMART 508 - wants,SMART 509 - was,SMART 510 - wasn't,SMART 511 - way,SMART 512 - we,SMART 513 - we'd,SMART 514 - we'll,SMART 515 - we're,SMART 516 - we've,SMART 517 - welcome,SMART 518 - well,SMART 519 - went,SMART 520 - were,SMART 521 - weren't,SMART 522 - what,SMART 523 - what's,SMART 524 - whatever,SMART 525 - when,SMART 526 - whence,SMART 527 - whenever,SMART 528 - where,SMART 529 - where's,SMART 530 - whereafter,SMART 531 - whereas,SMART 532 - whereby,SMART 533 - wherein,SMART 534 - whereupon,SMART 535 - wherever,SMART 536 - whether,SMART 537 - which,SMART 538 - while,SMART 539 - whither,SMART 540 - who,SMART 541 - who's,SMART 542 - whoever,SMART 543 - whole,SMART 544 - whom,SMART 545 - whose,SMART 546 - why,SMART 547 - will,SMART 548 - willing,SMART 549 - wish,SMART 550 - with,SMART 551 - within,SMART 552 - without,SMART 553 - won't,SMART 554 - wonder,SMART 555 - would,SMART 556 - would,SMART 557 - wouldn't,SMART 558 - x,SMART 559 - y,SMART 560 - yes,SMART 561 - yet,SMART 562 - you,SMART 563 - you'd,SMART 564 - you'll,SMART 565 - you're,SMART 566 - you've,SMART 567 - your,SMART 568 - yours,SMART 569 - yourself,SMART 570 - yourselves,SMART 571 - z,SMART 572 - zero,SMART 573 - i,snowball 574 - me,snowball 575 - my,snowball 576 - myself,snowball 577 - we,snowball 578 - our,snowball 579 - ours,snowball 580 - ourselves,snowball 581 - you,snowball 582 - your,snowball 583 - yours,snowball 584 - yourself,snowball 585 - yourselves,snowball 586 - he,snowball 587 - him,snowball 588 - his,snowball 589 - himself,snowball 590 - she,snowball 591 - her,snowball 592 - hers,snowball 593 - herself,snowball 594 - it,snowball 595 - its,snowball 596 - itself,snowball 597 - they,snowball 598 - them,snowball 599 - their,snowball 600 - theirs,snowball 601 - themselves,snowball 602 - what,snowball 603 - which,snowball 604 - who,snowball 605 - whom,snowball 606 - this,snowball 607 - that,snowball 608 - these,snowball 609 - those,snowball 610 - am,snowball 611 - is,snowball 612 - are,snowball 613 - was,snowball 614 - were,snowball 615 - be,snowball 616 - been,snowball 617 - being,snowball 618 - have,snowball 619 - has,snowball 620 - had,snowball 621 - having,snowball 622 - do,snowball 623 - does,snowball 624 - did,snowball 625 - doing,snowball 626 - would,snowball 627 - should,snowball 628 - could,snowball 629 - ought,snowball 630 - i'm,snowball 631 - you're,snowball 632 - he's,snowball 633 - she's,snowball 634 - it's,snowball 635 - we're,snowball 636 - they're,snowball 637 - i've,snowball 638 - you've,snowball 639 - we've,snowball 640 - they've,snowball 641 - i'd,snowball 642 - you'd,snowball 643 - he'd,snowball 644 - she'd,snowball 645 - we'd,snowball 646 - they'd,snowball 647 - i'll,snowball 648 - you'll,snowball 649 - he'll,snowball 650 - she'll,snowball 651 - we'll,snowball 652 - they'll,snowball 653 - isn't,snowball 654 - aren't,snowball 655 - wasn't,snowball 656 - weren't,snowball 657 - hasn't,snowball 658 - haven't,snowball 659 - hadn't,snowball 660 - doesn't,snowball 661 - don't,snowball 662 - didn't,snowball 663 - won't,snowball 664 - wouldn't,snowball 665 - shan't,snowball 666 - shouldn't,snowball 667 - can't,snowball 668 - cannot,snowball 669 - couldn't,snowball 670 - mustn't,snowball 671 - let's,snowball 672 - that's,snowball 673 - who's,snowball 674 - what's,snowball 675 - here's,snowball 676 - there's,snowball 677 - when's,snowball 678 - where's,snowball 679 - why's,snowball 680 - how's,snowball 681 - a,snowball 682 - an,snowball 683 - the,snowball 684 - and,snowball 685 - but,snowball 686 - if,snowball 687 - or,snowball 688 - because,snowball 689 - as,snowball 690 - until,snowball 691 - while,snowball 692 - of,snowball 693 - at,snowball 694 - by,snowball 695 - for,snowball 696 - with,snowball 697 - about,snowball 698 - against,snowball 699 - between,snowball 700 - into,snowball 701 - through,snowball 702 - during,snowball 703 - before,snowball 704 - after,snowball 705 - above,snowball 706 - below,snowball 707 - to,snowball 708 - from,snowball 709 - up,snowball 710 - down,snowball 711 - in,snowball 712 - out,snowball 713 - on,snowball 714 - off,snowball 715 - over,snowball 716 - under,snowball 717 - again,snowball 718 - further,snowball 719 - then,snowball 720 - once,snowball 721 - here,snowball 722 - there,snowball 723 - when,snowball 724 - where,snowball 725 - why,snowball 726 - how,snowball 727 - all,snowball 728 - any,snowball 729 - both,snowball 730 - each,snowball 731 - few,snowball 732 - more,snowball 733 - most,snowball 734 - other,snowball 735 - some,snowball 736 - such,snowball 737 - no,snowball 738 - nor,snowball 739 - not,snowball 740 - only,snowball 741 - own,snowball 742 - same,snowball 743 - so,snowball 744 - than,snowball 745 - too,snowball 746 - very,snowball 747 - a,onix 748 - about,onix 749 - above,onix 750 - across,onix 751 - after,onix 752 - again,onix 753 - against,onix 754 - all,onix 755 - almost,onix 756 - alone,onix 757 - along,onix 758 - already,onix 759 - also,onix 760 - although,onix 761 - always,onix 762 - among,onix 763 - an,onix 764 - and,onix 765 - another,onix 766 - any,onix 767 - anybody,onix 768 - anyone,onix 769 - anything,onix 770 - anywhere,onix 771 - are,onix 772 - area,onix 773 - areas,onix 774 - around,onix 775 - as,onix 776 - ask,onix 777 - asked,onix 778 - asking,onix 779 - asks,onix 780 - at,onix 781 - away,onix 782 - back,onix 783 - backed,onix 784 - backing,onix 785 - backs,onix 786 - be,onix 787 - became,onix 788 - because,onix 789 - become,onix 790 - becomes,onix 791 - been,onix 792 - before,onix 793 - began,onix 794 - behind,onix 795 - being,onix 796 - beings,onix 797 - best,onix 798 - better,onix 799 - between,onix 800 - big,onix 801 - both,onix 802 - but,onix 803 - by,onix 804 - came,onix 805 - can,onix 806 - cannot,onix 807 - case,onix 808 - cases,onix 809 - certain,onix 810 - certainly,onix 811 - clear,onix 812 - clearly,onix 813 - come,onix 814 - could,onix 815 - did,onix 816 - differ,onix 817 - different,onix 818 - differently,onix 819 - do,onix 820 - does,onix 821 - done,onix 822 - down,onix 823 - down,onix 824 - downed,onix 825 - downing,onix 826 - downs,onix 827 - during,onix 828 - each,onix 829 - early,onix 830 - either,onix 831 - end,onix 832 - ended,onix 833 - ending,onix 834 - ends,onix 835 - enough,onix 836 - even,onix 837 - evenly,onix 838 - ever,onix 839 - every,onix 840 - everybody,onix 841 - everyone,onix 842 - everything,onix 843 - everywhere,onix 844 - face,onix 845 - faces,onix 846 - fact,onix 847 - facts,onix 848 - far,onix 849 - felt,onix 850 - few,onix 851 - find,onix 852 - finds,onix 853 - first,onix 854 - for,onix 855 - four,onix 856 - from,onix 857 - full,onix 858 - fully,onix 859 - further,onix 860 - furthered,onix 861 - furthering,onix 862 - furthers,onix 863 - gave,onix 864 - general,onix 865 - generally,onix 866 - get,onix 867 - gets,onix 868 - give,onix 869 - given,onix 870 - gives,onix 871 - go,onix 872 - going,onix 873 - good,onix 874 - goods,onix 875 - got,onix 876 - great,onix 877 - greater,onix 878 - greatest,onix 879 - group,onix 880 - grouped,onix 881 - grouping,onix 882 - groups,onix 883 - had,onix 884 - has,onix 885 - have,onix 886 - having,onix 887 - he,onix 888 - her,onix 889 - here,onix 890 - herself,onix 891 - high,onix 892 - high,onix 893 - high,onix 894 - higher,onix 895 - highest,onix 896 - him,onix 897 - himself,onix 898 - his,onix 899 - how,onix 900 - however,onix 901 - i,onix 902 - if,onix 903 - important,onix 904 - in,onix 905 - interest,onix 906 - interested,onix 907 - interesting,onix 908 - interests,onix 909 - into,onix 910 - is,onix 911 - it,onix 912 - its,onix 913 - itself,onix 914 - just,onix 915 - keep,onix 916 - keeps,onix 917 - kind,onix 918 - knew,onix 919 - know,onix 920 - known,onix 921 - knows,onix 922 - large,onix 923 - largely,onix 924 - last,onix 925 - later,onix 926 - latest,onix 927 - least,onix 928 - less,onix 929 - let,onix 930 - lets,onix 931 - like,onix 932 - likely,onix 933 - long,onix 934 - longer,onix 935 - longest,onix 936 - made,onix 937 - make,onix 938 - making,onix 939 - man,onix 940 - many,onix 941 - may,onix 942 - me,onix 943 - member,onix 944 - members,onix 945 - men,onix 946 - might,onix 947 - more,onix 948 - most,onix 949 - mostly,onix 950 - mr,onix 951 - mrs,onix 952 - much,onix 953 - must,onix 954 - my,onix 955 - myself,onix 956 - necessary,onix 957 - need,onix 958 - needed,onix 959 - needing,onix 960 - needs,onix 961 - never,onix 962 - new,onix 963 - new,onix 964 - newer,onix 965 - newest,onix 966 - next,onix 967 - no,onix 968 - nobody,onix 969 - non,onix 970 - noone,onix 971 - not,onix 972 - nothing,onix 973 - now,onix 974 - nowhere,onix 975 - number,onix 976 - numbers,onix 977 - of,onix 978 - off,onix 979 - often,onix 980 - old,onix 981 - older,onix 982 - oldest,onix 983 - on,onix 984 - once,onix 985 - one,onix 986 - only,onix 987 - open,onix 988 - opened,onix 989 - opening,onix 990 - opens,onix 991 - or,onix 992 - order,onix 993 - ordered,onix 994 - ordering,onix 995 - orders,onix 996 - other,onix 997 - others,onix 998 - our,onix 999 - out,onix 1000 - over,onix 1001 - part,onix 1002 - parted,onix 1003 - parting,onix 1004 - parts,onix 1005 - per,onix 1006 - perhaps,onix 1007 - place,onix 1008 - places,onix 1009 - point,onix 1010 - pointed,onix 1011 - pointing,onix 1012 - points,onix 1013 - possible,onix 1014 - present,onix 1015 - presented,onix 1016 - presenting,onix 1017 - presents,onix 1018 - problem,onix 1019 - problems,onix 1020 - put,onix 1021 - puts,onix 1022 - quite,onix 1023 - rather,onix 1024 - really,onix 1025 - right,onix 1026 - right,onix 1027 - room,onix 1028 - rooms,onix 1029 - said,onix 1030 - same,onix 1031 - saw,onix 1032 - say,onix 1033 - says,onix 1034 - second,onix 1035 - seconds,onix 1036 - see,onix 1037 - seem,onix 1038 - seemed,onix 1039 - seeming,onix 1040 - seems,onix 1041 - sees,onix 1042 - several,onix 1043 - shall,onix 1044 - she,onix 1045 - should,onix 1046 - show,onix 1047 - showed,onix 1048 - showing,onix 1049 - shows,onix 1050 - side,onix 1051 - sides,onix 1052 - since,onix 1053 - small,onix 1054 - smaller,onix 1055 - smallest,onix 1056 - some,onix 1057 - somebody,onix 1058 - someone,onix 1059 - something,onix 1060 - somewhere,onix 1061 - state,onix 1062 - states,onix 1063 - still,onix 1064 - still,onix 1065 - such,onix 1066 - sure,onix 1067 - take,onix 1068 - taken,onix 1069 - than,onix 1070 - that,onix 1071 - the,onix 1072 - their,onix 1073 - them,onix 1074 - then,onix 1075 - there,onix 1076 - therefore,onix 1077 - these,onix 1078 - they,onix 1079 - thing,onix 1080 - things,onix 1081 - think,onix 1082 - thinks,onix 1083 - this,onix 1084 - those,onix 1085 - though,onix 1086 - thought,onix 1087 - thoughts,onix 1088 - three,onix 1089 - through,onix 1090 - thus,onix 1091 - to,onix 1092 - today,onix 1093 - together,onix 1094 - too,onix 1095 - took,onix 1096 - toward,onix 1097 - turn,onix 1098 - turned,onix 1099 - turning,onix 1100 - turns,onix 1101 - two,onix 1102 - under,onix 1103 - until,onix 1104 - up,onix 1105 - upon,onix 1106 - us,onix 1107 - use,onix 1108 - used,onix 1109 - uses,onix 1110 - very,onix 1111 - want,onix 1112 - wanted,onix 1113 - wanting,onix 1114 - wants,onix 1115 - was,onix 1116 - way,onix 1117 - ways,onix 1118 - we,onix 1119 - well,onix 1120 - wells,onix 1121 - went,onix 1122 - were,onix 1123 - what,onix 1124 - when,onix 1125 - where,onix 1126 - whether,onix 1127 - which,onix 1128 - while,onix 1129 - who,onix 1130 - whole,onix 1131 - whose,onix 1132 - why,onix 1133 - will,onix 1134 - with,onix 1135 - within,onix 1136 - without,onix 1137 - work,onix 1138 - worked,onix 1139 - working,onix 1140 - works,onix 1141 - would,onix 1142 - year,onix 1143 - years,onix 1144 - yet,onix 1145 - you,onix 1146 - young,onix 1147 - younger,onix 1148 - youngest,onix 1149 - your,onix 1150 - yours,onix
-22
variables.csv
··· 1 - ,title,location,years,variables 2 - 0,American Community Survey,https://census.gov/,[],[] 3 - 1,Current Population Survey,https://census.gov/,[],[] 4 - 2,Integrated Postsecondary Education Data System (IPEDS) Institution Lookup,https://surveys.nces.ed.gov/ipeds/public/survey-materials/index,"[2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024]",[] 5 - 3,National Center for Science and Engineering Statistics,https://ncses.nsf.gov/,"[2021, 2023]","['Survey of Earned Doctorates', 'Survey of Graduate Students and Postdoctorates in Science and Engineering', 'Survey of Doctorate Recipients', 'Higher Education Research and Development Survey', 'National Survey of College Graduates']" 6 - 4,Higher Education Research and Development Survey,https://ncses.nsf.gov/surveys/higher-education-research-development/2023,[2023],"['Higher education R&D expenditures, ranked by FY 2023 R&D expenditures: FYs 2010–23', 'Total and federally financed higher education R&D expenditures in mathematics and statistics, ranked by FY 2023 total: FYs 2020–23', 'Higher education R&D expenditures, by R&D field: FYs 2010–23', 'Higher education R&D expenditures, by source of funds and R&D field: FY 2023', 'Higher education R&D expenditures at private institutions, ranked by all R&D expenditures, by source of funds: FY 2023', 'Higher education R&D expenditures at public institutions, ranked by all R&D expenditures, by source of funds: FY 2023', 'Higher education R&D expenditures at high-Hispanic-enrollment institutions, ranked by all R&D expenditures, by R&D field: FY 2023', 'Higher education R&D expenditures at historically black colleges and universities, ranked by all R&D expenditures, by source of funds: FY 2023', 'Higher education R&D expenditures at high-Hispanic-enrollment institutions, ranked by all R&D expenditures, by source of funds: FY 2023 ', 'Higher education R&D expenditures at historically black colleges and universities, ranked by all R&D expenditures, by R&D field: FY 2023', 'Higher education R&D expenditures, by source of funds and R&D field: FY 2023', 'Higher education R&D expenditures, by R&D field: FYs 2010–23']" 7 - 5,Survey of Earned Doctorates,https://ncses.nsf.gov/surveys/earned-doctorates/2023,[],[] 8 - 6,Survey of Graduate Students and Postdoctorates in Science and Engineering,https://ncses.nsf.gov/surveys/graduate-students-postdoctorates-s-e/2023,[2023],"['Citizenship, ethnicity, and race of graduate students, by detailed field: 2023', ""Master's and doctoral students within science, engineering, and health fields, by enrollment intensity: 2023"", 'Demographic characteristics of graduate students, postdoctoral appointees, and doctorate-holding nonfaculty researchers in science, engineering, and health: 2023', 'Graduate students in science, engineering, and health broad fields, by degree program, citizenship, ethnicity, and race: 2023']" 9 - 7,National Survey of College Graduates,https://ncses.nsf.gov/pubs/nsf23306/,[2021],"['College graduates, by level of highest degree, minor field of highest degree, and labor force status: 2021', 'Employed scientists and engineers, by sex, major field of highest degree, ethnicity, race, disability status, and type of disability: 2021', 'Employed college graduates, by minor occupation and major field of highest degree: 2021', 'Employed college graduates, by level of highest degree, minor occupation, and primary work activity: 2021', 'Median annual salaries of full-time employed college graduates, by major occupation, age, level of highest degree, and sex: 2021', 'Employment counts and median annual salaries of full-time employed scientists and engineers, by major field of highest degree, employment sector, and primary work activity: 2021', ""College graduates, by broad field of highest degree, father's education, mother's education, level of highest degree, and median amount borrowed to finance undergraduate degree: 2021""]" 10 - 8,Bureau of Labor Statistics,https://www.bls.gov/,[],[] 11 - 9,Occupational Outlook Handbook,https://www.bls.gov/ooh/,[],[] 12 - 10,Occupational Employment and Wage Statistics,https://www.bls.gov/oes/tables.htm,[],[] 13 - 11,American Mathematical Society,https://ams.org/,[],[] 14 - 12,Mathematical Association of America,https://maa.org/,[],[] 15 - 13,Society for Industrial and Applied Mathematics,https://siam.org/,[],[] 16 - 14,Association for Women in Mathematics,https://awm-math.org/,[],[] 17 - 15,Conference Board of the Mathematical Sciences 2021 Survey,www.ams.org/learning-careers/data/cbms-survey/,[2021],"['Bachelor’s degrees in mathematics, mathematics education, statistics, and computer science in mathematics departments awarded between July 1, 2020 and June 30, 2021, by gender of degree recipient and type of department.', 'Bachelor’s degrees in statistics departments awarded between July 1, 2020 and June 30, 2021, by gender of degree recipient and type of department.', 'Enrollment (in thousands) in undergraduate mathematics, statistics, and computer science courses (including distance learning enrollments) in mathematics and statistics departments by level of course and type of department in fall 2021. Numbers in parentheses are (2010, 2015) enrollments.', 'Number of sections (not including distance learning) of undergraduate mathematics, statistics, and computer science courses in mathematics and statistics departments by level of course and type of department in fall 2021 with fall 2015 figures in parentheses.', 'Enrollments in distance/remote learning courses (meaning courses offered for credit in which half or more of the instruction occurs with the instructor and the students separated by time and/or place [e.g., courses in which half or more of the course is taught online either synchronously or asynchronously, by computer software, or by other technologies], and other sections for various freshman and sophomore courses, by type of department, in fall 2021. Includes only distance/remote courses offered in normal practice, not courses that became distance/remote due to COVID-19 pandemic. (Fall 2015 data in parentheses.)', 'Number of sections (excluding distance learning) of calculus-level courses in mathematics departments taught by various types of instructor, by type of department, in fall 2021 with fall 2015 figures in parentheses.', 'Number of sections (excluding distance learning) of introductory statistics courses taught in mathematics departments and statistics departments by type of instructor and type of department in fall 2021 with fall 2015 figures in parentheses.', 'Number of sections of advanced mathematics (including operations research) and statistics courses in mathematics departments and of advanced statistics courses in statistics departments taught by tenured/tenure-eligible (TTE) faculty and total number of advanced-level sections by type of department in fall 2021 with fall 2015 data in parentheses.', 'Number of sections (excluding distance learning) of lower-level computer science courses taught in mathematics departments by type of instructor and type of department in fall 2021 with fall 2015 figures in parentheses.', 'Number of sections (excluding distance learning) of middle-level computer science courses taught in mathematics departments by type of instructor and type of department in fall 2021 with fall 2015 figures in parentheses.', 'Average section size (excluding distance learning) for undergraduate mathematics, statistics, and computer science courses in math- ematics and statistics departments by level of course and type of department in fall 2021 with fall 2015 data, when available, in parentheses. Also, all departments’ average section sizes from previous CBMS surveys.', 'Average recitation size in Mainstream Calculus I and II and other Calculus I courses and in introductory statistics courses that are taught using lecture/recitation method, by type of department in fall 2021, with fall 2015 data in parentheses. Distance learning sections are not included. (A calculus course is “Mainstream” if it leads to the usual upper-division mathematical sciences courses.)', 'Number of faculty, and of female faculty (F), in various types of mathematics departments and PhD statistics departments by highest degree and type of department in fall 2021. (Fall 2015 figures are in parentheses, and postdocs are included in other full-time (OFT) faculty totals.)', 'Number of faculty, and of female faculty (F), in mathematics departments combined and of doctoral-level statistics departments in fall 2021. (Fall 2015 figures are in parentheses.)', 'Number of tenured, tenure-eligible, postdoctoral, and other full-time (OFT) faculty in mathematics departments at four-year colleges and universities by gender and type of department in fall 2021. (Note: Postdoctoral faculty are included in other full-time totals.)', 'Number of tenured, tenure-eligible, other full-time, and postdoctoral faculty in doctoral-level statistics departments by gender in fall 2021 and 2015. (Postdoctoral faculty are included in other full-time faculty totals.)', 'Percentage of tenured and tenure-eligible mathematics department faculty and statistics faculty at four-year colleges and universities belonging to various age groups by type of department and gender in fall 2021.', 'Percentages of full-time faculty belonging to various ethnic groups by gender and type of department in fall 2021. Except for round-off, the percentages within each departmental type sum to 100%.', 'Percentages of part-time faculty belonging to various ethnic groups by gender and type of department in fall 2021. Except for round-off, the percentages within each departmental type sum to 100%.', 'Percentage of sections (excluding distance learning sections) in Mainstream Calculus I and Mainstream Calculus II taught by various types of instructors in four-year mathematics departments in fall 2021, by size of sections and type of department. Also average section sizes and enrollments (not including distance learning enrollments).', 'Percentage of sections (excluding distance learning sections) in Non-Mainstream Calculus I and in Non-Mainstream Calculus II, III, etc. taught by various types of instructors in mathematics departments in fall 2021 by size of sections and type of department. Also average section size and enrollments (not including distance learning enrollments).', 'Percentage of sections (excluding distance learning sections) in Introductory Statistics courses (for non-majors) taught by various types of instructors in mathematics departments in fall 2021, by size of sections and type of department. Also average section size and enrollments (not including distance learning enrollments).', 'Percentage of sections (excluding distance learning sections) in Introductory Statistics courses (for non-majors) taught by various types of instructors in statistics departments in fall 2021, by size of sections and type of department. Also average section size and total (non-distance learning) enrollments.', 'Percentage of mathematics departments using various practices in the teaching of Introductory Statistics (no calculus prerequisite) in fall 2021 by type of department.', 'Instructional strategies used in Introductory Statistics courses.', 'Extent of success in the use of technology in Introductory Statistics.', 'Of departments that offered Introductory Statistics (no calculus prerequisite) in fall 2021 and where a similar course is offered outside the mathematical sciences departments, the average estimated fall 2021 enrollment of all similar courses and an estimate of the total national enrollment.', 'Total institutional enrollment (in thousands) and percentage of part-time enrollments in two year colleges in fall for 1980 through 2015 and projected enrollments for fall 2021. Enrollments include distance learning but not dual enrollments', 'Enrollments in mathematics and statistics (no computer science) courses in mathematics programs at two-year colleges in fall 1985, 1990, 1995, 2000, 2005, 2010, 2015, and 2021.', 'Enrollment in thousands in mathematics and statistics courses (not including dual enrollments; including distance enrollments) in mathematics departments at two-year colleges in fall 2005, 2010, 2015, and 2021.', 'Enrollment in 1000s (not including dual enrollments; including distance enrollments) and percentages of total enrollment in mathematics and statistics courses by type of course in mathematics departments at two-year colleges in fall 2000, 2005, 2010, 2015, and 2021.', 'Percentage of two-year college mathematics departments teaching mathematics courses in fall 2015 and fall 2021.', 'Percentage of two-year college mathematics departments teaching selected mathematics courses in the fall terms of 2005, 2010, 2015, and 2021.', 'Average on-campus section size by type of course in mathematics departments at two-year colleges in fall 2010, 2015, and 2021. Also percentage of sections with enrollment above 30 in fall 2015 and 2021.', 'Average distance learning section size by type of course in mathematics departments at public two-year colleges in fall 2021. Also percentage of sections with enrollment above 30 in fall 2021.', 'Average on-campus and distance learning section size for public two-year college mathematics department courses in fall 2021.', 'Number of sections and number and percentage of sections taught by part-time faculty in mathematics departments at public two-year colleges by type of course in fall 2015 and 2021 (excluding distance learning and dual-enrollment sections).', 'Percentage of mathematics departments at public two-year colleges which implemented a Pathways course sequence in 2015 and 2021, an Intermediate Algebra prerequisite in 2021, and the types of courses implemented.', 'Enrollments in distance/remote learning (in 1000s) and percentage of distance/remote learning enrollments (distance learning courses are courses in which half or more of the instruction occurs with the instructor and the students separated by time and/or place facilitated by technology) among all enrollments (excluding dual enrollments) in mathematics departments at two-year colleges in fall 2010, 2015, and 2021.', 'Percentage of mathematics departments reporting use of distance learning in mathematics departments at two-year colleges in 2013–2021.', 'Percentage of departments with distance learning that described various factors as significant challenges or somewhat of a challenge in fall 2021.', 'Percentage of two-year colleges offering various opportunities and services to mathematics students in fall 2010, 2015, and 2021.', 'Number of full-time permanent faculty, full-time temporary faculty, other full-time faculty, and part-time faculty paid by two-year colleges (TYC) and by a third party (e.g., dual-enrollment instructors) in mathematics departments at two-year colleges in fall 2005, 2010, 2015, and 2021.', 'Teaching assignment for full-time permanent faculty, and teaching and other duties of part-time faculty, in mathematics departments at two-year colleges in fall 2021 (2015 data in parentheses).', 'Number of full-time permanent faculty in 2020–2021 who were no longer part of the faculty in 2025–2016 and 2021–2022.', 'Percentage of full-time permanent faculty in mathematics departments at two-year colleges by highest degree in fall 2000, 2005, 2010, 2015, and 2021.', 'Percentage of full-time permanent faculty in mathematics programs at public two-year colleges by field and highest degree in fall 2021.', 'Percentage of part-time faculty in mathematics departments at two-year colleges (including those paid by a third party, as in dual-enrollment courses) by highest degree in fall 2000, 2005, 2010, 2015, and 2021.', 'Percentage of part-time faculty in mathematics departments at two-year colleges (including those paid by a third party, as in dual-enrollment courses) by field and highest degree in fall 2021, with 2015 data in parentheses.', 'Number and percentage of total full-time permanent faculty in mathematics departments at two-year colleges by gender in fall 2005, 2010, 2015, and 2021.', 'Percentage of full-time permanent faculty and part-time faculty in mathematics departments at public two-year colleges by gender in fall 2021. Also master’s degrees in mathematics and statistics granted in the U.S. to citizens and resident aliens, by gender, in 2019–20. Part-time faculty paid by a third party are not included.', 'Percentage and number of ethnic minority full-time permanent faculty in mathematics departments at two-year colleges in fall 2005, 2010, 2015, and 2021.', 'Percentage of full-time permanent faculty in mathematics departments at two-year colleges by ethnicity in fall 2005, 2010, 2015, and 2021', 'Number and percentage of full-time permanent faculty in mathematics departments at two year colleges by ethnic group, and percentage of women within each ethnic group in fall 2021.', 'Percentage of full-time permanent faculty and of full-time permanent faculty under age 40 in mathematics departments at public two-year colleges by ethnic group in fall 2021. Also U.S. master’s degrees in mathematics and statistics granted in the U.S. to citizens and resident aliens by ethnic group in 2020–21.', 'Percentage of ethnic minority part-time faculty in mathematics departments at public two-year colleges in fall 2010, 2015, and 2021.', 'Number and percentage of part-time faculty in mathematics departments at public two-year colleges by ethnic group, and percentage of women within each ethnic group in fall 2021.', 'Percentage and number of full-time permanent faculty in mathematics departments at two-year colleges by age in fall 2005, 2010, 2015, and 2021.', 'Percentage of full-time permanent faculty in mathematics departments at public two-year colleges by age and by gender, and percentage of women by age in fall 2021.', 'Percentage of newly appointed full-time permanent faculty in mathematics departments at two-year colleges coming from various sources in fall 2015 and 2021.', 'Percentage of full-time permanent faculty newly appointed in mathematics departments at two-year colleges by highest degree in fall 2015 and 2021.', 'Percentage of full-time permanent faculty newly appointed in mathematics departments at two year colleges by ethnic group in fall 2015 and 2021. Also percentage of women within each ethnic group in fall 2021.', 'Percentage of two-year colleges that require periodic teaching evaluations for all full-time or all part-time faculty in fall 2015 and 2021.', 'Percentage of mathematics departments at public two-year colleges using various methods of evaluating teaching of full- and part-time faculty in fall 2021.', 'Percentage of two-year colleges that require some form of continuing education or professional development for full-time permanent faculty, and percentage of faculty using various methods to fulfill those requirements, in mathematics departments at two-year colleges in fall 2015 and 2021.', 'Percentage of program heads classifying various problems as “major” in mathematics departments at two-year colleges in fall 2005, 2010, 2015, and 2021.', 'Percentage of program heads of mathematics departments at public two-year colleges classifying various problems by severity in fall 2021.']" 18 - 16,IPUMS,https://ipums.org/,[2013],"[""Undergraduate loans: total funds borrowedYear of first bachelor's degree pre-2003 (5-year intervals)"", 'Year of first bachelor degree 2003-onward (5-year intervals)', 'Field of major for first bachelor degree code', 'Field of major for first bachelor degree (major group)', ""Location of school awarding first bachelor's degree (region)"", 'Location of school awarding first bachelor degree (US/non-US)', 'Education code for first intended major (best code)', 'Field of intended bachelors degree (major group)', 'Field of intended bachelors degree (minor group)', 'First intended major: undecided', 'Undergraduate grade-point average (GPA)', 'Financial support for first bachelor degree: Assistantship/work study', 'Financial support for first bachelor degree: Employer', 'Financial support for first bachelor degree: Earnings from employment', 'Financial support for first bachelor degree: Gifts', 'Financial support for first bachelor degree: Grants', 'Financial support for first bachelor degree: Loans', 'Financial support for first bachelor degree: Other', 'Financial support for first bachelor degree: Loans from relatives', 'Undergraduate loans: remaining balance', 'Children indicator: aged 12-17', 'Children indicator: aged 12-18', 'Number of children: aged 18 or older', 'Children indicator: aged 18 or older', 'Children indicator: age 19 or older', 'Age', 'Birth year', 'Gender', 'Minority indicator', 'Race/ethnicity', 'Place of birth', 'US citizenship status', 'Type of US citizen', 'Type of visa held when first came to US', 'Total number of children', 'Number of children: under age 2', 'Children indicator: under age 2', 'Number of children: under age 6', 'Children indicator: under age 6', 'Number of children: aged 2-5', 'Children indicator: ages 2-5', 'Number of children: aged 6-11', 'Children indicator: ages 6-11', 'Children indicator: under 12', 'Number of children: aged 12-17', 'Career preparation: teaching skills', 'Career preparation: collaboration/team work skills', 'Career preparation: writing skills', 'Year of highest degree since doctorate ', 'Field of major for highest degree since doctorate ', 'Field of major for highest degree since doctorate (major group)', 'Highest degree since doctorate: course costs paid for by employer', 'Satisfaction with doctoral program', 'First doctoral degree received between June 1990 and June 1996', 'Completing doctoral degree affected: level of responsibility', 'Completing doctoral degree affected: management activities', 'Completing doctoral degree affected: other', 'Completing doctoral degree affected: interesting/rewarding work', 'Completing doctoral degree affected: job security', 'Completing doctoral degree affected: technically demanding work', 'Completing doctoral degree affected: salary level', 'No more training desired', 'More training: first area', 'More training: second area', 'Career preparation: oral communication skills', 'Career preparation: computer skills', 'Career preparation: establishing contacts', 'Career preparation: research integrity/ethics', 'Career preparation: problem solving skills', 'Career preparation: subject matter knowledge', 'Career preparation: management/administrative skills', 'Career preparation: quantitative skills', 'Graduate loans: remaining balance', 'Graduate loans: total funds borrowed', 'Type of highest certificate or degree', 'Year of highest degree pre-2003 (5 year intervals)', 'Year of highest degree 2003-onward (5 year intervals)', 'Field of major for highest degree ', 'Field of major for highest degree (major group)', 'Location of school awarding highest degree', 'School awarding highest degree located in the US', 'Financial support for highest degree: assistantship/work study', 'Financial support for highest degree: financial assistance from employer', 'Financial support for highest degree: earnings from employment', 'Financial support for highest degree: gifts', 'Financial support for highest degree: grants', 'Financial support for highest degree: loans', 'Financial support for highest degree: other', 'Financial support for highest degree: loans from parents', 'Likelihood of choosing same field of study for highest degree', 'Type of degree', 'Year of most recent degree (5-year intervals', 'Year of most recent degree (5-year intervals', 'Field of major for most recent degree', 'Field of study of major for most recent degree (major group)', 'Location of school awarding most recent degree', 'School awarding most recent degree located in the US', 'Financial support', 'Financial support', 'Financial support', 'Financial support', 'Financial support', 'Financial support', 'Financial support', 'Financial support', 'Job market for other than postdocs', 'Job market for postdocs', 'Individual identification number[preselected]', 'Reference ID number (original)', 'Survey year[preselected]', 'SESTAT weight[preselected]', 'Sample identifier[preselected]', 'Survey identifier[preselected]', 'Survey cohort', 'Survey mode', 'Sequence number', 'Two-year associates degree ', 'Not held career path job since receiving doctorate ', 'Most important resource for career search ', 'Second most important resource for career search ', 'Job seeking resources used: initiated direct contacts ', 'Job seeking resources used: electronic postings ', 'Job seeking resources used: faculty/advisors ', 'Job seeking resources used: colleagues/friends ', 'Job seeking resources used: newspapers ', 'Job seeking resources used: other ', 'Job seeking resources used: professional journals ', 'Job seeking resources used: professional meetings ', 'Job seeking resources used: college placement office ', 'Job seeking resources used: professional recruiters ', 'Search for job limited by: debt ', 'Search for job limited by: family responsibilities ', 'Search for job limited by: desire to not relocate ', 'Search for job limited by: suitable job not available ', 'Search for job limited by: other ', ""Search for job limited by: spouse's career "", 'Reasons for not working: family responsibilities ', 'Reasons for not working: illness/disability ', 'Reasons for not working: layoff ', 'Reasons for not working: did not need/want to work ', 'Reasons for not working: suitable job not available ', 'Reasons for not working: other ', 'Reasons for not working: illness, retired or other (combined) ', 'Reasons for not working: retired ', 'Reasons for not working: student ', 'Career-path job ', 'Seeking career-path job ', 'Time started career-path job ', 'Sought career path job ', 'Sought or held career path job ', 'Held or accepted career path job ', 'When began working on job ', 'How doctoral degree would help career ', 'Still holding career path job ', 'Relationship of career path job to doctoral degree field ', 'Work wanted after completing doctorate: management/administration ', 'Work wanted after completing doctorate: professional practice ', 'Work wanted after completing doctorate: research ', 'Work wanted after completing doctorate: teaching ', 'Work wanted after completing doctorate: other ', 'Desired employment setting at beginning of doctorate ', 'New job offered what level of: responsibility ', 'New job offered what level of: salary ', 'New job offered what level of: knowledge/skill utilization ', 'Time elapsed between receiving doctorate and accepting career path job ', 'Attended community college ', 'Reasons attend community college: high school advanced placement program ', 'Reasons attend community college: complete associates degree ', 'Reasons attend community college: complete credit towards bachelors degree ', 'Reasons attend community college: change academic/occupational field ', 'Reasons attend community college: prepare for college ', 'Reasons attend community college: financial reasons ', 'Reasons attend community college: complete high school equivalency ', 'Reasons attend community college: leisure ', 'Reasons attend community college: other ', 'Reasons attend community college: increase opportunities for promotion ', 'Reasons attend community college: acquire further skills in field ', 'Reasons for not taking courses: needed break ', 'Reasons for not taking courses: no longer certain of field ', 'Reasons for not taking courses: family ', 'Reasons for not taking courses: financial reasons ', 'Reasons for not taking courses: achieved educational goals ', 'Reasons for not taking courses: job ', 'Reasons for not taking courses: moved ', 'Reasons for not taking courses: waiting for next school term ', 'Reasons for not taking courses: other ', 'Reasons for not taking courses: most important reason ', 'Reasons for not taking courses: second most important reason ', 'School-related costs paid by employer ', 'Sources of financial support for courses since college: assistantships/work study ', 'Sources of financial support for courses since college: employer ', 'Sources of financial support for courses since college: earnings from employment ', 'Sources of financial support for courses since college: gifts parents/relatives ', 'Sources of financial support for courses since college: grants/scholarships/etc. ', 'Sources of financial support for courses since college: loans from institution ', 'Sources of financial support for courses since college: other ', 'Sources of financial support for courses since college: loans from parents/relatives ', 'Likelihood of taking additional college courses ', 'Full-time/part-time student status ', 'Taking courses during reference week ', 'Type of degree working on during reference week ', 'Took college courses after completing most recent degree ', 'Type of degree working on since after college ', 'Type of degree working on since most recent degree ', 'Completed a degree since the last survey ', 'Enrolled in other than courses after completing most recent degree ', 'Took courses or enrolled in other way after completing most recent degree ', 'Region, college/university attended during reference week (US/non-US) ', 'Field of major for field of study after most recent degree ', 'Field of study after earning degree ', 'Field of major for current degree (detailed code) ', 'Field of major for current degree (minor code) ', 'Field of major for current degree (major code) ', 'Field of major for degree working on during the week of February 1st ', 'No primary field of study in courses after college ', 'Reasons for taking courses: increase advancement opportunities ', 'Reasons for taking courses: further education before career ', 'Reasons for taking courses: facilitate academic/occupational field change ', 'Reason for taking courses during reference week: expected/required by employer ', 'Reason for taking courses during reference week: prepare for graduate school ', 'Reason for taking courses during reference week: leisure/personal interest ', 'Reason for taking courses during reference week: licensure/certification ', 'Reason for taking courses during reference week: other ', 'Reason for taking courses during reference week: grad school, required by employer, other ', 'Reason for taking courses during reference week: gain further skills in field ', 'Reasons for taking courses: expected/required by employer ', 'Reasons for taking courses: prepare for graduate school ', 'Employer sector ', 'Employer sector (detailed code) ', 'Size of employer ', 'Employer: main business ', 'Principal employer came into being as a new business within last 5 years ', 'Employer located in the US ', 'US region code for employer ', 'Federal government support indicator ', 'Federal agency supporting work: Agriculture ', 'Federal agency supporting work: AID ', 'Federal agency supporting work: Commerce ', 'Federal agency supporting work: Education ', 'Federal agency supporting work: Agency unknown ', 'Federal agency supporting work: Defense ', 'Federal agency supporting work: Energy ', 'Federal agency supporting work: Transportation ', 'Federal agency supporting work: EPA ', 'Federal agency supporting work: HHS ', 'Federal agency supporting work: HUD ', 'Federal agency supporting work: Interior ', 'Federal agency supporting work: Justice ', 'Federal agency supporting work: Labor ', 'Federal agency supporting work: NASA ', 'Federal agency supporting work: NIH ', 'Federal agency supporting work: NRC ', 'Federal agency supporting work: NSF ', 'Federal agency supporting work: Other ', 'Federal agency supporting work: State ', 'Federal agency supporting work: VA ', 'Reason job unrelated to doctoral degree: career change ', 'Reason job unrelated to doctoral degree: working conditions ', 'Reason job unrelated to doctoral degree: family-related reasons ', 'Reason job unrelated to doctoral degree: job location ', 'Reason job unrelated to doctoral degree: job in doctoral field not available ', 'Reason job unrelated to doctoral degree: other ', 'Reason job unrelated to doctoral degree: pay/promotion opportunities ', 'Concerned about someone else in household losing job ', 'No other working adult in household ', 'Reasons for losing/leaving job: other ', 'Reasons for losing/leaving job: work reorganized/restructured ', 'Reasons for losing/leaving job: company had insufficient revenue ', 'Reasons for losing/leaving job: self-operated business ended ', 'Reasons for losing/leaving job: company taken over ', 'Lost or left job due to employer closing or downsizing ', 'Year last worked ', 'Previously retired ', 'Reasons for working part-time: retired ', 'Working part-time but wanted to work full-time ', 'Reasons for working part-time: family ', 'Reasons for working part-time: illness/disability ', 'Reasons for working part-time: not need/want work ', 'Reasons for working part-time: suitable full-time job not available ', 'Reasons for working part-time: other ', 'Reasons for working part-time: student ', 'Labor force status ', 'Working for pay during reference week ', 'Full-time/part-time status ', 'Working both current and previous reference weeks ', 'Employment status, current and previous reference weeks ', 'Full-time, years of professional work experience ', 'Part-time, years of professional work experience ', 'Principal job hours worked ', 'Principal job: hours per week typically worked (group) ', 'Principal job salary: weeks per year basis ', 'Principal job weeks salary based on year (group) ', 'Available benefits: health insurance ', 'Available benefits: pension/retirement plan ', 'Available benefits: profit-sharing plan ', 'Available benefits: paid vacation/sick/personal days ', 'Not working, looking for work ', 'Have not found new job ', 'Months to find new job ', 'Preferred type of working arrangement ', 'Concerned about losing job ', 'Year, left/lost job ', 'Reasons for losing/leaving job: company closed down ', 'Reasons for losing/leaving job: company moved ', 'Year received high school diploma (group) ', 'Place attended high school (recode) ', 'No high school diploma (did not finish high school) ', 'Salary (annualized) ', 'Total earned income before deductions in previous year (public use) ', 'Total household income: 1996 ', 'CPI conversion factor - current year ', 'CPI conversion factor - previous year ', 'International collaboration activity: travel abroad for collaboration ', 'International collaboration activity: foreign collaborators travel to US ', 'International collaboration activity: use web-based/virtual technology ', 'Work benefits from: long distance communication ', 'Work benefits from: long-term visits ', 'Work benefits from: short-term visits ', 'Conducted research outside US ', 'Length of last trip conducting research outside US ', 'Would consider conducting research outside US ', 'Increasing interest in research outside US: family-related reasons ', 'Increasing interest in research outside US: better financial support ', 'Increasing interest in research outside US: better foreign language training ', 'Increasing interest in research outside US: better access to research opportunities ', 'Increasing interest in research outside US: other ', 'Increasing interest in research outside US: better sabbatical leave policy ', 'Reason not conducted research outside US: family-related reasons ', 'Reason not conducted research outside US: no funding ', 'Reason not conducted research outside US: no host ', 'Reason not conducted research outside US: no interest ', 'Reason not conducted research outside US: concerned about losing place ', 'Reason not conducted research outside US: lack of foreign language skills ', 'Reason not conducted research outside US: not relevant to my career ', 'Reason not conducted research outside US: other ', 'Reason not conducted research outside US: no time ', 'International collaboration indicator ', 'International collaboration activity: communicate by phone/email ', 'Relationship with principal employer: short term ', 'Relationship with principal employer: self-employed ', 'Relationship with principal employer: job sharing ', 'Relationship with principal employer: temp/employment agency ', 'Area or tech used during typical week: advanced materials ', 'Area or tech used during typical week: biotech ', 'Area or tech used during typical week: high performance computing ', 'Area or tech used during typical week: semiconductor devices ', 'Area or tech used during typical week: flexible manufacturing, robotics ', 'Area or tech used during typical week: software producibility ', 'Area or tech used during typical week: sensor and signal processing ', 'Energy-related activity most involved in work ', 'Energy source involved most ', 'Most important reason for working outside field of highest degree ', 'Second most important reason for working outside field of highest degree ', 'Reason for working outside field of highest degree: career change ', 'Reason for working outside field of highest degree: working conditions ', 'Reason for working outside field of highest degree: family-related reasons ', 'Reason for working outside field of highest degree: job location ', 'Reason for working outside field of highest degree: suitable job not available ', 'Reason for working outside field of highest degree: Other ', 'Reason for working outside field of highest degree: pay/promotion ', 'Faculty rank and tenure status ', 'Academic position: adjunct faculty ', 'Academic position: dean or president ', 'Academic position: not applicable ', 'Academic position: research assistant, teaching assistant or other ', 'Academic position: postdoc ', 'Academic position: research faculty ', 'Academic position: teaching faculty ', 'Alternative work arrangement ', 'Main reason for alternative work arrangement ', 'Second most important reason for alternative work arrangement ', 'Reason for alternative work arrangement: own boss ', 'Reason for alternative work arrangement: gain experience ', 'Reason for alternative work arrangement: family-related reasons ', 'Reason for alternative work arrangement: schedule flexibility ', 'Reason for alternative work arrangement: other ', 'Reason for alternative work arrangement: better pay ', 'Reason for alternative work arrangement: status changed to temporary ', 'Reason for alternative work arrangement: school or training program ', 'Reason for alternative work arrangement: only type of work I could find ', 'Relationship with principal employer: work from home ', 'Relationship with principal employer: work contracted out by employer ', 'Relationship with principal employer: other ', 'Job satisfaction ', ""Satisfaction principal job's opportunities for advancement "", 'Satisfaction principal job benefits ', ""Satisfaction principal job's intellectual challenge "", ""Satisfaction principal job's degree of independence "", ""Satisfaction principal job's job location "", ""Satisfaction principal job's level of responsibility "", 'Satisfaction principal job salary ', ""Satisfaction principal job's job security "", ""Satisfaction principal job's contribution to society "", 'Principal job related to highest degree ', 'Job code for principal job ', 'Job code for principal job (major group) ', 'Job code for principal job (detailed code) ', 'Relationship of second job to highest degree ', 'Second job during reference week ', 'Job code for second job ', 'Job code for second job (major group) ', 'Respondent location ', 'Reasons for coming to U.S.: most important reason ', 'Reasons for coming to U.S.: second most important reason ', 'Factors important to come to U.S.: educational opportunities ', 'Factors important to come to U.S.: family-related reasons ', 'Factors important to come to U.S.: scientific/professional infrastructure ', 'Factors important to come to U.S.: job/economic opportunities ', 'Factors important to come to U.S.: other ', 'Respondent location ', 'Reasons for coming to U.S.: most important reason ', 'Reasons for coming to U.S.: second most important reason ', 'Factors important to come to U.S.: educational opportunities ', 'Factors important to come to U.S.: family-related reasons ', 'Factors important to come to U.S.: scientific/professional infrastructure ', 'Factors important to come to U.S.: job/economic opportunities ', 'Factors important to come to U.S.: other ', 'Work activities on principal job: professional services ', 'Work activities on principal job: teaching ', 'Work activities on principal job: accounting, finance, contracts ', 'Work activities on principal job : applied research ', 'Work activities on principal job: basic research ', 'Work activities on principal job: computer applications ', 'Work on principal job: work with others in same organization ', 'Work on principal job: work with immediate group or team ', 'Work on principal job: work with others in other US organization ', 'Supervisory work ', 'Number of papers (co)authored presented ', 'Number of papers presented (intervaled) ', 'Named as inventor for U.S patent ', 'Number of articles authored (intervals) ', 'Number of articles authored ', 'Number of professional society memberships ', 'Attended professional meetings in past year ', 'Books or monographs (co)authored accepted for publication indicator ', 'Work similar to what you expected to be doing ', 'Most hours, work activity ', 'Summarized primary work activity ', 'Second most hours, work activity ', 'Summarized secondary work activity ', 'Area devoted most hours ', 'Activity, computer applications ', 'Activity, development and design ', 'Activity, management/sales ', 'Activity, research and development ', 'Activity, research, development, and teaching ', 'Activity, research (basic and/or applied) ', 'Activity, teaching ', 'Work activities on principal job: development ', 'Work activities on principal job: design ', 'Work activities on principal job: employee relations ', 'Work activities on principal job: management and administration ', 'Work activities on principal job: other ', 'Work activities on principal job: production, operations, maintenance ', 'Work activities on principal job: quality or productivity management ', 'Work activities on principal job: sales, purchasing, marketing ', 'Job code for last job (major group) ', 'Job code for last job (public use) ', 'Reason for changing employer or job: change in career/professional interests ', 'Reason for changing employer or job: working conditions ', 'Reason for changing employer or job: family-related reasons ', 'Reason for changing employer or job: laid off/job terminated ', 'Reason for changing employer or job: job location ', 'Reason for changing employer or job: other ', 'Reason for changing employer or job: pay, promotion ', 'Reason for changing employer or job: retired ', 'Reason for changing employer or job: school-related reasons ', 'Offered buy-out ', 'Job code for principal job in 1988 (major group) ', 'Job code for principal job in 1988 ', 'Technical expertise required by spouse/partner job: sciences ', 'Technical expertise required by spouse/partner job: other ', 'Technical expertise required by spouse/partner Job: social sciences ', 'Attended work-related training ', 'Most important reason for taking work-related training ', 'Reason for attending training: increase advancement opportunities ', 'Reason for attending training: facilitate occupation change ', 'Reason for attending training: facilitate occupation change to different field ', 'Reason for attending training: required/expected by employer ', 'Reason for attending training: licensure/certification ', 'Reason for attending training: learn skills for recently acquired position ', 'Reason for attending training: increase advancement opportunities in current occupation ', 'Reason for attending training: other ', 'Reason for attending training: leisure/personal interest ', 'Reason for attending training: acquire further skills/knowledge ', 'Area of work-related training: general professional training ', 'Area of work-related training: management training ', 'Area of work-related training: other ', 'Area of work-related training: technical training ', 'Licensed/certified in occupation ', 'Job required technical expertise: natural sciences ', 'Job required technical expertise: other ', 'Job required technical expertise: social sciences ']" 19 - 17,Data.gov,https://data.gov/,[],[] 20 - 18,Harvard Dataverse,https://dataverse.harvard.edu/,[],[] 21 - 19,Pewresearch,https://pewresearch.org/,[],[] 22 - 20,Urban Institute,https://urban.org/,[],[]
-1
variables.json
··· 1 - {"title":{"0":"American Community Survey","1":"Current Population Survey","2":"Integrated Postsecondary Education Data System (IPEDS) Institution Lookup","3":"National Center for Science and Engineering Statistics","4":"Survey of Earned Doctorates","5":"Survey of Graduate Students and Postdoctorates in Science and Engineering","6":"Bureau of Labor Statistics","7":"Occupational Outlook Handbook","8":"Occupational Employment and Wage Statistics","9":"American Mathematical Society","10":"Mathematical Association of America","11":"Society for Industrial and Applied Mathematics","12":"Association for Women in Mathematics","13":"Conference Board of the Mathematical Sciences 2021 Survey","14":"IPUMS","15":"Data.gov","16":"Harvard Dataverse","17":"Pewresearch","18":"Urban Institute"},"location":{"0":"https:\/\/census.gov\/","1":"https:\/\/census.gov\/","2":"https:\/\/surveys.nces.ed.gov\/ipeds\/public\/survey-materials\/index","3":"https:\/\/ncses.nsf.gov\/","4":"https:\/\/ncses.nsf.gov\/surveys\/earned-doctorates\/2023","5":"https:\/\/ncses.nsf.gov\/surveys\/graduate-students-postdoctorates-s-e\/2023","6":"https:\/\/www.bls.gov\/","7":"https:\/\/www.bls.gov\/ooh\/","8":"https:\/\/www.bls.gov\/oes\/tables.htm","9":"https:\/\/ams.org\/","10":"https:\/\/maa.org\/","11":"https:\/\/siam.org\/","12":"https:\/\/awm-math.org\/","13":"www.ams.org\/learning-careers\/data\/cbms-survey\/","14":"https:\/\/ipums.org\/","15":"https:\/\/data.gov\/","16":"https:\/\/dataverse.harvard.edu\/","17":"https:\/\/pewresearch.org\/","18":"https:\/\/urban.org\/"},"years":{"0":[],"1":[],"2":[2015,2016,2017,2018,2019,2020,2021,2022,2023,2024],"3":[],"4":[],"5":[],"6":[],"7":[],"8":[],"9":[],"10":[],"11":[],"12":[],"13":[2021],"14":[],"15":[],"16":[],"17":[],"18":[]},"variables":{"0":[],"1":[],"2":[],"3":[],"4":[],"5":[],"6":[],"7":[],"8":[],"9":[],"10":[],"11":[],"12":[],"13":["Bachelor\u2019s degrees in mathematics, mathematics education, statistics, and computer science in mathematics departments awarded between July 1, 2020 and June 30, 2021, by gender of degree recipient and type of department.","Bachelor\u2019s degrees in statistics departments awarded between July 1, 2020 and June 30, 2021, by gender of degree recipient and type of department.","Enrollment (in thousands) in undergraduate mathematics, statistics, and computer science courses (including distance learning enrollments) in mathematics and statistics departments by level of course and type of department in fall 2021. Numbers in parentheses are (2010, 2015) enrollments.","Number of sections (not including distance learning) of undergraduate mathematics, statistics, and computer science courses in mathematics and statistics departments by level of course and type of department in fall 2021 with fall 2015 figures in parentheses.","Enrollments in distance\/remote learning courses (meaning courses offered for credit in which half or more of the instruction occurs with the instructor and the students separated by time and\/or place [e.g., courses in which half or more of the course is taught online either synchronously or asynchronously, by computer software, or by other technologies], and other sections for various freshman and sophomore courses, by type of department, in fall 2021. Includes only distance\/remote courses offered in normal practice, not courses that became distance\/remote due to COVID-19 pandemic. (Fall 2015 data in parentheses.)","Number of sections (excluding distance learning) of calculus-level courses in mathematics departments taught by various types of instructor, by type of department, in fall 2021 with fall 2015 figures in parentheses.","Number of sections (excluding distance learning) of introductory statistics courses taught in mathematics departments and statistics departments by type of instructor and type of department in fall 2021 with fall 2015 figures in parentheses.","Number of sections of advanced mathematics (including operations research) and statistics courses in mathematics departments and of advanced statistics courses in statistics departments taught by tenured\/tenure-eligible (TTE) faculty and total number of advanced-level sections by type of department in fall 2021 with fall 2015 data in parentheses.","Number of sections (excluding distance learning) of lower-level computer science courses taught in mathematics departments by type of instructor and type of department in fall 2021 with fall 2015 figures in parentheses.","Number of sections (excluding distance learning) of middle-level computer science courses taught in mathematics departments by type of instructor and type of department in fall 2021 with fall 2015 figures in parentheses.","Average section size (excluding distance learning) for undergraduate mathematics, statistics, and computer science courses in math- ematics and statistics departments by level of course and type of department in fall 2021 with fall 2015 data, when available, in parentheses. Also, all departments\u2019 average section sizes from previous CBMS surveys.","Average recitation size in Mainstream Calculus I and II and other Calculus I courses and in introductory statistics courses that are taught using lecture\/recitation method, by type of department in fall 2021, with fall 2015 data in parentheses. Distance learning sections are not included. (A calculus course is \u201cMainstream\u201d if it leads to the usual upper-division mathematical sciences courses.)","Number of faculty, and of female faculty (F), in various types of mathematics departments and PhD statistics departments by highest degree and type of department in fall 2021. (Fall 2015 figures are in parentheses, and postdocs are included in other full-time (OFT) faculty totals.)","Number of faculty, and of female faculty (F), in mathematics departments combined and of doctoral-level statistics departments in fall 2021. (Fall 2015 figures are in parentheses.)","Number of tenured, tenure-eligible, postdoctoral, and other full-time (OFT) faculty in mathematics departments at four-year colleges and universities by gender and type of department in fall 2021. (Note: Postdoctoral faculty are included in other full-time totals.)","Number of tenured, tenure-eligible, other full-time, and postdoctoral faculty in doctoral-level statistics departments by gender in fall 2021 and 2015. (Postdoctoral faculty are included in other full-time faculty totals.)","Percentage of tenured and tenure-eligible mathematics department faculty and statistics faculty at four-year colleges and universities belonging to various age groups by type of department and gender in fall 2021.","Percentages of full-time faculty belonging to various ethnic groups by gender and type of department in fall 2021. Except for round-off, the percentages within each departmental type sum to 100%.","Percentages of part-time faculty belonging to various ethnic groups by gender and type of department in fall 2021. Except for round-off, the percentages within each departmental type sum to 100%.","Percentage of sections (excluding distance learning sections) in Mainstream Calculus I and Mainstream Calculus II taught by various types of instructors in four-year mathematics departments in fall 2021, by size of sections and type of department. Also average section sizes and enrollments (not including distance learning enrollments).","Percentage of sections (excluding distance learning sections) in Non-Mainstream Calculus I and in Non-Mainstream Calculus II, III, etc. taught by various types of instructors in mathematics departments in fall 2021 by size of sections and type of department. Also average section size and enrollments (not including distance learning enrollments).","Percentage of sections (excluding distance learning sections) in Introductory Statistics courses (for non-majors) taught by various types of instructors in mathematics departments in fall 2021, by size of sections and type of department. Also average section size and enrollments (not including distance learning enrollments).","Percentage of sections (excluding distance learning sections) in Introductory Statistics courses (for non-majors) taught by various types of instructors in statistics departments in fall 2021, by size of sections and type of department. Also average section size and total (non-distance learning) enrollments.","Percentage of mathematics departments using various practices in the teaching of Introductory Statistics (no calculus prerequisite) in fall 2021 by type of department.","Instructional strategies used in Introductory Statistics courses.","Extent of success in the use of technology in Introductory Statistics.","Of departments that offered Introductory Statistics (no calculus prerequisite) in fall 2021 and where a similar course is offered outside the mathematical sciences departments, the average estimated fall 2021 enrollment of all similar courses and an estimate of the total national enrollment.","Total institutional enrollment (in thousands) and percentage of part-time enrollments in two year colleges in fall for 1980 through 2015 and projected enrollments for fall 2021. Enrollments include distance learning but not dual enrollments","Enrollments in mathematics and statistics (no computer science) courses in mathematics programs at two-year colleges in fall 1985, 1990, 1995, 2000, 2005, 2010, 2015, and 2021.","Enrollment in thousands in mathematics and statistics courses (not including dual enrollments; including distance enrollments) in mathematics departments at two-year colleges in fall 2005, 2010, 2015, and 2021.","Enrollment in 1000s (not including dual enrollments; including distance enrollments) and percentages of total enrollment in mathematics and statistics courses by type of course in mathematics departments at two-year colleges in fall 2000, 2005, 2010, 2015, and 2021.","Percentage of two-year college mathematics departments teaching mathematics courses in fall 2015 and fall 2021.","Percentage of two-year college mathematics departments teaching selected mathematics courses in the fall terms of 2005, 2010, 2015, and 2021.","Average on-campus section size by type of course in mathematics departments at two-year colleges in fall 2010, 2015, and 2021. Also percentage of sections with enrollment above 30 in fall 2015 and 2021.","Average distance learning section size by type of course in mathematics departments at public two-year colleges in fall 2021. Also percentage of sections with enrollment above 30 in fall 2021.","Average on-campus and distance learning section size for public two-year college mathematics department courses in fall 2021.","Number of sections and number and percentage of sections taught by part-time faculty in mathematics departments at public two-year colleges by type of course in fall 2015 and 2021 (excluding distance learning and dual-enrollment sections).","Percentage of mathematics departments at public two-year colleges which implemented a Pathways course sequence in 2015 and 2021, an Intermediate Algebra prerequisite in 2021, and the types of courses implemented.","Enrollments in distance\/remote learning (in 1000s) and percentage of distance\/remote learning enrollments (distance learning courses are courses in which half or more of the instruction occurs with the instructor and the students separated by time and\/or place facilitated by technology) among all enrollments (excluding dual enrollments) in mathematics departments at two-year colleges in fall 2010, 2015, and 2021.","Percentage of mathematics departments reporting use of distance learning in mathematics departments at two-year colleges in 2013\u20132021.","Percentage of departments with distance learning that described various factors as significant challenges or somewhat of a challenge in fall 2021.","Percentage of two-year colleges offering various opportunities and services to mathematics students in fall 2010, 2015, and 2021.","Number of full-time permanent faculty, full-time temporary faculty, other full-time faculty, and part-time faculty paid by two-year colleges (TYC) and by a third party (e.g., dual-enrollment instructors) in mathematics departments at two-year colleges in fall 2005, 2010, 2015, and 2021.","Teaching assignment for full-time permanent faculty, and teaching and other duties of part-time faculty, in mathematics departments at two-year colleges in fall 2021 (2015 data in parentheses).","Number of full-time permanent faculty in 2020\u20132021 who were no longer part of the faculty in 2025\u20132016 and 2021\u20132022.","Percentage of full-time permanent faculty in mathematics departments at two-year colleges by highest degree in fall 2000, 2005, 2010, 2015, and 2021.","Percentage of full-time permanent faculty in mathematics programs at public two-year colleges by field and highest degree in fall 2021.","Percentage of part-time faculty in mathematics departments at two-year colleges (including those paid by a third party, as in dual-enrollment courses) by highest degree in fall 2000, 2005, 2010, 2015, and 2021.","Percentage of part-time faculty in mathematics departments at two-year colleges (including those paid by a third party, as in dual-enrollment courses) by field and highest degree in fall 2021, with 2015 data in parentheses.","Number and percentage of total full-time permanent faculty in mathematics departments at two-year colleges by gender in fall 2005, 2010, 2015, and 2021.","Percentage of full-time permanent faculty and part-time faculty in mathematics departments at public two-year colleges by gender in fall 2021. Also master\u2019s degrees in mathematics and statistics granted in the U.S. to citizens and resident aliens, by gender, in 2019\u201320. Part-time faculty paid by a third party are not included.","Percentage and number of ethnic minority full-time permanent faculty in mathematics departments at two-year colleges in fall 2005, 2010, 2015, and 2021.","Percentage of full-time permanent faculty in mathematics departments at two-year colleges by ethnicity in fall 2005, 2010, 2015, and 2021","Number and percentage of full-time permanent faculty in mathematics departments at two year colleges by ethnic group, and percentage of women within each ethnic group in fall 2021.","Percentage of full-time permanent faculty and of full-time permanent faculty under age 40 in mathematics departments at public two-year colleges by ethnic group in fall 2021. Also U.S. master\u2019s degrees in mathematics and statistics granted in the U.S. to citizens and resident aliens by ethnic group in 2020\u201321.","Percentage of ethnic minority part-time faculty in mathematics departments at public two-year colleges in fall 2010, 2015, and 2021.","Number and percentage of part-time faculty in mathematics departments at public two-year colleges by ethnic group, and percentage of women within each ethnic group in fall 2021.","Percentage and number of full-time permanent faculty in mathematics departments at two-year colleges by age in fall 2005, 2010, 2015, and 2021.","Percentage of full-time permanent faculty in mathematics departments at public two-year colleges by age and by gender, and percentage of women by age in fall 2021.","Percentage of newly appointed full-time permanent faculty in mathematics departments at two-year colleges coming from various sources in fall 2015 and 2021.","Percentage of full-time permanent faculty newly appointed in mathematics departments at two-year colleges by highest degree in fall 2015 and 2021.","Percentage of full-time permanent faculty newly appointed in mathematics departments at two year colleges by ethnic group in fall 2015 and 2021. Also percentage of women within each ethnic group in fall 2021.","Percentage of two-year colleges that require periodic teaching evaluations for all full-time or all part-time faculty in fall 2015 and 2021.","Percentage of mathematics departments at public two-year colleges using various methods of evaluating teaching of full- and part-time faculty in fall 2021.","Percentage of two-year colleges that require some form of continuing education or professional development for full-time permanent faculty, and percentage of faculty using various methods to fulfill those requirements, in mathematics departments at two-year colleges in fall 2015 and 2021.","Percentage of program heads classifying various problems as \u201cmajor\u201d in mathematics departments at two-year colleges in fall 2005, 2010, 2015, and 2021.","Percentage of program heads of mathematics departments at public two-year colleges classifying various problems by severity in fall 2021."],"14":[],"15":[],"16":[],"17":[],"18":[]}}