gravatar

Ronaldo_99

Ronaldo N. Okpara

Recently Published

Plot
Gini Index for credit
Plot
Corrected Header for Gini Index Decision Tree
Plot
Decision Tree using Gain ratio
Plot
Decision Tree
Plot
Non working days comparison
Plot
scatterplot for working days wih color gradient
Scatterplot on count of bike rentals and datetime
converted datetime using Posixct, then created a scatterplot pl2 <- ggplot(bike, aes(x=datetime,y =count))+geom_point(aes(color=temp),alpha=0.2) + scale_color_continuous(low='#55D8CE',high='#FF6E2E') + theme_bw() print(pl2)
Corrgram
another Corr showing correlations blue sowing positive correlations and red showing negative
corrPlot
First time using Corrplot library to show correlations and relationships between columns. # Num only, codes to find correlation btw columns num.cols <-sapply(df, is.numeric) #filter cor.data <- cor(df[,num.cols]) print(cor.data)
Plot of Corruption and Country
Data viz project using data from The Economist to create this scatter plot of relationships between CPI and HDO
Plot using factor
Plot Movies
Rating with movie years
boxplot
Udemy class using boxplot with factor
Plot
wuth aes(fill=..count..)
Udemy Histogram Plot
1st plot of R class using movie rating in x-axis and count on the y-axis. The bins are set to 0.1
Plotly 3-d map
Got a dataset from Kaggle on personality, created a 3D graph representation on Friends, time alone and social events
NBA playoffs 25 win percentage based on Net Rating
we used net rating to see the win percentage
Plot
Radar plot of major stats for NBA MVP race
Plot of Neural Network
This is a plot using 2 independent variables of Acceleration-time and Horsepower trained and tested to learn and predict MPG
zMpg ~ ZAccTime
neural network plot trained with IV of Acceleration time to predict MPG
Neural network
Project of training and testing datasets of Used cars and using Neural networks
Plot for survival rate and Gender
I did a logistic regression on Titanic dataset. We decided to investigate if Gender has significant influence on Survival Rate. I used Dichotomous way and also Contrast coding to change Gender to Male & Female (1, -1). and dummy coding for (1,0) for Survived and Not Survived column