Quantcast
Channel: ListenData
Browsing all 97 articles
Browse latest View live

SAS: INTERSECT Operator in PROC SQL

This tutorial explains how to use the INTERSECT operator in PROC SQL in SAS, along with examples.In PROC SQL, the INTERSECT operator is used to find the common records that exist in tables. The basic...

View Article


Calculating Quartiles in SAS

This tutorial explains how to calculate quartiles in SAS, along with examples.The PROC UNIVARIATE procedure is used to calculate quartiles in SAS.Calculating Quartiles for a VariableThe following SAS...

View Article


How to Extract Date from DateTime in SAS

This tutorial explains how to convert datetime to date in SAS, along with examples.Let's say you have a sample SAS dataset containing datetime values. data mydata; input date anydtdtm.; datalines;...

View Article

How to Use Not Equal To Operator in SAS

This tutorial explains various ways to use the not equal to condition in SAS, along with examples.1. ^= OperatorIn SAS, ^= operator means "not equal to". In this example, we are telling SAS to filter...

View Article

SAS: Using UPDATE in PROC SQL

In PROC SQL, the UPDATE statement is used to modify existing values of columns in a table.The syntax of the UPDATE statement is as follows : PROC SQL; UPDATE table_name SET column1 = value1, column2 =...

View Article


Coefficient of Variation in R (with Examples)

This tutorial explains how to calculate the coefficient of variation (CV) in R, along with examples.The coefficient of variation explains how much data deviates from the average. It is calculated by...

View Article

How to Open Chrome using Selenium in Python

This tutorial explains the steps to open Google Chrome using Selenium in Python.To read this article in full, please click hereThis post appeared first on ListenData

View Article

How to Use Selenium in R

This tutorial explains how to use selenium in R, along with examples.Selenium is mainly used for tasks like scraping data from websites and testing parts of a website.R Packages for SeleniumIn R, we...

View Article


4 Ways to Use ChatGPT API in Python

In this tutorial, we will explain how to use ChatGPT API in Python, along with examples.Steps to Access ChatGPT APIPlease follow the steps below to access the ChatGPT API.Visit the OpenAI Platform and...

View Article


tibble vs. data.frame (with Examples)

This tutorial explains the difference between tibble() and data.frame(), along with several examples.1. When you print a tibble, it doesn't show all the data. Whereas, data frame prints the complete...

View Article

How to Build a Website Yourself for Free

In this tutorial, we will show you how to build your own website for free in minutes.PrerequisitesNo prior knowledge of HTML, CSS and JS is required. Only logical reasoning is needed to update the...

View Article

How to Use Gemini in Python

In this tutorial, you will learn how to use Google's Gemini AI model in Python.Steps to Access Gemini APIFollow the steps below to access the Gemini API and then use it in python.Visit Google AI Studio...

View Article

Image may be NSFW.
Clik here to view.

Build Logistic Regression Model with Free Excel Add-In

This tutorial explains how to train and test a logistic regression model in Excel with one click using an add-in.  Download Excel Add-InThis add-in is 100% free and can run on any version of MS Excel...

View Article


Image may be NSFW.
Clik here to view.

How to Create Logistic Regression Model Using Excel

This tutorial explains how to build logistic regression models in Excel, along with examples.Logistic regression is a statistical technique used for binary classification tasks. It is used when...

View Article

Image may be NSFW.
Clik here to view.

How to Create ROC Curve in Excel

This tutorial explains how to create a ROC curve in MS Excel.Please make sure that you have predicted probabilities and dependent variable columns in Excel as shown in the image below.To read this...

View Article


How to Calculate Confusion Matrix in Excel

This tutorial explains how to compute confusion matrix in Excel, along with examples.Please ensure you have the following two columns in Excel:Binary Dependent Variable (0 / 1)Predicted...

View Article

Image may be NSFW.
Clik here to view.

How to Import Dividend Data into Excel

In this post, we will discuss how to download dividend information for stocks in Excel for free.  Excel Dividend Data DownloaderFeaturesThis excel macro returns the following key metrics related to...

View Article


Image may be NSFW.
Clik here to view.

How to Import Dividend Data into Google Sheets

In this post, we will discuss how to pull stock dividend information into Google Sheets for free.In Google Sheets, we can use the GOOGLEFINANCE function to get stock prices but for detailed dividend...

View Article

Image may be NSFW.
Clik here to view.

How to Manage WordPress from R

This tutorial explains how to use R to interact with WordPress. WordPress is the most popular blogging platform that allows users to create and manage websites, blogs etc.I developed an R package named...

View Article

Image may be NSFW.
Clik here to view.

How to Automate WordPress using Python

This tutorial explains how to use Python to automate tasks in WordPress. It includes various functions to perform tasks such as creating, extracting, updating and deleting WordPress posts, pages and...

View Article
Browsing all 97 articles
Browse latest View live