Calculating Capacity in Rally - rally

Can anyone explain to me how to calculate your capacity in Rally. I am new to Rally and I am trying to figure out how most of the functions work.
There is a capacity column next to each developer with a pencil where you can type in your capacity. I am assuming it's number of working days in the Sprint * hours of work you are currently assigned or some sort.
Any help is appreciated!
Thanks

Yes, that is correct.
The capacity you find on the Track->Team Status per person is the number of available hours in the selected iteration.
What you need to decide is, how many "productive" hours do each person have per work day.
You can find the help documentation here: https://help.rallydev.com/view-team-member-capacity

Related

How to bypass default parameter to include a range or better SQL?

EDITED (AGAIN): added tables and two screenshots (one of Google Sheets Chart and another showing mutliple issues in DS) to help demonstrate what I am seeing.
Short Version: I have created a parameter to help me score trending topics based on the date range filter. However, I want to be able to show a range of dates' worth of data, not just a specific date's worth of data. In theory, I could make the parameter a checklist with a huge range, but that doesn't seem efficient or sustainable down the road.
Disclaimer: I am about a week into SQL and Data Studio.
Long Version: We are tracking trends over time from a specific customer data set. I'd like to make it so that when a user adjusts the time range, various topics’ " score " depends on the end date. For instance, every time the topic "Recession" is brought up, it is given a score. That score is weighted based on when it was said. I was using 365 as the highest possible score so that anything over a year is null. So if "Recession" is referenced twice, once a week ago and once today, the avg score for recession is 361.5, but if a reference is made to the topic "Talent Management" twice today, then it would have a score of 365, and so forth across a growing list of 50+ topics pertaining to 50+ specific communities we are tracking the topics across.
Here is an example:
topics
groups
entry_date
recession
A
2022-11-24
talent mgt
A
2022-11-24
recession
B
2022-11-22
economy
A
2022-11-22
recession
C
2022-11-15
talent mgt
B
2022-11-8
This score would then affect the bubble size on a chart where the Y-axis is the count of unique groups referencing the topics, and an x-axis based on the range of average scores.
The goal is to be able to see which topics are the most common across groups, which ones are emerging trends, and which ones are dated trends by having a range slider. That way users (colleagues in other departments) can play with the date range "see" the bubbles moving in location and size.
example of static chart in google sheets
I could then also use the same data and fields to measure the percentage of topics being discussed across groups based on the weighted averages against a time range.
In Goolge Sheets I can do this with an xLookUp to a tab that has a column of 0-365 and then next to it a column of 365-0 (on a tab called 'scales') and then a cell on a sheet that you can put any date as the point in time, and it affects all the scores, tables, charts, etc. (I used. =xlookup((point_in_time - entry_date), 'scales'!A:A, 'scales'!B:B, "0")
In the data studios custom SQL I used:
SELECT
*
FROM
`qRaw_data'
where
DATE(_entry_dates_) between
parse_date('%Y%m%d', #DS_START_DATE) and
parse_date('%Y%m%d', #DS_END_DATE)
AND
#pit_date_diff = date_diff(
parse_date('%Y%m%d', #ds_end_date),
_entry_dates_,
day
)
Then I created a field that is time_score of:
avg((Pit_Date_Diff-365)*(-1))
I have been googling and youtubing like crazy and think I either have to come up with a way to override the #pit_date_diff default value OR I need to use a CASE WHEN in the custom query where each time the date_diff is 1 then 365, and so on, but when I try that I get all sorts of errors.
I would like below to include all topics averaged based on all entry dates, not just those that correlate with the inputted parameter field.
currently, I can only show specific entry dates due to the parameter
I appreciate any and all help. I am a week into using data studio and am going cross-eyed Googling and YouTubing things. There is likely a better logical path to accomplish all this. Hoping for a holiday miracle.
Thanks in advance.
It turns out this was much easier than I realized... I added an AS syntax to create a column and then created a field that created the same metrics that I had in the Google Sheets:
SELECT
*,
(date_diff(parse_date('%Y%m%d', #ds_end_date), _entry_dates_,day)) AS q_time_diff
FROM
`qRaw_data`
Then the score field is: (avg(q_time_diff)-365)*(-1)
In case that helps any others in the future... ¯\(ツ)/¯
Happy Holidays!

Bitcoin arbitrage collection formula

https://cryptorank.io/price/bitcoin/arbitrage
I am working on displaying the various currencies like Bitcoin arbitrage URL shared above.
There are number of the records with +9.53%, +7.7% against the other currencies. I tried hard to find out the formulae for this calculation but I was unable to do this.
I asked this question if anyone worked on this type of the problem before might helpful for me to get the idea on this.
Looking forward for your suggestions!
The percentages as shown on this page are calculated based on the exchange rates of the row and column (i.e. of different exchanges):
1 - (exchangeRateOfRow / exchangeRateOfColumn)
E.g. the 11.5% in the first cell of your screenshot:
1 - (19,536 / 22,069) = 0.115 = 11.5%
I don't want to make any statement about whether these are real arbitrage opportunities.

NRQL Web Transaction average duration

I need to find the average values of web transaction times, that change their value by 3*x in 15 minutes. I. can’t find a suitable query. Can you help me?

GOOGLEFINANCE: Finding a defined price for a stock at a certain date (whenever that defined price was reached) and returning it to a cell

Thanks for reading this - I'm a beginner with google sheets and hope you can help me finding a solution to my little problem! Here it comes: I want to extract the (historic) date from GOOGLEFINANCE when a stock price has hit a certain price. Example: Say I know a share was worth $ 10 on December 15, 2008 and it hit a low of $ 5 on March 20, 2009. I want to know how long it took that stock before it came back to $ 10 and would like to get the output (date) in a defined cell. Is there a function or combination of functions I can use? (Besides a few macro editings I have no experience in scripting/programming with google sheets...). Any help is highly appreciated! Thanks much in advance! RJ

Speed up Running Total MDX calculated measure?

I'm using the follow mdx to keep a running total of the Period Balance measure in my cube:
SUM({[Due Date].[Date].CurrentMember.Level.Item(0):[Due Date].[Date].CurrentMember}, [Measures].[Period Balance])
It works great, however it's really slow as the amount of data displayed increases. I can't use a MTD or YTD because the users may be analyzing data that overlaps years. Any way I can speed this up?
Thanks in advance.
I take it you've seen this? http://sqlblog.com/blogs/mosha/archive/2006/11/17/performance-of-running-sum-calculations-in-sp2.aspx
Failing that, there is another sample which uses the technique of taking the parent's prior totals and the parent's current child from first sibling to current - So you'd sum the prior months and then this month's days - That'll only work if you have a date hierarchy though:
http://www.ssas-info.com/analysis-services-articles/62-design/367-inventory-management-calculations-in-sql-server-analysis-services-2005-by-richard-tkachuk
I think the pictures there explain it better, its the "Summing Increments" section.
Are you query-logging and doing usage-based aggregations?