kano_plot: Kano Plot

Description Usage Arguments Value Examples

View source: R/kano-plot.R

Description

Kano Plot

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
kano_plot(
  x,
  main = "",
  xlim = c(0, 1),
  ylim = c(0, 1),
  mar = c(0, 1, 2, 1),
  legend.position = list(x = "right", y = NULL),
  legend.title = NULL,
  my.lines = "circle",
  col.bg = "gray95",
  col = NA,
  txt.bg = list(m = "M", i = "I", o = "O", a = "A"),
  cex.bg = 12,
  jitter = TRUE,
  cex = 1,
  cex.items = cex * 1,
  cex.lab = cex * 1.07,
  cex.legend = cex * 1.1,
  ylab = "Zufriedenheitsstiftung (CS+)",
  xlab = "Unzufriedenheitsstiftung (CS-)",
  center.axis = FALSE,
  use.labels = TRUE,
  use.total.strength = TRUE,
  use.categorie = TRUE,
  use.points = FALSE,
  ...
)

kano_barchart(
  x,
  data = x$molten,
  groups = x$groups[1],
  main = "Kano-Analyse",
  auto.key = list(space = "right"),
  prop.table = TRUE,
  ylab = if (prop.table) "Prozent" else "Anzahl",
  col = RColorBrewer::brewer.pal(6, "Dark2")[c(4, 1, 2, 3, 5, 6)],
  par.settings = list(superpose.polygon = list(col = col)),
  include.Q = TRUE,
  include.R = TRUE,
  include.n = TRUE,
  levels = c("M", "O", "A", "I", "R", "Q"),
  ...
)

Arguments

x

Kano-Objekt

main, xlab, ylab, xlim, ylim

an Plot

mar

an par

legend.position, legend.title

legende

my.lines

Grafik Element Halbkreis fuer Indiferent

col.bg, txt.bg, cex.bg

Hintergrund-Einstellung

col

Farbe der Punkte bei barchart Farben RColorBrewer::brewer.pal(6, "Dark2")[c(4, 1, 2, 3, 5, 6)]

jitter

Rauschen bei Ueberlappung

cex, cex.items, cex.lab, cex.legend

Schriftgroesse

center.axis

center.axis=FALSE

use.labels

use.labels=FALSE Zahlen oder Text als Beschriftung bei den Streudiagrammen

use.total.strength

use.total.strength=TRUE groese der Schrift als Indikator fuer Total Strenght

use.categorie

use.categorie=TRUE M, O, A,

use.points

use.points = FALSE Punkte statt Text

...

an lattice

data

in kano_barchart molten data

groups

in kano_barchart geht nicht

auto.key

Key auf der rechten Seite

prop.table

Prozent oder Anzahl

include.Q, include.R

Q und R anzeigen

include.n

Ueberschrift mit N=

levels

Levels haendisch anordnen

Value

Tabelle als data.frame

Examples

1
2
3
4
5
6
7
#'
graphics.off()

# res1 <-  Kano( ~ . , DF[-c(1,2)])
res1$dysfunc
windows(9, 7)
kano_plot_del_bar(kano_res)

stp4/stp25stat documentation built on Sept. 17, 2021, 2:03 p.m.