library(rsconnect)
library(shiny)
##
## Attaching package: 'shiny'
## The following object is masked from 'package:rsconnect':
##
## serverInfo
library(shinydashboard)
##
## Attaching package: 'shinydashboard'
## The following object is masked from 'package:graphics':
##
## box
library(plotly)
## Loading required package: ggplot2
##
## Attaching package: 'plotly'
## The following object is masked from 'package:ggplot2':
##
## last_plot
## The following object is masked from 'package:stats':
##
## filter
## The following object is masked from 'package:graphics':
##
## layout
library(ggplot2)
library(flexdashboard)
##
## Attaching package: 'flexdashboard'
## The following objects are masked from 'package:shinydashboard':
##
## renderValueBox, valueBox, valueBoxOutput
I am Alex and very new to R. I am learning it as part of my studies at UTS, where I’m doing a Masters in Data Science and Innovation. I think I was in denial about how hard the ‘data science’ bit was going to be … which is why I am at R-ladies.
#I really should put up a blue post it note, because I can't download the soap data.I will use some election data instead. I know this means I am breaking the rules. C'est la vie.
Election_results <-read.csv('elec_result_PC.csv')
View(Election_results)
#now that's a plot I don't understand
plot(Election_results)