Extracting, Presenting and Browsing of Web Social Information Yi Wang and Li-zhu Zhou Tsinghua University, Beijing 100084, China [email protected] [email protected]

Abstract. We address the problem that current Web applications present mainly the content-centric information, but lack cues and browsing mechanisms for online social information. After summarizing key concepts of Web social information and analyzing characteristics of various visualization methods, we propose a set of general tools for rapid development social interfaces for interactive Web applications, including a simple but flexible programming language VisMap designed for Web application developers and maintainers to automate the process of extracting social information from the content-centric information, and a set of visualization methods encapsulated as VisModules for social information presentation and browsing. The interface of VisModules to VisMap programs are called visual scheme, which maps key concepts of social information to graphical elements of visual metaphors, and shields programmers from complex details of 3D graphics. Our goal of generalization is in contrast to previous works of creating specific visual metaphor for certain Web interaction.

1

Introduction

Although the Web is initially designed as a convenient way for information sharing and browsing, current technologies have evolved to turn the Web as an active arena of social activities. A number of interactive Web applications have been created for social communications, such as Web forums supporting white board, instant chat, and online game, besides traditional ways of reading and posting. But, currently the Web is concentrating on presenting content-centric information, but lacks cues and browsing mechanisms for the online social information [1]. For example, Web forums usually list all posters, but do not show who the participants are, what the purpose, tenor, and norms of the forum are; which sorts of newcomers are welcomed; how the most active participants contribute. However, in many cases it is exactly the social information that is most valuable. The participants, especially newcomers, always want to have an overview on a Web society before they ask, post, talk, and battle. The administrators and maintainers also need statistic of the social information to help them keep online communities flourishing. W. Fan, Z. Wu, and J. Yang (Eds.): WAIM 2005, LNCS 3739, pp. 828–833, 2005. c Springer-Verlag Berlin Heidelberg 2005 

Extracting, Presenting and Browsing of Web Social Information

829

We try to overcome the problem is by extracting social information from content-centric information and then publishing both of them through the Web. This strategy is practical because for most interactive Web applications the majority of the content-centric information is stored centrally on the server side and well-structured in relational databases, which can be directly inputted to sociological analysis algorithms, such as social network analysis [2]. After extraction, we consider presentation with interactive 3D techniques for its better expressiveness, intuitiveness, and utilizing of display space than traditional Web presentation based on text and images. Furthermore, interactive graphics operations like zooming, panning and fish-eye provide a smooth and natural way of drilling the information space without losing. Neither social analysis nor social information visualization is new. Many analysis and visualization algorithms have been proposed during the past years ([1], [2], [3], [4], [5]). But, from the aspect of information management, there is not any single analysis method or visual metaphor that is general for all kinds of social relationships embedded in all kinds of Web interactions. To address this problem, we proposed a framework (c.f. Figure 1) that support encapsulating various analysis and visualization algorithms as software modules that are callable by new light-weight programming language VisMap, which turns complex Web application development into organizing an information processing pipeline of social information extraction, presentation, and browsing with dozens of code lines. We believe this framework features several innovative aspects: – A unified tool for both analysis and presentation of social information. VisMap avoids the situation in Web world where different part of a system are created with different tools by incorporating the abilities of database access, social information extraction, analysis, and presentation. – A platform-independent tool for Web application development. VisMap is designed to be an interpretative language to avoid architectural dependencies. – Flexible choosing of analysis methods and visual metaphors. Analysis and visualization algorithms are encapsulated as external software modules called by VisMap programs. So the developers are free to choose components that matches characteristics of their application, but be shielded from details. – User interaction. VisMap supports an automatic GUI generation mechanism by mapping GUI variables defined in VisMap programs to GUI widgets. – Extensibility. The ability of VisMap to invoke external modules (with VisModule as a typical example), it is convenient to incorporate new analysis algorithms and visualization methods into the framework. – Performance. Because VisMap program interpreter runs on client side, the computation is naturally distributed. And with external modules implemented with compiled languages, performance of analysis and browsing can be guaranteed comparable to normal visual analysis applications. The workload of database access is in the same level as traditional content-centric Web applications.

