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.
Introduction to neutrosophic interval analysis including metric calculations and MSE estimation for survey data
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.
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:
Calculates mean intervals for both auxiliary and study variables
Computes standard deviations for interval bounds
Determines coefficients of variation (CV) for both variables
Calculates kurtosis values to understand distribution shapes
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.
MSE Types Calculated:
Standard MSE: Basic interval MSE estimation
Ratio-adjusted MSE: Incorporates ratio estimation techniques
Kurtosis-adjusted MSE: Accounts for distribution shape through kurtosis
Exponential MSE: Uses exponential weighting factors
Regression MSE: Leverages correlation between variables
Use Cases:
Comparing different estimation methods for interval data
Robust error estimation in neutrosophic statistics
Model selection and evaluation
3. get_user_inputs()
Utility: Provides an interactive way to collect population and sample size parameters.
Key Features:
Guides users through parameter input process
Automatically calculates theta values (1/n - 1/N)
Validates input values to ensure n < N
Use Cases:
Interactive data analysis workflows
Educational demonstrations
Quick parameter estimation
4. format_mse_results()
Utility: Transforms raw MSE results into human-readable formatted output.
Key Features:
Clearly labels each MSE type
Formats numbers for consistent display
Returns ready-to-print output
Use Cases:
Reporting results in publications
Creating readable output for presentations
Quick visual comparison of MSE types
Data Management
5.calculate_pre() The calculate_pre()
function computes the Percentage Relative Efficiency of different
estimators compared to the regression estimator:
Interpretation:
Values > 100 indicate better efficiency than regression
Values < 100 indicate worse efficiency than regression
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:
Real-world interval data structure
Properly formatted columns
Demonstrates expected value ranges
Use Cases:
Package testing and validation
Learning proper data formatting
Benchmarking analyses
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
This package is particularly valuable for:
Researchers working with imprecise measurements or range-based data
Statisticians developing new neutrosophic methods
Data Scientists analyzing interval-censored data
Quality Control applications with tolerance intervals
Environmental Studies with measurement ranges
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.