This tag should be applied to questions related to tips and techniques about software project estimations: development time, effort, team size, software size, execution time, run time resource usage.

learn more… | top users | synonyms

0
votes
0answers
10 views

How to estimate software engineering cost with FFP

Full Function Point (FFP) Can anybody explain or link me to an useful example how i get the time and money from my FP? What I understood until now explaned on the following example class Program { ...
0
votes
2answers
47 views

How to estimate development time for web services? [closed]

How do we (or you) estimate the time involved in developing web services? Are there any standard systematic approach/guidelines/techniques available? What are all the factors that one needs to ...
0
votes
1answer
20 views

How much time is going to take a process - by WCF Service

I’m here with another question this time. I have an application which builds to move data from one database to another. It also deals with validation & comparison between the databases. When we ...
0
votes
0answers
38 views

How to assure positive values with ARMA+GARCH model

I model interest rates in R. I want to model it with ARMA+GARCH model using rigarch package. The coding thing is done and has no unclearnesses. getSymbols(Symbols="DTB4WK",src="FRED") ...
1
vote
1answer
46 views

CIR model estimation through MLE

I want to estimate CIR model parameters though ML in R. It looks like following: dr=(theta1-theta2*r) + theta3*sqrt(r)*dW. THe method is inplemented in sde packege that accompanies the book of Iacus ...
0
votes
0answers
12 views

Cosmic FP estimation of database backup functional process

I am currently in the process of estimating the size of a project using cosmic function point. I was wondering if someone could throw some light on a question I had regarding estimating function ...
0
votes
1answer
66 views

Estimating Parameters in R from a Weighted Sum of Lagged Variables

I am afraid I am stuck with an estimation problem. I have two variables, X and Y. Y is explained by the weighted sum of n lagged values of X. My aim is to estimate the two parameters c(alpha0,alpha1) ...
0
votes
0answers
15 views

How can you reconstruct “base” (profile/headshot) image of face using several obscured images of the face?

I recently read a paper titled "3D Face Reconstruction from a Single Image using a Single Reference Face Shape" which got me thinking about the fact that it is rare for one to encounter unobscured ...
1
vote
2answers
229 views

Two Dimensional Least Mean Square filter in Image Processing (Background Estimation)

I wrote a Matlab program to achieve the image background estimation using the two dimensional LMS (TDLMS)adaptive algorithm, according to Mohiy M. Hadhoud's paper. I initiated the weight matrix W, the ...
0
votes
0answers
224 views

Area Estimation using MATLAB

Good day everyone. I'm currently doing a research on using Green's theorem to calculate the area of an object in an image. My plan is to: Convert the image to a thresholded BW image. Boundary detect ...
1
vote
0answers
82 views

A case of GMM estimation in R

I want to estimate the forward looking version of the Taylor rule equation using the iterative nonlinear GMM: I have the data for all the variables in the model, namely (inflation rate), ...
1
vote
2answers
64 views

How can I estimate the stack space needed to turn an infix expression into a postfix expression

There is the famous shunting-yard algorithm that can be used to turn an infix expression (such as 1 + 2 * 3) into a postfix expression (such as 1 2 2 * +). The shunting-yard algorithm needs a stack to ...
2
votes
2answers
197 views

How do I do Evidence Based Scheduling (EBS) for multiple tasks and unknown developers?

I am trying to get my head around the Evidence Based Scheduling (EBS) approach used in FogBugz and I have read Evidence Based Scheduling several times. What I do understand is the general idea, why ...
1
vote
1answer
98 views

the Hill estimator in R

I am trying to find a package that has a working version of the Hill estimator for extreme value theory in R. Does anyone know what package exists to do this? A couple of searches produced several ...
0
votes
1answer
336 views

Histogram based probability density estimation

How do I make a histogram based probability density estimate of each of the marginal distributions p(x1 ) and p(x2 ) of this data set: import numpy as np import matplotlib.pyplot as plt linalg = ...
0
votes
0answers
127 views

Estimation of max likelihood sample mean and sample covariance

How do I estimate the maximum likelihood sample mean and sample covariance of the data set consisting of N = 100 2-dimensional samples x = (x1 , x2 )T ∈ R2 drawn from a 2-dimensional Gaussian ...
0
votes
4answers
150 views

How to estimate a project's length in man-hours: Commenting Code

Does anyone have any suggestions about how to estimate how long it would take to comment and reorganize the code of an entire project? I just started doing contract work for a company along with ...
5
votes
4answers
269 views

Travelling Salesman Shipping Depreciating Items to Different Markets

What would be a good heuristic to use to solve the following challenge? Quality Blimps Inc. is looking to expand their sales to other cities (N), so they hired you as a salesman to fly to other ...
0
votes
2answers
142 views

SQL for query cost estimate on SQL Server

In SQL Server, is there some magic SQL I can preprend my SQL query to get an estimated query cost rather than the query executed? Possibly something like the below is my best guess myself.. seems ...
0
votes
0answers
13 views

Does any one know a web based alternative to Folio Views?

If not, from your experiance how much work will it take to build such alternative?
0
votes
2answers
361 views

Estimate multiple Regression Models for groups and save a certain parameter value

I looking for a way to estimate various models (lets say 10) and save a certain parameter value from each estimation in a vector with stata. Im more of a R-guy and here it is very simple working ...
0
votes
0answers
38 views

Looking for module based time estimation tool [closed]

I am looking for a tool, that would allow me to estimate time required for project based on the modules that have to be implemented within the project. The idea is, i create different categories ...
0
votes
1answer
101 views

MLE in r is very slow

I am doing an EM estimation, in the M step of which I need Max Likelihood Estimation, which has 24 parameters. I tried the nlm/optim/maxLik functions in R. They are all very slow. Any suggestions are ...
2
votes
2answers
120 views

How to estimating stories that are “less complex” but “effor is more”

In Agile process story points are a measure of complexity and not of time. How does this holds good for a story which is less complex but more time tacking to complete. Let me take an example, Story ...
1
vote
1answer
105 views

Can I fit parameters of an arbitrary function of a single variable to data? [closed]

I’m working in R. I have a function (F) relating one variable (X) to another variable (Y). (F) has 3 mutable parameters (A, B, C), such that Y == F(X) == G(X, A, B, C). I would like to fit this ...
9
votes
2answers
220 views

Applying HyperLogLog to a sample of the population

The HyperLogLog algorithm by Flajolet et al describes a clever way to estimate the cardinality of a set using only a tiny amount of memory. However, it does take into account all N elements of the ...
3
votes
2answers
341 views

How to estimate SQL query timing?

I'm trying to get an rough (order-of-magnitude) estimate of how long time the following query could take: mysql> EXPLAIN SELECT t1.col1, t1_col4 FROM t1 LEFT JOIN t2 ON t1.col1=t2.col1 WHERE ...
0
votes
1answer
112 views

Non-numerical function estimation and integration

Please, put in R the following structures: g <- c(0.00125277273229879, 0.00126154615176554, 0.0012703959424814, 0.00127932294600281, 0.00128832795839672, 0.00129741176435766, ...
0
votes
1answer
59 views

Logic for rate approximation

I am looking for some logic to solve the below problem. There are n transaction amounts : T1,T2,T3.. Tn. Commission for these transactions are calculated using a rate table provided as below. if ...
6
votes
1answer
184 views

Curvature estimation from image

I have images like this ones: In this images the red line is what I want to get from the image. Original images do not have that red lines, but only that green road. What I want is to estimate ...
0
votes
1answer
248 views

What to do if a Scrum User Story is discovered mid-Sprint to be more complex than originally estimated? [closed]

My team used the Team Estimation Game to do original Story Point estimates, and we do mid-Sprint Planning Poker for new Stories being added to the backlog. At the beginning of Sprint Planning we ...
2
votes
1answer
74 views

Is there a way of estimating progress of A* finding a path?

Finding a shortest path in a quite large graph may take a while. A long while in some cases even. From what I know about the algorithm it's impossible to tell exactly how many nodes A* needs to visit ...
0
votes
0answers
68 views

Estimating time for planning and technical design using Evidence Based Scheduling [closed]

I'm at the beginning of a development project in a large organization. The Functional Requirements are currently being worked out and documented with our business stakeholders by our Enterprise ...
1
vote
1answer
154 views

Calculating Markov chain probabilities with values too large to exponentiate

I use the formula exp(X) as the rate for a markov chain. So the ratio of selecting one link over another is exp(X1)/exp(X2). My problem is that sometimes X is very large, so exp(X) will exceed the ...
4
votes
1answer
102 views

Individual estimates accuracy report on Jira

I would like to know how accurate I am estimating user stories. I log my time in Jira + Greenhopper and I had a look to time tracking reports but I'm not sure of how to filter stories by individual ...
0
votes
1answer
45 views

Estimate of the number of children in a maze game tree

Suppose we have a maze game with 1 mouse and 4 cats in a 20*20 grid maze. Assume each agent in the maze can move N, E, S, W. What would your best guess be as to the number of children of each node ...
1
vote
1answer
670 views

R fitdistr for Beta distribution: which starting parameters?

I need to fit my data into a Beta distribution and retrieve the alpha parameter. I'm trying to use R from python (rpy2) and my code looks like: from rpy2 import * from rpy2.robjects.packages import ...
-1
votes
2answers
301 views

Development time of ASP.NET MVC application with MVVM [closed]

We are discussing with the team different options of web application building using ASP.NET MVC. One of the options is to utilize MVVM everywhere on the rendered views (i.e. knockoutjs). Approach ...
1
vote
2answers
84 views

Agile estimation with tech-debt [closed]

When estimating (story points) a story that consists on extending a current functionality with a known tech-debt, should we consider the effort that will be spent to refactor the current code or ...
0
votes
0answers
93 views

Center point estimation from Matched keypoints

I am trying to estimate center point via matched points. I have two images. Scale is same but orientation is diffent as you can see at image below. I matched two point M1,m2. I want to estimate ...
1
vote
2answers
256 views

Capacity planning when using Kanban-base/Lean development

We are currently using Scrum to help develop a set of software libraries in C++ and C#. The nature of the domain is such that we need to be pretty reactive to changing requirements - so much so that ...
3
votes
3answers
228 views

Story points for a task that spans multiple stories

Let's say I have three user stories A, B and C. All three of these user stories require a technical task to be completed before any of them can be done (for example, developing some new framework), ...
2
votes
4answers
317 views

Estimating time to complete tasks [closed]

I know this question has been asked several times on here/programmers and it is quite a common, classic question: Just how do you accurately give estimates for how long a task will take? The problem ...
7
votes
4answers
124 views

tracking square root of moving value

I have a control loop running at high frequency and need to compute a square root each cycle. Typical square root functions work fine but take excessive time. Since the value I'm taking the square ...
0
votes
0answers
30 views

Subjectivity and Bais as a source of error in Estimation [closed]

What is the idea of Subjectivity and Bais in the Software Estimation.?
1
vote
1answer
553 views

Block Bundle Adjustment Flow

I am working on bundle block adjustment for finding X,Y,Z values of image points Corrected values of camera characteristics(extrinsic parameters etc..) Corrected values of measurements In my ...
1
vote
1answer
177 views

Simple algorithm to estimate probability based on past occurences?

Suppose after N occurrences, there are P times that an event happens. The "naive" approach to estimate the probability of that event happen again the next time is P/N, but obviously the higher N is, ...
0
votes
2answers
300 views

Estimating the cost of a multi-platform mobile application for phones & tablets [closed]

I would like to estimate the initial cost that I would need to afford in order to create an application that runs on the major mobile platforms. Let's assume I can do the design&code in my free ...
2
votes
2answers
173 views

Estimate unit tests required in large code base

Our team is responsible for a large codebase containing legal rules. The codebase works mostly like this: class SNR_15_UNR extends Rule { public double getValue(RuleContext context) { ...
3
votes
1answer
795 views

Estimating Time on Tasks

We have just started doing scrum at my company. We are spending a bit of time estimating Effort using planning poker and then when the detailed tasks are worked out a time estimate is put on each ...

1 2 3 4