Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Fractalis
fractal.js
Commits
73dbc288
Commit
73dbc288
authored
Apr 10, 2018
by
Sascha Herzinger
Browse files
Fixed number precision and boxplot layout issues
parent
fa83dae2
Pipeline
#4498
failed with stages
in 6 minutes and 59 seconds
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
src/vue/charts/Boxplot.vue
View file @
73dbc288
...
...
@@ -40,16 +40,19 @@
ANOVA -- F-value:
{{
anova
.
fValue
}}
&
nbsp p-value:
{{
anova
.
pValue
}}
</text>
<g
class=
"fjs-boxplot-axis fjs-x-axis"
ref=
"xAxis"
:transform=
"`translate(0, $
{padded.height})`">
</g>
<g
class=
"fjs-boxplot-axis fjs-y-axis"
ref=
"yAxis"
></g>
<g
class=
"fjs-box"
:ref=
"`$
{label}-box`"
:transform="`translate(${scales.x(label)}, 0)`"
v-tooltip="{placement: 'bottom'}"
:title="label"
@click="setIDFilter(label)"
@mouseenter="showTooltip(label)"
@mouseleave="hideTooltip(label)"
v-for="label in labels">
<text
text-anchor=
"middle"
:transform=
"`translate($
{boxplotWidth / 1.8},${boxes[label].median})rotate(90)`">
{{
label
}}
</text>
<line
class=
"fjs-upper-whisker"
:ref=
"`$
{label}-upper-whisker`"
:title="results.statistics[label].u_wsk"
...
...
@@ -137,7 +140,6 @@
import
runAnalysis
from
'
../../utils/run-analysis
'
import
*
as
d3
from
'
d3
'
import
deepFreeze
from
'
deep-freeze-strict
'
import
{
truncateTextUntil
}
from
'
../../utils/utils
'
import
tooltip
from
'
../directives/tooltip
'
import
StateSaver
from
'
../mixins/state-saver
'
import
getHDPICanvas
from
'
../../utils/high-dpi-canvas
'
...
...
@@ -188,7 +190,7 @@
const
left
=
10
const
top
=
this
.
height
/
20
const
right
=
this
.
width
/
20
const
bottom
=
this
.
height
/
3
const
bottom
=
10
return
{
left
,
top
,
right
,
bottom
}
},
padded
()
{
...
...
@@ -289,18 +291,12 @@
})
return
polyPoints
},
axis
()
{
const
x
=
d3
.
axisBottom
(
this
.
scales
.
x
).
tickFormat
(
d
=>
{
// noinspection JSSuspiciousNameCombination
return
truncateTextUntil
({
text
:
d
,
font
:
`0.875em Roboto`
,
maxWidth
:
this
.
margin
.
bottom
})
})
const
y
=
d3
.
axisRight
(
this
.
scales
.
y
)
.
tickSizeInner
(
this
.
padded
.
width
)
return
{
x
,
y
}
yAxis
()
{
return
d3
.
axisRight
(
this
.
scales
.
y
).
tickSizeInner
(
this
.
padded
.
width
)
},
anova
()
{
let
fValue
=
this
.
results
.
anova
.
f_value
==
null
?
'
NaN
'
:
this
.
results
.
anova
.
f_value
.
to
Fixed
(
4
)
let
pValue
=
this
.
results
.
anova
.
p_value
==
null
?
'
NaN
'
:
this
.
results
.
anova
.
p_value
.
to
Fixed
(
4
)
let
fValue
=
this
.
results
.
anova
.
f_value
==
null
?
'
NaN
'
:
this
.
results
.
anova
.
f_value
.
to
Precision
(
4
)
let
pValue
=
this
.
results
.
anova
.
p_value
==
null
?
'
NaN
'
:
this
.
results
.
anova
.
p_value
.
to
Precision
(
4
)
return
{
pValue
,
fValue
}
}
},
...
...
@@ -316,15 +312,10 @@
this
.
hasSetFilter
=
false
}
},
'
a
xis
'
:
{
'
yA
xis
'
:
{
handler
:
function
(
newAxis
)
{
this
.
$nextTick
(()
=>
{
d3
.
select
(
this
.
$refs
.
xAxis
)
.
call
(
newAxis
.
x
)
.
selectAll
(
'
text
'
)
.
attr
(
'
transform
'
,
'
rotate(20)
'
)
d3
.
select
(
this
.
$refs
.
yAxis
)
.
call
(
newAxis
.
y
)
d3
.
select
(
this
.
$refs
.
yAxis
).
call
(
newAxis
)
})
}
},
...
...
@@ -469,9 +460,4 @@
stroke
:
#E2E2E2
path
stroke
:
none
.fjs-x-axis
.tick
text
text-anchor
:
start
font-size
:
0
.75em
</
style
>
src/vue/charts/CorrelationAnalysis.vue
View file @
73dbc288
...
...
@@ -37,8 +37,8 @@
<html2svg
:right=
"padded.width"
>
<draggable>
<div
class=
"fjs-legend"
>
<span>
Corr. Coef.:
{{
tmpResults
.
coef
.
to
Fixed
(
4
)
}}
</span>
<span>
p-value:
{{
tmpResults
.
p_value
.
to
Fixed
(
4
)
}}
</span>
<span>
Corr. Coef.:
{{
tmpResults
.
coef
.
to
Precision
(
4
)
}}
</span>
<span>
p-value:
{{
tmpResults
.
p_value
.
to
Precision
(
4
)
}}
</span>
<div
v-for=
"(point, i) in legendSubsetPoints"
>
<svg
:width=
"pointSize * 2"
:height=
"pointSize * 2"
>
<polygon
:points=
"point"
></polygon>
...
...
src/vue/charts/PCA.vue
View file @
73dbc288
...
...
@@ -16,14 +16,14 @@
<div>
<label>
<select
v-model=
"pcX"
>
<option
:value=
"i"
v-for=
"i in components"
>
Principal Component
{{
i
}}
</option>
<option
:value=
"i"
v-for=
"i in
p
components"
>
Principal Component
{{
i
+
1
}}
</option>
</select>
X-Axis
</label>
<br/>
<label>
<select
v-model=
"pcY"
>
<option
:value=
"i"
v-for=
"i in components"
>
Principal Component
{{
i
}}
</option>
<option
:value=
"i"
v-for=
"i in
p
components"
>
Principal Component
{{
i
+
1
}}
</option>
</select>
Y-Axis
</label>
...
...
@@ -65,12 +65,12 @@
:y=
"- margin.top / 2"
text-anchor=
"middle"
v-show=
"results.data.id.length"
>
Principal Component
{{
pcX
}}
(Variance Ratio:
{{
results
.
variance_ratios
[
pcX
].
toFixed
(
2
)
}}
)
Principal Component
{{
pcX
+
1
}}
(Variance Ratio:
{{
results
.
variance_ratios
[
pcX
].
toFixed
(
2
)
}}
)
</text>
<text
text-anchor=
"middle"
:transform=
"`translate($
{this.padded.width + this.margin.right / 2}, ${this.padded.height / 2})rotate(90)`"
v-show="results.data.id.length">
Principal Component
{{
pcY
}}
(Variance Ratio:
{{
results
.
variance_ratios
[
pcY
].
toFixed
(
2
)
}}
)
Principal Component
{{
pcY
+
1
}}
(Variance Ratio:
{{
results
.
variance_ratios
[
pcY
].
toFixed
(
2
)
}}
)
</text>
<g
v-for=
"loading in loadings"
>
<line
class=
"fjs-loadings"
...
...
@@ -264,8 +264,8 @@
}
})
},
components
()
{
return
Object
.
keys
(
this
.
results
.
loadings
).
filter
(
d
=>
d
!==
'
feature
'
)
p
components
()
{
return
Object
.
keys
(
this
.
results
.
loadings
).
filter
(
d
=>
d
!==
'
feature
'
)
.
map
(
d
=>
parseInt
(
d
))
},
subsets
()
{
return
[...
new
Set
(
this
.
results
.
data
.
subset
)]
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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