Publications by Chhiring Lama

Assignment5

22.02.2024

Load the required Library library(tidyr) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union Read data from Github original_df <- read.csv("https://raw.githubuser...

1003 sym R (3613 sym/19 pcs)

Project 1

17.02.2024

Project 1 Introduction In this project, the primary focus was on wrangling chess tournament data using regular expressions. The initial step involved pulling the raw data from GitHub, where the data was stored. Following this, the data underwent a series of transformations to ensure it was in a usable format. Notable attention was paid to extr...

1806 sym Python (7427 sym/27 pcs)

Regular Expression and String manipulations in R

07.02.2024

## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.3 ✔ readr 2.1.4 ## ✔ forcats 1.0.0 ✔ stringr 1.5.0 ## ✔ ggplot2 3.4.3 ✔ tibble 3.2.1 ## ✔ lubridate 1.9.3 ✔ tidyr 1.3.0 ## ✔ purrr ...

2532 sym

Connect to MySQL Database

05.02.2024

Load Libraries #library(tidyverse) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union library(DBI) library(RMySQL) ## Warning: package 'RMySQL' was built under ...

1141 sym R (1305 sym/13 pcs)

Assignment 1 Data 607

31.01.2024

Load libraries library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.3 ✔ readr 2.1.4 ## ✔ forcats 1.0.0 ✔ stringr 1.5.0 ## ✔ ggplot2 3.4.3 ✔ tibble 3.2.1 ## ✔ lubridate 1.9.3 ✔ ...

1060 sym R (5748 sym/18 pcs) 2 img

CUNY SPS R bridge Final project

27.07.2023

CUNY SPS R Bridge Final Project Does higher units of alcohol conscoumption lead to a higher number of sexual transmission disease? mydata <- read.csv("abortion.csv") head(mydata, n = 10) Data Exploration: This should include summary statistics, means, medians, quartiles, or any other relevant information about the data set. Please include some c...

2168 sym R (7700 sym/30 pcs) 6 img

HW_2

19.07.2023

R Markdown The data is about the health and income outcomes for 184 countries from 1960 to 2016. # read csv file and assign it to mydata mydata <- read.csv("gapminder.csv") # By default the head() function shows 6 rows but we can specify the desired number of rows with n argument head(mydata, n = 10, ) use summary function to gain an overview ...

601 sym Python (3553 sym/15 pcs)

First R HW

13.07.2023

R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within...

630 sym Python (1488 sym/11 pcs)