<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://infovis-wiki.net/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=UE-InfoVis0506+0125718</id>
	<title>InfoVis:Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://infovis-wiki.net/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=UE-InfoVis0506+0125718"/>
	<link rel="alternate" type="text/html" href="https://infovis-wiki.net/wiki/Special:Contributions/UE-InfoVis0506_0125718"/>
	<updated>2026-04-23T03:30:39Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_3&amp;diff=8042</id>
		<title>Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G7 - Aufgabe 3</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_3&amp;diff=8042"/>
		<updated>2005-11-21T09:39:33Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Topic==&lt;br /&gt;
Webserver Logfile Visualization&lt;br /&gt;
&lt;br /&gt;
==Area of Application==&lt;br /&gt;
&lt;br /&gt;
===Analysis of Application Area===&lt;br /&gt;
&lt;br /&gt;
====General Description====&lt;br /&gt;
Webservers typically generate logfiles containing huge amounts of information on page accesses, used client software, type of access, and many more. Analysis tools like for example AWStats try to make use of this information and present simple statistics mostly in form of tables or simple bar graphs. Unfortunately, they are mostly very limited and &amp;quot;low-level&amp;quot; regarding their information representation. More interesting questions like user behavior in combination with site structure, dead ends, changes in behavior regarding to time (evolution), typical behavioral patterns, finding groups of users that share similar behavioral patterns, site entry points, or intrusion detection cannot be answered by using similar tools. For being able to deal with this kind of topics, more advanced visual tools are needed that unveil this information. [Behlendorf et al., 2005]&lt;br /&gt;
&lt;br /&gt;
====Special Issues====&lt;br /&gt;
&lt;br /&gt;
There are many different known solutions/methods to visualize Webeserver Logfiles. Most of them make use of simple chart or bar diagrams. The question is, if it is possible to present this huge set of informations in just one diagram, that illustrates all the data in a simple and undastandable way.   &lt;br /&gt;
&lt;br /&gt;
===Analysis of the Dataset===&lt;br /&gt;
&lt;br /&gt;
Here is an example of such a logfile entry: [Cooper,2004]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
205.218.110.166 - - [08/Dec/1996:15:02:10 -0800] &amp;quot;GET /info/index.html HTTP/1.0&amp;quot; 200 14912 &amp;quot;http://www.yourcompany.com/index.html &amp;quot; &amp;quot;Mozilla/3.0Gold (Win95; I)&amp;quot; &amp;quot;35bebd61b31211cfbdcd00c04fd611cf&amp;quot; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The content of this entry explained, from left to right: &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;205.218.110.166&amp;quot;&#039;&#039;&#039; - - This is the IP address of the machine making a request of your web server - its domain name can be determined in HitList by enabling Reverse DNS lookups, assuming your server hasn&#039;t put this information in already - many so, some don&#039;t. (if the domain name was in there, you&#039;d see its URL instead of the raw IP). &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;-&amp;quot;&#039;&#039;&#039; - this first dash is typically the server&#039;s IP address, which most NCSA format servers don&#039;t insert by default. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;-&amp;quot;&#039;&#039;&#039; - this second dash is typically authenticated usernames, which again many NCSA format servers don&#039;t insert by default. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;[08/Dec/1996:15:02:10 -0800]&amp;quot;&#039;&#039;&#039; - This is the date and time of the access, including the offset from Greenwich Mean Time - the latter is the &amp;quot;-800&amp;quot;, meaning the web server being accessed is 8 hours ahead of GMT. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;GET /info/index.html HTTP/1.0&amp;quot;&#039;&#039;&#039; - This is the actual request the visitor&#039;s browser made when at your page or server. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;HTTP/1.0&amp;quot;&#039;&#039;&#039; refers to the protocol and its version, here being version 1.0 of the http protocol. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;200&amp;quot;&#039;&#039;&#039; - this is the server response code - a &amp;quot;successful&amp;quot; request (meaning the visitor&#039;s browser loaded the entire HTML/GIF/JPEG, etc.) generates a response code of 200. Others include: &lt;br /&gt;
&lt;br /&gt;
206 - Partial request successful (not complete)&lt;br /&gt;
302 - URL has been redirected to another document &lt;br /&gt;
400 - Bad request was made by the client &lt;br /&gt;
401 - Authorization is required for this document &lt;br /&gt;
403 - Access to this document is forbidden &lt;br /&gt;
404 - Document not found &lt;br /&gt;
500 - Server internal error &lt;br /&gt;
501 - Application method (either GET or POST) is not implemented &lt;br /&gt;
503 - Server is out of resources &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;14912&amp;quot;&#039;&#039;&#039; - This is the number of bytes transferred to the client during the visit. Since every request has some response, even erroneous requests will have a non-zero value for this field. &lt;br /&gt;
&amp;quot;http://www.yourcompany.com/index.html&amp;quot; - This is the referrer field, or the site the visitor was on immediately prior to making this entry&#039;s request - in this case, the person was looking at the index.html (probably the home page) page before going to the /info/index.html page in this entry. &lt;br /&gt;
&amp;quot;Mozilla/3.0Gold (Win95; I)&amp;quot; - this is the user-agent field, meaning the actual browser and OS used by the visitor - in this case, Mozilla is Netscape, the next value is the version (here, 3.0Gold), and the final value is the OS it was using (Windows 95).&lt;br /&gt;
 &lt;br /&gt;
Finally, the &#039;&#039;&#039;&amp;quot;35bebd61b31211cfbdcd00c04fd611cf&amp;quot;&#039;&#039;&#039; is the cookie information, which may or may not be there, depending on whether the webserver used has cookies enabled and whether one was passed from webserver to the visitor&#039;s computer. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There are several different specific Logfile Formats, for example: Microsoft IIS 3.0 and 2.0, Microsoft IIS4.0 (W3SVC format), Netscape (NCSA format with/without unique format header), Lotus Domino format, O&#039;Reilly WebSite format...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Target Group==&lt;br /&gt;
&lt;br /&gt;
===Identifying the Target===&lt;br /&gt;
We identified the following Target groups:&lt;br /&gt;
#Software Companies: especially those who develop browsers and web based applications&lt;br /&gt;
#Web Dsigners&lt;br /&gt;
#Administrators&lt;br /&gt;
#Advertising Companys&lt;br /&gt;
#Web Users&lt;br /&gt;
&lt;br /&gt;
===Special Issues of the Target Group===&lt;br /&gt;
&lt;br /&gt;
Software Companies: In order to optimize their software, they have to explore the user&#039;s needs. Logfiles can offer them some useful informations.&lt;br /&gt;
&lt;br /&gt;
For Web Designers it can be helpful to know some facts about their visitors. Logfiles tell them, which browsers they use, when they access the site, traffic, and so on. This Informations allow them to organize the webpage in a convenient and reliable way. It&#039;s the same with Web Administrators.&lt;br /&gt;
&lt;br /&gt;
Advertising Companies strive to study user behaviour in order to orientate their adds more effectively. &lt;br /&gt;
&lt;br /&gt;
===Known Solutions / Methods (related to the target group)===&lt;br /&gt;
#Radial Tree Viewer&lt;br /&gt;
#Anemone&lt;br /&gt;
#Internet Cartographer&lt;br /&gt;
#WebTracer&lt;br /&gt;
#WebHopper&lt;br /&gt;
#WebPath&lt;br /&gt;
#The Chicago Tribune Website&lt;br /&gt;
#Visualizing the online debate on the European Constitution&lt;br /&gt;
#Mercator&amp;lt;br&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
==Intended Purpose==&lt;br /&gt;
&lt;br /&gt;
===Goals and Objectives===&lt;br /&gt;
#Which client software is used, which browsers&lt;br /&gt;
#How users behave, in combination with site structure, dead ends, changes in behavior regarding to time.&lt;br /&gt;
#Identify groups of users who act in a similar way.&lt;br /&gt;
#Identify &amp;quot;hot&amp;quot; topics&lt;br /&gt;
&lt;br /&gt;
===Problems and Tasks to Solve===&lt;br /&gt;
- &#039;&#039;&#039;Improve the Servers&#039;&#039;&#039;: Administrators, Web Designers and Software Companies need this information, to improve the Servers. They need to know what people are interested in, if there are special groups, which have similar behavior, navigate to the same themes and in a similar way. What kind of themes are often searched for, and how. With this information, they can help Users to get the things they want faster and easier. They can adapt the Server to the needs of the Users.&amp;lt;br&amp;gt;&lt;br /&gt;
In order to effectively manage a web server, it is necessary to get feedback about the activity and performance of the server as well as any problems that may be occuring&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
- &#039;&#039;&#039;Adapt Advertising to Users interests&#039;&#039;&#039;:Advertising Companys can use the information to identify themes and products of interest to a group of users. You get an overview of groups of things people are interessted in. So they can adapt the topics of their advertisement to this information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Proposed Design==&lt;br /&gt;
&lt;br /&gt;
===Types of Visualization Applied===&lt;br /&gt;
&lt;br /&gt;
===Visual Mapping===&lt;br /&gt;
&lt;br /&gt;
(Datadimension =&amp;gt; Attribute)&lt;br /&gt;
&lt;br /&gt;
===Description of Used Techniques===&lt;br /&gt;
&lt;br /&gt;
===Possibilities of Interaction===&lt;br /&gt;
&lt;br /&gt;
===Mockups / Fake Screenshots===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:[1] [Behlendorf et al., 2005] Brian Behlendorf, Apache HTTP Server Logfiles, Apache HTTP Server Project, Access Date: 17 October 2005, http://httpd.apache.org/docs/1.3/logs.html&lt;br /&gt;
&lt;br /&gt;
:[2] [Cooper, 2004] Colin Cooper, Logfile Definitions and Examples, Intranet Software Solutions (Europe) Limited [ISSEL], Access Date: 17 October 2005, http://www.issel.co.uk/FAQ/logfile_definitions_examples.htm&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_3&amp;diff=8036</id>
		<title>Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G7 - Aufgabe 3</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_3&amp;diff=8036"/>
		<updated>2005-11-21T08:58:37Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Topic==&lt;br /&gt;
