首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
data structures辅导、讲解R编程、讲解R程序 解析Haskell程序|解析C/C++编程
项目预算:
开发周期:
发布时间:
要求地区:
Assignment 1: Foundations Mastery (protests)
Due Jan 25 by 10pm Points 100 Submitting a text entry box
Submit Assignment
The past few years in the United States, there has been a surge in protests in support of Black Lives
Matter, gender equity, and other social issues. In this assignment, you'll work with data from
CountLove —the same data often cited by the New York Times—to learn more about these
demonstrations. You'll practice using your data programming skills to assess where, why, when, and
how protests are happening.
Objectives
By completing this assignment you will practice and master the following skills:
Using version control to manage your code
Declaring document rendring using Markdown syntax
Using programming fundamentals (e.g., variables and functions) in R
Working with foundational R data structures (vectors, lists, and data frames)
Setup
Follow the below link to create your private code repo for this assignment. You will need to accept
this assignment to create your code repo. Do not fork this repository!
https://classroom.github.com/a/xXBwBhBg (https://classroom.github.com/a/xXBwBhBg)
Note that you do not have to accept an invitation to the organization (you won't get one); once you've
accepted the assignment you're done and can access it.
You will need to accept this assignment to create your code repo. This repo will have the name
info201b-wi21/a1-protests-yourusername , and you can view it online at https://github.com/info201bwi21/a1-protests-yourusername
(replacing yourusername with your GitHub user name).
Do not fork this repository!
After you've accepted the assignment, clone the repo to your local machine so you can edit the files.
Make sure you don't clone it inside another repo!
The starter repo includes a README.md file you will fill in, as well an analysis.R file where you will
perform your analysis (your R code). You will need to modify both files—the details can be found in
the files themselves.
iSchool Canvas Support
2021/2/25 Assignment 1: Foundations Mastery (protests)
https://canvas.uw.edu/courses/1434910/assignments/5937458 2/4
Remember that it's always a good idea to add and commit (and even push ) your changes
whenever you finish a section of an assignment or project!
The Markdown File
Data analysis isn't just code and numbers, it's the interpretation of those numbers and the context of
that interpretation. In the README.md file for this assignment you'll provide that context and
interpretation.
Follow the instructions written in the README.md file to fill out each section. Note that you should delete
the "instruction" text, replacing that with your own work. The instruction text is also included below for
your reference.
1. Background Research Before diving into this (or any) dataset, it's important to have domain
familiarity (i.e., to know something about the topic). As preparation, you should locate and read
three (3) articles about public protests in the U.S.. These can be news articles or more holistic
analysis pieces (e.g., as might be in an online magazine or publication).
In this section of the README.md file, create an unordered list of the three articles you found. For
each article in the list, provide a link to the article (in Markdown formatting, with display text other
than the URL) as well as a 1-2 sentence summary or takeaway/thesis from each one.
2. Representative Image. A picture is, as they say, worth many words. Images are great at
increasing engagement with your analysis as well as conveying the point of your analysis. Find
and download at least one (1) image to accompany your analysis, saving the file in the provided
img/ folder in your repo.
In this section of the README.md file, display the image from your img/ folder (remember to use a
relative path!). Below that image, include 2-3 sentences captioning the image. Your caption should
both identify the image as well as explain why you included that image in particular. As practice,
use either bold or italic text when captioning your image.
3. Analysis Reflections As you follow the instructions in the analysis.R file, you will be prompted
to write six (6) reflections interpreting the results of your code. Those reflections should do in this
section.
Each reflection should be about 1-2 sentences long. You can organize the reflections into an
ordered list or otherwise label which is which.
4. Conclusion Once you are finished with your analysis (you've completed the analysis.R file), fill
in this section by answering the following questions (in about 1-2 sentences each):
1. What results from the analysis surprised you? Why?
2. What parts of the analysis did you find most challenging?
3. What kind of analysis do you wish you were able to do with the dataset (but perhaps don't
have the technical skills to do so)?
The analysis.R File.
iSchool Canvas Support
2021/2/25 Assignment 1: Foundations Mastery (protests)
https://canvas.uw.edu/courses/1434910/assignments/5937458 3/4
a1 Protests Rubric
In this file you will write R code to analysis protest data taken from CountLove.org
(https://countlove.org/) .
Below each prompt in the file, write the code necessary/indicated to calculate the answer. Each result
should be stored in a variable with a name indicated in backtics (to help us with grading). It's also a
good idea to "print" the result so you can see the answers—don't just look at RStudio's environmental
variables!
Note that you are not allowed to use R packages such as dplyr in this assignment. The
goal is to make sure you can use foundational R syntax, which is a necessary skill for future
work.
At each prompt marked "Reflection", be sure to write your answer in the README.md file.
After you complete each section of your analysis, you must add , commit , and push your
changes. This will give you practice working with git and make sure you don't lose any work in
case of technical failures! It's perfectly fine to have more commits as well. We'll be looking for
multiple commits (with informative commit messages) in your repository.
Submit Your Solution
In order to submit assignments in this class:
1. Confirm that you've successfully completed the assignment (e.g., that you've filled in all of the
parts of the README.md file and the analysis.R file)
2. add and commit the final version of your work, and push your code to your GitHub repository.
3. Submit the URL of your GitHub Repository as your assignment submission on Canvas (this page,
at the top).
iSchool Canvas Support
2021/2/25 Assignment 1: Foundations Mastery (protests)
https://canvas.uw.edu/courses/1434910/assignments/5937458 4/4
Total Points: 100
Criteria Ratings Pts
3 pts
20 pts
6 pts
15 pts
22 pts
24 pts
10 pts
Git and GitHub Usage
You created and cloned a git repo, made multiple commits to that repo, and pushed your
changes to GitHub. Commit messages are (mostly) informative and well-written.
README.md
You have filled in the README.md file, providing all required information.
6pt - Background Research (links and descriptions)
3pt - Representative Image (w/ caption)
9pt - Reflections (1.5pt for each question)
2pt - Conclusion
Analysis Part 1
You have provided correct and effective code for each prompt.
This section contains 4 prompts, each worth about 1.5pt.
Analysis Part 2
You have provided correct and effective code for each prompt.
This section contains 8 code prompts, each worth about 2pt (there is a buffer of 1pt; so
15/16 is still 100% of this section)
Analysis Part 3
You have provided correct and effective code for each prompt.
This section contains 11 code prompts, each worth about 2pt.
Analysis Part 4
You have provided correct and effective code for each prompt.
This section contains 12 code prompts, each worth about 2pt.
Analysis Part 5
You have provided correct and effective code for each prompt.
This section contains 5 code prompts, each worth about 2pt.
iSchool Canvas Support
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!