-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add R snippets for UltiSnips #332
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
77bc9bd
Add support for rnoweb filetype
jdavis 53f8dd5
Add in r.snippets file
jdavis 55887f0
Add R snippets to Rnoweb
jdavis bd8ef3d
Tidy up some parts of r.snippets
jdavis d1f2316
Add a few more snippets, fix errors as per #332
jdavis 6b5d7d3
Remove duplicate snippet
jdavis 8c7bb5d
Remove trigger from the end of the description
jdavis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
priority -50 | ||
|
||
snippet #! "Hashbang for Rscript (#!)" b | ||
#!/usr/bin/env Rscript | ||
endsnippet | ||
|
||
snippet lib "Import a library" | ||
library(${0:package}) | ||
endsnippet | ||
|
||
snippet req "Require a file" | ||
require(${0:package}) | ||
endsnippet | ||
|
||
snippet source "Source a file" | ||
source('${0:file}') | ||
endsnippet | ||
|
||
snippet if "If statement" | ||
if (${1}) { | ||
${0} | ||
} | ||
endsnippet | ||
|
||
snippet eif "Else-If statement" | ||
else if (${1}) { | ||
${0} | ||
} | ||
|
||
snippet el "Else statement" | ||
else { | ||
${0} | ||
} | ||
endsnippet | ||
|
||
snippet ife "if .. else" | ||
if (${1}) { | ||
${2} | ||
} else { | ||
${3} | ||
} | ||
endsnippet | ||
|
||
snippet wh "while loop" | ||
while(${1}) { | ||
${2} | ||
} | ||
endsnippet | ||
|
||
snippet for "for loop" | ||
for ({${1:item} in ${2:list}) { | ||
${3} | ||
} | ||
endsnippet | ||
|
||
snippet fun "Function definition" | ||
${1:name} <- function (${2}) { | ||
${0} | ||
} | ||
endsnippet | ||
|
||
snippet ret "Return call" | ||
return(${0}) | ||
endsnippet | ||
|
||
snippet df "Data frame" | ||
${1:name}[${2:rows}, ${0:cols}] | ||
endsnippet | ||
|
||
snippet c "c function" | ||
c(${0:items}) | ||
endsnippet | ||
|
||
snippet li "list function" | ||
list(${0:items}) | ||
endsnippet | ||
|
||
snippet mat "matrix function" | ||
matrix(${1:data}, nrow = ${2:rows}, ncol = ${0:cols}) | ||
endsnippet | ||
|
||
snippet apply "apply function" | ||
apply(${1:array}, ${2:margin}, ${0:function}) | ||
endsnippet | ||
|
||
snippet lapply "lapply function" | ||
lapply(${1:list}, ${0:function}) | ||
endsnippet | ||
|
||
snippet sapply "sapply function" | ||
lapply(${1:list}, ${0:function}) | ||
endsnippet | ||
|
||
snippet vapply "vapply function" | ||
vapply(${1:list}, ${2:function}, ${0:type}) | ||
endsnippet | ||
|
||
snippet mapply "mapply function" | ||
mapply(${1:function}, ${0:...}) | ||
endsnippet | ||
|
||
snippet tapply "tapply function" | ||
tapply(${1:vector}, ${2:index}, ${0:function}) | ||
endsnippet | ||
|
||
snippet rapply "rapply function" | ||
endsnippet | ||
rapply(${1:list}, ${0:function}) | ||
|
||
snippet pl "Plot function" | ||
plot(${1:x}, ${0:y}) | ||
endsnippet | ||
|
||
snippet ggp "ggplot2 plot" | ||
ggplot(${1:data}, aes(${0:aesthetics})) | ||
endsnippet | ||
|
||
snippet fis "Fisher test" | ||
fisher.test(${1:x}, ${0:y}) | ||
endsnippet | ||
|
||
snippet chi "Chi Squared test" | ||
chisq.test(${1:x}, ${0:y}) | ||
endsnippet | ||
|
||
snippet tt "t-test" | ||
t.test(${1:x}, ${0:y}) | ||
endsnippet | ||
|
||
snippet wil "Wilcox test" | ||
wilcox.test(${1:x}, ${0:y}) | ||
endsnippet | ||
|
||
snippet cor "Correlation test" | ||
cor.test(${1:x}, ${0:y}) | ||
endsnippet | ||
|
||
snippet fte "FTE test" | ||
var.test(${1:x}, ${0:y}) | ||
endsnippet | ||
|
||
snippet kvt "KV test" | ||
kv.test(${1:x}, ${0:y}) | ||
endsnippet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
priority -50 | ||
|
||
extends tex, r |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
github does not show, but are you indenting with tabs? Please make sure you use tabs everywhere.