Articles by finnstats

Data Normalization in R

October 17, 2021 | finnstats

Data Normalization in R, data normalization is a vital technique to understand in data pre-processing, and you’ll learn about it in this tutorial. Different numerical data columns may have vastly different ranges, making a... The post Data Normalization in R appeared first on finnstats. [Read more...]

R Packages for Data Science

October 16, 2021 | finnstats

R Packages for Data Science, you’ll learn about the tidyverse library in this lesson, which is a collection of R tools that you can use to manipulate your datasets. You’ll also discover how to... The post R Packages for Data Science appeared first on finnstats. [Read more...]

Shiny Basics-Introduction

October 15, 2021 | finnstats

Shiny Basics, you will learn two standards for constructing a simple Shiny application in this tutorial. You’ll also learn how the program is structured, the components of the user interface, and where to put... The post Shiny Basics-Introduction appeared first on finnstats.
[Read more...]

Boxplot in R Language

October 11, 2021 | finnstats

Boxplot in R, we will demonstrate how to make a box plot in the R programming language. A box plot summarises the distribution of numerical data that has been sorted. If you enjoyed our... The post Boxplot in R Language appeared first on finnstats.
[Read more...]

Line Plots in R-Time Series Data Visualization

October 9, 2021 | finnstats

Line Plot in R, this tutorial will show you how to create simple line plots, adjust the axis labels and colors of plots, and create multiple line graphs. Line plots aid in the visualization... The post Line Plots in R-Time Series Data Visualization appeared first on finnstats.
[Read more...]

Data Visualization with R-Scatter plots

October 8, 2021 | finnstats

Data Visualization with R, In this tutorial, we will describe how to create a scatter plot in the R programming language. “ggplot2” is a fantastic package for making visually appealing data displays. If you... The post Data Visualization with R-Scatter plots appeared first on finnstats.
[Read more...]

Deep Belief Networks and Autoencoders

October 6, 2021 | finnstats

Deep Belief Networks (DBN) and Autoencoders, Let’s take a look at DBNs and how they are created on top of RBMs. If you haven’t read the previous posts yet, you can read them by... The post Deep Belief Networks and Autoencoders appeared first on finnstats. [Read more...]

Restricted Boltzmann Machine (RBM)

October 5, 2021 | finnstats

Restricted Boltzmann Machine is used to detect patterns in data, in an unsupervised way. If you haven’t read the previous posts yet, you can read them by clicking the below links. Introduction to Machine... The post Restricted Boltzmann Machine (RBM) appeared first on finnstats. [Read more...]

Introduction to Recurrent Neural Networks

October 4, 2021 | finnstats

Recurrent Neural Networks, This is a follow-up to one of our previous posts, which you can read here if you missed it. Let’s look into Recurrent Neural Networks and the different types of issues that they... The post Introduction to Recurrent Neural Networks appeared first on finnstats. [Read more...]

Convolutional Neural Networks

October 1, 2021 | finnstats

Convolutional neural networks, Let’s look at a picture classification problem. Assume you have a data set including numerous photographs of planes and cars. And you’d like to create a model that can recognize and... The post Convolutional Neural Networks appeared first on finnstats. [Read more...]

Introduction to Deep Learning

September 30, 2021 | finnstats

Introduction to deep learning, This is a follow-up to one of our previous posts, which you can read here if you missed it. Introduction to Deep Learning Deep learning applications are employed in practically... The post Introduction to Deep Learning appeared first on finnstats. [Read more...]

error: JAVA_HOME cannot be determined from the Registry

September 30, 2021 | finnstats

error: JAVA_HOME cannot be determined from the Registry, This error notice happens most frequently when we try to load the xlsx package. Approach 1: error: JAVA_HOME cannot be determined from the Registry The error... The post error: JAVA_HOME cannot be determined from the Registry appeared first on finnstats. [Read more...]

Introduction to Machine Learning with TensorFlow

September 29, 2021 | finnstats

The Google Brain team created TensorFlow, an open-source library. It was designed for activities that need a lot of numerical computations. TensorFlow was designed specifically for machine learning and deep learning networks. TensorFlow ran faster than python code thanks to the use of C/C++ as a backend. The post ...
[Read more...]

Error in as.Date.numeric(13131) : ‘origin’ must be supplied

September 28, 2021 | finnstats

Error in as.Date.numeric(13131) : ‘origin’ must be supplied, This article will show you how to handle the error message in as. Date.numeric(X). Approach 1: Error in as.Date.numeric(13131) : ‘origin’ must be supplied This example... The post Error in as.Date.numeric(13131) : ‘origin’ must be supplied appeared first ... [Read more...]

How to Remove Outliers in R

September 27, 2021 | finnstats

How to Remove Outliers in R?, What does outlier mean? It’s an observation that differs significantly from the rest of the data set’s values. Outliers can skew the results by providing false information. We’ll... The post How to Remove Outliers in R appeared first on finnstats.
[Read more...]

Error in x[6, ]: subscript out of bounds

September 24, 2021 | finnstats

subscript out of bounds, Subscript out of limits in R: How to Fix? The following is an example of a typical R error: Error in x[6, ] : subscript out of bounds When you try to access a column or row in a matrix that doesn't exist, you'll get this error. The ... [Read more...]

How to Set Axis Limits in ggplot2?

September 23, 2021 | finnstats

How to Set Axis Limits in ggplot2? Setting the axis bounds on a plot using ggplot2 is a common task. Using the following functions, you can accomplish so quickly. The post How to Set Axis Limits in ggplot2? appeared first on finnstats.
[Read more...]

How to Rotate Axis Labels in ggplot2?

September 22, 2021 | finnstats

How to Rotate Axis Labels in ggplot2?. Axis labels on graphs must occasionally be rotated. Let's look at how to rotate the labels on the axes in a ggplot2 plot. Let's begin by creating a basic data frame and the plot. The post How to Rotate Axis Labels in ggplot2? ...
[Read more...]

Side-by-Side plots with ggplot2

September 21, 2021 | finnstats

How to Create Side-by-Side Plots in ggplot2?. Using the ggplot2 package in R, you can often construct two plots side by side. Fortunately, with the patchwork and gridExtra packages, this is simple to accomplish. The post Side-by-Side plots with ggplot2 appeared first on finnstats.
[Read more...]
1 6 7 8 9 10 14

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)