Skip to content

Commit c9cc55c

Browse files
committed
tooltip
1 parent 3fe0004 commit c9cc55c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

instat/ucrCalculator.vb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ Public Class ucrCalculator
574574
ttCalculator.SetToolTip(cmdCor, "correlation between 2 variables. It is a value between -1 and +1.")
575575
ttCalculator.SetToolTip(cmdCov, "covariance between 2 variables.")
576576
ttCalculator.SetToolTip(cmdQuantile, "a quantile, given a value between 0 and 1. So quantile(c(1,2,3,4,10), 0.25) = 2 and is the lower quartile.")
577-
ttCalculator.SetToolTip(cmdQuantile3, "quantile for an ordered factor. So quantile(cut, 0.25) for the cut variable from ggplotdiamonds data gives the 3rd level, namely Very Good")
577+
ttCalculator.SetToolTip(cmdQuantile3, "quantile for an ordered factor. So quantile(cut, 0.25) for variable from ggplot2 diamonds, gives the 3rd level, namely Very Good")
578578
ttCalculator.SetToolTip(cmdwhichmax, "Row number of the maximum value. So which.max(c(4,3,10,1,2)) is 3")
579579
ttCalculator.SetToolTip(cmdwhichmin, "Row number of the minimum value. So which.min(c(4,3,10,1,2)) is 4")
580580
ttCalculator.SetToolTip(cmdwheremax, "Value of a variable at the which.max position. So for c(""a"",""b"",""c"",""d"",""e""), is ""c"", for the data in which.max tooltip.")
@@ -1425,15 +1425,15 @@ Public Class ucrCalculator
14251425
If chkShowParameters.Checked Then
14261426
ucrReceiverForCalculation.AddToReceiverAtCursorPosition("quantile(x = , probs = 0.5, na.rm = TRUE, names = FALSE, type = 7)", 54)
14271427
Else
1428-
ucrReceiverForCalculation.AddToReceiverAtCursorPosition("quantile(x= , probs = 0.5, na.rm = TRUE)", 29)
1428+
ucrReceiverForCalculation.AddToReceiverAtCursorPosition("quantile(x = , probs = 0.5, na.rm = TRUE)", 29)
14291429
End If
14301430
End Sub
14311431

14321432
Private Sub cmdQuantile3_Click(sender As Object, e As EventArgs) Handles cmdQuantile3.Click
14331433
If chkShowParameters.Checked Then
14341434
ucrReceiverForCalculation.AddToReceiverAtCursorPosition("quantile(x = , probs = 0.5, na.rm = TRUE, names = FALSE, type = 3)", 54)
14351435
Else
1436-
ucrReceiverForCalculation.AddToReceiverAtCursorPosition("quantile(x= , probs = 0.5, na.rm = TRUE, type = 3)", 39)
1436+
ucrReceiverForCalculation.AddToReceiverAtCursorPosition("quantile(x = , probs = 0.5, na.rm = TRUE, type = 3)", 39)
14371437
End If
14381438
End Sub
14391439

0 commit comments

Comments
 (0)