Webserver Logfile Visualization&lt;br /&gt;
&lt;br /&gt;
==Area of Application==&lt;br /&gt;
&lt;br /&gt;
===Analysis of Application Area===&lt;br /&gt;
&lt;br /&gt;
====General Description====&lt;br /&gt;
Webservers typically generate logfiles containing huge amounts of information on page accesses, used client software, type of access, and many more. Analysis tools like for example AWStats try to make use of this information and present simple statistics mostly in form of tables or simple bar graphs. Unfortunately, they are mostly very limited and &amp;quot;low-level&amp;quot; regarding their information representation. More interesting questions like user behavior in combination with site structure, dead ends, changes in behavior regarding to time (evolution), typical behavioral patterns, finding groups of users that share similar behavioral patterns, site entry points, or intrusion detection cannot be answered by using similar tools. For being able to deal with this kind of topics, more advanced visual tools are needed that unveil this information.&lt;br /&gt;
&lt;br /&gt;
====Special Issues====&lt;br /&gt;
&lt;br /&gt;
There are many different known solutions/methods to visualize Webeserver Logfiles. Most of them make use of simple chart or bar diagrams. The question is, if it is possible to present this huge set of informations in just one diagram, that illustrates all the data in a simple and undastandable way.   &lt;br /&gt;
&lt;br /&gt;
===Analysis of the Dataset===&lt;br /&gt;
&lt;br /&gt;
Here is an example of such a logfile entry: &lt;br /&gt;
&lt;br /&gt;
205.218.110.166 - - [08/Dec/1996:15:02:10 -0800] &amp;quot;GET /info/index.html HTTP/1.0&amp;quot; 200 14912 &amp;quot;http://www.yourcompany.com/index.html &amp;quot; &amp;quot;Mozilla/3.0Gold (Win95; I)&amp;quot; &amp;quot;35bebd61b31211cfbdcd00c04fd611cf&amp;quot; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The content of this entry explained, from left to right: &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;205.218.110.166&amp;quot;&#039;&#039;&#039; - - This is the IP address of the machine making a request of your web server - its domain name can be determined in HitList by enabling Reverse DNS lookups, assuming your server hasn&#039;t put this information in already - many so, some don&#039;t. (if the domain name was in there, you&#039;d see its URL instead of the raw IP). &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;-&amp;quot;&#039;&#039;&#039; - this first dash is typically the server&#039;s IP address, which most NCSA format servers don&#039;t insert by default. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;-&amp;quot;&#039;&#039;&#039; - this second dash is typically authenticated usernames, which again many NCSA format servers don&#039;t insert by default. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;[08/Dec/1996:15:02:10 -0800]&amp;quot;&#039;&#039;&#039; - This is the date and time of the access, including the offset from Greenwich Mean Time - the latter is the &amp;quot;-800&amp;quot;, meaning the web server being accessed is 8 hours ahead of GMT. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;GET /info/index.html HTTP/1.0&amp;quot;&#039;&#039;&#039; - This is the actual request the visitor&#039;s browser made when at your page or server. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;HTTP/1.0&amp;quot;&#039;&#039;&#039; refers to the protocol and its version, here being version 1.0 of the http protocol. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;200&amp;quot;&#039;&#039;&#039; - this is the server response code - a &amp;quot;successful&amp;quot; request (meaning the visitor&#039;s browser loaded the entire HTML/GIF/JPEG, etc.) generates a response code of 200. Others include: &lt;br /&gt;
&lt;br /&gt;
206 - Partial request successful (not complete)&lt;br /&gt;
302 - URL has been redirected to another document &lt;br /&gt;
400 - Bad request was made by the client &lt;br /&gt;
401 - Authorization is required for this document &lt;br /&gt;
403 - Access to this document is forbidden &lt;br /&gt;
404 - Document not found &lt;br /&gt;
500 - Server internal error &lt;br /&gt;
501 - Application method (either GET or POST) is not implemented &lt;br /&gt;
503 - Server is out of resources &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;14912&amp;quot;&#039;&#039;&#039; - This is the number of bytes transferred to the client during the visit. Since every request has some response, even erroneous requests will have a non-zero value for this field. &lt;br /&gt;
&amp;quot;http://www.yourcompany.com/index.html&amp;quot; - This is the referrer field, or the site the visitor was on immediately prior to making this entry&#039;s request - in this case, the person was looking at the index.html (probably the home page) page before going to the /info/index.html page in this entry. &lt;br /&gt;
&amp;quot;Mozilla/3.0Gold (Win95; I)&amp;quot; - this is the user-agent field, meaning the actual browser and OS used by the visitor - in this case, Mozilla is Netscape, the next value is the version (here, 3.0Gold), and the final value is the OS it was using (Windows 95).&lt;br /&gt;
 &lt;br /&gt;
Finally, the &#039;&#039;&#039;&amp;quot;35bebd61b31211cfbdcd00c04fd611cf&amp;quot;&#039;&#039;&#039; is the cookie information, which may or may not be there, depending on whether the webserver used has cookies enabled and whether one was passed from webserver to the visitor&#039;s computer. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There are several different specific Logfile Formats, for example: Microsoft IIS 3.0 and 2.0, Microsoft IIS4.0 (W3SVC format), Netscape (NCSA format with/without unique format header), Lotus Domino format, O&#039;Reilly WebSite format...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Target Group==&lt;br /&gt;
&lt;br /&gt;
===Identifying the Target===&lt;br /&gt;
We identified the following Target groups:&lt;br /&gt;
#Software Companies: especially those who develop browsers and web based applications&lt;br /&gt;
#Web Dsigners&lt;br /&gt;
#Administrators&lt;br /&gt;
#Advertising Companys&lt;br /&gt;
#Web Users&lt;br /&gt;
&lt;br /&gt;
===Special Issues of the Target Group===&lt;br /&gt;
&lt;br /&gt;
Software Companies: In order to optimize their software, they have to explore the user&#039;s needs. Logfiles can offer them some useful informations.&lt;br /&gt;
&lt;br /&gt;
For Web Designers it can be helpful to know some facts about their visitors. Logfiles tell them, which browsers they use, when they access the site, traffic, and so on. This Informations allow them to organize the webpage in a convenient and reliable way. It&#039;s the same with Web Administrators.&lt;br /&gt;
&lt;br /&gt;
Advertising Companies strive to study user behaviour in order to orientate their adds more effectively. &lt;br /&gt;
&lt;br /&gt;
===Known Solutions / Methods (related to the target group)===&lt;br /&gt;
#Radial Tree Viewer&lt;br /&gt;
#Anemone&lt;br /&gt;
#Internet Cartographer&lt;br /&gt;
#WebTracer&lt;br /&gt;
#WebHopper&lt;br /&gt;
#WebPath&lt;br /&gt;
#The Chicago Tribune Website&lt;br /&gt;
#Visualizing the online debate on the European Constitution&lt;br /&gt;
#Mercator&amp;lt;br&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
==Intended Purpose==&lt;br /&gt;
&lt;br /&gt;
===Goals and Objectives===&lt;br /&gt;
#Which client software is used, which browsers&lt;br /&gt;
#How users behave, in combination with site structure, dead ends, changes in behavior regarding to time.&lt;br /&gt;
#Identify groups of users who act in a similar way.&lt;br /&gt;
#Identify &amp;quot;hot&amp;quot; topics&lt;br /&gt;
&lt;br /&gt;
===Problems and Tasks to Solve===&lt;br /&gt;
- &#039;&#039;&#039;Improve the Servers&#039;&#039;&#039;: Administrators, Web Designers and Software Companies need this information, to improve the Servers. They need to know what people are interested in, if there are special groups, which have similar behavior, navigate to the same themes and in a similar way. What kind of themes are often searched for, and how. With this information, they can help Users to get the things they want faster and easier. They can adapt the Server to the needs of the Users.&amp;lt;br&amp;gt;&lt;br /&gt;
In order to effectively manage a web server, it is necessary to get feedback about the activity and performance of the server as well as any problems that may be occuring&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
- &#039;&#039;&#039;Adapt Advertising to Users interests&#039;&#039;&#039;:Advertising Companys can use the information to identify themes and products of interest to a group of users. You get an overview of groups of things people are interessted in. So they can adapt the topics of their advertisement to this information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Proposed Design==&lt;br /&gt;
&lt;br /&gt;
===Types of Visualization Applied===&lt;br /&gt;
&lt;br /&gt;
===Visual Mapping===&lt;br /&gt;
&lt;br /&gt;
(Datadimension =&amp;gt; Attribute)&lt;br /&gt;
&lt;br /&gt;
===Description of Used Techniques===&lt;br /&gt;
&lt;br /&gt;
===Possibilities of Interaction===&lt;br /&gt;
&lt;br /&gt;
===Mockups / Fake Screenshots===&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_3&amp;diff=8035</id>
		<title>Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G7 - Aufgabe 3</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_3&amp;diff=8035"/>
		<updated>2005-11-21T08:53:38Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Topic==&lt;br /&gt;
