Category: R

Data Visualization with R-Scatter plots

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...

Deep Belief Networks and Autoencoders

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...

Restricted Boltzmann Machine (RBM)

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...

Introduction to Recurrent Neural Networks

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...

Convolutional Neural Networks

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...

Introduction to Deep Learning

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...

error: JAVA_HOME cannot be determined from the Registry

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...

Intro to Tensorflow-Machine Learning with TensorFlow

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.

Error in character string is not in a standard unambiguous format

Working with dates and timestamps is a common task in R programming, data analysis, and statistical modeling. However, many R users encounter the following error when attempting to convert character strings into date-time objects:...

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

Working with dates is a fundamental part of data analysis in R. Whether you’re analyzing financial records, customer transactions, healthcare data, or time series datasets, you’ll frequently need to convert numeric values into proper...