Tag cloud in Endeca

Hello All,
We have free text fields and would like to extract commonly spoken/written words from these fields. I have following questions about this
- Once we have loaded these fields in Endeca data store, would the tag cloud in studio automatically highlight the pattern?
- We do not have the complete list of words which we can put in whitelist and it would be iterative process by looking at the data. We are thinking that tag cloud generated automatically would be a good starting point. Let us know your views
- If we want to rank or give weightage to the comments, do we need to have additional license for Lexalytics component?
Thanks

Duplicate

Similar Messages

  • Endeca tag cloud

    Hello All,
    We have free text fields and would like to extract commonly spoken/written words from these fields. I have following questions about this
    - Once we have loaded these fields in Endeca data store, would the tag cloud in studio automatically highlight the pattern?
    - We do not have the complete list of words which we can put in whitelist and it would be iterative process by looking at the data. We are thinking that tag cloud generated automatically would be a good starting point. Let us know your views
    - If we want to rank or give weightage to the comments, do we need to have additional license for Lexalytics component?
    Thanks

    From reading your question, I believe you have posted to the wrong forum. You are looking for the [Endeca Information Discovery|https://forums.oracle.com/forums/forum.jspa?forumID=1404] forum where I am confident they can address your question.

  • Need API for creation of tag cloud

    Hi,
    I have a requirement to create a tag cloud based on a particular business logic. Does Webcenter provide API for the same?
    Can I customize the "Tagging - Tag Cloud" task flow? If yes, how and to what extent?
    Thanks in advance,
    Anurag

    Hi  Ajit,
      No another FM is available . U can directly create using transaction SE01 .
    Or u can create using BDC .

  • 3D tag cloud for Flex

    I'm trying to use this one class to create the tag cloud to flex.
    1.I created a master document.
    ?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx"
        creationComplete="init();" minWidth="955" minHeight="600" xmlns:local="*">
    <fx:Script>
    <![CDATA[
    import mx.core.IVisualElement;
    import mx.core.UIComponent;
    public var inputWordr:String = "";
    private function init():void {
    c20.addElement(tirs as IVisualElement);
    ]]>
    </fx:Script>
    <fx:Declarations>
    <local:MyComponent id="tirs" x="0" y="0" width="300" height="300"/>
    </fx:Declarations>
    <s:BorderContainer x="10" y="38" width="542" height="428" id="c20">
    </s:BorderContainer>
    </s:Application>
    2. And created a class (MyComponent.as) based on code from the example and import all required swc.
    package
    import flash.display.BitmapData;
    import flash.display.Sprite;
    import flash.events.Event;
    import flash.filters.BitmapFilterQuality;
    import flash.filters.BlurFilter;
    import flash.filters.GlowFilter;
    import flash.text.TextField;
    import mx.core.UIComponent;
    import org.papervision3d.core.geom.Particles;
    import org.papervision3d.core.geom.renderables.Particle;
    import org.papervision3d.events.InteractiveScene3DEvent;
    import org.papervision3d.materials.special.BitmapParticleMaterial;
    import org.papervision3d.objects.DisplayObject3D;
    import org.papervision3d.view.BasicView;
    public class MyComponent extends Sprite
    private var scale:Number = 5;
    private var radius:Number = 350;
    private var smoothing:Boolean = true;
    private var minAlpha:Number = 0.3;
    private var glow:GlowFilter;
    private var tags:Array;
    private var tag_num:uint;
    private var bv:BasicView;
    private var tagArray:Array;
    private var tagContainer:DisplayObject3D;
    public function MyComponent()
    init ();
    private function init ():void {
    glow = new GlowFilter (0x003366, 1, 8, 8, 2, BitmapFilterQuality.LOW, true, false);
    tags = ["free","news","Cookie","practice","JavaScript","toy","life","something","LocalConnection ","memo","MSN","funny", "ActionScript 3", "Food", "Book", "Photo", "favorite"];
    tag_num = tags.length;
    tagArray = [];
    tagContainer = new DisplayObject3D ("tag_container");
    tagContainer.x = -radius * 0.25;
    tagContainer.y =  radius * 0.25;
    bv = new BasicView (300, 300, true, true);
    bv.viewport.interactive = true;
    bv.scene.addChild (tagContainer);
    bv.camera.z = -2 * radius;
    bv.camera.zoom = 20;
    bv.startRendering ();
    addChild (bv);
    buildTags ();
    addEventListener (Event.ENTER_FRAME, enterFrameHandler);
    private function buildTags ():void {
    var i:uint;
    for (i = 0; i < tag_num; i++) {
    // 2D
    var txt:TextField = new TextField ();
    txt.text = tags[i];
    txt.filters = [new BlurFilter(1.1, 1.1)];
    var txtW:Number = txt.textWidth + 4;
    var txtH:Number = txt.textHeight + 4;
    var bitmap:BitmapData = new BitmapData (txtW, txtH, true, 0x01FFFFFF);
    bitmap.draw (txt);
    var phi:Number = Math.acos((2 * (i + 1) - 1) / tag_num - 1);
    var theta:Number = Math.sqrt(tag_num * Math.PI) * phi;
    // 3D
    var material:BitmapParticleMaterial = new BitmapParticleMaterial (bitmap);
    material.interactive = true;
    material.smooth = smoothing;
    var tag:Particle = new Particle (material, scale, 0, 0, 0);
    var tagHolder:Particles = new Particles ("tag_");
    tagHolder.addParticle (tag);
    tagHolder.x = radius * Math.cos (theta) * Math.sin (phi);
    tagHolder.y = radius * Math.sin (theta) * Math.sin (phi);
    tagHolder.z = radius * Math.cos (phi);
    tagHolder.useOwnContainer = true;
    tagHolder.autoCalcScreenCoords = true;
    tagHolder.addEventListener (InteractiveScene3DEvent.OBJECT_OVER, objectOverHandler);
    tagHolder.addEventListener (InteractiveScene3DEvent.OBJECT_OUT, objectOutHandler);
    //tagHolder.addEventListener (InteractiveScene3DEvent.OBJECT_PRESS, objectPressHandler);
    tagContainer.addChild (tagHolder);
    tagArray.push (tagHolder);
    private function objectOverHandler (e:InteractiveScene3DEvent):void {
    bv.viewport.buttonMode = true;
    e.target.filters = [glow];
    private function objectOutHandler (e:InteractiveScene3DEvent):void {
    bv.viewport.buttonMode = false;
    for (var j:uint = 0; j < tag_num; j++) {
    tagArray [j].filters = [];
    private function enterFrameHandler (e:Event):void {
    tagContainer.rotationX += (mouseY - 300 * 0.5) * 0.01;
    tagContainer.rotationY += (mouseX - 300 * 0.5) * 0.01;
    for (var j:uint = 0; j < tag_num; j++) {
    tagArray[j].alpha = minAlpha + (1 - minAlpha) * (1 - (tagArray[j].screen.z - radius) / (2 * radius));
    3. Then I created a call of custom component, but nothing is displayed or causes errors. I tried to insert this component in different ways.
    Check out where I made mistakes, please.

    all i could find...
    http://www.ericd.net/tagCloud/

  • Implementation of Tag Cloud

    hi All,
    can we implement  Tag Cloud   in our enterprise portal?
    The user searches for some keywords and those keywords are stored in some location and are displayed in one page and the most searched keywords are displayed in larger fonts.
    also please tell if there is any option in TREX  where we can enable tagging feature.
    regards,
    SS

    Hi,
    There is no standard way to do that.
    We have done a Tag Cloud with Trex for a customer, we had to enable the Trex log and then we created a Tag Cloud with a Java application, key words came from the Trex log file.
    Regards, Gilles.

  • Tag cloud with autosuggest feature in ADF

    We want to select multiple records or words from a huge list so we tried autosuggestor which selects one record but if we want to add multiple words or records and show it like tag cloud as we add multiple email address in gmail then how can we achieve it.

    You can refer below link
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/004-auto-suggest-169120.pdf
    Thanks
    AJ

  • Need Flash Guru: How can I create a 2D Simple tag cloud in Flash/AS3

    I have done some searches, but couldn't find anything on Simple 2D tag clouds like this.
    I don't need to make it animated, i just need to create a simple tag cloud in Flash. Please help!!
    I just need two rows with 16 words, no animation, but texts got to fire onclick event as button.
    Please help

    1.  create a movieclip that contains a textfield.  give the textfield an instance name (say tf) and assign the movieclip a class (say MC).
    2.  create a textformat instance.
    3. create an array of your words.
    4.  loop through your array of words
    a.  creating a movieclip for each word,
    b.  assign the textformat a size (a random integer between your desired limits should work),
    c.  assign the word to the text property of the textfield and
    d.  assign the textformat to the textfield and autosize your textfield
    e.  add the movieclip to the display list
    f.  position the movieclip (after the previously positioned one)
    g.  add your event listener (possibly using another array).

  • How can I share my tag clouds with others?

    I just found out this AM that my tag cloud links only work for me. see this thread.
    So how can I post links to my tag clouds?
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

    Darren wrote:
    Laura F. wrote:
    I think I'm confused - Does this link not work to see Ben's tags?  I can take it to my other browser and view your tags.
    I guess you're trying to narrow down to a particular part of your tag cloud?
    When I click that link, it just takes me to the main NI Forums page...nothing Ben-specific.
    -D
    I do see Ben specific Tags...
    (FYI-I do not have any of my own tags, not sure if that matters...) 
    Message Edited by paulmw on 12-10-2009 05:49 PM
    Attachments:
    BensTaggs.JPG ‏111 KB

  • Tag Cloud - how do I get the #hashtags tags to show in cloud?

    I've been playing around and added the Tag Cloud to my site. I have set it to "All users". I would have thought that it would pick up hashtags automatically - is this not the case? It has picked up some tags that I have added to pages (by
    going to the Page tab> Tags). How do I get hashtags added?

    Im also looking an answer to this question, 
    did you found a solution?

  • Custom tag cloud webpart based on keywords from a Term Set in the Term Store .

    Hi Guys
    Does anyone have developed a custom Tag Cloud webpart in SharePoint 2010? I'm
    looking for a custom Tag cloud based on keywords from a Term Set in the Term Store.
    Unfortunately
    out of the box Tag Cloud Web Part only reference the Social Tags from the User.
    in my case editors have created pages and tagged a page using terms from the Term store.
    What I would like to see is a web part which could display “Top Keywords”, and the output is something like this:
    http://electronicdiscovery.info/what-additional-features-would-you-like-to-see-in-sharepoint-word-cloud-survey-electronic-discovery/
    Thanks In advance
    Tanaji Chavan

    Hi  Ramakrishnaraja ,
    Thanks for sharing the links , i tried using web part in second link but that’s not working , have also gone through the code of that web part seems like it is referring to some list like
    "Categories" and "Posts"
    however I'm looking for a custom Tag cloud based on keywords from a Term Set in the Term Store .
    Thanks 

  • How to build tag cloud from text document

    Hi,
    I want to build tag cloud from text documents.
    The text dcouments has several lines of sentence.
    The tag shows long sentense, not key words.
    Please let me know how to build.
    And Can I use CAS or text enrichment?
    Thank you very much.
    SWKO

    Hi,
    You need to extract salient terms (e.g. people or product names) from your text documents by using the text enrichment or the text tagger component.
    This step will generate new attributes, which can be used in your tag cloud.
    Mathias

  • Tag Cloud in RoboHelp 8 WebHelp

    I was wondering about a tag cloud on the front page of my WebHelp output, perhaps based on the keywords or title, heading 1 and keywords. Or, even better, on search terms.
    I have no idea how to go about this but was wondering if anyone else had given it any thought or to throw it out there as a challenge. Could it be generated from Index keywords?
    Any takers, theories, ideas or comments?
    Greig

    ability anyone appears bit cheers clouds consider currently feel form frequency generate grieg happy information list moment page peter point really related required rick robohelp sharing something submitting tag tagcrowd thanks thought thread users watching web wish words work worthwhile
    created at TagCrowd.com
    Thank you Peter and Rick for the replies.
    At the top is a tag cloud created via Tag Crowd, as suggested by Peter, using Rick's reply. To create the cloud I cut and pasted Rick's reply into Tag Crowd's paste text option. The next step would be to add links to the words so the user is taken to a page that lists the results, like a search results page. All of this is sounding like a lot of work for little reward and for something that is gimmicky. Peter's suggestion, though, is a valide one for making a tag cloud.
    I suppose what I was really wanting was to see a way of using something like the search weightings to determine the size of the text, picking out any keywords that had been added to topics and linking to a search results page. Or of using the index to do a similar thing (Is it possible to put the contents of an index keyword list on to a topic page to create an index page?).
    As for Rick's suggestion that Tag Clouds are driven by users tagging of pages I would generally agree but seeing as though we don't have that ability in RoboHelp I thought I would skip that bit, although I feel it would be a nice feature for users, along with an ability for them to save a favourites list perhaps. Time to follow up on Rick's suggestion of using the wishlist.
    Thanks,
    Greig

  • Tag cloud webpart is missing in sharepoint 2013

    hi friends
    i am using SharePoint 2013 publishing site.i am trying to add tag cloud web part to my page.
    but it is missing in social web parts
    how to get tag cloud web part in SharePoint 2013

    Hello ,
    have checked in Web Part Gallery ? If no then navigate to
    Site Setting > Web Designer Galleries >Web Parts>
    then search TagCloud.dwp . If it is present then Click on New Document then Select the required webpart then click on
    Populate Gallery Button.
    also please refer below threads .
    http://social.technet.microsoft.com/Forums/en-US/e5f84460-2355-4d97-a942-b7c7e23442d7/missing-tagclouddwp-tag-cloud-web-part-from-sharepoint-site
    http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2010/08/06/missing-tag-cloud-web-part-and-other-social-web-parts-after-sharepoint-2010-upgrade.aspx
    Best Regards Kuldeep Verma
    Please remember to click "Mark As Answer" if a post solves your problem or "Vote As Helpful" if it
    was useful.

  • How to Create Tag Cloud using Flex

    Hi
    I am trying to create Tag cloud using Adobe Flex. Can you
    please give me a hint of how to proceed.
    Any hint will be a help.
    Thanks,
    Dev

    Hi
    I am trying to create Tag cloud using Adobe Flex. Can you
    please give me a hint of how to proceed.
    Any hint will be a help.
    Thanks,
    Dev

  • Tag Cloud to show search terms with zero results

    I have been following the blue print document that we have regarding our OEID system which is under development at present.
    We have a field called Search Terms which contains the text the user or the navigation has searched for. At present we have a tag cloud that shows the most popular. We also need to show the ones which are at the top of the "yeild zero results" list.
    Looking at the Tag Cloud component and after reading the documentation on the tag cloud, it would not seem possible to create an EQL query to do this. Therefore would I have to create a custom attribute when I'm parsing our raw data to do this, then be able to display the 30 or so most popular search terms that yeild zero results, or is there a better way of doing this?

    That issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for

  • Problem with Export/Import  in background

    Hi Experts, I am having a requirement in which i am exporting an flag to memory from one program and importing that in another program. in foreground it is working fine. But in background it is not working. Is there any work around. Report 1: DATA:l_

  • HELP! i'm not good with this

    Alright, so for one of my college classes we are working with garage band and we are forced to make a song completely with the loops. We are not allowed to use anything else (not that I would know how to anyway) but that's beside the point. I was jus

  • Regarding transparent gif creation

    To anyone who knows more about this subject, I'm looking for some sample code. I've been having trouble redrawing an image as a gif while introducing transparent regions. The following method results in blackness where the transparency should be:    

  • [SOLVED] synce-kpm broken ?

    Running dataserver Traceback (most recent call last): File "/usr/bin/synce-kpm", line 26, in <module> synceKPM.main.main() File "/usr/lib/python2.6/site-packages/synceKPM/main.py", line 74, in main import synceKPM.main_gui File "/usr/lib/python2.6/si

  • Best way to get 3/4 inch tape material into FCP?

    I have several 3/4 inch tapes I would like to edit on my FCP system. I can only Capture through firewire. Is it better to transfer the 3/4 material to DVD or create QT files? (I can create the QT files on an Avid Adrenaline) I need to keep the materi