Webserver Logfile Visualization&lt;br /&gt;
&lt;br /&gt;
==Area of Application==&lt;br /&gt;
&lt;br /&gt;
===Analysis of Application Area===&lt;br /&gt;
&lt;br /&gt;
====General Description====&lt;br /&gt;
Webservers typically generate logfiles containing huge amounts of information on page accesses, used client software, type of access, and many more. Analysis tools like for example AWStats try to make use of this information and present simple statistics mostly in form of tables or simple bar graphs. Unfortunately, they are mostly very limited and &amp;quot;low-level&amp;quot; regarding their information representation. More interesting questions like user behavior in combination with site structure, dead ends, changes in behavior regarding to time (evolution), typical behavioral patterns, finding groups of users that share similar behavioral patterns, site entry points, or intrusion detection cannot be answered by using similar tools. For being able to deal with this kind of topics, more advanced visual tools are needed that unveil this information.&lt;br /&gt;
&lt;br /&gt;
====Special Issues====&lt;br /&gt;
&lt;br /&gt;
===Analysis of the Dataset===&lt;br /&gt;
&lt;br /&gt;
Here is an example of such a logfile entry: &lt;br /&gt;
&lt;br /&gt;
205.218.110.166 - - [08/Dec/1996:15:02:10 -0800] &amp;quot;GET /info/index.html HTTP/1.0&amp;quot; 200 14912 &amp;quot;http://www.yourcompany.com/index.html &amp;quot; &amp;quot;Mozilla/3.0Gold (Win95; I)&amp;quot; &amp;quot;35bebd61b31211cfbdcd00c04fd611cf&amp;quot; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The content of this entry explained, from left to right: &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;205.218.110.166&amp;quot;&#039;&#039;&#039; - - This is the IP address of the machine making a request of your web server - its domain name can be determined in HitList by enabling Reverse DNS lookups, assuming your server hasn&#039;t put this information in already - many so, some don&#039;t. (if the domain name was in there, you&#039;d see its URL instead of the raw IP). &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;-&amp;quot;&#039;&#039;&#039; - this first dash is typically the server&#039;s IP address, which most NCSA format servers don&#039;t insert by default. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;-&amp;quot;&#039;&#039;&#039; - this second dash is typically authenticated usernames, which again many NCSA format servers don&#039;t insert by default. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;[08/Dec/1996:15:02:10 -0800]&amp;quot;&#039;&#039;&#039; - This is the date and time of the access, including the offset from Greenwich Mean Time - the latter is the &amp;quot;-800&amp;quot;, meaning the web server being accessed is 8 hours ahead of GMT. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;GET /info/index.html HTTP/1.0&amp;quot;&#039;&#039;&#039; - This is the actual request the visitor&#039;s browser made when at your page or server. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;HTTP/1.0&amp;quot;&#039;&#039;&#039; refers to the protocol and its version, here being version 1.0 of the http protocol. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;200&amp;quot;&#039;&#039;&#039; - this is the server response code - a &amp;quot;successful&amp;quot; request (meaning the visitor&#039;s browser loaded the entire HTML/GIF/JPEG, etc.) generates a response code of 200. Others include: &lt;br /&gt;
&lt;br /&gt;
206 - Partial request successful (not complete)&lt;br /&gt;
302 - URL has been redirected to another document &lt;br /&gt;
400 - Bad request was made by the client &lt;br /&gt;
401 - Authorization is required for this document &lt;br /&gt;
403 - Access to this document is forbidden &lt;br /&gt;
404 - Document not found &lt;br /&gt;
500 - Server internal error &lt;br /&gt;
501 - Application method (either GET or POST) is not implemented &lt;br /&gt;
503 - Server is out of resources &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;14912&amp;quot;&#039;&#039;&#039; - This is the number of bytes transferred to the client during the visit. Since every request has some response, even erroneous requests will have a non-zero value for this field. &lt;br /&gt;
&amp;quot;http://www.yourcompany.com/index.html&amp;quot; - This is the referrer field, or the site the visitor was on immediately prior to making this entry&#039;s request - in this case, the person was looking at the index.html (probably the home page) page before going to the /info/index.html page in this entry. &lt;br /&gt;
&amp;quot;Mozilla/3.0Gold (Win95; I)&amp;quot; - this is the user-agent field, meaning the actual browser and OS used by the visitor - in this case, Mozilla is Netscape, the next value is the version (here, 3.0Gold), and the final value is the OS it was using (Windows 95).&lt;br /&gt;
 &lt;br /&gt;
Finally, the &#039;&#039;&#039;&amp;quot;35bebd61b31211cfbdcd00c04fd611cf&amp;quot;&#039;&#039;&#039; is the cookie information, which may or may not be there, depending on whether the webserver used has cookies enabled and whether one was passed from webserver to the visitor&#039;s computer. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There are several different specific Logfile Formats, for example: Microsoft IIS 3.0 and 2.0, Microsoft IIS4.0 (W3SVC format), Netscape (NCSA format with/without unique format header), Lotus Domino format, O&#039;Reilly WebSite format...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Target Group==&lt;br /&gt;
&lt;br /&gt;
===Identifying the Target===&lt;br /&gt;
We identified the following Target groups:&lt;br /&gt;
#Software Companies: especially those who develop browsers and web based applications&lt;br /&gt;
#Web Dsigners&lt;br /&gt;
#Administrators&lt;br /&gt;
#Advertising Companys&lt;br /&gt;
#Web Users&lt;br /&gt;
&lt;br /&gt;
===Special Issues of the Target Group===&lt;br /&gt;
&lt;br /&gt;
Software Companies: In order to optimize their software, they have to explore the user&#039;s needs. Logfiles can offer them some useful informations.&lt;br /&gt;
&lt;br /&gt;
For Web Designers it can be helpful to know some facts about their visitors. Logfiles tell them, which browsers they use, when they access the site, traffic, and so on. This Informations allow them to organize the webpage in a convenient and reliable way. It&#039;s the same with Web Administrators.&lt;br /&gt;
&lt;br /&gt;
Advertising Companies strive to study user behaviour in order to orientate their adds more effectively. &lt;br /&gt;
&lt;br /&gt;
===Known Solutions / Methods (related to the target group)===&lt;br /&gt;
#Radial Tree Viewer&lt;br /&gt;
#Anemone&lt;br /&gt;
#Internet Cartographer&lt;br /&gt;
#WebTracer&lt;br /&gt;
#WebHopper&lt;br /&gt;
#WebPath&lt;br /&gt;
#The Chicago Tribune Website&lt;br /&gt;
#Visualizing the online debate on the European Constitution&lt;br /&gt;
#Mercator&amp;lt;br&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
==Intended Purpose==&lt;br /&gt;
&lt;br /&gt;
===Goals and Objectives===&lt;br /&gt;
#Which client software is used, which browsers&lt;br /&gt;
#How users behave, in combination with site structure, dead ends, changes in behavior regarding to time.&lt;br /&gt;
#Identify groups of users who act in a similar way.&lt;br /&gt;
#Identify &amp;quot;hot&amp;quot; topics&lt;br /&gt;
&lt;br /&gt;
===Problems and Tasks to Solve===&lt;br /&gt;
- &#039;&#039;&#039;Improve the Servers&#039;&#039;&#039;: Administrators, Web Designers and Software Companies need this information, to improve the Servers. They need to know what people are interested in, if there are special groups, which have similar behavior, navigate to the same themes and in a similar way. What kind of themes are often searched for, and how. With this information, they can help Users to get the things they want faster and easier. They can adapt the Server to the needs of the Users.&amp;lt;br&amp;gt;&lt;br /&gt;
In order to effectively manage a web server, it is necessary to get feedback about the activity and performance of the server as well as any problems that may be occuring&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
- &#039;&#039;&#039;Adapt Advertising to Users interests&#039;&#039;&#039;:Advertising Companys can use the information to identify themes and products of interest to a group of users. You get an overview of groups of things people are interessted in. So they can adapt the topics of their advertisement to this information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Proposed Design==&lt;br /&gt;
&lt;br /&gt;
===Types of Visualization Applied===&lt;br /&gt;
&lt;br /&gt;
===Visual Mapping===&lt;br /&gt;
&lt;br /&gt;
(Datadimension =&amp;gt; Attribute)&lt;br /&gt;
&lt;br /&gt;
===Description of Used Techniques===&lt;br /&gt;
&lt;br /&gt;
===Possibilities of Interaction===&lt;br /&gt;
&lt;br /&gt;
===Mockups / Fake Screenshots===&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_3&amp;diff=7902</id>
		<title>Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G7 - Aufgabe 3</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_3&amp;diff=7902"/>
		<updated>2005-11-18T11:27:50Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Topic==&lt;br /&gt;
Webserver Logfile Visualization&lt;br /&gt;
&lt;br /&gt;
==Area of Application==&lt;br /&gt;
&lt;br /&gt;
===Analysis of Application Area===&lt;br /&gt;
&lt;br /&gt;
====General Description====&lt;br /&gt;
Webservers typically generate logfiles containing huge amounts of information on page accesses, used client software, type of access, and many more. Analysis tools like for example AWStats try to make use of this information and present simple statistics mostly in form of tables or simple bar graphs. Unfortunately, they are mostly very limited and &amp;quot;low-level&amp;quot; regarding their information representation. More interesting questions like user behavior in combination with site structure, dead ends, changes in behavior regarding to time (evolution), typical behavioral patterns, finding groups of users that share similar behavioral patterns, site entry points, or intrusion detection cannot be answered by using similar tools. For being able to deal with this kind of topics, more advanced visual tools are needed that unveil this information.&lt;br /&gt;
&lt;br /&gt;
====Special Issues====&lt;br /&gt;
&lt;br /&gt;
===Analysis of the Dataset===&lt;br /&gt;
&lt;br /&gt;
====Description of the Datatypes====&lt;br /&gt;
&lt;br /&gt;
====Description of the Datastructures====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Target Group==&lt;br /&gt;
&lt;br /&gt;
===Identifying the Target===&lt;br /&gt;
We identified the following Target groups:&lt;br /&gt;
#Software Companies: especially those who develop browsers and web based applications&lt;br /&gt;
#Web Dsigners&lt;br /&gt;
#Administrators&lt;br /&gt;
#Advertising Companys&lt;br /&gt;
#Web Users&lt;br /&gt;
&lt;br /&gt;
===Special Issues of the Target Group===&lt;br /&gt;
&lt;br /&gt;
===Known Solutions / Methods (related to the target group)===&lt;br /&gt;
#Radial Tree Viewer&lt;br /&gt;
#Anemone&lt;br /&gt;
#Internet Cartographer&lt;br /&gt;
#Radial Tree Viewer&lt;br /&gt;
#WebTracer&lt;br /&gt;
#WebHopper&lt;br /&gt;
#WebPath&lt;br /&gt;
#The Chicago Tribune Website&lt;br /&gt;
#Visualizing the online debate on the European Constitution&lt;br /&gt;
#Mercator&amp;lt;br&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
==Intended Purpose==&lt;br /&gt;
&lt;br /&gt;
===Goals and Objectives===&lt;br /&gt;
#Which client software is used, which browsers&lt;br /&gt;
#How users behave, in combination with site structure, dead ends, changes in behavior regarding to time.&lt;br /&gt;
#Identify groups of users who act in a similar way.&lt;br /&gt;
#Identify &amp;quot;hot&amp;quot; topics&lt;br /&gt;
&lt;br /&gt;
===Problems and Tasks to Solve===&lt;br /&gt;
- &#039;&#039;&#039;Improve the Servers&#039;&#039;&#039;: Administrators, Web Designers and Software Companies need this information, to improve the Servers. They need to know what people are interested in, if there are special groups, which have similar behavior, navigate to the same themes and in a similar way. What kind of themes are often searched for, and how. With this information, they can help Users to get the things they want faster and easier. They can adapt the Server to the needs of the Users.&amp;lt;br&amp;gt;&lt;br /&gt;
In order to effectively manage a web server, it is necessary to get feedback about the activity and performance of the server as well as any problems that may be occuring&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
- &#039;&#039;&#039;Adapt Advertising to Users interests&#039;&#039;&#039;:Advertising Companys can use the information to identify themes and products of interest to a group of users. You get an overview of groups of things people are interessted in. So they can adapt the topics of their advertisement to this information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Proposed Design==&lt;br /&gt;
&lt;br /&gt;
===Types of Visualization Applied===&lt;br /&gt;
&lt;br /&gt;
===Visual Mapping===&lt;br /&gt;
&lt;br /&gt;
(Datadimension =&amp;gt; Attribute)&lt;br /&gt;
&lt;br /&gt;
===Description of Used Techniques===&lt;br /&gt;
&lt;br /&gt;
===Possibilities of Interaction===&lt;br /&gt;
&lt;br /&gt;
===Mockups / Fake Screenshots===&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_3&amp;diff=7901</id>
		<title>Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G7 - Aufgabe 3</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_3&amp;diff=7901"/>
		<updated>2005-11-18T11:04:02Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: /* Special Issues of the Target Group */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Topic==&lt;br /&gt;
