<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Statistical Graphics &#38; Data Visualization &#187; web data</title>
	<atom:link href="http://enciety.com/community/R/tag/web-data/feed/" rel="self" type="application/rss+xml" />
	<link>http://enciety.com/community/R</link>
	<description>Innovation and New Experimentation Model with R</description>
	<lastBuildDate>Fri, 21 May 2010 03:44:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Analisis enciety CheckClock Report menggunakan R</title>
		<link>http://enciety.com/community/R/2005/05/28/analisis-enciety-checkclock-report-menggunakan-r/</link>
		<comments>http://enciety.com/community/R/2005/05/28/analisis-enciety-checkclock-report-menggunakan-r/#comments</comments>
		<pubDate>Sat, 28 May 2005 07:09:02 +0000</pubDate>
		<dc:creator>Unung Istopo</dc:creator>
				<category><![CDATA[R Scripts]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[descriptive]]></category>
		<category><![CDATA[web data]]></category>

		<guid isPermaLink="false">http://www.enciety.com/community/R/?p=44</guid>
		<description><![CDATA[Analisis enciety CheckClock Report dengan menggunakan R dapat kita lakukan sebagai berikut :
Mis: Analisis untuk divisi IT: Network &#038; Information Service Provider pada bulan Mei 2005.
1. Akses data ke aplikasi enciety CheckClock Report


read.csv(&#34;http://10.20.32.209/sugengrawuh/report_division_csv.php?div=6&#038;bulan=05&#038;tahun=2005&#038;order=start&#34;) -&#62; IT.NISP
names(IT.NISP)


2. Analisis Barplot untuk menggambarkan Persentase masuk dan keluar.


barplot(t(as.matrix(IT.NISP[,c(3,5)])),beside=T,ylim=c(0,100),axisname=F,legend=T)  -&#62; barplot.IT.NISP
# Membuat Nama Label
for (i in 1:length(IT.NISP[,1])){    [...]]]></description>
			<content:encoded><![CDATA[<p>Analisis <em>enciety CheckClock Report</em> dengan menggunakan <a href="http://www.r-project.org">R</a> dapat kita lakukan sebagai berikut :</p>
<p>Mis: Analisis untuk divisi IT: Network &#038; Information Service Provider pada bulan Mei 2005.<br />
1. Akses data ke aplikasi <a href="http://10.20.32.209/sugengrawuh/">enciety CheckClock Report</a></p>
<pre>
<textarea rows=3 cols=55>
read.csv(&quot;http://10.20.32.209/sugengrawuh/report_division_csv.php?div=6&#038;bulan=05&#038;tahun=2005&#038;order=start&quot;) -&gt; IT.NISP
names(IT.NISP)
</textarea>
</pre>
<p>2. Analisis Barplot untuk menggambarkan Persentase masuk dan keluar.</p>
<pre>
<textarea rows=10 cols=55>
barplot(t(as.matrix(IT.NISP[,c(3,5)])),beside=T,ylim=c(0,100),axisname=F,legend=T)  -&gt; barplot.IT.NISP
# Membuat Nama Label
for (i in 1:length(IT.NISP[,1])){      mtext(as.character(IT.NISP[i,1]),at=(barplot.IT.NISP[1,i]+barplot.IT.NISP[2,i])/2,side=1,line=1)
}
# Membuat Abline untuk persentase = 50%
abline(h=seq(10,50,10),col=&quot;red&quot;,lty=3)
abline(h=seq(60,90,10),col=&quot;blue&quot;,lty=3)
# Menampilkan abline sebagai background
par(new=T)
barplot(t(as.matrix(IT.NISP[,c(3,5)])),beside=T,ylim=c(0,100),axisname=F,legend=T)
box()
title(&quot;enciety Checkclock Report Summary - IT NISP Division - May 2005&quot;)
# Membuat text untuk besar persentase masuk dan keluar
for (i in 1:length(IT.NISP[,1])) {
   for (j in 1:2){
      text(barplot.IT.NISP[j,i],IT.NISP[,c(3,5)][i,j]+1,IT.NISP[,c(3,5)][i,j])
   }
}
</textarea>
</pre>
<p>3. Hasilnya adalah sebagai berikut :</p>
<p><img src='http://enciety.com/community/R/wp-content/Absense_Report_ex1.png' alt='' /></p>
<p>Salam,</p>
<p>Unung Istopo H</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fenciety.com%2Fcommunity%2FR%2F2005%2F05%2F28%2Fanalisis-enciety-checkclock-report-menggunakan-r%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:25px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://enciety.com/community/R/2005/05/28/analisis-enciety-checkclock-report-menggunakan-r/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

