Publications by USER
Document
setwd(“C:/Users/USER/OneDrive/Desktop/Data Science Resources/R studio/Ongoing projects/West Pokot”) getwd() #A. DESCRIPTION AND SUMMARY OF WET SEASON DATA # Import the wet season quadrat data set library(readxl) Quadrat_Wet <- read_excel(“WP_Vegetation.xlsx”, sheet = 3) View (Quadrat_Wet) colnames(Quadrat_Wet) Subsetting the grasses da...
58034 sym
Document
setwd("C:/Users/USER/OneDrive/Desktop/Data Science Resources/R studio/Ongoing projects/West Pokot") getwd() ## [1] "C:/Users/USER/OneDrive/Desktop/Data Science Resources/R studio/Ongoing projects/West Pokot" #A. DESCRIPTION AND SUMMARY OF WET SEASON DATA # Import the wet season quadrat data set library(readxl) Quadrat_Wet <- read_excel("WP_Vege...
664 sym R (236495 sym/659 pcs) 2 img
Tema Seminar 6
date_txt <- read.table(file = "TemaSeminarVol.txt", header = T , sep = "\t") View(date_txt) date_actiuni <- read.csv(file = "TemaVolume.csv", header = T, sep = ",") View(date_actiuni) fix(date_actiuni) date_actiuni_comune<-data.frame(date_actiuni) View(date_actiuni_comune) #statistici descriptive summary(date_actiuni_comune) ## Dat...
57 sym R (9341 sym/49 pcs) 5 img
r basic
#loading data sets mtcars #######QUESTION 1 library(tidyverse) ## Warning: package 'tidyverse' was built under R version 4.3.2 ## Warning: package 'ggplot2' was built under R version 4.3.2 ## Warning: package 'tibble' was built under R version 4.3.2 ## Warning: package 'tidyr' was built under R version 4.3.2 ## Warning: package 'readr' was built...
49 sym R (10559 sym/43 pcs) 3 img
Assignment1
#1. Do the following calculations in R a<-(5*4)^(4*5)-56 a ## [1] 1.048576e+26 b<-23-1*(8-12) b ## [1] 27 c<-56/8*(3+4) c ## [1] 49 d<-45-5*8+(8+9) d ## [1] 22 #2. Create the following vectors a, b, and c a<-c(2,5,6,7) a ## [1] 2 5 6 7 b<-c(1,0,9,8) b ## [1] 1 0 9 8 c<-c(6,5,8,3) c ## [1] 6 5 8 3 #3. Matrix mat<-matrix(c(a,b,c), ...
27 sym
Document
787878-989899 ## [1] -202021 09009+2222 ## [1] 11231 999-1 ## [1] 998 8%%7 ## [1] 1 99%%9 ## [1] 0 78%%9 ## [1] 6 x=3 x<-88 y<-3 z<-x+y z ## [1] 91 x+y ## [1] 91...
19 sym
basic r Description
# VECTORS # Create gender variable getwd() ## [1] "C:/Users/USER/Desktop/cchub kmeans" ge_var <- rep(c("males", "female"), times = 3) # Alternating genders print("Gender Variable:") ## [1] "Gender Variable:" print(ge_var) # Interpretation: Created a gender variable with alternating values of males and females. ## [1] "males" "female" "males" ...
111 sym Python (11198 sym/108 pcs)
Document
About Data Analysis Report This RMarkdown file contains the report of the data analysis done for the project on building and deploying a stroke prediction model in R. It contains analysis such as data exploration, summary statistics and building the prediction models. The final report was completed on Tue Jan 2 03:38:14 2024. Data Description: ...
1097 sym R (4954 sym/24 pcs) 4 img 3 tbl
Document
library(openair) library(dplyr) ## ## 載入套件:'dplyr' ## 下列物件被遮斷自 'package:stats': ## ## filter, lag ## 下列物件被遮斷自 'package:base': ## ## intersect, setdiff, setequal, union library(readxl) library(C50) air_county_data = read_xlsx("C:/Users/USER/Desktop/NTHU_Master_degree1/NTHU_Big_Data/空汙...
16 sym R (4951 sym/11 pcs) 2 img
map
# 載入莫名其妙套件 library(sf) ## Linking to GEOS 3.9.3, GDAL 3.5.2, PROJ 8.2.1; sf_use_s2() is TRUE library(readr) library(ggplot2) library(readxl) library(dplyr) ## ## 載入套件:'dplyr' ## 下列物件被遮斷自 'package:stats': ## ## filter, lag ## 下列物件被遮斷自 'package:base': ## ## intersect, setdi...
29 sym R (4903 sym/21 pcs) 5 img