830

Y. Wang and L.-z. Zhou Database server

Content−centric information

Web application server

VisMap program

VisMap interpreter

Web browsers

visual scheme Social information VisModules

11 00 00 11 00 11 00 11

Fig. 1. Creating social interface for interactive Web applications with VisMap program and VisModule

2

The VisMap Language

The language of VisMap is designed for Web developers and maintainers to organize their choice of methods of mining and presenting social information. Except for its functionality, we try to design VisMap a simple language with learning curve as short as HTML and Javascript. In this section, we discuss the features of VisMap that makes it suitable and complete for the work.

Fig. 2. Three running instances of a sample VisMap program showing co-thread relations. Each instance has a automatically generated GUI panel holding widgets allowing users to express their current interest.

– Data type system. As a data manipulating language, elementary types of VisMap are compatible with SQL (ISO 9075-1987). And a special first-order elementary type, function handler (fhandle), is to support callback from external modules. Compound types of VisMap include tuple, enumeration and gui. tuple organizes fixed number of variables in different types as struct in C. An enumeration organizes arbitrary number (can be infinity) of variables as a dynamic array. An enumeration of tuples is usually used to represent a SQL query result. gui is a specialization of tuple with certain structure to describe necessary information (e.g., the possible choices of its value represented as an enumeration) to map a GUI widget.

Extracting, Presenting and Browsing of Web Social Information

831

– Embedded SQL. To drill database to extract social information, VisMap supports embedded SQL, which can include VisMap variables directly as parameters. Syntactically, embedded SQL programs are enclosed within double braces, and treated as a remote procedure call (RPC) to database server. – Automatic GUI generation. VisMap developers do not need a GUI designer, a GUI panel will be created at runtime, and all the defined gui-typed variables are mapped to automatically generate GUI widgets. An example is shown in Figure 2. – Function extension. The VisMap is extensible to interact with external modules through synchronous function calling or asynchronous callback notification. A callback function defined in VisMap program can have its handle retrieved by an operator & and then passed to an external module. Given the handle, external modules can call VisMap functions to notify certain kinds of events.

3

VisModule and Visual Schemes

Every interactive visual metaphor is designed to represent a certain kind of object and support certain behaviors. So, in order to make VisModules for VisMap, we have to abstract parameters defining the appearance and behavior of selected visual metaphors suitable for social information representation. In this section, we discuss the commonality of various visual metaphors suitable for presentation of social information, and summarize the principles of parameter abstraction as visual scheme. The key elements that makes up a society include: (1) Individuals, as the fundamental elements of any society, carrying both static features recorded in database and dynamic information retrieved by statistics; (2) Groups, as a thumbnail of a number of individuals with certain commonality; and (3) Relation, as the glue that joint individuals or groups to form a society. We concern primarily on three typical types of social relationship. (We use screen shots in following discussion from a real VisMap project that creates social information browsing interface for a real large scale Web forum[6].) – Relations between individuals. As the fundamental solid entities of societies, individuals and their relations can be intuitively visualized as a graph — with vertices corresponding to individuals and edges representing the relations. Figure 3(a) shows a VisMap program utilizing a VisModule that encapsulates the Path-finder network[7] to represent the co-threading relation between some users in the Web forum. – Relations between groups of individual. For Web forums, a discussion boards represent the group of users once posted on. Most Web forums categorize their discussion board and forms a parent-child relations between the groups. Figure 3(b) use TreeMap[8] VisModule to show such relationship. – Relations between individuals and groups. A typical relationship between individuals and groups is the contribution relation of users to discussion boards. As shown in Figure 3(c), a Cluster-Map[9] VisModule shows users

832

Y. Wang and L.-z. Zhou

(as balls) that once posted on one of the three discussion boards (“UNIX, “Linux”, and “Solaris” as blue balls). Users are clustered as blobs by the posting relationship with boards.

(a) Path-finder VisModule

(b) Tree-map Module

Vis-

(c) Cluster-map VisModule

Fig. 3. Screen shots of a real VisMap project.

Based on the three summarized key concepts of social information — individual, group, and relation, we define visual schemes for each VisModule as a set of three variables IndividualList, GroupList, and RelationList in type of enumeration>, which are assigned by VisMap programs and then visualized as graphical elements by VisModules. For the three VisModules demonstrated above, the placeholders TypeList are listed in Table 1. Table 1. The visual schemes of three VisModules Path-finder IndividuleList int color real height GroupList RelationList int individualIndex1 int individualIndex2 real weight

Tree Map string name string photoURL real size int groupIndex int parentGroup enumeration individualIndex

Cluster Map string name string label int individualIndex int groupIndex

Extracting, Presenting and Browsing of Web Social Information

4

833

Discussion and Conclusion

Based on analyzing and summarizing various Web interactions and visualization methods, we proposed and implemented an ease-to-use tool for Web application developers, maintainers, and even experienced users to develop social interface as interactive visual analysis programs. As a system aimed work, there are still some aspects worthy of more considerations, – Interact with Web browser. Currently, the VisModules are implemented as stand along C++ programs to ensure performance of graphics rendering and language interpretation. This makes it hard to interact with the Web browser. A possible solution is to re-implement VisModules as plugins of Web browsers, and to allocate a MIME type for the VisMap language. – Security. To ensure security of the framework, besides to incorporate VisMap interpreter into the security system of Web browser, we also need an authentication mechanism to ensure the harmlessness of VisMap extensions. A possible solution is digital signature that has been used for Java Applets and Microsoft ActiveX controls. The security requirement on the server side can be satisfied by relative mechanisms of database systems, e.g., open a publish account for real-only operations, as the port 80 opened for real-only WWW service.

References 1. Lee, A., Girgensohn, A., Zhang, J.: Browsers to support awareness and social interaction. IEEE Computer Graphics and Applications 24 (2004) 2. Hanneman, R.A.: Introduction to Social Network Methods. Web publication available through http://faculty.ucr.edu/˜hanneman/ (2000) 3. Sack, W.: Conversation map: A content-based usenet newsgroup browser. Proc. 5th Int’lConf. Intelligent User Interfaces, ACM Press (2000) 233–240 4. Smith, M., Fiore, A.: Visualization components for persistent conversations. Proc. SIGCHI Conf. Human Factors in Computing Systems (CHI 2001), ACM Press (2001) 136–143 5. et al, S.F.: Personal map: Automatically modeling the user’s online social network. Human-Computer Interaction (INTERACT 03), ISO Press (2003) 567–574 6. University, T.: Smth web forum, one of the largest web forum in asia. (http://www.smth.org) 7. Chen, C., Paul, R.J.: Visualizing a knowledge domain’s intellectual structure. IEEE Computer 34(3) (2001) 65–71 8. Bederson, B.B., Shneiderman, B., Wattenberg, M.: Ordered and quantum treemaps: making effective use of 2d space to display hierarchies. ACM Transactions on Graphics 21(4) (2002) 833–845 9. Fluit, C., Sabou, M., van Harmelen, F.: Cluter map — ontology-based information visualization. Chapter 3 of Visualizing the Semantic Web, editors Vladimir Geroimenko and Chaomei Chen (2002) 36–48

Extracting, Presenting and Browsing of Web Social ... - Springer Link

set of visualization methods encapsulated as VisModules for social in- formation ... sociological analysis algorithms, such as social network analysis [2]. After ex-.

632KB Sizes 0 Downloads 237 Views

Recommend Documents

Young Women's Social and Occupational ... - Springer Link
Susan Gore. Published online: 8 June 2007. © Springer ... during their senior year of high school, and this difference was more pronounced 2 years later.

Mining linguistic browsing patterns in the world wide web - Springer Link
World-wide-web applications have grown very rapidly and have made a ... tional Conference on Knowledge-Based Intelligent Information. Engineering Systems ...

Pseudo-randomness Inside Web Browsers - Springer Link
for JavaScript programs to access operating system services for retrieving random or entropy values without changing Web browser security poli- cies.

