1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-08 11:51:59 +02:00

(v1.1.0.9000) CLSI as.rsi() fix, better vctrs support, new CI

This commit is contained in:
2020-04-29 14:33:44 +02:00
parent e0f4c93e82
commit b040185269
35 changed files with 938 additions and 384 deletions

View File

@ -66,11 +66,20 @@ S3method(skewness,matrix)
S3method(summary,mic)
S3method(summary,mo)
S3method(summary,rsi)
S3method(vec_cast,character.ab)
S3method(vec_cast,character.mo)
S3method(vec_cast,mo)
S3method(vec_cast,mo.character)
S3method(vec_cast,mo.mo)
S3method(vec_ptype2,mo)
S3method(vec_cast.ab,ab)
S3method(vec_cast.ab,character)
S3method(vec_cast.ab,default)
S3method(vec_cast.mo,character)
S3method(vec_cast.mo,default)
S3method(vec_cast.mo,mo)
S3method(vec_ptype2.ab,character)
S3method(vec_ptype2.ab,default)
S3method(vec_ptype2.character,ab)
S3method(vec_ptype2.character,mo)
S3method(vec_ptype2.mo,character)
S3method(vec_ptype2.mo,default)
S3method(vec_ptype_abbr,ab)
S3method(vec_ptype_abbr,disk)
S3method(vec_ptype_abbr,mic)
@ -222,6 +231,10 @@ export(set_mo_source)
export(skewness)
export(susceptibility)
export(theme_rsi)
export(vec_cast.ab)
export(vec_cast.mo)
export(vec_ptype2.ab)
export(vec_ptype2.mo)
exportMethods("[.ab")
exportMethods("[.disk")
exportMethods("[.mic")
@ -282,6 +295,18 @@ exportMethods(skewness.matrix)
exportMethods(summary.mic)
exportMethods(summary.mo)
exportMethods(summary.rsi)
exportMethods(vec_cast.character.ab)
exportMethods(vec_cast.character.mo)
exportMethods(vec_ptype_abbr.ab)
exportMethods(vec_ptype_abbr.disk)
exportMethods(vec_ptype_abbr.mic)
exportMethods(vec_ptype_abbr.mo)
exportMethods(vec_ptype_abbr.rsi)
exportMethods(vec_ptype_full.ab)
exportMethods(vec_ptype_full.disk)
exportMethods(vec_ptype_full.mic)
exportMethods(vec_ptype_full.mo)
exportMethods(vec_ptype_full.rsi)
importFrom(R6,R6Class)
importFrom(cleaner,freq)
importFrom(cleaner,freq.default)
@ -372,6 +397,6 @@ importFrom(utils,adist)
importFrom(utils,browseURL)
importFrom(utils,menu)
importFrom(vctrs,vec_cast)
importFrom(vctrs,vec_ptype2)
importFrom(vctrs,vec_ptype2.character)
importFrom(vctrs,vec_ptype_abbr)
importFrom(vctrs,vec_ptype_full)