The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.

NeutroSurvey

Introduction to neutrosophic interval analysis including metric calculations and MSE estimation for survey data

Authors

Neha Purwar

Kaustav Aditya(https://orcid.org/0000-0003-2457-9494)

Pankaj Das (https://orcid.org/0000-0003-1672-2502)

Bharti

Introduction

The R package is designed for neutrosophic regression type estimator to estimate the Finite Population Parameters. This package provides three different function i.e. compute_all_metrics, inputs and calculate_all_mse_neutrosophic. It provide neutrosophic descriptive statistics. Users can input values for population size as well as sample size for neutrosophic population at run time . In this package we can obtain the mse value for neutrosophic ratio-type estimators, neutrosophic exponential ratio-type estimator and neutrosophic regression type estimator.

Functions in the R package

This package provides specialized tools for analyzing interval-valued data within a neutrosophic statistical framework. Here’s a detailed explanation of each function’s utility:

1. compute_all_metrics()

Utility: This is the foundational function that calculates all essential statistics for neutrosophic interval data.

Key Features:

  1. Calculates mean intervals for both auxiliary and study variables

  2. Computes standard deviations for interval bounds

  3. Determines coefficients of variation (CV) for both variables

  4. Calculates kurtosis values to understand distribution shapes

  5. Estimates correlations between interval variables

Use Cases:

Initial exploratory analysis of interval data

Preparing inputs for more advanced calculations

Understanding data variability and relationships between interval variables

2. calculate_all_mse_neutrosophic()

Utility: Computes five different types of Mean Squared Error (MSE) estimates specifically designed for neutrosophic interval data.

  1. MSE Types Calculated:

  2. Standard MSE: Basic interval MSE estimation

  3. Ratio-adjusted MSE: Incorporates ratio estimation techniques

Kurtosis-adjusted MSE: Accounts for distribution shape through kurtosis

  1. Exponential MSE: Uses exponential weighting factors

  2. Regression MSE: Leverages correlation between variables

Use Cases:

  1. Comparing different estimation methods for interval data

  2. Robust error estimation in neutrosophic statistics

  3. Model selection and evaluation

3. get_user_inputs()

Utility: Provides an interactive way to collect population and sample size parameters.

Key Features:

  1. Guides users through parameter input process

  2. Automatically calculates theta values (1/n - 1/N)

  3. Validates input values to ensure n < N

Use Cases:

  1. Interactive data analysis workflows

  2. Educational demonstrations

  3. Quick parameter estimation

4. format_mse_results()

Utility: Transforms raw MSE results into human-readable formatted output.

Key Features:

  1. Clearly labels each MSE type

  2. Formats numbers for consistent display

  3. Returns ready-to-print output

Use Cases:

  1. Reporting results in publications

  2. Creating readable output for presentations

  3. Quick visual comparison of MSE types

  4. Data Management

5.calculate_pre() The calculate_pre() function computes the Percentage Relative Efficiency of different estimators compared to the regression estimator:

Interpretation:

  1. Values > 100 indicate better efficiency than regression

  2. Values < 100 indicate worse efficiency than regression

  3. The regression estimator (PRE_r) is always 100 by definition

6. japan_neutro Dataset

Utility: Example dataset demonstrating proper input format and typical values.

Key Features:

  1. Real-world interval data structure

  2. Properly formatted columns

  3. Demonstrates expected value ranges

Use Cases:

  1. Package testing and validation

  2. Learning proper data formatting

  3. Benchmarking analyses

Technical Implementation Benefits

Consistent Interface: All functions follow R conventions for parameter naming and return structures

Error Handling: Comprehensive input validation prevents common mistakes

Reproducibility: Deterministic calculations ensure consistent results

Performance: Optimized for medium-sized datasets (hundreds to thousands of observations)

Integration: Works seamlessly with standard R data structures and pipelines

Practical Applications of the package

This package is particularly valuable for:

  1. Researchers working with imprecise measurements or range-based data

  2. Statisticians developing new neutrosophic methods

  3. Data Scientists analyzing interval-censored data

  4. Quality Control applications with tolerance intervals

  5. Environmental Studies with measurement ranges

  6. Economic Forecasting dealing with prediction intervals

The combination of these functions provides a complete workflow from data input through comprehensive analysis to formatted result reporting, all within the specialized domain of neutrosophic interval statistics.

##Example how the package works
library(neutroSurvey)

#data importation
data(japan_neutro)

#computation of metrics
metrics <- compute_all_metrics(japan_neutro)
mse <- calculate_all_mse_neutrosophic(
  0.01, 0.02,
  metrics$mean_interval_Y[1], metrics$mean_interval_Y[2],
  metrics$mean_interval_X[1], metrics$mean_interval_X[2],
  metrics$cv_interval_X[1], metrics$cv_interval_X[2],
  metrics$cv_interval_Y[1], metrics$cv_interval_Y[2],
  metrics$correlation_results[1], metrics$correlation_results[2],
  metrics$kurtosis_interval_X[1], metrics$kurtosis_interval_X[2]
)

cat(format_mse_results(mse))
#> MSE Results:
#>     Standard: [128349024030.9769, 1394450889854.2791]
#>     Ratio-adjusted: [83718052520.2484, 756064577163.6049]
#>     Kurtosis-adjusted: [105852669798.8200, 810195165344.2805]
#>     Exponential: [82711686835.2650, 799364610854.4261]
#>     Regression: [82560082345.5997, 753224304791.5100]

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.