Skip to content
Home
Lean
Operational System
Waste
Theory of Constraints
Toyota Kata
Key Performance Indicators
Kaizen
14 Deming Points
Overall Equipment Effectiveness
Database
Value Stream Map
Ishikawa Diagram
Taguchi Loss Function
Ford & Taylor
Skill Matrix
Six Sigma
Define
Measure
Analyze
Improve
Control
Design of Experiments
Six Sigma Definities
Minitab
Sample Size
Tools
8D Problem Solving
A3 Problem Solving
AHP & Pugh
Brainstorming
Countermeasure Ladder
Gage R&R
Operating Sequence Method
Process FMEA
QCOS
Training Within Industry
Job Instructions
Job Methods
Job Relations
Data Science
Ask
Prepare
Process
Analyze
Share
Act
R
ggplot2
Statistics
Power BI
Portfolio
Data Lifecycle Management
Leiderschap
Empathiemodel
Communicatieniveaus
De Vier Inzichten
Luisterniveaus
Drama- en winnaarsdriehoek
Rose of Leary
ggplot2
Home
Data Science
R
ggplot2
ggplot2
stevembolte
2021-11-09T22:44:01+02:00
Copy to Clipboard
Syntax Highlighter
input_x_axis <- koffie$Y2_Temp input_name_x_axis = “Temperatuur” input_name_y_axis = “Waarnemingen” input_categories <- koffie$Soort_Bonen input_title = “Zo warm wordt onze koffie gemiddeld gedronken” input_subtitle = “Van ‘lauw’ tot lekker heet!” input_caption = “(gebaseerd op data van TLSSC ‘Koffie.csv’)” input_tag = “Fig. #2” input_alt = “Alt 5” ggplot(data = koffie) + geom_histogram(binwidth = 2, mapping = aes(x = input_x_axis, fill = input_categories), color = “white”, alpha = 3/5) + scale_fill_brewer(palette = “GnBu”) + labs(title = input_title, subtitle = input_subtitle, caption = input_caption, tag = input_tag, alt = input_alt, x = input_name_x_axis, y = input_name_y_axis)
Page load link
Go to Top