Skip to content

amendelson/usc-data-2021

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Data  Journalism   USC  2020

<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <style> .header{ background-image: linear-gradient(to right, #ff5f6d, #ffc371); } .ml7 { position: relative; font-weight: 1200; } .ml7 .text-wrapper { position: relative; display: inline-block; padding-top: 0.2em; padding-right: 0.05em; padding-bottom: 0.1em; overflow: hidden; padding-left: 14px; } .ml7 .letter { transform-origin: 0 100%; display: inline-block; line-height: 1.3em; font-size: 3.6em; color: #FFFFFF } #countdown { line-height: 1.3em; font-size: 3.9em; background: -webkit-linear-gradient(#e66465, #9198e5); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: bold; } </style> <script> // Wrap every letter in a span $('.ml7 .letters').each(function(){ $(this).html($(this).text().replace(/([^\x00-\x80]|\w)/g, "$&")); }); anime.timeline({loop: true}) .add({ targets: '.ml7 .letter', translateY: ["1.1em", 0], translateX: ["0.55em", 0], translateZ: 0, rotateZ: [180, 0], duration: 1050, easing: "easeOutExpo", delay: function(el, i) { return 50 * i; } }).add({ targets: '.ml7', opacity: 0, duration: 1000, easing: "easeOutExpo", delay: 1000 }); </script> <script> var end = new Date('05/07/2020 5:00 PM'); var _second = 1000; var _minute = _second * 60; var _hour = _minute * 60; var _day = _hour * 24; var timer; function showRemaining() { var now = new Date(); var distance = end - now; if (distance < 0) { clearInterval(timer); document.getElementById('countdown').innerHTML = 'EXPIRED!'; return; } var days = Math.floor(distance / _day); var hours = Math.floor((distance % _day) / _hour); var minutes = Math.floor((distance % _hour) / _minute); var seconds = Math.floor((distance % _minute) / _second); document.getElementById('countdown').innerHTML = days + ' days '; document.getElementById('countdown').innerHTML += hours + ' hours '; document.getElementById('countdown').innerHTML += minutes + ' mins until Final Project drafts are due'; } timer = setInterval(showRemaining, 1000); </script>

Welcome to the website for JOUR 561: Fundamentals of Data Journalism Reporting. You'll find links to course materials here. You can get to this page by typing in tiny.cc/2wv4gz in your browser's address bar.

Here is the class syllabus.

The class meets 6:30 to 8:30 on Thursday nights in ANN 408. The final exam is on May 7 from 7-9 p.m.

This class will involve the use of technical tools, and coding. But if you want to learn how to use mapping and data analysis to report great stories, you're in the right class. The journalism is the most important part.

Class links

  • Week One: Course overview. Introductions.
  • Week Two: Class Project discussion.
  • Week Three: Visualizing Data with ggplot, Part 1 – faceting. Class project discussion.
  • Week Four: Visualizing Data with ggplot, Part 2 – layers and interactivity
  • Week Five: Class project discussion
  • Week Six: Writing functions and loops in R
  • Week Seven: Tidyuniverse in R – cleaning and transforming data.
  • Week Eight: Tidyuniverse in R – modeling data. Class project discussion
  • Week Nine: Github, Rmarkdown, data transformations
  • Spring Break
  • Week Ten: Mapping Part 1 – Buffers on steroids, spatial queries and spatial joins.
  • Week Eleven: Mapping Part 2 - Projections and the finer points of mapping.
  • Week Twelve: Mapping Part 3 – Using Open Street Map and Plug-Ins
  • Week Thirteen: Mapping Part 4 – Interactive Maps. Class project discussion
  • Week Fourteen: Bulk geocoding data with an API
  • Week Fifteen: Overview of Jupyter Notebook and R Kernel. Using Markdown and Github.
  • Final

 .----------------.  .----------------.
| .--------------. || .--------------. |
| |  ________    | || |      __      | |
| | |_   ___ `.  | || |     /  \     | |
| |   | |   `. \ | || |    / /\ \    | |
| |   | |    | | | || |   / ____ \   | |
| |  _| |___.' / | || | _/ /    \ \_ | |
| | |________.'  | || ||____|  |____|| |
| |              | || |              | |
| '--------------' || '--------------' |
 '----------------'  '----------------'
 .----------------.  .----------------.
| .--------------. || .--------------. |
| |  _________   | || |      __      | |
| | |  _   _  |  | || |     /  \     | |
| | |_/ | | \_|  | || |    / /\ \    | |
| |     | |      | || |   / ____ \   | |
| |    _| |_     | || | _/ /    \ \_ | |
| |   |_____|    | || ||____|  |____|| |
| |              | || |              | |
| '--------------' || '--------------' |
 '----------------'  '----------------'



Us in this class when learning about new datasets we can FOIA:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages