可视化检索系统的设计
2建立可视化检索系统,可以帮助用户更好地进行信息的浏览及筛选。本文基于万方数据库,将用户的检索词作为输入,利用java web中servlet技术将检索词提交给万方数据库,并通过对返回结果的正则处理提取篇名、关键词及URL,来作为可视化展示关键词的依据;利用篇名与关键词的共现关系,建立共词矩阵,筛选词汇,对词汇进行聚类处理,最后通过json数据交换技术以及D3.js—SVG图形绘制技术对所输入的检索词相关的关键词进行可视化的前台展示。其中,可视化图形的显示增加了聚类结果不同颜色显示功能、节点大小的控制功能等。系统还提供给给用户点击可视化界面关键词,返回包含其关键词的文献列表及链接功能。
目 录
Abstract 2
Keywords 2
一、可视化检索系统概述 3
(一)可视化检索系统定义 3
(二)研究意义 3
(三)可视化信息检索现状 3
二、系统研究目标及主要内容 4
三、系统实现 5
(一)数据来源 5
1.数据库的选取 5
2.正则表达式提取信息 5
(二)数据的处理 5
1.词间关系的表示 5
2.共词矩阵的建立 5
(三)数据交换的实现 7
(四)可视化效果的实现 7
1.D3.js——SVG技术 7
2.图形绘制方法 8
(1)整体绘制 8
(2)具体绘制 8
(五)附加功能的实现 9
1.聚类效果的显示功能 9
2.鼠标滑过节点显示文献列表功能 9
3.点击节点显示文献列表及相关链接功能 9
4.图像放大缩小功能 9
(六)用户使用界面的设计 9
1.整体布局 10
2.技术软件的应用 10
3.效果图示 11
四、总结 12
致谢 12
参考文献 12
图 1系统设计架构图 4
图 2可视化效果图 9
图 3 ajax 技术分析图 10
*好棒文|www.hbsrm.com +Q: ¥351916072¥
图 4初始界面图 11
图 5检索效果界面图 11
图 6交互效果图 12
可视化检索系统的设计
信息管理与信息系统专业学生 张宇镅
指导教师 杨波
The Design of the Visualization Retrieval System
Student majoring in Information Management and Information System ZHANG Yumei
Tutor YANG Bo
Abstract:Establishing a Visualization Retrieval System can help users browsing and filtering information more conveniently. This study is based on WANFANG database, taking the users search term as the input, making the use of the servlet technology in the Java Web to submit the term to the database. And it use the results returned by regular treatment to title, keywords and URL as a visual display of keywords. Then the study built a coword matrix, selected the words, and dealt with the words by clustering processing based on cooccurrence relationship between title and keyword. Finally, the study realized the front display to visualize the related keywords of the entered search term by the json exchange technology and D3.jsSVG graphics rendering technology. This Visualization Retrieval System added the functions such as, displaying the clustering results in different colors, controlling the size of the nodes and so on. The system also provides the mutual function that when the user clicks on the keywords on the Visual interface, it can return a list of literature and link including its keywords.
Keywords: Visualization Retrieval System; Hierarchical clustering; coword; keyword
一、可视化检索系统概述
(一)可视化检索系统定义
信息检索可视化是信息可视化技术在信息检索中的应用。所谓信息可视化(Information Visualization,缩写为Info Vis 或IV)就是利用计算机支撑的、交互的,对抽象数据的可视化表示,来增强人们对这些抽象信息的认识[1]。
可视化信息检索的核心,是将文献信息、用户的问题、使用各种类型的检索信息的检索模型和用模型进行信息检索的过程当中本不可见的内部语义关系转换成直观图形,到低维空间中进行可视化的图形显示,并为用户提供信息检索服务。所以,可视化信息检索实际上提供了一个直观的语义关系,为检索结果和提问以及检索到的各种文档之间的关系都能进行可视化展示,提供了有效的信息检索和反馈机制[2]。实现可视化信息的检索系统就是利用可视化技术设法为用户提供一个可视化的环境以支持用户完成信息检索、浏览、挖掘等超出传统的信息系统所能实现的功能。
(二)研究意义
一个可视化的信息检索环境,有利于用户的信息浏览。信息开发,信息挖掘,能使信息检索的过程透明化,能向用户提供更丰富的信息,有可能开发出信息检索和浏览的新方法和新机制;它可以把信息浏览和信息检索的过程与人的对其的认知能力结合在一起,实现了良好的人机交互环境,从而大大提高信息检索的查全率和查准率[3]。它为传统的信息检索打开了一扇全新的窗口,开拓了崭新的应用以及研究领域,提升了信息检索的档次。
目 录
Abstract 2
Keywords 2
一、可视化检索系统概述 3
(一)可视化检索系统定义 3
(二)研究意义 3
(三)可视化信息检索现状 3
二、系统研究目标及主要内容 4
三、系统实现 5
(一)数据来源 5
1.数据库的选取 5
2.正则表达式提取信息 5
(二)数据的处理 5
1.词间关系的表示 5
2.共词矩阵的建立 5
(三)数据交换的实现 7
(四)可视化效果的实现 7
1.D3.js——SVG技术 7
2.图形绘制方法 8
(1)整体绘制 8
(2)具体绘制 8
(五)附加功能的实现 9
1.聚类效果的显示功能 9
2.鼠标滑过节点显示文献列表功能 9
3.点击节点显示文献列表及相关链接功能 9
4.图像放大缩小功能 9
(六)用户使用界面的设计 9
1.整体布局 10
2.技术软件的应用 10
3.效果图示 11
四、总结 12
致谢 12
参考文献 12
图 1系统设计架构图 4
图 2可视化效果图 9
图 3 ajax 技术分析图 10
*好棒文|www.hbsrm.com +Q: ¥351916072¥
图 4初始界面图 11
图 5检索效果界面图 11
图 6交互效果图 12
可视化检索系统的设计
信息管理与信息系统专业学生 张宇镅
指导教师 杨波
The Design of the Visualization Retrieval System
Student majoring in Information Management and Information System ZHANG Yumei
Tutor YANG Bo
Abstract:Establishing a Visualization Retrieval System can help users browsing and filtering information more conveniently. This study is based on WANFANG database, taking the users search term as the input, making the use of the servlet technology in the Java Web to submit the term to the database. And it use the results returned by regular treatment to title, keywords and URL as a visual display of keywords. Then the study built a coword matrix, selected the words, and dealt with the words by clustering processing based on cooccurrence relationship between title and keyword. Finally, the study realized the front display to visualize the related keywords of the entered search term by the json exchange technology and D3.jsSVG graphics rendering technology. This Visualization Retrieval System added the functions such as, displaying the clustering results in different colors, controlling the size of the nodes and so on. The system also provides the mutual function that when the user clicks on the keywords on the Visual interface, it can return a list of literature and link including its keywords.
Keywords: Visualization Retrieval System; Hierarchical clustering; coword; keyword
一、可视化检索系统概述
(一)可视化检索系统定义
信息检索可视化是信息可视化技术在信息检索中的应用。所谓信息可视化(Information Visualization,缩写为Info Vis 或IV)就是利用计算机支撑的、交互的,对抽象数据的可视化表示,来增强人们对这些抽象信息的认识[1]。
可视化信息检索的核心,是将文献信息、用户的问题、使用各种类型的检索信息的检索模型和用模型进行信息检索的过程当中本不可见的内部语义关系转换成直观图形,到低维空间中进行可视化的图形显示,并为用户提供信息检索服务。所以,可视化信息检索实际上提供了一个直观的语义关系,为检索结果和提问以及检索到的各种文档之间的关系都能进行可视化展示,提供了有效的信息检索和反馈机制[2]。实现可视化信息的检索系统就是利用可视化技术设法为用户提供一个可视化的环境以支持用户完成信息检索、浏览、挖掘等超出传统的信息系统所能实现的功能。
(二)研究意义
一个可视化的信息检索环境,有利于用户的信息浏览。信息开发,信息挖掘,能使信息检索的过程透明化,能向用户提供更丰富的信息,有可能开发出信息检索和浏览的新方法和新机制;它可以把信息浏览和信息检索的过程与人的对其的认知能力结合在一起,实现了良好的人机交互环境,从而大大提高信息检索的查全率和查准率[3]。它为传统的信息检索打开了一扇全新的窗口,开拓了崭新的应用以及研究领域,提升了信息检索的档次。
版权保护: 本文由 hbsrm.com编辑,转载请保留链接: www.hbsrm.com/jsj/jsjkxyjs/1976.html