Webserver Logfile Visualization&lt;br /&gt;
&lt;br /&gt;
==Area of Application==&lt;br /&gt;
&lt;br /&gt;
===Analysis of Application Area===&lt;br /&gt;
&lt;br /&gt;
====General Description====&lt;br /&gt;
Webservers typically generate logfiles containing huge amounts of information on page accesses, used client software, type of access, and many more. Analysis tools like for example AWStats try to make use of this information and present simple statistics mostly in form of tables or simple bar graphs. Unfortunately, they are mostly very limited and &amp;quot;low-level&amp;quot; regarding their information representation. More interesting questions like user behavior in combination with site structure, dead ends, changes in behavior regarding to time (evolution), typical behavioral patterns, finding groups of users that share similar behavioral patterns, site entry points, or intrusion detection cannot be answered by using similar tools. For being able to deal with this kind of topics, more advanced visual tools are needed that unveil this information.&lt;br /&gt;
&lt;br /&gt;
====Special Issues====&lt;br /&gt;
&lt;br /&gt;
===Analysis of the Dataset===&lt;br /&gt;
&lt;br /&gt;
====Description of the Datatypes====&lt;br /&gt;
&lt;br /&gt;
====Description of the Datastructures====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Target Group==&lt;br /&gt;
&lt;br /&gt;
===Identifying the Target===&lt;br /&gt;
We identified the following Target groups:&lt;br /&gt;
#Software Companies: especially those who develop browsers and web based applications&lt;br /&gt;
#Web Dsigners&lt;br /&gt;
#Administrators&lt;br /&gt;
#Advertising Companys&lt;br /&gt;
#Web Users&lt;br /&gt;
&lt;br /&gt;
===Special Issues of the Target Group===&lt;br /&gt;
&lt;br /&gt;
===Known Solutions / Methods (related to the target group)===&lt;br /&gt;
#Radial Tree Viewer&lt;br /&gt;
#Anemone&lt;br /&gt;
#Internet Cartographer&lt;br /&gt;
#Radial Tree Viewer&lt;br /&gt;
#WebTracer&lt;br /&gt;
#WebHopper&lt;br /&gt;
#WebPath&lt;br /&gt;
#The Chicago Tribune Website&lt;br /&gt;
#Visualizing the online debate on the European Constitution&lt;br /&gt;
#Mercator&amp;lt;br&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
==Intended Purpose==&lt;br /&gt;
&lt;br /&gt;
===Goals and Objectives===&lt;br /&gt;
#Which client software is used, which browsers&lt;br /&gt;
#How users behave, in combination with site structure, dead ends, changes in behavior regarding to time.&lt;br /&gt;
#Identify groups of users who act in a similar way.&lt;br /&gt;
#Identify &amp;quot;hot&amp;quot; topics&lt;br /&gt;
&lt;br /&gt;
===Problems and Tasks to Solve===&lt;br /&gt;
- &#039;&#039;&#039;Improve the Servers&#039;&#039;&#039;: Administrators, Web Designers and Software Companies need this information, to improve the Servers. They need to know what people are interested in, if there are special groups, which have similar behavior, navigate to the same themes and in a similar way. What kind of themes are often searched for, and how. With this information, they can help Users to get the things they want faster and easier. They can adapt the Server to the needs of the Users.&amp;lt;br&amp;gt;&lt;br /&gt;
In order to effectively manage a web server, it is necessary to get feedback about the activity and performance of the server as well as any problems that may be occuring&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
- &#039;&#039;&#039;Adapt Advertising to Users interests&#039;&#039;&#039;:Advertising Companys can use the information to identify themes and products of interest to a group of users. You get an overview of groups of things people are interessted in. So they can adapt the topics of their advertisement to this information.&lt;br /&gt;
&lt;br /&gt;
===Example Questions===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Proposed Design==&lt;br /&gt;
&lt;br /&gt;
===Types of Visualization Applied===&lt;br /&gt;
&lt;br /&gt;
===Visual Mapping===&lt;br /&gt;
&lt;br /&gt;
(Datadimension =&amp;gt; Attribute)&lt;br /&gt;
&lt;br /&gt;
===Description of Used Techniques===&lt;br /&gt;
&lt;br /&gt;
===Possibilities of Interaction===&lt;br /&gt;
&lt;br /&gt;
===Mockups / Fake Screenshots===&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_3&amp;diff=7900</id>
		<title>Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G7 - Aufgabe 3</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_3&amp;diff=7900"/>
		<updated>2005-11-18T11:03:40Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: /* Problems and Tasks to Solve */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Topic==&lt;br /&gt;
Webserver Logfile Visualization&lt;br /&gt;
&lt;br /&gt;
==Area of Application==&lt;br /&gt;
&lt;br /&gt;
===Analysis of Application Area===&lt;br /&gt;
&lt;br /&gt;
====General Description====&lt;br /&gt;
Webservers typically generate logfiles containing huge amounts of information on page accesses, used client software, type of access, and many more. Analysis tools like for example AWStats try to make use of this information and present simple statistics mostly in form of tables or simple bar graphs. Unfortunately, they are mostly very limited and &amp;quot;low-level&amp;quot; regarding their information representation. More interesting questions like user behavior in combination with site structure, dead ends, changes in behavior regarding to time (evolution), typical behavioral patterns, finding groups of users that share similar behavioral patterns, site entry points, or intrusion detection cannot be answered by using similar tools. For being able to deal with this kind of topics, more advanced visual tools are needed that unveil this information.&lt;br /&gt;
&lt;br /&gt;
====Special Issues====&lt;br /&gt;
&lt;br /&gt;
===Analysis of the Dataset===&lt;br /&gt;
&lt;br /&gt;
====Description of the Datatypes====&lt;br /&gt;
&lt;br /&gt;
====Description of the Datastructures====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Target Group==&lt;br /&gt;
&lt;br /&gt;
===Identifying the Target===&lt;br /&gt;
We identified the following Target groups:&lt;br /&gt;
#Software Companies: especially those who develop browsers and web based applications&lt;br /&gt;
#Web Dsigners&lt;br /&gt;
#Administrators&lt;br /&gt;
#Advertising Companys&lt;br /&gt;
#Web Users&lt;br /&gt;
&lt;br /&gt;
===Special Issues of the Target Group===&lt;br /&gt;
- &#039;&#039;&#039;Improve the Servers&#039;&#039;&#039;: Administrators, Web Designers and Software Companies need this information, to improve the Servers. They need to know what people are interested in, if there are special groups, which have similar behavior, navigate to the same themes and in a similar way. What kind of themes are often searched for, and how. With this information, they can help Users to get the things they want faster and easier. They can adapt the Server to the needs of the Users.&amp;lt;br&amp;gt;&lt;br /&gt;
In order to effectively manage a web server, it is necessary to get feedback about the activity and performance of the server as well as any problems that may be occuring&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
- &#039;&#039;&#039;Adapt Advertising to Users interests&#039;&#039;&#039;:Advertising Companys can use the information to identify themes and products of interest to a group of users. You get an overview of groups of things people are interessted in. So they can adapt the topics of their advertisement to this information.&lt;br /&gt;
&lt;br /&gt;
===Known Solutions / Methods (related to the target group)===&lt;br /&gt;
#Radial Tree Viewer&lt;br /&gt;
#Anemone&lt;br /&gt;
#Internet Cartographer&lt;br /&gt;
#Radial Tree Viewer&lt;br /&gt;
#WebTracer&lt;br /&gt;
#WebHopper&lt;br /&gt;
#WebPath&lt;br /&gt;
#The Chicago Tribune Website&lt;br /&gt;
#Visualizing the online debate on the European Constitution&lt;br /&gt;
#Mercator&amp;lt;br&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
==Intended Purpose==&lt;br /&gt;
&lt;br /&gt;
===Goals and Objectives===&lt;br /&gt;
#Which client software is used, which browsers&lt;br /&gt;
#How users behave, in combination with site structure, dead ends, changes in behavior regarding to time.&lt;br /&gt;
#Identify groups of users who act in a similar way.&lt;br /&gt;
#Identify &amp;quot;hot&amp;quot; topics&lt;br /&gt;
&lt;br /&gt;
===Problems and Tasks to Solve===&lt;br /&gt;
- &#039;&#039;&#039;Improve the Servers&#039;&#039;&#039;: Administrators, Web Designers and Software Companies need this information, to improve the Servers. They need to know what people are interested in, if there are special groups, which have similar behavior, navigate to the same themes and in a similar way. What kind of themes are often searched for, and how. With this information, they can help Users to get the things they want faster and easier. They can adapt the Server to the needs of the Users.&amp;lt;br&amp;gt;&lt;br /&gt;
In order to effectively manage a web server, it is necessary to get feedback about the activity and performance of the server as well as any problems that may be occuring&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
- &#039;&#039;&#039;Adapt Advertising to Users interests&#039;&#039;&#039;:Advertising Companys can use the information to identify themes and products of interest to a group of users. You get an overview of groups of things people are interessted in. So they can adapt the topics of their advertisement to this information.&lt;br /&gt;
&lt;br /&gt;
===Example Questions===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Proposed Design==&lt;br /&gt;
&lt;br /&gt;
===Types of Visualization Applied===&lt;br /&gt;
&lt;br /&gt;
===Visual Mapping===&lt;br /&gt;
&lt;br /&gt;
(Datadimension =&amp;gt; Attribute)&lt;br /&gt;
&lt;br /&gt;
===Description of Used Techniques===&lt;br /&gt;
&lt;br /&gt;
===Possibilities of Interaction===&lt;br /&gt;
&lt;br /&gt;
===Mockups / Fake Screenshots===&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_3&amp;diff=7899</id>
		<title>Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G7 - Aufgabe 3</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_3&amp;diff=7899"/>
		<updated>2005-11-18T10:55:49Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: /* General Description */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Topic==&lt;br /&gt;
