Standard error of mean for column/bar graphs

Hi,
Is it possible for me to have different standard errors in a column graph? (i.e. in a graph with 2 or more columns/bar to have their individual error bars drawn out?) So far I have only been able to have a single number for both columns in the graph.
V

V,
Numbers does the best it can with the information you give it. If you ask for Error Bars, Numbers will calculate the standard deviation for the series and assign that calculation result to each of the bars in the series.
If each of your values represents some statistic that in itself is accompanied by a standard error, that's another thing, but Numbers doesn't know what the error values are unless you tell it. The way to tell Numbers what the error bar values should be in these special cases is to use Custom values.
Here's an example:
I like to use the Scatter Chart, but you will find similar controls for the bar chart.
Jerry

Similar Messages

  • HT1925 What is error "1604" mean for iPhone 4?

    What is error "1604" mean for iPhone 4?

    If it is iTunes error, it is USB related
    http://support.apple.com/kb/TS3694?viewlocale=en_US#error1604

  • ELOCATION_MERCATOR.WORLD_MAP errors for pie/bar graph theme below zoom 5

    Hi,
    I am trying to create a map using ADF DVT map component in my jspx page. I am using 'elocation_mercator.world_map'. I am creating a pie graph theme over the base world map. For some reason whenever I zoom below 5, i get following javascript error
    [MVThemeBasedFOIControl.foiLoaded] MAPVIEWER-05523: Cannot process response from MapViewer server. (<?xml version="1.0" encoding="UTF-8" ?> <oms_error> MAPVIEWER-06009: Error processing an FOI request.
    Root cause:FOIServlet:null</oms_error>)
    The Pie graphs displays fine at or above zoom level 5. I tried the same thing using my local map viewer instance which has mvdemo.demo_map as the base map. The pie graph displays fine at all zoom levels using my local map. Can anybody tell me what may be the problem when I use the elocator world_map. I can't even look at the logs as it's a hosted service.

    Here are the steps to reproduce the problem
    1) Create a jspx page.
    2) From the component palette on the right hand side, select ADF Data Visualizations and then click on Map in the Geographical Map section. This will open an ADF Map configuration window.
    3) Create a new Map Configuration by providing an id and a URL connection. If you have not created a URL Connection to elocation service, create a new connection to "http://elocation.oracle.com/mapviewer" and select that connection.
    4) You will see data source as ELOCATION_MERCATOR and Base map as WORLD_MAP selected. Enter startingY="38.648911" startingX="-98.349609" , select mapZoom="5" and Click on OK.
    5) Now create an entity object and a view object based on the STATES table in the MVDEMO database and add it to an application module.
    6) Refresh the application module data control. You should a new StatesView1 data control.
    7) Drop it on the map and select Bar graph theme. This will open a Bar Graph theme configuration window for the Map.
    8) In the Name select MAP_STATES_ABBRV. In the location column select STATE_ABRV.
    9) In the Data Location Select Location as StateAbrv and Location Label as State.
    10) Enter Series Attribute as Totpop and Label as Total Population. Enter series attribute as Female and Label as Female Population. Click OK.
    11) Now Run this page.
    12) The page runs fine displaying the Bar chart. Now zoom out. You will get error
    '[MVThemeBasedFOIControl.foiLoaded] MAPVIEWER-05523: Cannot process response from MapViewer server. (<?xml version="1.0" encoding="UTF-8" ?> <oms_error> MAPVIEWER-06009: Error processing an FOI request.
    Root cause:FOIServlet:null</oms_error>)'
    When you say that we should use elocation for map tiles not for FOI rendering, does that mean that I should not use the themes provided by elocation. When I enter the base URL to a mapviewer instance in my map client, the base map and the themes are displayed from the database used by the mapviewer instance. So, how can I use my own mapviewer for FOI rendering? Can you please explain a little more. Thanks.

  • What does system error 3409 mean for an hp officejet 720?(appears after power on)

    Officejet 720(all-in-one
    Pretty straight forward:
    Printer powers on, seems to go through normal power-up, including noise moving cartridges back & forth, asks for date & time (skipped by hitting stop button) then this error appears (system error 3409) & unit becomes totally unresponsive.

    This looks like a Paper Jam issue.
    You can refer to this post which had a false paper jam issue which has similar symptoms as yours:
    http://h30434.www3.hp.com/t5/Other-printing-questions/False-Paper-Jam/td-p/905169
    Some more details which are specific to your product for clearing jams:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00310208&tmp_task=solveCategory&cc=us&dlc=en&la...
    Hope this helps.
    I work for HP.

  • HT3209 what does error-50 mean for downloads

    having trouble downloading a movie.

    Perhaps try the "Error -50," "-5000," "8003," "8008," or "-42023" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • Bar graph error

    I made a program that shows bar graphs, well it's suppose to. Its not working, the compiler says something about the for statements needing ';'s...
    help please!
    import java.awt.*;
    import java.applet.*;
    import java.awt.event*;
    public class Bars extends Applet implements ActionListener
         int offset = 75; //displace graph vert and horiz from origin
         int height = 150, width = 240;
         int vert_div = height/5; //vert_Div = 5
         int horiz_div = width/data.length; //horiz_div = 4 (4 entries)
         Label prompt = new Label ("Enter a value for the bar graph.");
         final static String data_label[] = {"T1","T2","T3","T4"};
         TextField input = new TextField(3);
         static int data[] = new int[4];
         int numb_entries = 1;
         public void init()
              add(prompt);
              add(input);
              resize(400,275);
              input.addActionListener(this);
         public void actionPerformed( ActionEvent e )
              int numb = new Integer(input.getText()).intValue();
              if(numb_entries<5)
                   data[numb_entries-1] = numb;
                   numb_entries++;
                   input.selectAll(); // places cursor in text box after first entry
                   if(numb_entries == 5)
                        input.removeActionListener(this);
                        remove(input); // deletes component from window
                        remove(prompt); // remove() is opposite of add()                    
         public void paint(Graphics g)
              if(numb_entries==5)
                   g.drawString("value 1 = "+data[0]+", value 2 = "+data[1] +
                                  ", value 3 = "+data[2]+", value 4 = "+data[3],70,30);
                   g.setColor(Color.black);
                   g.drawLine(offset+width,offset,offset+width,offset+height); //y-axis
                   for (int i=0;i<=5;i++) //y tick marks
                        g.drawString(String.valueOf(i*20),offset+width+10,
                                        offset+height-(i*vert_div));
                        g.drawLine(offset,offset+height-(i*vert_div),offset+width+5,
                                     offset+height-(i*vert_div)); //draws horiz gridlines
                   g.drawLine(offset,offset+height,offset+width,offset+height);//x-axis
                   for (int i=0;i<data.length;i++)
                        g.drawString(data_label,
                             offset+horiz_div*i+horiz_div/2,offset+height+20);
                        g.drawLine(offset+horiz_div*i+horiz_div/2,offset+height,
                             offset+horiz_div*i+horiz_div/2,offset+height+20); //x-ticks
                   g.setColor(Color.red);
                   for (int i=0,i<data.length;i++)
                        int bar_height = data[i]*height/100;
                        g.fillRect(offset+horiz_div*i+horiz_div/4,
                             offset+height-bar_height,horiz_div/2,bar_height);
                   resize(400,275); //paint bars and data values

    change
    import java.awt.event*;with
    import java.awt.event.*;

  • Group Stacked Bar Graph

    Hi,
    In our project we need to implement grouping of stacked bar graph, but with dvt graphs we are not able to achieve this.
    We want similar graph in below link but using dvt graphs:
    http://www.highcharts.com/demo/column-stacked-and-grouped
    Please help me with grouping of stacked bar graphs.
    we are using JDeveloper 11.1.2.3.0 for development.
    Thanks,
    Jasbeer
    Edited by: user13645211 on Jan 8, 2013 11:07 AM

    Hi lo,
    I think all you need to do is implement the code found below. What you need is instead of using the random numbers (like in my example), you would just give it the values for you bar graphs. You can then build an array where you append the values for the second color above the first color by using the add function. If you then go into the plot legend (left click and go into bar plots), you can change the presentation of the data on the graph. You will also have to change the common plots display in the legend as well (left-click and go into common plots). I hope this helps!
    Message Edited by CarlaU on 04-10-2008 09:13 AM
    National Instruments
    Applications Engineer
    Attachments:
    BarStackedGraph.PNG ‏5 KB
    StackedGraph.vi ‏13 KB

  • Using stored parameter from data control class with stacked bar-graph

    Hi folks,
    I'm relatively new to ADF & EJB so I want to apologise in advance if this question seems rudimentary to many of you.
    Edit:  I should have mentioned that I'm using JDeveloper 11.1.1.5
    I'm having a hard time determining how to retrieve the value from a variable to be assigned to a property of the bar graph I'm trying to display on my JSF page.
    I have tried to briefly summarise the logic below for reference.
    I have a data control class (ActivityChart) that includes a method "getActivityDetail" returns a List of custom Objects (ActivityDTO) that are the underlying data for my bar graph.
    public class ActivityChart {
        private Double axisScale;
        public ActivityChart() {
            super();
            axisScale = 0.0;
        public List<ActivityDTO> getActivityDetail(List<String> businessUnits) {
            List<ActivityDTO> returnNewList = new ArrayList<ActivityDTO>();
            List<TransactionDTO> dataList = new ArrayList<TransactionDTO>();
            TransactionSessionBean transBean = lookupTransactionSessionBean();
            if (businessUnits != null && !businessUnits.isEmpty()){
                dataList = transBean.getActivityData(SystemUtil.getCurrentUser(), businessUnits);           
                returnNewList = processTransactions(dataList);
                axisScale = calcAxisScale(returnNewList);
            return returnNewList;
    ...The TransactionDTO object is basically a mirror of the entity object to store the fields from the queried db transactions.
    The ActivityDTO object contains a String value (x-axis label) and 3 Double values for the values required for the bar graph.
    What I'm trying to do is dynamically set the scale for the 2 y-axes (I'm using a dual-axis stacked bar graph) because the auto calculated values are not aligned.
    Right now I've got the two relevant elements of the bar graph hard-coded with a specific axis value:
    <dvt:y1Axis axisMaxAutoScaled="false" axisMaxValue="100.0"/>
    <dvt:y2Axis axisMaxAutoScaled="false" axisMaxValue="100.0"/>.
    The value I want to use for the Y-axis is calculated and stored in the "axisScale" variable in the above class.
    Really at a loss of how to move forward from here.
    Would very much appreciate any guidance/direction offered.
    Thanks,
    Karim
    Edited by: 973742 on Nov 28, 2012 8:12 AM

    Looks like I may have found the answer!
    I had to set up the variable in the bindings for the page and then reference the variable from the binding and add the property inputValue.
    ie. value="#{bindings.axisScale.inputValue}"

  • Standard Error message

    Hi,
    I have a Internal table from which i need to update to a DB table. while Inserting or modfying record to DB table,I need to capture the standard error message. For ex.. PErsonnel number is Locked.
    And i need to dispaly all these error message list in a report.
    My Q is, How to get the standard error message.
    Thanks,
    Kanal.

    Hi,
      call function 'HR_INFOTYPE_OPERATION'
        exporting
          infty          = '0416'
          number        = p0416-pernr
          subtype       = p0416-subty
          objectid      = p0416-objps
          lockindicator = p0416-sprps
          validityend   = p0416-endda
          validitybegin = p0416-begda
          recordnumber  = p0416-seqnr
          record        = p0416
          operation     = 'EDQ'
          nocommit      = nocommit
        importing
          return        = error_message
          key           = pakey.

  • 3d bar graph in CVI

    Hi,
      I am trying to determine if there is a 3D Bar Graph capability in CVI.  I see that it is possible to create 3D surface plots and contour plots under the
    AxtiveX libraries but I do not see one for 3D bar graphs.   Is this possible?
    I would like to basically create a 3 dimensional histogram whereby each 3d bar is equally spaced from it's neighbors, not continuous like a surface or mesh plot.
      Thank you,
      Phil Mulhall

    Hello Phil,
    As you mentioned, CVI provides a control for 3D graphs in the CWGraph 3D control. This control does not allow for 3D bar type graphs.
    There is also the OpenGL instrument driver, but that does not seem to be able to create 3D bar graphs either. More information about the ActiveX control can be found here:
    http://digital.ni.com/public.nsf/allkb/C6DD5A699FDD5EA5862570A100719B8E?OpenDocument
    As for a 3D bar graph, I'm not aware of a way to do this. Sorry I could not be more help.
    I'm aware that you have already had this answer via email, I am simply posting it here for other forum users who may have the same question.
    Kind Regards,
    James W
    Controls Systems Engineer
    STFC

  • Is there a property for mixed signal graphs to control Y scrollbar visibility​?

    Anyone know if it's possible? I can control the X-scale scrollbar visibility with a property but can't find one for Y-scale and have to do it from the front panel 'Visible Items > Y Scrollbar' context menu. I'd like to be able to configure it at runtime ... clues?

    Hi Mike,
    I read the property node for the bar plots (after having setting it by hand to the one you like) and it appears that the value of that bar plot is 8. I also set it to a different bar plot by and hand then wrote "8" to the property node and that does seem to change it to the last  (left to right) vertical bar graph. I am running LV 7.1. If you look at the context help it does seem to indicate that the only values for vertical bar graphs are 1-3 but try writing "8" and see what happens.
    Cheers,
    --Russ

  • CFCHART Interpolating Bar Graphs

    CFCHART is interpolating when plotting bar charts. I can see
    where interpolation would make sense for line charts, but not for
    bar charts. I am plotting stacked bar chart series, and am getting
    non-existant data appearing in the bar charts because of this
    interpolation.
    Can this be turned off? The default for a bar graph should be
    to not interpolate.
    I have been manipulating my dataset to explicitly add 0
    values for the non-existant points, but that is a royal
    pain.

    You can alter the default chart style (or create a new chart
    style) by editing the default.xml file in the
    CFROOT\charting\styles folder.
    I copied and changed the default.xml file and saved it as a
    new xml style file. I then invoke the new style using the
    <cfchart style="newstyle"... parameter where newstyle is
    the name of the new file.
    In the xml file itself, all you have to do is change the
    isInterpolated parameter in the <frameChart tag> from
    isInterpolated="true" to
    isInterpolated="false"

  • Drag & Drop a Bar between two Bar Graphs

    Hi,
    I'm trying to move a Bar from barGraph1 to barGraph2.
    Because dragSource operation is not valid for a Bar graph, I'm trying to use componentDragSource:
    barGraph1:
    <af:componentDragSource discriminant="ACDiscr"/>
    barGraph2:
    <af:dropTarget dropListener="#{DnDBean.adToWorkCenter}">
    <af:dataFlavor flavorClass="oracle.adf.view.faces.bi.component.graph.GraphSelectionSet"
    discriminant="ACDiscr"/>
    , but method adToWorkCenter is not even called during the D&D operation.
    I played also with attributeDragSource (if a single bar is object), but I cannot find what would be the corresponding attribute in this case.
    Is it even allowed/possible to perform such operation on bar graphs? How?
    Thanks a lot for support
    DanielF
    Edited by: DanielF on 13.03.2012 07:21
    JDeveloper 11.1.1.6.0

    Hi Frank,
    thanks a lot for the feedback.
    I use JDeveloper 11.1.1.6 .... i think Drag & Drop between graphs shall be supported in this version?
    http://www.oracle.com/technetwork/developer-tools/jdev/index-088099.html
    "Drag and Drop: Graphs now support drag and drop within the graph, from one graph to another, or from a graph into another ADF Faces component such as ADF Table."
    ==
    Since bar graph doesn't support dragSource operation, there is no way how to Drag bar from it?
    Daniel

  • Stacked BAR Graph

    Hi Gurus,
       Can somebody give me an idea, how do i use the GRAPH2d/ GRAPH3D function modules, to get a Stacked bar graph?
    I have seen the GRAL transaction for examples, but i don't see any example for Stacked Bar Graph.
    I would appreciate some help in this regard.
    Thanks and Regards,
    Ravi kanth

    Hi Swathi,
    I guess you don't get it in staked bar graph. because how can you identify A, B when C(0-300) is completely overlapped A, B ? use normal bar graph instead.
    Thanks
    Jay.

  • Solution for Messed (Error) Bar Graph of iPod Session in iTunes

    I have encounter the error of iPod Session Bar Graph in iTunes like this:
    http://img160.imageshack.us/img160/4527/capacitybarha6.png
    and I find out the solution that can fix this problem!
    Go to DEVICES > Your iPod > Music > Right click a group of file, and then [Get Info] > Options > Tick the box of [Gapless Album] and choose [Yes], wait for awhile for iTunes processing, and the Bar Graph restore to ordinary status!

    Sounds like it has a drive collision with another device, would you happen to have an external drive or are you on a network, or do you have a printer with memory slots?
    http://docs.info.apple.com/article.html?artnum=93499

Maybe you are looking for

  • My brand new iphone 4 is not working

    Hello everyone hope things are getting well with everyone I have purchased iphone 4 32GB brand new from Oman and am living in Oman but unfortunattly my beginning with this iphone was unlucky at all. When i opened it at the beginning i did not get any

  • Printing issue in Illustrator

    Hey all. One of my users is having an issue whenever she prints a multi page document in illustrator (usually on 11x17). Prior to printing, each page of the document is rotated from portrait to landscape, and then the document is saved. Once printed,

  • AirPlay video doesn't work?

    I have a 13-inch, Mid 2012 MacBook air and a 3rd generation Apple TV. My AirPlay worked fine and now all of the sudden, it stopped working. I restarted my Apple TV and MacBook and that didnt work, I even restored my Apple TV to new and still doesnt w

  • Datatype of PRIMARY KEY

    Namaskar, i just read a question in an Interview..it asked.. What is the Datatype of PRIMARY KEY Oracle Internally uses? 1.Binary Integer 2.Varchar2 3.Number is it Binary integer? Thanks in Advance!!!

  • Sap bc installation

    I am trying to install sap bc server 4.7,but when i run server.bat file on dos, i get the error as runserver.bat file is not recognized.Runserver.bat file is not present in c:\sapbc47\server\bin directory.Please solve this problem.