I need to display the symbol ‘^’
d <- dist(fascores, method = "euclidean")^2
How do I do that?symbols
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
in text-mode (needs \textrm or similar in math-mode)
\textasciicircum or
\^{},
in math-mode
\hat{} (only this produces a circumflex),
\widehat{}, or
\wedge (∧).
in a verb-like manner
\string^,
\char`\^,
\verb!^!:
\verb!d <- dist(fascores, method = "euclidean")^2!