List of potential elective courses
// Function to fetch and display content from GitHub
function fetchGitHubContent() {
const githubUrl = 'https://raw.githubusercontent.com/username/repo/branch/path/to/file';
const contentContainer = document.getElementById('github-content');
fetch(githubUrl)
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.text();
})
.then(data => {
contentContainer.innerHTML = data;
})
.catch(error => {
console.error('Error fetching content:', error);
contentContainer.innerHTML = 'Error loading content. Please try again later.';
});
}
// Call the function when the page loads
document.addEventListener('DOMContentLoaded', fetchGitHubContent);
Your three electives need to be courses which are computational in nature and related to one another. For instance, they might inlvolve a common theme or technique, or be from a specific field.
Above, you can see courses which previous students have used as part of their elective sequences – and also some courses which have not been approved because they are not sufficiently computational.
Please note that the Econ 20000 sequence courses are not approved as electives.
These lists are not exhaustive, and you are welcome to propose other courses as electives. If you have a question about a specific course, please contact Prof. Burbank.
Send Prof. Burbank an email with your proposed electives, as well as a brief explanation of how they are related.
You may double-count courses that are being used for another major. However, per university policy, you may not double-count courses that are being used for a minor.