NonAttentionLevel {ImportanceIndice}R Documentation

Estimates levels of non-attention.

Description

Functions to estimate E.S., income gain (I.G.), percentage of I.G.=P.I.G., and non-attention level (N.A.L.) of each S.S. per L.S., and their partial sum of I.G. and P.I.G. of S.S. inside each L.S., and the total of I.G. and P.I.G. on the productive system.

Usage

NonAttentionLevel(EffectivenessOfSolution,
LossProduction,
Id,
SafetyMargin=1.25,
Verbose=TRUE)

Arguments

EffectivenessOfSolution

Output generated by the function 'EffectivenessOfSolution'

LossProduction

Output generated by the function 'LossProduction'

Id

Logical vector indicating the lines of the 'EffectivenessOfSolution' that are relevant. Output generated by the function SelectEffectivenessOfSolution

SafetyMargin

Safety Margin (Default=1.25)

Verbose

Logical value (TRUE/FALSE). TRUE displays the results of the analysis.

Value

The function returns levels of non-attention.

Author(s)

Germano Leao Demolin-Leite (Instituto de Ciencias Agrarias da UFMG)
Alcinei Mistico Azevedo (Instituto de Ciencias Agrarias da UFMG)

See Also

EffectivenessOfSolution , NonAttentionLevel , LossSource

Examples

library(ImportanceIndice)
data("DataLossSource")
data("DataSolutionSource")
data("DataProduction")
data("DataNumberSamples")

Distribution_LossSource(DataLossSource)
Distribution_SolutionSource(DataSolutionSource)

#################################################
###################################################



LS<-LossSource(DataLoss = DataLossSource,DataProd = DataProduction)
LS

LP<-LossProduction(Data=DataLossSource,Prod = DataProduction,
                 Evaluation=DataNumberSamples,
                 SegurityMargen=0.75,MaximumToleranceOfLossFruits=1)
LP


ES<-EffectivenessOfSolution(DataLossSource=DataLossSource,
                          DataSolutionSource=DataSolutionSource,Production =DataProduction)
ES




id<-SelectEffectivenessOfSolution(ES)
id<-c(TRUE , TRUE,  TRUE , FALSE,  TRUE)


SS<-SolutionSource(SolutionData = DataSolutionSource,
                 EffectivenessOfSolution = ES,Production = DataProduction,Id = id)
SS


NAL<-NonAttentionLevel(EffectivenessOfSolution = ES,LossProduction = LP,Id = id,Verbose=TRUE)
NAL

[Package ImportanceIndice version 0.0.2 Index]