i uploaded the files. subject name is data visualisation and it not R coding but i think it has to be done in R but it is report forVisualisation Project Planinstructions are there in 5116.pdf. the...

1 answer below »
i uploaded the files. subject name is data visualisation and it not R coding but i think it has to be done in R but it is report forVisualisation Project Planinstructions are there in 5116.pdf.
the data source(s) you choose should be large and rich enough to allow for visual presentation of data features from multiple perspectives and at different levels of complexity.
this assignmemnt is same as order 44975, so dataset, visualisation and report has to be different. dont copy from that. you can any software to run the code and for visualtions.but the visualtions has to be rich


Note: The data you use for this project should not come from other courses you have completed or are currently undertaking. Rather, it should be identified specifically for the purposes of this project. Links to some public data sources are posted under Online Resources tab on the course website.
before starting let me know the dataset







P a g e 1 | 2 INFS 5116 – DATA VISUALISATION Visualisation Project Plan (SP5 2020) Due 20 September by 11pm General instructions: • This assignment is worth 30% of your final grade and it is due no later than 11pm on Sunday 20 September. • You will need to submit your assignment via learnonline. • The submitted assignment needs to be a single file in pdf file format. • This assignment will be marked out of 30. Assessment task: The aim of this Visualisation Project Plan is to help you structure your proposed visualisation project and to perform some exploratory analysis of your data. It is an important preliminary work which will form a framework for your final submission. Your Visualisation Project Plan should have the following structure: 1. Introduction (5 marks) Explain the context for the proposed visualisation and the main question(s) you hope to be able to answer using visualisations. One short paragraph (1/4 page) is sufficient. 2. Data Sources (3 marks) Describe the data source(s) that you plan on using for your visualisation project, where it comes from, how it was collected, its size, number and type of variables etc. P a g e 2 | 2 The data source(s) you choose should be large and rich enough to allow for visual presentation of data features from multiple perspectives and at different levels of complexity. Note: 1. The data you use for this project should not come from other courses you have completed or are currently undertaking. Rather, it should be identified specifically for the purposes of this project. Links to some public data sources are posted under Online Resources tab on the course website. 2. Do not include screen dumps from Python or R, or a full data dictionary! Find a way to briefly summarise features of your data. One paragraph (up to 1/2 page) is sufficient. You can use dot points. 3. Project Plan (6 marks) Identify the scope of the proposed visualisation project and possible problems that may occur along the way. Propose some elementary, intermediate and overall level questions that may be addressed using your chosen data set(s). Also briefly outline and justify the principles you propose to take in building your visualisations, including concepts and techniques covered in this course. No more than one and a half page. You can use dot points. 4. Data Preparation (2 marks) Perform and provide a summary of any data preparation tasks that are required before you embark on building your data visualisations, e.g. joining of files and identifying data problems (missing values or data errors). One short paragraph is sufficient. You can use dot points. 5. Exploratory Data Analysis (12 marks) Present results of preliminary exploration of your data, which can include descriptive statistics and graphs aimed at helping you to get to know and understand your data before you begin building your main visualisations. What do your preliminary results suggest in relation to the questions of interest identified in section 3? Comment briefly. Four to six graphics (at least two types) plus one short paragraph is sufficient. You can use dot points if you wish. 6. References (2 marks) Provide a list of all references that you have cited in the project plan.
Answered Same DaySep 19, 2021

Answer To: i uploaded the files. subject name is data visualisation and it not R coding but i think it has to...

