Está en la página 1de 9

UNIVERSIDAD UTP

AUDITORIA DE SISTEMAS
LABORATORIO 3C

2022-01-01

Msc.Ing.Giovanni Barrero Ortiz - gbarreroo@hotmail.com


Tabla de contenidos

OBJETIVO DEL LABORATORIO. ......................................................................................................................... 3


PROBLEMA ................................................................................................................................................................ 3
PROCEDIMIENTO .................................................................................................................................................... 3
CONCLUSIONES ....................................................................................................................................................... 9

Información del documento


Nombre del Auditoria de Sistemas
proyecto
Preparado Ing. Giovanni Barrero Versión del documento 0.1
por No:
Título: Manual Laboratorio 3C. Fecha de la versión del 01/01/2022
documento:
Revisado Fecha de revisión:
por:

Lista de distribución
De Fecha Teléfono/Fax/Email

Para Acción* Fecha Teléfono/Fax/Email


vencimient
o

* Acciones: Aprobar, Revisar, Informar, Archivar, Acción Requerida, Atendido Reunión,


Otro (por favor especifique)

Historia de versión del documento

Msc.Ing.Giovanni Barrero Ortiz - gbarreroo@hotmail.com


Fecha de
Nro. Versión Revisado
versión por Descripción Nombre de archivo

OBJETIVO DEL LABORATORIO.

El objetivo de este laboratorio es el de desarrollar habilidades en el análisis de datos en


ambientes de auditoría. Para esto se hará una aplicación de análisis de datos utilizando las
funcionalidades de RStudio.

PROBLEMA

La empresa Z , realizo una auditoria en su area de sistemas y realizo 592 evaluaciones de tareas
, procesos , roles , activos y mas , a cada uno se le evaluo en 6 aspectos o variables de
investigacion (controles , seguridad , calidad , alineamiento , documentacion y gestion) , estas
variables se les cuantifico con una calificacion de 1 a 100 (1-45 bajo , 46-69 medio , 70-100 alto)
en cuanto al nivel de riesgo. Se quiere que los auditores realicen un analisis de estos datos , que
los grafiquen y hagan un reporte con su analisis por area y hagan una presentacion a la gerencia
general.

PROCEDIMIENTO

Se carga la base de datos:

<pantallazo - analisis>

Se carga la libreria de graficos:

<pantallazo>
Library(ggplot2)

ggplot(CALIFICAT17A, aes(x = AREA, y = RIESGO, fill = RIESGO)) +


geom_bar(stat = "identity", fill = "#00abff") +
coord_flip() +
labs(title="RIESGOS POR AREA")

<PANTALLAZO - ANALISIS>

Msc.Ing.Giovanni Barrero Ortiz - gbarreroo@hotmail.com


ggplot(CALIFICAT17A, aes(x = AREA, y = RIESGO, fill = RIESGO)) +
geom_bar(stat = "identity") +
coord_flip() +
labs(title="RIESGOS POR AREA")

<PANTALLAZO - ANALISIS>

library(dplyr)
library(tidyr)

s1 = CALIFICAT17A %>% group_by(AREA) %>% summarize( CONTROLES =


mean(CONTROLES))

data_long4 = gather(s1,key = AREA, value = CONTROLES)

ggplot(data_long4,aes(AREA,CONTROLES,fill = CONTROLES), label =CONTROL) +


geom_bar(stat = "identity",position = "dodge") +
ggtitle("CONTROLES POR AREA") + geom_text(aes(label=CONTROLES))

<PANTALLAZO - ANALISIS>

s1 = CALIFICAT17A %>% group_by(AREA) %>% summarize( SEGURIDAD =


mean(SEGURIDAD))

data_long4 = gather(s1,key = AREA, value = SEGURIDAD)

ggplot(data_long4,aes(AREA,SEGURIDAD,fill = SEGURIDAD)) +
geom_bar(stat = "identity",position = "dodge") +
ggtitle("SEGURIDAD POR AREA") + geom_text(aes(label=SEGURIDAD))

<PANTALLAZO - ANALISIS>

