Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8086377
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T18:25:33+00:00 2026-06-05T18:25:33+00:00

If std error is negative in case of error series then how to get

  • 0

If std error is negative in case of error series then how to get upper and lower of error series. In other case y+std error and y – std error gives proper answerenter image description here

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T18:25:35+00:00Added an answer on June 5, 2026 at 6:25 pm

    If you want calculate the Upper or Lower for Error Series, I suggest you use two Series One BarError Series and other Error Series, so Error and ErrorBar Series only have ErrorValue, as use in next example of code:

        private void InitializeChart()
        {
    
           tChart1.Aspect.View3D = false;
            double[] GraphData_Mean = new double[3];
            GraphData_Mean[0] = 3;
            GraphData_Mean[1] = 11;
            GraphData_Mean[2] = 34;
    
            double[] GraphData_Max = new double[3];
            GraphData_Max[0] = 5;
            GraphData_Max[1] = 15;
            GraphData_Max[2] = 23;
    
            double[] GraphData_Min= new double[3];
            GraphData_Min[0] = 1;
            GraphData_Min[1] = 8;
            GraphData_Min[2] = 17;
    
            tChart1.Series.Clear();
            for (int i = 0; i < 3; i++)
            {
                Steema.TeeChart.Styles.ErrorBar errorBar = new Steema.TeeChart.Styles.ErrorBar(tChart1.Chart);
                Steema.TeeChart.Styles.Error error1 = new Steema.TeeChart.Styles.Error(tChart1.Chart);
                // Error Bar Series
                errorBar.Pen.Color = Color.Black;
                errorBar.ErrorPen.Width = 2;
                errorBar.Brush.Solid = true;
                errorBar.Brush.Color = Color.White;
                errorBar.Marks.Visible = false;
                errorBar.ErrorStyle = ErrorStyles.Top;
                errorBar.HorizAxis = HorizontalAxis.Bottom;
                errorBar.MultiBar = MultiBars.None;
                errorBar.Add(i, GraphData_Mean[i], (GraphData_Max[i] - GraphData_Mean[i]));
                errorBar.BarWidthPercent = 40;
                //  Error Series 
                error1.ErrorPen.Width = 2;
                error1.Brush.Solid = true;
                error1.Color = Color.Black;
                error1.Marks.Visible = false;
                error1.ErrorStyle = ErrorStyles.Bottom;
                error1.HorizAxis = HorizontalAxis.Top;
                error1.MultiBar = MultiBars.None;
                error1.ShowInLegend = false;
                error1.Add(i, GraphData_Mean[i], (GraphData_Mean[i] - GraphData_Min[i]));
                error1.BarWidthPercent = 40;
               }
    }
    

    When you do implement it, you only need get the ErrorValue for each Series. If you interested in get the Y value of Series you only need get the value of YValues list for each Series. Can you tell us if previous code help you to achieve as you want? If it doesn’t help please let me know and explain step to step as you expect it work.

    Thanks,

    Best Regards,
    Sandra

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The following C++ code gives an error while compiling: #include<iostream> using namespace std; class
I'm using std::error_code and have a bunch of error's defined (using enum class) and
Consider the following code: std::string my_error_string = Some error message; // ... throw std::runtime_error(std::string(Error:
The compiler (VC8) error is: error C2680: 'std::_Tree<_Traits>::iterator' : invalid target type for dynamic_cast
How do I fix this error? error C2668: 'std::_Tree<_Traits>::end' : ambiguous call to overloaded
The error occurs when I try to do this friend std::ostream& operator<<(std::ostream& os, const
the error I am given: no matching function for call to ‘SimpleRecommender::getMovieId(std::string&)’ What is
/usr/include/c++/4.4/bits/ios_base.h: In member function ‘std::basic_ios >& std::basic_ios >::operator=(const std::basic_ios >&)’: /usr/include/c++/4.4/bits/ios_base.h:793: error: ‘std::ios_base& std::ios_base::operator=(const
While running my program I get this error: terminate called after throwing an instance
I'm trying to fill std::map with std::transform. Next code compiles without error: std::set<std::wstring> in;

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.