Predicting next number in a sequence with Scikit-Learn in Python

By Snigdha Ranjith

In this post, we will see how to predict the next set of numbers in a sequence with Scikit-learn in Python. We are using linear regression to solve this problem. To put things simp.... Read More

Simple neural network in JavaScript using TensorFlow.js

By Faruque Ahamed Mollick

In this tutorial, I will let you know how to create your first simple artificial neural network using the JavaScript TensorFlow.js library. The main purpose of this article is to g.... Read More

how to create dataframe in Python using pandas

By Avinash Kachare

In this tutorial, we learn how to create a dataframe in Python using pandas, for this, we have to learn what is Pandas data frame. In this, we can write a program with the help of .... Read More

Slice Notation in Python

By Shriprakash Tiwari

In this tutorial, we are going to learn, how to perform slice notation in Python. In slicing, we have forward slicing as well as backward slicing. Forward slicing starts from ̵.... Read More

How to Find Common Elements Between Two Arrays in Java?

By Shakshi Parekh

Before we go forward, we will learn about what is an array and how we can define it in java. Later we will see a program on how to Find Common Elements Between Two Arrays in Java. .... Read More

How to find unique elements in an array in Java

By Shakshi Parekh

So firstly we will learn about what is an array and how we can define it in java. Later we will see a program on how to find unique elements in an array in Java. An array is a data.... Read More

How to extract dates from a text file using Python

By Venkat Kumar

In this article, we will discuss how to extract dates from a text file using Python. The text may contain several thousand lines and you might need to extract the dates alone. We w.... Read More

How to make a file read only using Python

By Venkat Kumar

In this article, we will discuss how to modify the permissions of a file and make a file read-only using Python. You may need this for automating daily activities using Python scri.... Read More

Related Posts