februarycyberdays_blogspot_com_2023_09_dataframes_in_r_html

.pdf

School

University of South Florida *

*We aren’t endorsed by this school

Course

4370

Subject

Computer Science

Date

Nov 24, 2024

Type

pdf

Pages

1

Uploaded by AgentSalamander2514

Report
Module 1 assignment Visualization in R R package To leave a comment, click the button below to sign in with Google. SIGN IN WITH GOOGLE Popular posts from this blog September 02, 2023 November 12, 2023 November 01, 2023 Powered by Blogger Theme images by Michael Elkan R Programming Class Data.Frames in R September 06, 2023 Errors: > Names <- c("Jeb", "Donald", "Ted" "Marco", "Carly", "Hillary", "Berine") Error: unexpected string constant in "Names <- c("Jeb", "Donald", "Ted" "Marco"" > Names <- c("Jeb", "Donald", "Ted", "Marco", "Carly", "Hillary", "Berine") > ABC <- c(4, 62, 51, 21, 2, 14, 15) > CBS <- c(12, 75, 43, 19, 1, 21, 19) Error: object 'name' not found > df <- data.frame(Names, ABC, CBS) > df Names ABC CBS 1 Jeb 4 12 2 Donald 62 75 3 Ted 51 43 4 Marco 21 19 5 Carly 2 1 6 Hillary 14 21 7 Berine 15 19 Good Program: > Names <- c("Jeb", "Donald", "Ted", "Marco", "Carly", "Hillary", "Berine") > ABC <- c(4, 62, 51, 21, 2, 14, 15) > CBS <- c(12, 75, 43, 19, 1, 21, 19) > df <- data.frame(Names, ABC, CBS) > df Names ABC CBS 1 Jeb 4 12 2 Donald 62 75 3 Ted 51 43 4 Marco 21 19 5 Carly 2 1 6 Hillary 14 21 7 Berine 15 19 In this data frame compose for module 3 data frames I had numerous errors, stemming from arbitrar y issues related o improper commas or sequencing and I basically had to do over the names column. I reduced the name of the results columns from ABC/CBS poll results t just ABC and CBS I think th is would make the table look better. https://github.com/romarwallen/rw10-R READ MORE Basic Graph Romar Wallen For my module 8 visualization I chose the Dow Jones stock market file since I have very little knowledge of it and I'd like to see what the value are and how the values are affected by time. I used this command, DJFranses <- DJFranses[, -1], to remove READ MORE Package: fprojromarW Title: bmi calculator Version: 0.0.0.1 Authors@R:Romar Wallen Description: The bmi calculator will take 6 values of 1 mass and calculate average body mass index and plot a data table and graph License: `use_mit_license()` Encoding: UTF-8 Roxygen: list(markdown = TRUE) https://github.com/wallenr8/rw10- READ MORE
Discover more documents: Sign up today!
Unlock a world of knowledge! Explore tailored content for a richer learning experience. Here's what you'll get:
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help