Publications by Meghana

Image Classification

24.10.2024

R Markdown Load necessary libraries options(warn = -1) library(imager) ## Loading required package: magrittr ## ## Attaching package: 'imager' ## The following object is masked from 'package:magrittr': ## ## add ## The following objects are masked from 'package:stats': ## ## convolve, spectrum ## The following object is masked fro...

1625 sym R (14526 sym/74 pcs) 3 img

Clustering using US Arrests data

24.10.2024

#Introduction In this analysis, we perform clustering on the USArrests dataset, applying different methods such as k-means clustering and hierarchical clustering. We also visualize the results using PCA and dendrograms to compare the clustering outcomes. # Load and preview the dataset data(USArrests) head(USArrests) ## Murder Assau...

1848 sym R (6756 sym/32 pcs) 5 img

Principal Component Analysis

24.10.2024

Introduction In this analysis, we perform Principal Component Analysis (PCA) on the mtcars dataset, which includes various specifications of different car models. PCA helps to reduce the dimensionality of the dataset while retaining as much variance as possible, allowing for easier visualization and analysis. # Load necessary libraries library...

2261 sym R (6094 sym/16 pcs) 3 img

Cluster Analysis

24.10.2024

Clustering Analysis using k-means, DBSCAN, and Evaluation Metrics in R #1. Introduction The k-means and DBSCAN (Density-Based Spatial Clustering of Applications with Noise) methods are used to do clustering analysis in this tutorial. In order to determine the ideal number of clusters, we also investigate various approaches, including the Elbow ...

2165 sym R (1787 sym/22 pcs) 4 img

Machine learning techniques

05.10.2024

R Markdown Load necessary libraries options(warn = -1) library(imager) library(caret) library(dplyr) library(nnet) # For multinomial logistic regression library(factoextra) library(keras) library(tensorflow) library(pROC) # For ROC analysis options(warn = -1) # Define the path to the image folders base_dir <- “C:/Users/MEGHANA/Downloads/Linn...

9616 sym

Document

04.09.2024

output: html_document ANN Implementation with the Haberman’s Survival Data About the Dataset. The Haberman’s Survival Dataset is a collection of data from a study conducted on the survival of patients who had undergone surgery for breast cancer. The dataset includes 306 instances, with each entry containing three features: the patient’s ...

3161 sym 3 img