Neha answered on Sep 23 2021
150 Votes
65782 - R code/code.R
movies<-read.csv("../input/Movie Ratings.csv",header=TRUE)
str(movies)
summary(movies)
head(movies)
tail(movies)
colnames(movies)<-c('name','genre','criticsratings','audienceratings','budgetmillions','releaseyear')
# To see the types of genre
levels(movies$genre)
head(movies)
movies$releaseyear<-as.factor(movies$releaseyear)
levels(movies$releaseyear)
library(ggplot2)
ggplot(data=movies,aes(x=criticsratings,y=audienceratings)) + geom_point()
r<-ggplot(data=movies,aes(x=criticsratings,y=audienceratings))+geom_point(color='red',size=3)
r
r+geom_point(aes(color='yellow'))
r+geom_point(aes(size=budgetmillions))
ggplot(data=movies,aes(x=budgetmillions))+
geom_histogram(binwidth=10,color='blue',fill='green')
ggplot(data=movies,aes(x=budgetmillions))+
geom_histogram(binwidth=10,color='black',aes(fill=genre))
ggplot(data=movies,aes(x=criticsratings,y=audienceratings))+geom_point(color='red',size=3)+
facet_grid(.~genre
)
d <- ggplot(data=movies,aes(x=budgetmillions))+
geom_density(color='black',stack=10,aes(fill=genre))
d
ggplot(data=movies,aes(x=budgetmillions))+
geom_histogram(binwidth=10,color='black',aes(fill=genre))+
coord_cartesian(ylim=c(0,50))
ggplot(data=movies,aes(x=budgetmillions))+
geom_histogram(binwidth=10,color='black',aes(fill=genre))+
facet_grid(genre~.,scales='free')
t <- ggplot(data=movies,aes(x=criticsratings,y=audienceratings,color=genre))+geom_point(size=3)+
facet_grid(genre~releaseyear)+xlim(0,100)+ylim(0,50)
t
65782 - R code/Movie Ratings.csv
Film,Genre,Rotten Tomatoes Ratings %,Audience Ratings %,Budget (million $),Year of release
(500) Days of Summer ,Comedy,87,81,8,2009
"10,000 B.C.",Adventure,9,44,105,2008
12 Rounds ,Action,30,52,20,2009
127 Hours,Adventure,93,84,18,2010
17 Again ,Comedy,55,70,20,2009
2012,Action,39,63,200,2009
27 Dresses,Comedy,40,71,30,2008
30 Days of Night,Horror,50,57,32,2007
30 Minutes or Less,Comedy,43,48,28,2011
50/50,Comedy,93,93,8,2011
88 Minutes,Drama,5,51,30,2007
A Dangerous Method,Drama,79,89,20,2011
A Nightmare on Elm Street,Horror,13,40,35,2010
A Serious Man ,Drama,89,64,7,2009
A Very Harold and Kumar Christmas,Comedy,72,71,19,2011
Abduction,Action,4,46,35,2011
Across the Universe,Romance,54,84,45,2007
Adventureland ,Comedy,89,56,10,2009
Albert Nobbs,Drama,53,43,8,2011
Alice in Wonderland,Adventure,52,72,200,2010
Alien vs. Predator -- Requiem,Horror,14,37,40,2007
Aliens in the Attic ,Adventure,30,46,45,2009
All About Steve ,Comedy,6,35,15,2009
All Good Things,Drama,33,64,20,2010
Amelia ,Adventure,21,35,40,2009
American Gangster,Thriller,79,87,100,2007
An Education,Drama,94,78,8,2009
Anonymous,Drama,46,66,30,2011
Apollo 18,Horror,23,31,5,2011
Appaloosa,Action,77,55,20,2008
Armored ,Action,40,34,20,2009
Arthur,Comedy,26,49,40,2011
Australia,Adventure,55,69,78,2008
Avatar ,Action,83,92,237,2009
Away We Go ,Comedy,67,74,21,2009
Baby Mama,Comedy,63,59,70,2008
Babylon A.D.,Action,7,32,45,2008
Bad Teacher,Comedy,44,38,20,2011
Bandslam ,Comedy,79,60,20,2009
Bangkok Dangerous,Action,9,33,45,2008
Battle: Los Angeles,Action,35,50,70,2011
"Be Kind, Rewind",Comedy,65,57,20,2008
Beastly,Romance,19,50,17,2011
Bedtime Stories,Comedy,25,63,80,2008
Beginners,Comedy,84,80,4,2010
Beowulf,Action,71,52,150,2007
Beverly Hills Chihuahua,Adventure,41,56,20,2008
Black Swan ,Drama,88,86,13,2010
Blades of Glory,Comedy,69,66,61,2007
Body of Lies,Action,53,65,68,2008
Bride Wars ,Comedy,11,56,30,2009
Bridesmaids,Comedy,90,77,33,2011
Brooklyn's Finest,Action,42,47,17,2009
Brothers ,Drama,61,62,26,2009
Bruno ,Comedy,68,48,42,2009
Buried,Drama,86,63,2,2010
Burlesque,Drama,36,66,55,2010
Burn After Reading,Comedy,78,64,37,2008
Captain America: The First Avenger,Action,78,75,140,2011
Case 39,Horror,23,42,26,2009
Cats & Dogs: The Revenge of Kitty Galore,Action,13,43,85,2010
Cedar Rapids,Comedy,86,61,10,2011
Changeling,Drama,62,84,55,2008
Cirque du Freak: The Vampire's Assistant ,Action,38,50,40,2009
City Island,Comedy,81,77,6,2009
City of Ember,Adventure,52,48,38,2008
Clash of the Titans,Action,28,48,125,2010
Cloverfield,Action,77,67,25,2008
College Road Trip,Adventure,13,56,140,2008
Colombiana,Action,28,55,40,2011
Conan the Barbarian,Action,22,34,90,2011
Confessions of a Shopaholic ,Comedy,24,53,70,2009
Contagion,Thriller,84,63,60,2011
Cop Out,Action,19,45,30,2010
Country Strong,Drama,20,56,15,2010
Couples Retreat ,Comedy,12,47,60,2009
Cowboys and Aliens,Action,44,50,163,2011
Crank: High Voltage ,Action,62,54,13,2009
"Crazy, Stupid, Love",Romance,78,81,50,2011
Cyrus,Comedy,80,51,7,2010
Daddy Day Camp,Comedy,1,63,6,2007
Dance Flick ,Action,17,35,25,2009
Date Night,Comedy,66,58,55,2010
"Daybreakers    ",Action,67,50,20,2009
Dear John,Drama,29,66,25,2010
Death at a Funeral,Comedy,40,48,21,2007
Death Race,Action,42,69,45,2008
"Definitely, Maybe",Comedy,71,72,7,2008
Devil,Horror,52,45,10,2010
Diary of a Wimpy Kid,Comedy,53,49,15,2010
Diary of a Wimpy Kid 2: Rodrick Rules,Comedy,47,63,21,2011
Did You Hear About the Morgans? ,Comedy,12,31,58,2009
Dinner for Schmucks,Comedy,43,47,69,2010
Disaster Movie,Comedy,2,28,20,2008
District 9 ,Action,91,81,30,2009
Disturbia,Thriller,67,75,20,2007
Dolphin Tale,Drama,84,81,37,2011
Don't Be Afraid Of The Dark,Horror,59,37,25,2010
Doomsday,Action,48,47,33,2008
Doubt,Drama,78,75,25,2008
Drag Me to Hell ,Horror,92,61,30,2009
Dragon Wars (aka D-War),Action,27,44,75,2007
Dragonball Evolution ,Action,15,28,30,2009
Dream House,Horror,7,38,50,2011
Drillbit Taylor,Comedy,26,49,40,2008
Drive,Thriller,93,79,15,2011
Drive Angry,Action,45,38,45,2011
Due Date,Comedy,40,56,50,2010
Duplicity ,Romance,64,38,60,2009
Dylan Dog: Dead of Night,Horror,6,28,20,2010
Eagle Eye,Action,27,72,80,2008
Easy A,Comedy,85,75,8,2010
"Eat Pray Love    ",Drama,36,46,60,2010
Enchanted,Comedy,93,80,85,2007
Epic Movie,Comedy,2,38,20,2007
Evan Almighty,Comedy,23,56,175,2007
Everybody's Fine ,Drama,46,55,21,2009
Everything Must Go,Drama,74,53,5,2010
Extract ,Comedy,62,37,8,2009
"Extraordinary Measures    ",Drama,27,55,31,2010
Extremely Loud and Incredibly Close,Drama,47,62,40,2011
Fame,Comedy,25,43,18,2009
Fantastic Four: Rise of the Silver Surfer,Action,35,55,130,2007
Fast and Furious ,Action,28,76,85,2009
Fast Five,Action,78,83,125,2011
"Faster    ",Action,41,50,24,2010
Final Destination 5,Horror,61,56,40,2011
Fired Up! ,Comedy,22,52,20,2009
Fireproof,Drama,40,51,1,2008
First Sunday,Comedy,13,59,13,2008
Fool's Gold,Adventure,11,53,73,2008
Footloose,Drama,71,71,24,2011
For Colored Girls,Drama,33,73,21,2010
Forgetting Sarah Marshall,Comedy,85,75,30,2008
Four Christmases,Comedy,26,52,80,2008
Friday the 13th,Horror,25,52,19,2009
Friends With Benefits,Romance,71,68,35,2011
Fright Night,Horror,75,68,30,2011
From Paris with Love,Action,38,57,52,2010
Funny People ,Comedy,68,58,75,2009
"Furry Vengeance    ",Comedy,8,36,35,2010
G-Force ,Action,22,50,150,2009
G.I. Joe: The Rise of Cobra ,Action,33,62,175,2009
Gamer ,Action,29,43,13,2009
Get Him to the Greek,Comedy,73,63,40,2010
Get Smart,Action,51,73,80,2008
Ghost Rider,Action,28,56,110,2007
Ghost Town,Comedy,85,60,20,2008
Ghosts of Girlfriends Past ,Comedy,27,47,50,2009
Going the Distance,Comedy,53,56,32,2010
Good Luck Chuck,Comedy,3,61,25,2007
Gran Torino,Drama,80,90,33,2008
Green Lantern,Action,27,48,200,2011
Green Zone,Action,53,60,100,2010
Greenberg,Comedy,75,40,0,2010
Grindhouse,Action,82,86,53,2007
"Grown Ups    ",Comedy,10,59,80,2010
Gulliver's Travels,Comedy,21,31,112,2010
Hachiko: A Dog's Story,Drama,58,85,16,2009
Hall Pass,Comedy,35,44,36,2011
Halloween,Horror,26,64,20,2007
Halloween II,Horror,20,45,15,2009
Hancock,Action,40,67,150,2008
Hanna,Action,71,67,30,2011
Hannah Montana: The Movie ,Comedy,44,66,35,2009
Harold and Kumar Escape from Guantanamo Bay,Adventure,54,65,12,2008
Harry Potter and the Deathly Hallows Part 1,Adventure,79,87,125,2010
Harry Potter and the Half-Blood Prince ,Adventure,83,75,250,2009
Harry Potter and the Order of the Phoenix,Adventure,78,82,150,2007
He's Just Not That Into You ,Comedy,42,60,25,2009
Hellboy II: The Golden Army,Action,87,70,83,2008
Hesher,Drama,54,68,7,2010
High School Musical 3: Senior Year,Comedy,65,76,11,2008
Hitman,Action,15,61,18,2007
Horrible Bosses,Comedy,69,72,35,2011
Hostel: Part II,Horror,44,45,10,2007
Hot Tub Time Machine,Adventure,64,57,36,2010
Hotel for Dogs ,Comedy,46,57,35,2009
Hugo,Adventure,93,84,150,2011
I Am Legend,Thriller,69,69,150,2007
I Am Number Four,Thriller,32,57,60,2011
I Love You Beth Cooper ,Comedy,14,38,18,2009
I Love You Phillip Morris,Comedy,71,57,15,2009
"I Love You, Man ",Comedy,83,72,40,2009
I Now Pronounce You Chuck and Larry,Comedy,13,73,85,2007
I'm Still Here,Comedy,52,38,0,2010
Imagine That ,Comedy,38,44,55,2009
Immortals,Action,36,59,75,2011
In the Land of Women,Comedy,43,72,10,2007
In Time,Thriller,38,55,40,2011
Inception,Action,86,93,160,2010
Indiana Jones and the Kingdom of the Crystal Skull,Action,77,59,185,2008
Inglourious Basterds ,Adventure,88,87,70,2009
Inkheart ,Adventure,39,51,60,2008
Insidious,Horror,67,65,2,2008
Into the Wild,Drama,82,90,15,2007
Iron Man,Action,94,91,186,2008
Iron Man 2,Action,74,80,200,2010
It's Complicated ,Comedy,56,63,85,2009
J.Edgar,Drama,42,84,35,2011
Jack and Jill,Comedy,4,59,79,2011
Jane Eyre,Romance,85,77,0,2011
Jennifer's Body ,Comedy,42,37,16,2009
Johnny English Reborn,Comedy,38,55,45,2011
Jonah Hex,Action,13,24,47,2010
Journey to the Center of the Earth,Action,61,55,45,2008
Jumper,Action,16,50,83,2008
Juno,Comedy,94,89,8,2007
Just Go With It,Romance,19,63,80,2011
Just Wright,Comedy,45,58,12,2010
Kick-Ass,Action,76,83,30,2010
Killer...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here