Webserver Logfile Visualization&lt;br /&gt;
&lt;br /&gt;
==Area of Application==&lt;br /&gt;
&lt;br /&gt;
===Analysis of Application Area===&lt;br /&gt;
&lt;br /&gt;
====General Description====&lt;br /&gt;
Webservers typically generate logfiles containing huge amounts of information on page accesses, used client software, type of access, and many more. Analysis tools like for example AWStats try to make use of this information and present simple statistics mostly in form of tables or simple bar graphs. Unfortunately, they are mostly very limited and &amp;quot;low-level&amp;quot; regarding their information representation. More interesting questions like user behavior in combination with site structure, dead ends, changes in behavior regarding to time (evolution), typical behavioral patterns, finding groups of users that share similar behavioral patterns, site entry points, or intrusion detection cannot be answered by using similar tools. For being able to deal with this kind of topics, more advanced visual tools are needed that unveil this information.&lt;br /&gt;
&lt;br /&gt;
====Special Issues====&lt;br /&gt;
&lt;br /&gt;
===Analysis of the Dataset===&lt;br /&gt;
&lt;br /&gt;
====Description of the Datatypes====&lt;br /&gt;
&lt;br /&gt;
====Description of the Datastructures====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Target Group==&lt;br /&gt;
&lt;br /&gt;
===Identifying the Target===&lt;br /&gt;
We identified the following Target groups:&lt;br /&gt;
#Software Companies: especially those who develop browsers and web based applications&lt;br /&gt;
#Web Dsigners&lt;br /&gt;
#Administrators&lt;br /&gt;
#Advertising Companys&lt;br /&gt;
#Web Users&lt;br /&gt;
&lt;br /&gt;
===Special Issues of the Target Group===&lt;br /&gt;
- &#039;&#039;&#039;Improve the Servers&#039;&#039;&#039;: Administrators, Web Designers and Software Companies need this information, to improve the Servers. They need to know what people are interested in, if there are special groups, which have similar behavior, navigate to the same themes and in a similar way. What kind of themes are often searched for, and how. With this information, they can help Users to get the things they want faster and easier. They can adapt the Server to the needs of the Users.&amp;lt;br&amp;gt;&lt;br /&gt;
In order to effectively manage a web server, it is necessary to get feedback about the activity and performance of the server as well as any problems that may be occuring&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
- &#039;&#039;&#039;Adapt Advertising to Users interests&#039;&#039;&#039;:Advertising Companys can use the information to identify themes and products of interest to a group of users. You get an overview of groups of things people are interessted in. So they can adapt the topics of their advertisement to this information.&lt;br /&gt;
&lt;br /&gt;
===Known Solutions / Methods (related to the target group)===&lt;br /&gt;
#Radial Tree Viewer&lt;br /&gt;
#Anemone&lt;br /&gt;
#Internet Cartographer&lt;br /&gt;
#Radial Tree Viewer&lt;br /&gt;
#WebTracer&lt;br /&gt;
#WebHopper&lt;br /&gt;
#WebPath&lt;br /&gt;
#The Chicago Tribune Website&lt;br /&gt;
#Visualizing the online debate on the European Constitution&lt;br /&gt;
#Mercator&amp;lt;br&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
==Intended Purpose==&lt;br /&gt;
&lt;br /&gt;
===Goals and Objectives===&lt;br /&gt;
#Which client software is used, which browsers&lt;br /&gt;
#How users behave, in combination with site structure, dead ends, changes in behavior regarding to time.&lt;br /&gt;
#Identify groups of users who act in a similar way.&lt;br /&gt;
#Identify &amp;quot;hot&amp;quot; topics&lt;br /&gt;
&lt;br /&gt;
===Problems and Tasks to Solve===&lt;br /&gt;
&lt;br /&gt;
===Example Questions===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Proposed Design==&lt;br /&gt;
&lt;br /&gt;
===Types of Visualization Applied===&lt;br /&gt;
&lt;br /&gt;
===Visual Mapping===&lt;br /&gt;
&lt;br /&gt;
(Datadimension =&amp;gt; Attribute)&lt;br /&gt;
&lt;br /&gt;
===Description of Used Techniques===&lt;br /&gt;
&lt;br /&gt;
===Possibilities of Interaction===&lt;br /&gt;
&lt;br /&gt;
===Mockups / Fake Screenshots===&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_2&amp;diff=7847</id>
		<title>Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G7 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_2&amp;diff=7847"/>
		<updated>2005-11-15T11:28:29Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic ==&lt;br /&gt;
[[Image:Perceptualedge03world-car-production.gif|none|thumb|600px|World Car Production 1977-80 (click on image for larger version)]]&lt;br /&gt;
&lt;br /&gt;
== Drawbacks ==&lt;br /&gt;
&lt;br /&gt;
This image is far away from a good Visualization of the underlying Data. It has drawbacks according to some well known Design Principles, which we will explain in the following:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;data ink&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Everything that communicates actual data is data ink and is needed.[Few,2004] But our image contains some unnecessary data ink. The white Border around all the charts and the white lines around each single chart and between the pies of the charts are unnecessary data ink.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;color&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
Lines, bars and charts should be colored in a way, that not one color stands out more prominently than the others, thus supporting the equal importance of the three data sets.[Few,2004] In our image the red and blue pies of the charts violate this principle because they stand out more prominently than the others.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;lie factor&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
The lie lactor is a value to describe the relation between the size of effect shown in a graphic and the size of effect shown in the data.[Muster et al.,2005] The first problem is, it seems that we look at the image not from the front but a little from the side. That distorts the message since neither the angles nor the areas are in proportion to the data.[Seyfang et al., 2005] The second one is that the charts have different distances to each other. The distance of the chart 1977 to the chart 1978 is shorter than that from 1979 to 1980. It schould be the same.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;past experience&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
That means that past experience have an effect on how we see and interpret things.[Starl and Froschauer, 2005] You can say that our image somehow violates this principle. We are used to read from left to right, but the charts on the image are organized from right to left. This can be confusing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;simplicity&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
You should keep your image as simple as possible, which also means that you have to reduce redundant information.[Few,2004] Our image violates this principle. The percentage of a lands contribution to the world production is shown on one hand via the angle and size of the pies and on the other hand it is written numerical above the pies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Updated Picture ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Infovis_worldwide_car_production.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Changes ==&lt;br /&gt;
&lt;br /&gt;
Our objective was to present the information as simple and transparent as possible. In order to achieve this, we use a ThemeRiver [Havre et al., 1999] influenced diagram. The ThemeRiver visualization helps users identify time-related patterns, trends, and relationships. The themes are represented by a &amp;quot;river&amp;quot; that flows left to right through time. The river widens or narrows to depict changes in the underlying data. Individual themes are represented as colored &amp;quot;currents&amp;quot; flowing within the river. The theme currents narrow or widen to indicate changes in individual theme strength at any point in time.&lt;br /&gt;
&lt;br /&gt;
Because of the flowing structure it is now much simpler to follow trends and changes in market share, as well as overall changes in the world wide car production.&lt;br /&gt;
&lt;br /&gt;
It is much easier to compare the different values with one another than it was before. The different colours are clearly distinguishable on white background, the values are good readable and the temporal sequence goes from left to right. We intentionally abstained from a three-dimensional look because it is not necessary and moreover confuses the viewer. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Major advantages:&lt;br /&gt;
&lt;br /&gt;
* makes it eays to follow trends and market share&lt;br /&gt;
* shows development of the world wide car production&lt;br /&gt;
* simplifies comparisson of different values over time&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
:[1] [Few, 2004] Stephen Few, Elegance Through Simplicity, Intelligent Enterprise, Access Date: 26 October 2005, http://www.intelligententerprise.com/showArticle.jhtml;jsessionid=N2ATDQWY5VYKSQSNDBGCKHSCJUMEKJVN?articleID=49400920&lt;br /&gt;
&lt;br /&gt;
:[2] [Seyfang et al., 2005] Leonhard Seyfang, Heinrich Fritz, Stefan Schnabl, Gioia Baldass , Gruppe G8 - Aufgabe 1 - Chart Junk, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G8_-_Aufgabe_1_-_Chart_Junk&lt;br /&gt;
&lt;br /&gt;
:[3] [Muster et al.,2005] Anna Muster, Jürgen Puchta, Christian Rainer, Christoph Sölder, Gruppe G4 - Aufgabe 1 - Lie Factor, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G4_-_Aufgabe_1_-_Lie_Factor&lt;br /&gt;
&lt;br /&gt;
:[4] [Starl and Froschauer, 2005] Erwin Starl, Joseph Froschauer, Gruppe G7 - Aufgabe 1, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_1_-_Gestalt_Laws&lt;br /&gt;
&lt;br /&gt;
:[5] [Havre et al., 1999] Susan Havre, Beth Hetzler, Lucy Nowell, ThemeRiver(TM): In Search of Trends, Patterns, and Relationships, Battelle Pacific Northwest Division, 1999. http://citeseer.ist.psu.edu/havre99themerivertm.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_2&amp;diff=7846</id>
		<title>Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G7 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_2&amp;diff=7846"/>
		<updated>2005-11-15T11:27:41Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic ==&lt;br /&gt;
