Publications by Real R Application
Moving trends in Idhul Fitri 2021 during covid19
Real Trends Mobility Analysis Crafted by Bambangpe Inputs Kebijakan "Dilarang mudik selama lebaran" apa ada hasilnya? Bagaimana real pergerakan manusia selama lebaran 14-17 Mei 2021 saat pandemik Covid19? Analisa ini membandingkan pergerakan manusia di berbagai negara dan kota2 besar di dunia, data diambil dari Apple Maps(https://www.a...
846 sym R (5822 sym/2 pcs) 36 img
Revenue Prediction
1. Read data d <- read.csv("d:/UPWORK-CANADA/StageAnalysis-1.csv") d01 <- d[1:4,-5] head(d01) ## Month Stage Starting Ending ## 1 1-Jan-21 A 1,304 576 ## 2 1-Jan-21 B 2,260 706 ## 3 1-Feb-21 A 1,947 308 ## 4 1-Feb-21 B 2,958 644 2. Clean data str(d01) ## 'data.frame': 4 obs. of 4 variables: ...
121 sym R (3797 sym/19 pcs)
Block chain basic
Block-Chain Basic By Bambangpe Jan 10, 2022 Untuk memahami block chain mari kita buat contoh mainan sederhana blockchain Di sini akan menggunakan tiga transaksi sederhana sebagai konten Programnya ditulis dengan bahasa R Contoh ada 3 transaksi trnsac1 <- "Budi beli mobil dari Bowo" trnsac2 <- "Edi beli rumah dari Rini" trnsac3 <- "Eny beli mo...
1980 sym R (2164 sym/18 pcs) 1 img
Ploting Map
Ploting map Close.Price in each City Use data GeorgeDell25Mile.csv 1.Library library(maps) library(mapdata) library(tidyverse) library(lubridate) library(ggplot2) 2.Read data from directory # Please change with your directory use data GeorgeDell25Mile.csv sg <- read.csv("d:/YOUR-DIRECTORY/GeorgeDell25Mile.csv") head(sg) ## Street.Numbe...
328 sym R (5178 sym/25 pcs) 1 img
Hurdle Model
1.Data preparation Prepare data file <- "sample_person.csv" data <- read.csv(file,header=TRUE) rownames(data) <- data$ID data <- data[,-1] data$htn <- as.factor(data$htn) data$diabetes <- as.factor(data$diabetes) summary(data) # data looks OK ## htn diabetes age LOS ## 0:807 0:695 Min. : 85.00 Min....
86 sym R (7580 sym/4 pcs)
GPA analysis
Predict Classification student's GPA/IPK Preliminary data, taken from the results of student psychological tests from the universities in Indonesia MBTI INTROVERT.I SENSING.S THINKING.T JUDGING.J E.EKSTROVERT N.INTUITION 1 I N F P 93 20 47 40 7 80 2 E S F J 47 80 ...
937 sym R (86999 sym/4 pcs) 5 img
The impact flight of Elon Musk with SpaceX rocket
Analysis the impact of the flight of Elon Musk out of space with the SpaceX rocket. Does it affect Tesla stock? Use Sentiment Twitter scraping database, and Yahoo finance stock price fluctuations TESLA(TSLA) data can be downloaded from Yahoo Finance. Scrapping twitter use @elonmusk", and "@Elonjet" 1.Upload library 1.1 Setup Twitter api_key <- ...
748 sym R (6188 sym/19 pcs) 4 img
Jeff Bezos and Amazone stock
The purpose is looking for correlation of twitter sentiment Jeff Bezos and amazone(AMZN). Amazon(AMZN) data can be downloaded from Yahoo Finance. Scrapping twitter use "#jeffbezos", and "@jeffBezos" 1.Upload library 1.1 Setup Twitter api_key <- "use your api_key" api_secret <- "use your api_secret" access_token <- "use your access_token " a...
644 sym R (6210 sym/19 pcs) 4 img
Sentiment Twitter of Ashraf Ghani
The latest sentiment from Ashraf Ghani, after admitting defeat to the Taliban 1. Library use 1.1 Connect to Twitter Enter the authentication details below Authenticate with Twitter api_key <- "your_api_key" api_secret <- "your_api_secret" access_token <- "your_access_token" access_token_secret <- "your_access_token_secret" 2.Tweet of Ashr...
531 sym R (1365 sym/10 pcs) 2 img
Probabilyti Analysis of PCI
1. Section 7 Table 4 SECTION 7 Hospital course contains variable: Discharge.day, In-Hospital.mortality, Bleeding, Blood.transfusion, Stroke,MI, Stent.thrombosis, Vascular.complications, Re-cath, CABG. Looking for statistical relationship between risk factor to PCI 1.1 Upload library library(dplyr) library(survival) library(survminer) library...
687 sym R (1526 sym/6 pcs) 1 img 1 tbl