From 0b51d53684212500f1c0635eff1353e866cb4147 Mon Sep 17 00:00:00 2001 From: test2 Date: Thu, 12 Mar 2020 22:46:10 +0200 Subject: [PATCH] example --- examples/PieChart.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/PieChart.R b/examples/PieChart.R index aa06de0..cd0fff9 100644 --- a/examples/PieChart.R +++ b/examples/PieChart.R @@ -8,7 +8,7 @@ labels = c('breakfast', 'brunch', 'lunch', 'snacks', 'dinner') colors = c('#4286f4','#bb3af2','#ed2f52','#efc023','#ea7441') # Give the chart file a name. -png(file = "/root/piechart.png") +png(file = "/var/www/html/examples_r/piechart.png") # Plot the chart. pie3D(x, labels=labels, explode=0.1, height=0.05, main='Daily Diet Plan', col=colors)