s1 = CALIFICAT17A %>% group_by(AREA) %>% summarize( CALIDAD = mean(CALIDAD))

data_long4 = gather(s1,key = AREA, value = CALIDAD)

ggplot(data_long4,aes(AREA,CALIDAD,fill = CALIDAD)) +
geom_bar(stat = "identity",position = "dodge") +
ggtitle("CALIDAD POR AREA") + geom_text(aes(label=CALIDAD))

Msc.Ing.Giovanni Barrero Ortiz - gbarreroo@hotmail.com


<PANTALLAZO-ANALISIS>

s1 = CALIFICAT17A %>% group_by(AREA) %>% summarize( ALINEAMIENTO =


mean(ALINEAMIENTO))

data_long4 = gather(s1,key = AREA, value = ALINEAMIENTO)

ggplot(data_long4,aes(AREA, ALINEAMIENTO,fill = ALINEAMIENTO)) +


geom_bar(stat = "identity",position = "dodge") +
ggtitle("ALINEAMIENTO POR AREA") + geom_text(aes(label=ALINEAMIENTO))

<PANTALLAZO - ANALISIS>

s1 = CALIFICAT17A %>% group_by(AREA) %>% summarize( DOCUMENTACION =


mean(DOCUMENTACION))

data_long4 = gather(s1,key = AREA, value = DOCUMENTACION)

ggplot(data_long4,aes(AREA, DOCUMENTACION,fill = DOCUMENTACION)) +


geom_bar(stat = "identity",position = "dodge") +
ggtitle("DOCUMENTACION POR AREA") + geom_text(aes(label=DOCUMENTACION))

<PANTALLAZO - ANALISIS>

s1 = CALIFICAT17A %>% group_by(AREA) %>% summarize( COMPLIANCE =


mean(COMPLIANCE))

data_long4 = gather(s1,key = AREA, value = COMPLIANCE)

ggplot(data_long4,aes(AREA, COMPLIANCE,fill = COMPLIANCE)) +


geom_bar(stat = "identity",position = "dodge") +
ggtitle("COMPLIANCE POR AREA") + geom_text(aes(label=COMPLIANCE))

<PANTALLAZO - ANALISIS>

s1 = CALIFICAT17A %>% group_by(AREA) %>% summarize( GESTION = mean(GESTION))

Msc.Ing.Giovanni Barrero Ortiz - gbarreroo@hotmail.com


data_long4 = gather(s1,key = AREA, value = GESTION)

ggplot(data_long4,aes(AREA, GESTION,fill = GESTION)) +


geom_bar(stat = "identity",position = "dodge") +
ggtitle("GESTION POR AREA") + geom_text(aes(label=GESTION))

<PANTALLAZO - ANALISIS>

ggplot(CALIFICAT17A, aes(fill=RIESGO, y=RIESGO, x=AREA)) +


geom_bar( stat="identity")

<PANTALLAZO - ANALISIS>
ANALISIS

promedios = CALIFICAT17A %>% group_by(AREA) %>%


summarise(CONTROLES = mean(CONTROLES) , SEGURIDAD = mean(SEGURIDAD),
CALIDAD = mean(CALIDAD), ALINEAMIENTO = mean(ALINEAMIENTO), DOCUMENTACION
= mean(DOCUMENTACION), COMPLIANCE = mean(COMPLIANCE), GESTION =
mean(GESTION))

promedios

<PANTALLAZO - ANALISIS>

Se calculan los promedios generales por variable de medición en todas las áreas.

s1 = CALIFICAT17A %>% summarize( CONTROLES = mean(CONTROLES) , SEGURIDAD =


mean(SEGURIDAD), CALIDAD = mean(CALIDAD), ALINEAMIENTO =
mean(ALINEAMIENTO), DOCUMENTACION = mean(DOCUMENTACION), COMPLIANCE =
mean(COMPLIANCE), GESTION = mean(GESTION))

s1

<PANTALLAZO - ANALISIS>

se calculan los promedios de calificaciones por área para cada variable de medición.

