As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
I've been reqeusted to to build a Statistical Distribution graph or box plot of cycle time data. I know I need to calculate the median, upper and lower quartiles, and the minimum and maximum data values. The actual display has been the chanlleng. Any suggestions out there?This message has been edited. Last edited by: Laure,
This can not be done via the GUI however. An API call to set the graphtype and then ensure you have 5 data points to graph
Min, Max, Median, 1 and 3rd quartiles.
Here's a sample against the CAR file that I received from Vicky Lozovksy.
DEFINE FILE CAR
Median/D12.2=( CAR.BODY.DEALER_COST + CAR.BODY.RETAIL_COST ) / 2;
UL/D12.2=CAR.BODY.RETAIL_COST + ( CAR.BODY.RETAIL_COST / 5) ;
LL/D12.2=CAR.BODY.DEALER_COST - ( CAR.BODY.DEALER_COST / 5) ;
END
GRAPH FILE CAR
SUM CAR.BODY.DEALER_COST
CAR.BODY.RETAIL_COST
Median
UL
LL
BY COUNTRY
ON GRAPH PCHOLD AS HOLD FORMAT PNG
ON GRAPH SET GRAPHDEFAULT OFF
ON GRAPH SET VZERO OFF
ON GRAPH SET HAXIS 770
ON GRAPH SET VAXIS 405
ON GRAPH SET UNITS PIXELS
-*ON GRAPH SET LOOKGRAPH VBAR
ON GRAPH SET GRMERGE ADVANCED
ON GRAPH SET GRMULTIGRAPH 0
ON GRAPH SET GRLEGEND 0
ON GRAPH SET GRXAXIS 1
ON GRAPH SET GRAPHSTYLE *
setGraphType(124);
setTemplateFile("/images/tdg/template/IBISouthWestern.txt");
setReportParsingErrors(false);
setSelectionEnableMove(false);
setPlace(true);
setTransparentBorderColor(getChartBackground(),true);
setTransparentBorderColor(getSeries(0),true);
setTransparentBorderColor(getSeries(1),true);
setTransparentBorderColor(getSeries(2),true);
setTransparentBorderColor(getSeries(3),true);
setTransparentBorderColor(getSeries(4),true);
setTransparentBorderColor(getSeries(5),true);
setTransparentBorderColor(getSeries(6),true);
setTransparentBorderColor(getSeries(7),true);
setTransparentBorderColor(getSeries(8),true);
setTransparentBorderColor(getSeries(9),true);
setTransparentBorderColor(getSeries(10),true);
setDepthRadius(0);
setDepthAngle(0);
setDisplay(getY1MajorGrid(),false);
setDisplay(getO1MajorGrid(),false);
ENDSTYLE
END
Tom, the Boxplot graph type is documented in the link. I recieved the info from Vicky Lozovksy of IBI at Summit last year. She preseneted a session on graphing. Don't know if it will ever be fully documented, but it is available.
Thanks. I did not search for that particular Graphtype, and, it is not in the WebFOCUS Graphics manual either. So, maybe Meghan will try other numbers around that series for her task!
Say Hi to all! Cold in Florida? Must be Global Warming!!!
EDIT: It is not documented in the Perspective For Java Manual, either!!! Perspective for JavaThis message has been edited. Last edited by: Tom Flynn,
Thanks all. I'll try and ping Vicky to see what she has to say. I did try other random numbers around 124 (all the way to 140 actually) with no luck. And yes, sadly this graph type is not documented anywhere.