Recording and Replaying Navigations on AJAX Web ... - Springer Link
Implementing such replaying functionalities with modern web technologies such as ..... In: Proceedings of the 20th ACM International Conference on Information.

Recording and Replaying Navigations on AJAX Web ... - Springer Link
Implementing such replaying functionalities with modern web technologies ... Recording occurs automatically, i.e., the user navigates with a normal browser and.

Calculus of Variations - Springer Link
Jun 27, 2012 - the associated energy functional, allowing a variational treatment of the .... groups of the type U(n1) × ··· × U(nl) × {1} for various splittings of the dimension ...... u, using the Green theorem, the subelliptic Hardy inequali

Conflict and Health - Springer Link
Mar 14, 2008 - cle.php?art_id=5804]. May 30, 2006. 21. Tin Tad Clinic: Proposal for a Village-Based Health Care. Project at Ban Mai Ton Hoong, Fang District, ...

Fair social orderings when agents have unequal ... - Springer Link
inequalities in skills, and equal access to resources for all preferences. ..... We define another logical weakening of Hammond Equal Access by noting.

Social Image Search with Diverse Relevance Ranking - Springer Link
starfish, triumphal, turtle, watch, waterfall, wolf, chopper, fighter, flame, hairstyle, horse, motorcycle, rabbit, shark, snowman, sport, wildlife, aquarium, basin, bmw,.

Tinospora crispa - Springer Link
naturally free from side effects are still in use by diabetic patients, especially in Third .... For the perifusion studies, data from rat islets are presented as mean absolute .... treated animals showed signs of recovery in body weight gains, reach

Chloraea alpina - Springer Link
Many floral characters influence not only pollen receipt and seed set but also pollen export and the number of seeds sired in the .... inserted by natural agents were not included in the final data set. Data were analysed with a ..... Ashman, T.L. an

GOODMAN'S - Springer Link
relation (evidential support) in “grue” contexts, not a logical relation (the ...... Fitelson, B.: The paradox of confirmation, Philosophy Compass, in B. Weatherson.

Bubo bubo - Springer Link
a local spatial-scale analysis. Joaquın Ortego Æ Pedro J. Cordero. Received: 16 March 2009 / Accepted: 17 August 2009 / Published online: 4 September 2009. Ó Springer Science+Business Media B.V. 2009. Abstract Knowledge of the factors influencing

Quantum Programming - Springer Link
Abstract. In this paper a programming language, qGCL, is presented for the expression of quantum algorithms. It contains the features re- quired to program a 'universal' quantum computer (including initiali- sation and observation), has a formal sema

BMC Bioinformatics - Springer Link
Apr 11, 2008 - Abstract. Background: This paper describes the design of an event ontology being developed for application in the machine understanding of infectious disease-related events reported in natural language text. This event ontology is desi

Social Network Discovery by Mining Spatio-Temporal ... - Springer Link
Centre for IT Services, Nanyang Technological University, Nanyang Avenue, Singapore 639798 email: [email protected]. Abstract. Knowing patterns of relationship in a social network is very useful for law enforcement agencies to investigate collaboratio

Candidate quality - Springer Link
didate quality when the campaigning costs are sufficiently high. Keywords Politicians' competence . Career concerns . Campaigning costs . Rewards for elected ...

Mathematical Biology - Springer Link
Here φ is the general form of free energy density. ... surfaces. γ is the edge energy density on the boundary. ..... According to the conventional Green theorem.

Artificial Emotions - Springer Link
Department of Computer Engineering and Industrial Automation. School of ... researchers in Computer Science and Artificial Intelligence (AI). It is believed that ...

Bayesian optimism - Springer Link
Jun 17, 2017 - also use the convention that for any f, g ∈ F and E ∈ , the act f Eg ...... and ESEM 2016 (Geneva) for helpful conversations and comments.

Contents - Springer Link
Dec 31, 2010 - Value-at-risk: The new benchmark for managing financial risk (3rd ed.). New. York: McGraw-Hill. 6. Markowitz, H. (1952). Portfolio selection. Journal of Finance, 7, 77–91. 7. Reilly, F., & Brown, K. (2002). Investment analysis & port