s1 = promedios %>% group_by(AREA) %>% summarize( promedio =


(CONTROLES+SEGURIDAD+CALIDAD+ALINEAMIENTO+DOCUMENTACION+COMPLIANC
E+GESTION)/7)

Msc.Ing.Giovanni Barrero Ortiz - gbarreroo@hotmail.com


ggplot(s1, aes(fill=AREA, y=promedio, x=AREA)) +
geom_bar( stat="identity") + ggtitle("PROMEDIOS GENERALES POR AREA") +
geom_text(aes(label=promedio))

<pantallazo - analisis>

CALCULO DE CALIFICACIONS DE VARIABLES POR AREA

areas <-
c("CONTROLES","SEGURIDAD","CALIDAD","ALINEAMIENTO","DOCUMENTACION","COMP
LIANCE","GESTION")

areasf <- factor(areas)

cloudv <- c(77,56.4,72.4,42.4,42.4,79.2,78.8)

df <- data.frame(areasf , cloudv)

ggplot(df, aes(fill=areasf, y=cloudv, x=areasf)) +


geom_bar( stat="identity")

<pantallazo - analisis>

comunicacionesv <- c(71.2 , 48.8 , 66.7 , 32.1 , 32.1 , 71.3 , 71.3)

df <- data.frame(areasf , comunicacionesv)

ggplot(df, aes(fill=areasf, y=comunicacionesv, x=areasf)) +


geom_bar( stat="identity")

ggplot(df, aes(fill=areasf, y=comunicacionesv, x=areasf)) +


geom_bar( stat="identity")

<pantallazo analisis>

datacenterv <- c(71.7 , 53.2 , 68.9 , 39.2 , 39.2 , 73.8 , 73.8)

Msc.Ing.Giovanni Barrero Ortiz - gbarreroo@hotmail.com


df <- data.frame(areasf , datacenterv)

ggplot(df, aes(fill=areasf, y=datacenterv, x=areasf)) +


geom_bar( stat="identity")

ggplot(df, aes(fill=areasf, y=datacenterv, x=areasf)) +


geom_bar( stat="identity")

<pantallazo - analisis>

erpv <- c(73.4 , 53.3 , 70.1 , 39.3 , 39.3 , 76.5 , 76.5)

df <- data.frame(areasf , erpv)

ggplot(df, aes(fill=areasf, y=erpv, x=areasf)) +


geom_bar( stat="identity")

ggplot(df, aes(fill=areasf, y=erpv, x=areasf)) +


geom_bar( stat="identity")

<pantallazo - analisis>

operacionesv <- c(76.3 , 56.0 , 72.8 , 40.2 , 40.2 , 79.4 , 79.4)

df <- data.frame(areasf , operacionesv)

ggplot(df, aes(fill=areasf, y=operacionesv, x=areasf)) +


geom_bar( stat="identity")

ggplot(df, aes(fill=areasf, y=operacionesv, x=areasf)) +


geom_bar( stat="identity")

<pantallazo - analisis>

softwarefactv <- c(77.0 , 54.5 , 72.3 , 36.8 , 36.8 , 78.8 , 78.8)

df <- data.frame(areasf , softwarefactv)

Msc.Ing.Giovanni Barrero Ortiz - gbarreroo@hotmail.com


ggplot(df, aes(fill=areasf, y= softwarefactv, x=areasf)) +
geom_bar( stat="identity")

ggplot(df, aes(fill=areasf, y= softwarefactv, x=areasf)) +


geom_bar( stat="identity")

<pantallazo - analisis>

soportev <- c(77.8 , 57.3 , 73.5 , 42.2 , 42.2 , 78.2 ,78.2)

df <- data.frame(areasf , soportev)

ggplot(df, aes(fill=areasf, y= soportev, x=areasf)) +


geom_bar( stat="identity")

ggplot(df, aes(fill=areasf, y= soportev, x=areasf)) +


geom_bar( stat="identity")

<pantallazo - analisis>

CONCLUSIONES

<COLOCAR RESUMEN DE ANALISIS POR AREA>

Msc.Ing.Giovanni Barrero Ortiz - gbarreroo@hotmail.com

También podría gustarte