Questions tagged [estimation]

Questions related to tips and techniques about software project estimations: development time, effort, team size, software size, execution time, run time resource usage. Please ask on https://softwareengineering.stackexchange.com/help/on-topic if your question is not directly related to code.

Fred Brooks said:

It is very difficult to make a vigorous, plausible and job-risking defense of an estimate that is derived by no quantitative method, supported by little data, and certified chiefly by the hunches of the managers

On a day-to-day business context, the word estimate is often used when asking for a commitment, and this is incorrect. An estimate is not a target, not a commitment. An estimate is an assessment, based on prior experience, judgement and possibly on incomplete information about the time or resources needed to build a software project. An estimate can also be requested for the size or configuration or system resources needed to execute a software product.

Estimates always have a degree of error, so this should always be kept in mind when using an estimate to make a decision. More precision is achieved for an estimate spending more time or money - an estimate may be quick, precise and inexpensive: pick two of the three attributes.

Books about software estimation:

  • Software Estimation. Demystifying the Black Art. Steve McConnell. 2006 Microsoft Press, Redmond, WA.

  • Software Engineering Economics. Barry W. Boehm. 1981 Prentice-Hall Inc. Englewood cliffs, NJ.

492 questions
0
votes
1 answer

Head pose estimation opencv

I have a specific question with regards head pose, I am looking into creating a cylindrical model that maps 2D points to this 3D model, and then compare points from successive frames using optical flow, so that later on I can perform pose…
user2045193
  • 11
  • 1
  • 1
0
votes
1 answer

Tuning parameters in simulink

I got a simulink model consisting 4 inputs, 6 outputs and 16 parameters with 4 different self-written controllers. I need to tune the parameters to find their optimized values. I tried to use parameter estimation and response optimization tools and…
lsn
  • 33
  • 10
0
votes
1 answer

JIRA linked issues and their total effort/worked on time

I need to start using JIRA for estimation and came across a scenario I have not found a good solution for yet. Consider an installation with more than one project which is already populated with many existing issues. Many of these issues are…
quiet-ranger
  • 489
  • 1
  • 4
  • 12
0
votes
1 answer

Regression estimation in Eviews

I estimate the dependency of export,gdp and human capital. If choosing the linear method, I got this: Dependent Variable: EXPORTS Method: Least Squares Date: 05/23/15 Time: 18:20 Sample: 1960 2011 Included observations: 52 Variable …
July
  • 15
  • 1
  • 1
  • 7
0
votes
1 answer

How do I predict a file size before the file is created in vb.net?

Could anyone help me please. I have made a Text-To-Speech application using SpeechSynthesizer, it has Play, Pause, Resume, and Stop, but also you can change the voice, rate and volume, and also save as audio (mp3, wav). But the question is: How do I…
MJAS
  • 1
  • 1
0
votes
1 answer

Module development time ( cost ) estimation

I need some idea regarding the development time estimation of a to be developed software. Though there are formal methods in theory like COCOMO , Function point ,etc, such methods seem impractical to apply before having any work done. (I am not…
bdur
  • 341
  • 1
  • 8
  • 17
0
votes
1 answer

Python estimates

I am trying to write a Python code where the user gives a number and the number of decimals it wants to be rounded to. Then the program returns the first number in scientific notation. My code: def csign(a,b): #a=number,b=decimals …
L.R.
  • 423
  • 2
  • 5
  • 15
0
votes
1 answer

Usage Estimation Algorithm on a Series (c#)

We have a package delivery system. In which daily packages arrived or departed. We have these data. We want to estimate next day usage based on historical data(say 30 days) Example Data What is best algorithm to estimate next day usage. If there…
gandil
  • 5,398
  • 5
  • 24
  • 46
0
votes
0 answers

gaussian_kde probability mass

I am using gaussian_kde to generate 2-dimensional density estimates. Is there a way that I can calculate the level curves of this PDF with the property that a fixed amount of probability mass lies above a given height? For example, I would like to…
0
votes
1 answer

Formula of estimation time for encryption algorithm

Is there any mathematical formula to estimate the encryption time for an encryption algorithm (RSA, SHA, any...) depending on data volume. (The computer or network characteristics and performances could be fixed). If you 're sure that there isn't…
0
votes
0 answers

method of moments: beta binomial distribution

I am attempting to work through the method of moments estimation of alpha and beta for a beta binomial distribution. Taking the steps found at: http://en.wikipedia.org/wiki/Beta-binomial_distribution#Maximum_likelihood_estimation I have think I have…
user3266890
  • 465
  • 5
  • 15
0
votes
0 answers

estimator for the derivative of the local linear model (SAS)

I estimate a local linear model for the data with one continuous dependent variable and multiple explanatory variables (continuous and dichotomous). Is it possible to estimate the derivatives of this function for each bundle of explanatory variables…
0
votes
1 answer

Hayashi yoshida estimator for correlation not coming between -1 to 1

I took two time series data with 141 data points in total with time stamps. i found out actual correlation between them which is about 0.97. Now i find the Hayashi Yoshida estimator for correlation. It comes greater than 3. The Hy correlation…
Mayank Raj
  • 121
  • 2
  • 12
0
votes
1 answer

Estimate the color distribution by Guassian mixture model

I have an Image and i want to estimate the color distribution of the input image by a Gaussian Mixture Model, how i can do it with Matlab? myImage = imread('Jellyfish.jpg'); gmdistribution.fit(X,k) is not work for me, because X must be a 2D Matrix…
AliSh
  • 10,085
  • 5
  • 44
  • 76
0
votes
1 answer

Simulation Velocity of a harmonic oscillator system

I am write a simulation for get true Velocity of a harmonic oscillator system as Where P=[p1 p2;p2 p3] can find using Rung-Kutta Integration method with P(0)=[1 0; 0 1] Now, I want to write matlab code to get the true postion z of the system and…
John
  • 2,838
  • 7
  • 36
  • 65