[[Image:Perceptualedge03world-car-production.gif|none|thumb|600px|World Car Production 1977-80 (click on image for larger version)]]&lt;br /&gt;
&lt;br /&gt;
== Drawbacks ==&lt;br /&gt;
&lt;br /&gt;
This image is far away from a good Visualization of the underlying Data. It has drawbacks according to some well known Design Principles, which we will explain in the following:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;data ink&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Everything that communicates actual data is data ink and is needed.[Few,2004] But our image contains some unnecessary data ink. The white Border around all the charts and the white lines around each single chart and between the pies of the charts are unnecessary data ink.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;color&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
Lines, bars and charts should be colored in a way, that not one color stands out more prominently than the others, thus supporting the equal importance of the three data sets.[Few,2004] In our image the red and blue pies of the charts violate this principle because they stand out more prominently than the others.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;lie factor&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
The lie lactor is a value to describe the relation between the size of effect shown in a graphic and the size of effect shown in the data.[Muster et al.,2005] The first problem is, it seems that we look at the image not from the front but a little from the side. That distorts the message since neither the angles nor the areas are in proportion to the data.[Seyfang et al., 2005] The second one is that the charts have different distances to each other. The distance of the chart 1977 to the chart 1978 is shorter than that from 1979 to 1980. It schould be the same.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;past experience&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
That means that past experience have an effect on how we see and interpret things.[Starl and Froschauer, 2005] You can say that our image somehow violates this principle. We are used to read from left to right, but the charts on the image are organized from right to left. This can be confusing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;simplicity&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
You should keep your image as simple as possible, which also means that you have to reduce redundant information.[Few,2004] Our image violates this principle. The percentage of a lands contribution to the world production is shown on one hand via the angle and size of the pies and on the other hand it is written numerical above the pies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Updated Picture ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Infovis_worldwide_car_production.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Changes ==&lt;br /&gt;
&lt;br /&gt;
Our objective was to present the information as simple and transparent as possible. In order to achieve this, we use a ThemeRiver [Havre et al., 1999] influenced diagram. The ThemeRiver visualization helps users identify time-related patterns, trends, and relationships. The themes are represented by a &amp;quot;river&amp;quot; that flows left to right through time. The river widens or narrows to depict changes in the underlying data. Individual themes are represented as colored &amp;quot;currents&amp;quot; flowing within the river. The theme currents narrow or widen to indicate changes in individual theme strength at any point in time.&lt;br /&gt;
&lt;br /&gt;
Because of the flowing structure it is now much simpler to follow trends and changes in market share, as well as overall changes in the world wide car production.&lt;br /&gt;
&lt;br /&gt;
It is much easier to compare the different values with one another than it was before. The different colours are clearly distinguishable on white background, the values are good readable and the temporal sequence goes from left to right. We intentionally abstained from a three-dimensional look because it is not necessary and moreover confuses the viewer. &lt;br /&gt;
&lt;br /&gt;
Major advantages:&lt;br /&gt;
&lt;br /&gt;
- makes it eays to follow trends and market share&lt;br /&gt;
- shows development of the world wide car production&lt;br /&gt;
- simplifies comparisson of different values over time&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
:[1] [Few, 2004] Stephen Few, Elegance Through Simplicity, Intelligent Enterprise, Access Date: 26 October 2005, http://www.intelligententerprise.com/showArticle.jhtml;jsessionid=N2ATDQWY5VYKSQSNDBGCKHSCJUMEKJVN?articleID=49400920&lt;br /&gt;
&lt;br /&gt;
:[2] [Seyfang et al., 2005] Leonhard Seyfang, Heinrich Fritz, Stefan Schnabl, Gioia Baldass , Gruppe G8 - Aufgabe 1 - Chart Junk, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G8_-_Aufgabe_1_-_Chart_Junk&lt;br /&gt;
&lt;br /&gt;
:[3] [Muster et al.,2005] Anna Muster, Jürgen Puchta, Christian Rainer, Christoph Sölder, Gruppe G4 - Aufgabe 1 - Lie Factor, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G4_-_Aufgabe_1_-_Lie_Factor&lt;br /&gt;
&lt;br /&gt;
:[4] [Starl and Froschauer, 2005] Erwin Starl, Joseph Froschauer, Gruppe G7 - Aufgabe 1, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_1_-_Gestalt_Laws&lt;br /&gt;
&lt;br /&gt;
:[5] [Havre et al., 1999] Susan Havre, Beth Hetzler, Lucy Nowell, ThemeRiver(TM): In Search of Trends, Patterns, and Relationships, Battelle Pacific Northwest Division, 1999. http://citeseer.ist.psu.edu/havre99themerivertm.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_2&amp;diff=7845</id>
		<title>Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G7 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_2&amp;diff=7845"/>
		<updated>2005-11-15T11:04:19Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic ==&lt;br /&gt;
[[Image:Perceptualedge03world-car-production.gif|none|thumb|600px|World Car Production 1977-80 (click on image for larger version)]]&lt;br /&gt;
&lt;br /&gt;
== Drawbacks ==&lt;br /&gt;
&lt;br /&gt;
This image is far away from a good Visualization of the underlying Data. It has drawbacks according to some well known Design Principles, which we will explain in the following:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;data ink&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Everything that communicates actual data is data ink and is needed.[Few,2004] But our image contains some unnecessary data ink. The white Border around all the charts and the white lines around each single chart and between the pies of the charts are unnecessary data ink.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;color&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
Lines, bars and charts should be colored in a way, that not one color stands out more prominently than the others, thus supporting the equal importance of the three data sets.[Few,2004] In our image the red and blue pies of the charts violate this principle because they stand out more prominently than the others.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;lie factor&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
The lie lactor is a value to describe the relation between the size of effect shown in a graphic and the size of effect shown in the data.[Muster et al.,2005] The first problem is, it seems that we look at the image not from the front but a little from the side. That distorts the message since neither the angles nor the areas are in proportion to the data.[Seyfang et al., 2005] The second one is that the charts have different distances to each other. The distance of the chart 1977 to the chart 1978 is shorter than that from 1979 to 1980. It schould be the same.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;past experience&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
That means that past experience have an effect on how we see and interpret things.[Starl and Froschauer, 2005] You can say that our image somehow violates this principle. We are used to read from left to right, but the charts on the image are organized from right to left. This can be confusing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;simplicity&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
You should keep your image as simple as possible, which also means that you have to reduce redundant information.[Few,2004] Our image violates this principle. The percentage of a lands contribution to the world production is shown on one hand via the angle and size of the pies and on the other hand it is written numerical above the pies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Updated Picture ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Infovis_worldwide_car_production.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Changes ==&lt;br /&gt;
&lt;br /&gt;
Our objective was to present the information as simple and transparent as possible. In order to achieve this, we use a ThemeRiver [Havre et al., 1999] influenced diagram. The ThemeRiver visualization helps users identify time-related patterns, trends, and relationships. The themes are represented by a &amp;quot;river&amp;quot; that flows left to right through time. The river widens or narrows to depict changes in the underlying data. Individual themes are represented as colored &amp;quot;currents&amp;quot; flowing within the river. The theme currents narrow or widen to indicate changes in individual theme strength at any point in time.&lt;br /&gt;
&lt;br /&gt;
Because of the flowing structure it is now much simpler to follow trends and changes in market share, as well as overall changes in the world wide car production.&lt;br /&gt;
&lt;br /&gt;
It is much easier to compare the different values with one another than it was before. The different colours are clearly distinguishable on white background, the values are good readable and the temporal sequence goes from left to right. We intentionally abstained from a three-dimensional look because it is not necessary and moreover confuses the viewer. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
:[1] [Few, 2004] Stephen Few, Elegance Through Simplicity, Intelligent Enterprise, Access Date: 26 October 2005, http://www.intelligententerprise.com/showArticle.jhtml;jsessionid=N2ATDQWY5VYKSQSNDBGCKHSCJUMEKJVN?articleID=49400920&lt;br /&gt;
&lt;br /&gt;
:[2] [Seyfang et al., 2005] Leonhard Seyfang, Heinrich Fritz, Stefan Schnabl, Gioia Baldass , Gruppe G8 - Aufgabe 1 - Chart Junk, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G8_-_Aufgabe_1_-_Chart_Junk&lt;br /&gt;
&lt;br /&gt;
:[3] [Muster et al.,2005] Anna Muster, Jürgen Puchta, Christian Rainer, Christoph Sölder, Gruppe G4 - Aufgabe 1 - Lie Factor, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G4_-_Aufgabe_1_-_Lie_Factor&lt;br /&gt;
&lt;br /&gt;
:[4] [Starl and Froschauer, 2005] Erwin Starl, Joseph Froschauer, Gruppe G7 - Aufgabe 1, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_1_-_Gestalt_Laws&lt;br /&gt;
&lt;br /&gt;
:[5] [Havre et al., 1999] Susan Havre, Beth Hetzler, Lucy Nowell, ThemeRiver(TM): In Search of Trends, Patterns, and Relationships, Battelle Pacific Northwest Division, 1999. http://citeseer.ist.psu.edu/havre99themerivertm.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_2&amp;diff=7409</id>
		<title>Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G7 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_2&amp;diff=7409"/>
		<updated>2005-11-02T17:31:22Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic ==&lt;br /&gt;
