Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
dream
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
dream
Commits
dbcc5807
Commit
dbcc5807
authored
Feb 09, 2015
by
Georgios Dagkakis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
results of exit to work with CIs in multiple replications
parent
6ca6125f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
14 deletions
+42
-14
dream/plugins/DefaultTabularExit.py
dream/plugins/DefaultTabularExit.py
+42
-14
No files found.
dream/plugins/DefaultTabularExit.py
View file @
dbcc5807
...
...
@@ -13,17 +13,45 @@ class DefaultTabularExit(plugin.OutputPreparationPlugin):
"""
def
postprocess
(
self
,
data
):
node
=
data
[
'graph'
][
'node'
]
# create the titles of the columns
data
[
'result'
][
'result_list'
][
0
][
'exit_output'
]
=
[[
'Exit Id'
,
'Throughput'
,
'Takt Time'
,
'Lifespan'
]]
# loop the results and search for elements that have 'Exit' as family
for
record
in
data
[
'result'
][
'result_list'
][
0
][
'elementList'
]:
family
=
record
.
get
(
'family'
,
None
)
# when found, add a row with the results of the specific exit
if
family
==
'Exit'
:
exitId
=
record
[
'id'
]
throughput
=
record
[
'results'
].
get
(
'throughput'
,
'undefined'
)
taktTime
=
record
[
'results'
].
get
(
'takt_time'
,
'undefined'
)
lifespan
=
record
[
'results'
].
get
(
'lifespan'
,
'undefined'
)
data
[
'result'
][
'result_list'
][
0
][
'exit_output'
].
append
([
exitId
,
throughput
,
taktTime
,
lifespan
])
return
data
\ No newline at end of file
numberOfReplications
=
data
[
'general'
][
'numberOfReplications'
]
confidenceLevel
=
data
[
'general'
][
'confidenceLevel'
]
if
numberOfReplications
==
1
:
# create the titles of the columns
data
[
'result'
][
'result_list'
][
0
][
'exit_output'
]
=
[[
'Exit Id'
,
'Throughput'
,
'Takt Time'
,
'Lifespan'
]]
# loop the results and search for elements that have 'Exit' as family
for
record
in
data
[
'result'
][
'result_list'
][
0
][
'elementList'
]:
family
=
record
.
get
(
'family'
,
None
)
# when found, add a row with the results of the specific exit
if
family
==
'Exit'
:
exitId
=
record
[
'id'
]
throughput
=
record
[
'results'
].
get
(
'throughput'
,
'undefined'
)
taktTime
=
record
[
'results'
].
get
(
'takt_time'
,
'undefined'
)
lifespan
=
record
[
'results'
].
get
(
'lifespan'
,
'undefined'
)
data
[
'result'
][
'result_list'
][
0
][
'exit_output'
].
append
([
exitId
,
throughput
,
taktTime
,
lifespan
])
elif
numberOfReplications
>
1
:
# create the titles of the columns
data
[
'result'
][
'result_list'
][
0
][
'exit_output'
]
=
[[
'Exit Id'
,
''
,
'Throughput'
,
''
,
''
,
'Takt Time'
,
''
,
''
,
'Lifespan'
,
''
],
[
''
,
'LB'
,
'AVG'
,
'RB'
,
'LB'
,
'AVG'
,
'RB'
,
'LB'
,
'AVG'
,
'RB'
]]
for
record
in
data
[
'result'
][
'result_list'
][
0
][
'elementList'
]:
family
=
record
.
get
(
'family'
,
None
)
# when found, add a row with the results of the specific exit
if
family
==
'Exit'
:
exitId
=
record
[
'id'
]
throughput
=
self
.
getConfidenceInterval
(
record
[
'results'
].
get
(
'throughput'
,
'undefined'
),
confidenceLevel
)
taktTime
=
self
.
getConfidenceInterval
(
record
[
'results'
].
get
(
'takt_time'
,
'undefined'
),
confidenceLevel
)
lifespan
=
self
.
getConfidenceInterval
(
record
[
'results'
].
get
(
'lifespan'
,
'undefined'
),
confidenceLevel
)
data
[
'result'
][
'result_list'
][
0
][
'exit_output'
].
append
([
exitId
,
throughput
[
'lb'
],
throughput
[
'avg'
],
throughput
[
'ub'
],
taktTime
[
'lb'
],
taktTime
[
'avg'
],
taktTime
[
'ub'
],
lifespan
[
'lb'
],
lifespan
[
'avg'
],
lifespan
[
'ub'
]])
return
data
def
getConfidenceInterval
(
self
,
value_list
,
confidenceLevel
):
from
dream.KnowledgeExtraction.ConfidenceIntervals
import
Intervals
from
dream.KnowledgeExtraction.StatisticalMeasures
import
BasicStatisticalMeasures
BSM
=
BasicStatisticalMeasures
()
lb
,
ub
=
Intervals
().
ConfidIntervals
(
value_list
,
confidenceLevel
)
return
{
'lb'
:
lb
,
'ub'
:
ub
,
'avg'
:
BSM
.
mean
(
value_list
)
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment