Publications by finnstats
How to Apply AI to Small Data Sets?
The post How to Apply AI to Small Data Sets? appeared first on finnstats. If you are interested to learn more about data science, you can find more articles here finnstats. How to Apply AI to Small Data Sets? Data science and artificial intelligence collaborate to better gather, classify, analyze, and interpret data. But all we constantly hear a...
8580 sym
Machine Learning Impact on your day-to-day life!
The post Machine Learning Impact on your day-to-day life! appeared first on finnstats. If you are interested to learn more about data science, you can find more articles here finnstats. Machine Learning Impact on your day-to-day life, One of the most significant technological advancements since the microprocessor is currently thought to be artifi...
18289 sym 26 img
Not Satisfied with statistical significance (p-value)
The post Not Satisfied with statistical significance (p-value) appeared first on finnstats. If you are interested to learn more about data science, you can find more articles here finnstats. Not Satisfied with statistical significance (p-value), statistically significant is how humans prefer to categorize something. The same argument debated for...
6721 sym 2 img
The Role of Data Science in Preventing Fraud
The post The Role of Data Science in Preventing Fraud appeared first on finnstats. If you are interested to learn more about data science, you can find more articles here finnstats. The Role of Data Science in Preventing Fraud, Since about 15 years ago, data mining has been dubbed the “new oil rush,” yet the techniques for processing the unpr...
9545 sym 2 img
LAB to Delta E conversion in R
The post LAB to Delta E conversion in R appeared first on finnstats. If you are interested to learn more about data science, you can find more articles here finnstats. LAB to Delta E conversion in R, First we need to understand what is Delta E. The “distance” between two colours is represented by a single integer called delta-E. It’s allur...
2886 sym R (4042 sym/5 pcs)
How to Estimate the Efficiency of an Algorithm?
The post How to Estimate the Efficiency of an Algorithm? appeared first on finnstats. If you are interested to learn more about data science, you can find more articles here finnstats. How to Estimate the Efficiency of an Algorithm? Almost all types of technology, including search engines, smartphone apps, video games, and social media, use algor...
8682 sym R (98 sym/1 pcs)
How to plot Bump Chart in R?
The post How to plot Bump Chart in R? appeared first on finnstats. How to plot Bump Chart in R?, A bump chart is a sort of chart that emphasizes the order of the groups rather than the quantity of change by displaying rankings of various groups through time as opposed to absolute numbers. This article shows you how to use ggplot2 to quickly gener...
1456 sym R (918 sym/3 pcs) 2 img
How to Change Background Color in ggplot2?
The post How to Change Background Color in ggplot2? appeared first on finnstats. How to Change Background Color in ggplot2, To alter the background color of different elements in a ggplot2 plot, use the syntax below. p + theme(panel.background = element_rect(fill = 'lightblue', color = 'purple'), panel.grid.major = element_line(color = 'red', li...
1796 sym R (1019 sym/10 pcs) 10 img
ggplot2 Transparent Background Quick Guide
The post ggplot2 Transparent Background Quick Guide appeared first on finnstats. ggplots Transparent Background, the ggplot2 syntax for adding a translucent background to a plot is as follows. p + theme( panel.background = element_rect(fill='transparent'), #transparent panel bg plot.background = element_rect(fill='transparent', ...
1643 sym R (1380 sym/8 pcs) 4 img
Create groups based on the lowest and highest values in R?
The post Create groups based on the lowest and highest values in R? appeared first on finnstats. Create groups based on the lowest and highest values in R, to divide an input vector into n buckets, use the ntile() function in the R dplyr package. The basic syntax used by this function is as follows. ntile(x, n) where: x: Input vector n: Number o...
2604 sym R (688 sym/8 pcs)