data sets中文翻譯,data sets是什么意思,data sets發(fā)音、用法及例句
- 內(nèi)容導航:
- 1、data sets
- 2、r語言導入的數(shù)據(jù).dat包怎么刪除
1、data sets
data sets發(fā)音
英: 美:
data sets中文意思翻譯
常見釋義:
數(shù)據(jù)集
data sets雙語使用場景
1、Participants may also make use data sets found in other publications as supplementary data sources.───參賽者亦可選用其他刊物作為輔助資料來源.
2、SeqState - primer design and sequence statistics phylogenetic DNA data sets.───進化DNA數(shù)據(jù)的引物設計序列統(tǒng)計軟件.
3、Using these data sets, we can get the work items and their structures.───使用這些數(shù)據(jù)集,我們可以得到工作項目和它們的結(jié)構(gòu)。
4、In this paper, customers are ranked according to their peculiarity found in imbalance data sets.───文中利用現(xiàn)實數(shù)據(jù)中類別不平衡的特點, 通過特異性對顧客排序,從而找出具有市場價值的顧客.
5、Considering the possible gross error existed in collected data, sets up a checking method.───同時對建筑物特徵點采集數(shù)據(jù)中可能出現(xiàn)的粗差, 提出了檢查和評判的方法.
6、In general, the labs will involve computer work with modeling and application to'live'data sets.───大體上, 實驗將涉及電腦操作來建模和應用[活]數(shù)據(jù)集.
7、We will provide data sets and suggested techniques for each of the three choices.───我們將會提供此三篇主題中必要的資料及相關(guān)的技術(shù).
8、Other data sets need to be specified.───其他數(shù)據(jù)集需要指定。
9、Selected Data Archives offering a large variety of data sets : They are worth surfing.───值得搜尋且擁有廣泛資料的精選數(shù)據(jù)庫.
10、Individual data sets face edition.───個人資料設置面版.
11、Generation data sets have sequentially ordered absolute and relative names that represent their age.───GDG用絕對順序的排列和相對名來體現(xiàn)他們的年代.
12、It is best used on small data sets.───最好將它用于較小的數(shù)據(jù)集。
13、The GPS multipath measurement and the procedure of obtaining trial observation data sets were discussed firstly.───文中首先介紹了GPS多路徑試驗測量和觀測數(shù)據(jù)采集的程序.
14、I am looking to get Data sets of all sorts ( demographic data mostly ).───我期待得到各類 ( 主要是人口數(shù)據(jù)的數(shù)據(jù)集 ).
15、Always use type - safe data sets or data tables. Avoid raw ADO.───總是使用類型安全的數(shù)據(jù)集或者數(shù)據(jù)表. 避免使用原始的.
16、Expression data sets were analyzed for differential activation of signaling pathways.───分析上述蛋白表達的數(shù)據(jù),探討是否與信號傳導通路的差異活化有關(guān).
17、UDDI is not designed to support large data sets required by some research uses.───UDDI并不是為那些通過搜索獲取大量數(shù)據(jù)集的使用場合而設計的.
18、The proposed algorithm is proved to be effective against the sample data sets.───將網(wǎng)站劃分算法應用于樣本數(shù)據(jù)集,驗證其有效性.
data sets相似詞語短語
1、data centers───數(shù)據(jù)中心
2、data pens───數(shù)據(jù)筆
3、data bases───數(shù)據(jù)庫(等于databank);基本數(shù)據(jù);儲存之資料
4、data suggests───數(shù)據(jù)顯示
5、data shows───數(shù)據(jù)顯示
6、data set───數(shù)據(jù)集;[通信]數(shù)傳機
7、data pen───數(shù)據(jù)筆
8、data caps───數(shù)據(jù)限流(計算機術(shù)語)
9、databases───n.[計]數(shù)據(jù)庫;資料庫(database的復數(shù));v.把信息存入數(shù)據(jù)庫(database的第三人稱單數(shù))
2、r語言導入的數(shù)據(jù).dat包怎么刪除
R語⾔查看已加載包、卸除加載包及安裝包與卸載包1、查看已加載的包
(.packages())
注意外⾯的括號和前⾯的點不能省。
包被安裝后,在使⽤前需要加載。加載包使⽤命令 library(包名),⽐如library(codetools)。
查看有哪些包是被加載的,使⽤命令(.packages()) ,注意⼩括號和點號不能省略。
> (.packages())
[1] "stats" "graphics" "grDevices" "utils" "datasets" "methods" "base"
2、卸除已加載的包
如卸除RMySQL包
detach(“package:RMySQL”)
注意是卸除,不是卸載,也就是說不是把包從R運⾏環(huán)境中徹底刪除,只是不希望該包被加載使⽤。
在包使⽤函數(shù)沖突,檢驗函數(shù)依賴時⽐較有⽤。
要將已經(jīng)加載的包卸除。注意不是卸載刪除,只是不加載這個包。在包函數(shù)沖突時需要。使⽤命令detach("package:包名")?;騽tdetach("package:包名", unload=TRUE)
3、安裝包
install.packages(“rjson”)
下載安裝名為“rjson”的包。
要安裝包,可以使⽤命令install.packages("包名"),或者
install.packages("包名", contriburl="http://url", dependencies = TRUE)
如果安裝的時候要指定安裝⽬錄,可以使⽤install.packages("stepNorm", contriburl="http://url", lib="mydir")
4、卸載已加載的包
徹底刪除已安裝的包:
remove. packages(c(“pkg1”,”pkg2”) , lib = file .path(“path”, “to”, “l(fā)ibrary”))
注:
“pkg1”,”pkg2”表⽰包名,即⼀次可以卸載多個包;
“path”, “to”, “l(fā)ibrary”表⽰R的庫路徑,字符向量,通常情況下只輸⼀個路徑即可。使⽤命令.libPaths()可以查看庫路徑。⽰例:remove.packages(c(‘zoom’),lib=file.path(‘C:\\Program Files\\R\\R-3.2.2\\library’))
5、查看已安裝的包
installed.packages()
library()
使⽤ library() 可以查看已經(jīng)安裝的包的列表,會打開⼀個新窗⼝顯⽰信息。
使⽤ installed.packages() 可以看到各個包安裝的路徑,版本號等信息。
也可以使⽤ .packages(all.available=T) 就在控制臺中顯⽰已安裝包的名字,只顯⽰包的名字。
要查看已安裝包的幫助信息,⽐如該包中有哪些函數(shù),可使⽤ help(package="graphics") 。如果該包提供了信息,會以本地⽹頁的形式打開幫助⽂件。
6、查看某個包提供的函數(shù)
help(package=’TSA’)
package參數(shù)為要查看的包的包名。
7、查看某個函數(shù)屬于哪個包
help(函數(shù)名)
在打開的⽹頁中查看屬于哪個包。
8、升級包
update.packages()
¥
5.9
百度文庫VIP限時優(yōu)惠現(xiàn)在開通,立享6億+VIP內(nèi)容
立即獲取
R語言查看已加載包、卸除加載包及安裝包與卸載包
R語⾔查看已加載包、卸除加載包及安裝包與卸載包1、查看已加載的包
(.packages())
注意外⾯的括號和前⾯的點不能省。
包被安裝后,在使⽤前需要加載。加載包使⽤命令 library(包名),⽐如library(codetools)。
查看有哪些包是被加載的,使⽤命令(.packages()) ,注意⼩括號和點號不能省略。
> (.packages())
[1] "stats" "graphics" "grDevices" "utils" "datasets" "methods" "base"
第 1 頁
2、卸除已加載的包
如卸除RMySQL包
detach(“package:RMySQL”)
注意是卸除,不是卸載,也就是說不是把包從R運⾏環(huán)境中徹底刪除,只是不希望該包被加載使⽤。
在包使⽤函數(shù)沖突,檢驗函數(shù)依賴時⽐較有⽤。
要將已經(jīng)加載的包卸除。注意不是卸載刪除,只是不加載這個包。在包函數(shù)沖突時需要。使⽤命令detach("package:包名")?;騽tdetach("package:包名", unload=TRUE)
第 2 頁
3、安裝包
install.packages(“rjson”)
下載安裝名為“rjson”的包。
要安裝包,可以使⽤命令install.packages("包名"),或者
install.packages("包名", contriburl="http://url", dependencies = TRUE)
如果安裝的時候要指定安裝⽬錄,可以使⽤install.packages("stepNorm", contriburl="http://url", lib="mydir")
4、卸載已加載的包
第 3 頁
徹底刪除已安裝的包:
remove. packages(c(“pkg1”,”pkg2”) , lib = file .path(“path”, “to”, “l(fā)ibrary”))
注:
“pkg1”,”pkg2”表⽰包名,即⼀次可以卸載多個包;
“path”, “to”, “l(fā)ibrary”表⽰R的庫路徑,字符向量,通常情況下只輸⼀個路徑即可。使⽤命令.libPaths()可以查看庫路徑。⽰例:remove.packages(c(‘zoom’),lib=file.path(‘C:\\Program Files\\R\\R-3.2.2\\library’))
本站其他內(nèi)容推薦
1、incline wit foster oriole first-timer therapeutic phalanx frightful plaguey dwarfish
3、Leh中文翻譯,Leh是什么意思,Leh發(fā)音、用法及例句
4、openitandsee英語怎么讀(open and see中文翻譯,open and see是什么意思,open and see發(fā)音、用法及例句)
7、適于抓握的英文,英語,prehensile是什么意思,prehensile中文翻譯,prehensile怎么讀、發(fā)音、用法及例句
8、ceraceous是什么意思,ceraceous中文翻譯,ceraceous怎么讀、發(fā)音、用法及例句
9、affiliates是什么意思,affiliates中文翻譯,affiliates怎么讀、發(fā)音、用法及例句
10、inofficious是什么意思,inofficious中文翻譯,inofficious怎么讀、發(fā)音、用法及例句
11、camo
版權(quán)聲明: 本站僅提供信息存儲空間服務,旨在傳遞更多信息,不擁有所有權(quán),不承擔相關(guān)法律責任,不代表本網(wǎng)贊同其觀點和對其真實性負責。如因作品內(nèi)容、版權(quán)和其它問題需要同本網(wǎng)聯(lián)系的,請發(fā)送郵件至 舉報,一經(jīng)查實,本站將立刻刪除。