[[Image:Perceptualedge03world-car-production.gif|none|thumb|600px|World Car Production 1977-80 (click on image for larger version)]]&lt;br /&gt;
&lt;br /&gt;
== Drawbacks ==&lt;br /&gt;
&lt;br /&gt;
This image is far away from a good Visualization of the underlying Data. It has drawbacks according to some well known Design Principles, which we will explain in the following:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;data ink&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Everything that communicates actual data is data ink and is needed.[1] But our image contains some unnecessary data ink. The white Border around all the charts and the white lines around each single chart and between the pies of the charts are unnecessary data ink.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;color&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
Lines, bars and charts should be colored in a way, that that no one color stands out more prominently than the others, thus supporting the equal importance of the three data sets.[1] In our image the red and blue pies of the charts violate this principle because they stand out more promonently than the others.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;lie factor&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
The lie lactor is a value to describe the relation between the size of effect shown in a graphic and the size of effect shown in the data.[3] The first problem is, it seems that we look at the image not from the front but a little from the side. That distorts the message since neither the angles nor the areas are in proportion to the data.[2] The second one is that the charts have different distances to each other. The distance of the chart 1977 to the chart 1978 is shorter than that from 1979 to 1980. It schould be the same.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;past experience&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
That means that past experience have an effect of how we see and interpret things.[4] You can say that our image somehow violates this principle. We are used to read from left to right, but the charts on the image are organized from right to left. This can be confusing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;simplicity&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
You should keep your image as simple as possible, which also means that you have to reduce redundant information.[1] Our image violates this principle. The percentage of a lands contribution to the world production is shown on one hand via the angle and size of the pies and on the other hand it is written numerical above the pies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Updated Picture ==&lt;br /&gt;
&lt;br /&gt;
[[Image:worldcarprod.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Changes ==&lt;br /&gt;
&lt;br /&gt;
Our objective was to present the information as simple and transparent as possible. In order to achieve this, we use a two-dimensional diagram with grouped bars. It is much easier to compare the different values with one another than it was before. The different colours are clearly distinguishable on white background, the values are good readable and the temporally sequence goes from left to right. We intentionally abstaint from a three-dimensional look because it is not necessary and moreover confuses the viewer.  &lt;br /&gt;
All in all the graphic looks much more orderly and simplified. &lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
:[1] [Few, 2004] Stephen Few, Elegance Through Simplicity, Intelligent Enterprise, Access Date: 26 October 2005, http://www.intelligententerprise.com/showArticle.jhtml;jsessionid=N2ATDQWY5VYKSQSNDBGCKHSCJUMEKJVN?articleID=49400920&lt;br /&gt;
&lt;br /&gt;
:[2] [Seyfang, Fritz, Schnabl, Baldass, 2005] Leonhard Seyfang, Heinrich Fritz, Stefan Schnabl, Gioia Baldass , Gruppe G8 - Aufgabe 1 - Chart Junk, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G8_-_Aufgabe_1_-_Chart_Junk&lt;br /&gt;
&lt;br /&gt;
:[3] [Muster, Puchta, Rainer, Sölder, 2005] Anna Muster, Jürgen Puchta, Christian Rainer, Christoph Sölder, Gruppe G4 - Aufgabe 1 - Lie Factor, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G4_-_Aufgabe_1_-_Lie_Factor&lt;br /&gt;
&lt;br /&gt;
:[4] [Starl, Froschauer, 2005] Erwin Starl, Joseph Froschauer, Gruppe G7 - Aufgabe 1, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_1_-_Gestalt_Laws&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_2&amp;diff=7118</id>
		<title>Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G7 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_2&amp;diff=7118"/>
		<updated>2005-10-27T14:48:51Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic ==&lt;br /&gt;
[[Image:Perceptualedge03world-car-production.gif|none|thumb|600px|World Car Production 1977-80 (click on image for larger version)]]&lt;br /&gt;
&lt;br /&gt;
== Drawbacks ==&lt;br /&gt;
&lt;br /&gt;
This image is far away from a good Visualization of the underlying Data. It has drawbacks according to some well known Design Principles, which we will explain in the following:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;data ink&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Everything that communicates actual data is data ink and is needed.[1] But our image contains some unnecessary data ink. The white Border around all the charts and the white lines around each single chart and between the pies of the charts are unnecessary data ink.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;color&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
Lines, bars and charts should be colored in a way, that that no one color stands out more prominently than the others, thus supporting the equal importance of the three data sets.[1] In our image the red and blue pies of the charts violate this principle because they stand out more promonently than the others.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;lie factor&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
The lie lactor is a value to describe the relation between the size of effect shown in a graphic and the size of effect shown in the data.[3] The first problem is, it seems that we look at the image not from the front but a little from the side. That distorts the message since neither the angles nor the areas are in proportion to the data.[2] The second one is that the charts have different distances to each other. The distance of the chart 1977 to the chart 1978 is shorter than that from 1979 to 1980. It schould be the same.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;past experience&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
That means that past experience have an effect of how we see and interpret things.[4] You can say that our image somehow violates this principle. We are used to read from left to right, but the charts on the image are organized from right to left. This can be confusing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;simplicity&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
You should keep your image as simple as possible, which also means that you have to reduce redundant information.[1] Our image violates this principle. The percentage of a lands contribution to the world production is shown on one hand via the angle and size of the pies and on the other hand it is written numerical above the pies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Updated Picture ==&lt;br /&gt;
&lt;br /&gt;
[[Image:worldcarprod.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Changes ==&lt;br /&gt;
&lt;br /&gt;
Our objective was to present the information as simple and transparent as possible. In order to achieve this, we use a two-dimensional diagram with grouped bars. It is much easier to compare the different values with one another than it was before. The different colours are clearly distinguishable on white background, the values are good readable and the temporally sequence goes from left to right. We intentionally abstaint from a three-dimensional look because it is not necessary and moreover confuses the viewer.  &lt;br /&gt;
All in all the graphic looks much more orderly and simplified. &lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
:[1] [Few, 2004] Stephen Few, Elegance Through Simplicity, Intelligent Enterprise, Access Date: 26 October 2005, http://www.intelligententerprise.com/showArticle.jhtml;jsessionid=N2ATDQWY5VYKSQSNDBGCKHSCJUMEKJVN?articleID=49400920&lt;br /&gt;
&lt;br /&gt;
:[2] [Seyfang, Fritz, Schnabl, Baldass, 2005] Leonhard Seyfang, Heinrich Fritz, Stefan Schnabl, Gioia Baldass , Gruppe G8 - Aufgabe 1 - Chart Junk, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G8_-_Aufgabe_1_-_Chart_Junk&lt;br /&gt;
&lt;br /&gt;
:[3] [Muster, Puchta, Rainer, Sölder, 2005] Anna Muster, Jürgen Puchta, Christian Rainer, Christoph Sölder, Gruppe G4 - Aufgabe 1 - Lie Factor, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G4_-_Aufgabe_1_-_Lie_Factor&lt;br /&gt;
&lt;br /&gt;
:[4] [Starl, Froschauer, 205] Erwin Starl, Joseph Froschauer, Gruppe G7 - Aufgabe 1, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_1_-_Gestalt_Laws&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_2&amp;diff=7090</id>
		<title>Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G7 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_2&amp;diff=7090"/>
		<updated>2005-10-27T09:49:51Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic ==&lt;br /&gt;
[[Image:Perceptualedge03world-car-production.gif|none|thumb|600px|World Car Production 1977-80 (click on image for larger version)]]&lt;br /&gt;
&lt;br /&gt;
== Drawbacks ==&lt;br /&gt;
&lt;br /&gt;
This image is far away from a good Visualization of the underlying Data. It has drawbacks according to some well known Design Principles, which we will explain in the following:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;data ink&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Everything that communicates actual data is data ink and is needed.[1] But our image contains some unnecessary data ink. The white Border around all the charts and the white lines around each single chart and between the pies of the charts are unnecessary data ink.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;color&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
Lines, bars and charts should be colored in a way, that that no one color stands out more prominently than the others, thus supporting the equal importance of the three data sets.[1] In our image the red and blue pies of the charts violate this principle because they stand out more promonently than the others.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;lie factor&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
The lie lactor is a value to describe the relation between the size of effect shown in a graphic and the size of effect shown in the data.[3] The first problem is, it seems that we look at the image not from the front but a little from the side. That distorts the message since neither the angles nor the areas are in proportion to the data.[2] The second one is that the charts have different distances to each other. The distance of the chart 1977 to the chart 1978 is shorter than that from 1979 to 1980. It schould be the same.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;past experience&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
That means that past experience have an effect of how we see and interpret things.[4] You can say that our image somehow violates this principle. We are used to read from left to right, but the charts on the image are organized from right to left. This can be confusing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;simplicity&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
You should keep your image as simple as possible, which also means that you have to reduce redundant information.[1] Our image violates this principle. The percentage of a lands contribution to the world production is shown on one hand via the angle and size of the pies and on the other hand it is written numerical above the pies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Updated Picture ==&lt;br /&gt;
&lt;br /&gt;
[[Image:worldcarprod.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== was wurde verbessert ==&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
:[1] [Few, 2004] Stephen Few, Elegance Through Simplicity, Intelligent Enterprise, Access Date: 26 October 2005, http://www.intelligententerprise.com/showArticle.jhtml;jsessionid=N2ATDQWY5VYKSQSNDBGCKHSCJUMEKJVN?articleID=49400920&lt;br /&gt;
&lt;br /&gt;
:[2] [Seyfang, Fritz, Schnabl, Baldass, 2005] Leonhard Seyfang, Heinrich Fritz, Stefan Schnabl, Gioia Baldass , Gruppe G8 - Aufgabe 1 - Chart Junk, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G8_-_Aufgabe_1_-_Chart_Junk&lt;br /&gt;
&lt;br /&gt;
:[3] [Muster, Puchta, Rainer, Sölder, 2005] Anna Muster, Jürgen Puchta, Christian Rainer, Christoph Sölder, Gruppe G4 - Aufgabe 1 - Lie Factor, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G4_-_Aufgabe_1_-_Lie_Factor&lt;br /&gt;
&lt;br /&gt;
:[4] [Starl, Froschauer, 205] Erwin Starl, Joseph Froschauer, Gruppe G7 - Aufgabe 1, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_1_-_Gestalt_Laws&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Worldcarprod.jpg&amp;diff=7089</id>
		<title>File:Worldcarprod.jpg</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Worldcarprod.jpg&amp;diff=7089"/>
		<updated>2005-10-27T09:47:58Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: World Car Production 1977-80&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
World Car Production 1977-80&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_2&amp;diff=7088</id>
		<title>Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G7 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_2&amp;diff=7088"/>
		<updated>2005-10-27T09:26:51Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic ==&lt;br /&gt;
[[Image:Perceptualedge03world-car-production.gif|none|thumb|600px|World Car Production 1977-80 (click on image for larger version)]]&lt;br /&gt;
&lt;br /&gt;
== Drawbacks ==&lt;br /&gt;
&lt;br /&gt;
This image is far away from a good Visualization of the underlying Data. It has drawbacks according to some well known Design Principles, which we will explain in the following:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;data ink&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Everything that communicates actual data is data ink and is needed.[1] But our image contains some unnecessary data ink. The white Border around all the charts and the white lines around each single chart and between the pies of the charts are unnecessary data ink.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;color&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
Lines, bars and charts should be colored in a way, that that no one color stands out more prominently than the others, thus supporting the equal importance of the three data sets.[1] In our image the red and blue pies of the charts violate this principle because they stand out more promonently than the others.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;lie factor&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
The lie lactor is a value to describe the relation between the size of effect shown in a graphic and the size of effect shown in the data.[3] The first problem is, it seems that we look at the image not from the front but a little from the side. That distorts the message since neither the angles nor the areas are in proportion to the data.[2] The second one is that the charts have different distances to each other. The distance of the chart 1977 to the chart 1978 is shorter than that from 1979 to 1980. It schould be the same.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;past experience&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
That means that past experience have an effect of how we see and interpret things.[4] You can say that our image somehow violates this principle. We are used to read from left to right, but the charts on the image are organized from right to left. This can be confusing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;simplicity&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
You should keep your image as simple as possible, which also means that you have to reduce redundant information.[1] Our image violates this principle. The percentage of a lands contribution to the world production is shown on one hand via the angle and size of the pies and on the other hand it is written numerical above the pies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Updated Picture ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Carprod77.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Carprod78.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Carprod79.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Carprod80.jpg]]&lt;br /&gt;
&lt;br /&gt;
== was wurde verbessert ==&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
:[1] [Few, 2004] Stephen Few, Elegance Through Simplicity, Intelligent Enterprise, Access Date: 26 October 2005, http://www.intelligententerprise.com/showArticle.jhtml;jsessionid=N2ATDQWY5VYKSQSNDBGCKHSCJUMEKJVN?articleID=49400920&lt;br /&gt;
&lt;br /&gt;
:[2] [Seyfang, Fritz, Schnabl, Baldass, 2005] Leonhard Seyfang, Heinrich Fritz, Stefan Schnabl, Gioia Baldass , Gruppe G8 - Aufgabe 1 - Chart Junk, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G8_-_Aufgabe_1_-_Chart_Junk&lt;br /&gt;
&lt;br /&gt;
:[3] [Muster, Puchta, Rainer, Sölder, 2005] Anna Muster, Jürgen Puchta, Christian Rainer, Christoph Sölder, Gruppe G4 - Aufgabe 1 - Lie Factor, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G4_-_Aufgabe_1_-_Lie_Factor&lt;br /&gt;
&lt;br /&gt;
:[4] [Starl, Froschauer, 205] Erwin Starl, Joseph Froschauer, Gruppe G7 - Aufgabe 1, InfoVis Wiki, Access Date: 26 October 2005, http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2005/06_-_Gruppe_G7_-_Aufgabe_1_-_Gestalt_Laws&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Carprod80.jpg&amp;diff=7087</id>
		<title>File:Carprod80.jpg</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Carprod80.jpg&amp;diff=7087"/>
		<updated>2005-10-27T09:02:28Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: World Car Production 1980&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
World Car Production 1980&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Carprod79.jpg&amp;diff=7086</id>
		<title>File:Carprod79.jpg</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Carprod79.jpg&amp;diff=7086"/>
		<updated>2005-10-27T09:02:08Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: World Car Production 1979&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
World Car Production 1979&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Carprod78.jpg&amp;diff=7085</id>
		<title>File:Carprod78.jpg</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Carprod78.jpg&amp;diff=7085"/>
		<updated>2005-10-27T09:01:52Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: World Car Production 1978&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
World Car Production 1978&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Carprod77.jpg&amp;diff=7084</id>
		<title>File:Carprod77.jpg</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Carprod77.jpg&amp;diff=7084"/>
		<updated>2005-10-27T09:01:05Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: World Car Production 1977&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
World Car Production 1977&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Past3.gif&amp;diff=6260</id>
		<title>File:Past3.gif</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Past3.gif&amp;diff=6260"/>
		<updated>2005-10-20T15:29:35Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
http://www.rci.rutgers.edu/~cfs/305_html/Gestalt/wertheimer2.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Past2.gif&amp;diff=6259</id>
		<title>File:Past2.gif</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Past2.gif&amp;diff=6259"/>
		<updated>2005-10-20T15:29:29Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
http://www.rci.rutgers.edu/~cfs/305_html/Gestalt/wertheimer2.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Past.gif&amp;diff=6258</id>
		<title>File:Past.gif</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Past.gif&amp;diff=6258"/>
		<updated>2005-10-20T15:28:42Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
http://www.rci.rutgers.edu/~cfs/305_html/Gestalt/wertheimer2.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Figureground.gif&amp;diff=6257</id>
		<title>File:Figureground.gif</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Figureground.gif&amp;diff=6257"/>
		<updated>2005-10-20T15:01:02Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
http://www.ship.edu/~cgboeree/gestalt.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Pragnanz.gif&amp;diff=6256</id>
		<title>File:Pragnanz.gif</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Pragnanz.gif&amp;diff=6256"/>
		<updated>2005-10-20T14:51:46Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
http://www.uic.edu/classes/psych/psych352jw/pragnanz1.gif&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Symmetry.gif&amp;diff=6255</id>
		<title>File:Symmetry.gif</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Symmetry.gif&amp;diff=6255"/>
		<updated>2005-10-20T14:48:54Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
http://www.aber.ac.uk/media/Modules/MC10220/visper06.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Common.gif&amp;diff=6254</id>
		<title>File:Common.gif</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Common.gif&amp;diff=6254"/>
		<updated>2005-10-20T14:43:02Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
http://coe.sdsu.edu/eet/articles/visualperc1/start.htm&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Continuation.gif&amp;diff=6252</id>
		<title>File:Continuation.gif</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Continuation.gif&amp;diff=6252"/>
		<updated>2005-10-20T14:34:16Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
http://www.sapdesignguild.org/resources/optical_illusions/gestalt_laws.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Good_cont.jpg&amp;diff=6251</id>
		<title>File:Good cont.jpg</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Good_cont.jpg&amp;diff=6251"/>
		<updated>2005-10-20T14:33:55Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
http://www.sapdesignguild.org/resources/optical_illusions/gestalt_laws.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Closure.gif&amp;diff=6250</id>
		<title>File:Closure.gif</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Closure.gif&amp;diff=6250"/>
		<updated>2005-10-20T14:33:31Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
http://www.sapdesignguild.org/resources/optical_illusions/gestalt_laws.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Similarity.gif&amp;diff=6249</id>
		<title>File:Similarity.gif</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Similarity.gif&amp;diff=6249"/>
		<updated>2005-10-20T14:29:38Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
http://www.sapdesignguild.org/resources/optical_illusions/gestalt_laws.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Proximity.gif&amp;diff=6248</id>
		<title>File:Proximity.gif</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Proximity.gif&amp;diff=6248"/>
		<updated>2005-10-20T14:02:46Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
http://www.sapdesignguild.org/resources/optical_illusions/gestalt_laws.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06&amp;diff=6003</id>
		<title>Teaching:TUW - UE InfoVis WS 2005/06</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06&amp;diff=6003"/>
		<updated>2005-10-15T09:33:44Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: /* Gruppen */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Aigner03infovis ue.gif]] &amp;lt;big&amp;gt;WS 2005/06&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;LVA Nr:&#039;&#039;&#039; 188.308 ([http://tuwis.tuwien.ac.at/zope/_ZopeId/61534949A2B1pKks5u4/tpp/lv/lva_html?num=188308&amp;amp;sem=2005W TUWIS++ Seite])&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;LVA Homepage:&#039;&#039;&#039; http://www.asgaard.tuwien.ac.at/~aigner/teaching/infovis_ue/index.html&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Leitung:&#039;&#039;&#039; [[Aigner, Wolfgang|Wolfgang Aigner]] [aigner (at) ifs.tuwien.ac.at]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  &#039;&#039;&#039;ACHTUNG:&#039;&#039;&#039; Namenskonventionen für Usernamen und Seiten einhalten! (siehe [http://www.asgaard.tuwien.ac.at/~aigner/teaching/infovis_ue/infovis_ue_aufgabe0.html Aufgabenstellung])&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bemerkung:&#039;&#039;&#039; Ein &#039;&#039;&#039;Stub&#039;&#039;&#039; ist ein Link bei dem das Ziel noch &#039;&#039;&#039;&#039;&#039;nicht&#039;&#039;&#039;&#039;&#039; existiert. (Die Links zu den Aufgabenseiten von den Gruppenseiten aus sollen Stubs sein.)&amp;lt;br&amp;gt;&lt;br /&gt;
*[[Das ist ein Stub]]&lt;br /&gt;
*[[Main Page|Das ist ein Link auf eine Seite innerhalb des Wikis]] (kein Stub)&lt;br /&gt;
*[http://www.asgaard.tuwien.ac.at/~aigner/teaching/infovis_ue/index.html Das ist ein Link auf eine Seite ausserhalb des Wikis] (kein Stub)&lt;br /&gt;
&lt;br /&gt;
  &#039;&#039;&#039;FYI:&#039;&#039;&#039; Die E-mail Benachrichtigung funktioniert jetzt wieder.&amp;lt;br&amp;gt;&lt;br /&gt;
  -- [[User:Iwolf|Wolfgang Aigner]] 09:48, 14 October 2005 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Gruppen ==&lt;br /&gt;
*[[Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G1|Gruppe G1 (Schwarz, Ledinek)]]&lt;br /&gt;
*&lt;br /&gt;
*[[Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G3|Gruppe G3 (Kargl,???,???)]]&lt;br /&gt;
*[[Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G4|Gruppe G4 (Muster, Puchta, Rainer, Sölder)]]&lt;br /&gt;
*&lt;br /&gt;
*&lt;br /&gt;
*[[Teaching:TUW - UE InfoVis WS 2005/06 -Gruppe  G7|Gruppe G7 (Yim, Froschauer)]]&lt;br /&gt;
*[[Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G8|Gruppe G8 (Seyfang, Fritz, Schnabl, Winkelhofer)]]&lt;br /&gt;
*[[Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe 09|Gruppe 09 (Glashütter, Tonkovic)]]&lt;br /&gt;
*[[Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe 10|Gruppe 10 (Minarik, Kals)]]&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
Gruppenlinks hier einfügen!&lt;br /&gt;
Beispiel:&lt;br /&gt;
*[[Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe XX|Gruppe XX]]&lt;br /&gt;
&amp;quot;XX&amp;quot; durch Gruppennummer ersetzen!&lt;br /&gt;
--&amp;gt;&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-Gruppe_G7&amp;diff=6002</id>
		<title>Teaching:TUW - UE InfoVis WS 2005/06 -Gruppe G7</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2005/06_-Gruppe_G7&amp;diff=6002"/>
		<updated>2005-10-15T09:30:52Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== &#039;&#039;&#039;Gruppe G7&#039;&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Die Gruppe G7 besteht bis jetzt aus den folgenden Mitgliedern:&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;i&amp;gt;The following people are part of the G7 group by now:&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[User:UE-InfoVis0506_0204041|Yim Seung-bin]]&lt;br /&gt;
* [[User:UE-InfoVis0506_0125718|Froschauer Josef]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&amp;lt;br&amp;gt;&lt;br /&gt;
[[Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G4 - Aufgabe 0|Aufgabe 0]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G4 - Aufgabe 1|Aufgabe 1]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G4 - Aufgabe 2|Aufgabe 2]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Teaching:TUW - UE InfoVis WS 2005/06 - Gruppe G4 - Aufgabe 3|Aufgabe 3]]&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=User:UE-InfoVis0506_0125718&amp;diff=6001</id>
		<title>User:UE-InfoVis0506 0125718</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=User:UE-InfoVis0506_0125718&amp;diff=6001"/>
		<updated>2005-10-15T09:26:57Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Name:&#039;&#039;&#039; Froschauer Josef&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;MatNr:&#039;&#039;&#039; 0125718 &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;kennzahl:&#039;&#039;&#039; 033 532 &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;e-mail:&#039;&#039;&#039; josef.froschauer&#039;&#039;&#039;AT&#039;&#039;&#039;gmx.at&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=User:UE-InfoVis0506_0125718&amp;diff=6000</id>
		<title>User:UE-InfoVis0506 0125718</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=User:UE-InfoVis0506_0125718&amp;diff=6000"/>
		<updated>2005-10-15T09:26:09Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0506 0125718: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Name:&#039;&#039;&#039; Josef Froschauer&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;MatNr:&#039;&#039;&#039; 0125718 &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;kennzahl:&#039;&#039;&#039; 033 532 &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;e-mail:&#039;&#039;&#039; josef.froschauer&#039;&#039;&#039;AT&#039;&#039;&#039;gmx.at&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0506 0125718</name></author>
	</entry>
</feed>