Replace 取代· Begin to Learn R - begin4learn
文章推薦指數: 80 %
如同在修訂文件時常用的取代功能,我們常需要在文字中將符合某些特徵或關鍵字的部分搜尋出來 ... R 語言中使用 ... 如何掌控資料:關於文字在Python 與R 語言處理文字 ...
BegintoLearnR
IntroductionR
DataInput&Output
DataInput匯入資料
DataOutput輸出資料
DatabaseInput讀取資料庫
Datasets
DataWrangling
Recode
Addacolumn
Factor
Groupingbydaterange
ReshapingData
Reshaping:LongtoWidedcast(){reshape2}
Reshaping:WidetoLongmelt(){reshape2}
SortingResults
StringManipulation
Subset
SummariesbySubgroups{plyr}
EDA-ExploratoryDataAnalysis
DataExploratory
VariableIdentification
UnivariateAnalysis
IQRInterquartileRange
FrequencyTable(Chart)
FrequencyDistributionTable
CumulativeFrequencyDistributionTable
Stemplot
Bi-variateAnalysis
Missingvaluestreatment
Outliertreatment
FeatureEngineering
Variabletransformation
Variablecreation
DataAnalysis
RDataAnalysis
GraphicalDataAnalysis
FactorAnalysis
PCA-PrincipalComponentsAnalysis
DecisionTrees
RandomForest
Clustering
Classification
SVM-SupportVectorMachines
NaïveBayesClassification
BayesianStatistics
BayesianMethods
BayesianNetwork
BayesianNetworksInference
BayesianNetworkApplications
Time-series
RStatistics統計
DescriptiveStatistics
Mean
Mode
Median
IQRInterquartileRange
5-numbersummary
Variance
StandardDeviation
Standarderror
Inferentialstatistics
ExpectedValue
HypothesisTesting
T-tests
ANOVA
Chi-SquareTest
LinearRegression
LinearModels
NonlinearRegressionAnalysis
LogisticRegression
Generalizedlinearmodels(GLMs)
MaximumLikelihoodEstimation(MLE)
GeneralizedAdditiveModels(GAM)
SurvivalAnalysis
Distribution
NormalDistribution
NonNormalDistribution
BinomialDistribution
PoissonDistribution
MachineLearning
Unsupervisedlearning
Supervisedlearning
ReinforcementLearning
SupportVectorMachine支持向量機
StructuralChangeandAnomaliesDetection
Crawler網頁解析爬蟲
BinaryClassificationmetrics
DataCommunication溝通資料
DataVisualization
DataPrediction(Modeling)
Case&Code
FinanceR
GenomicsR
ClinicalResearch
Commerce商業
RBasic
Command
{base}
{stats}
Syntax
Arguments
Packages
Install&Setting
Rinstall
Rinstall_Ubuntu18
Rsetting
Environment環境空間
Data
DataStructures
DataFrame資料框架
Create/Input
ReferenceElements
Modify
Operations
Output
Function
Example
List列表
Create/Input
ReferenceElements
Modify
Operations
Output
Function
Example
Vectors向量(1維)
Create/Input
ReferenceElements
Modify
Operations
Output
Function
Example
Matrices矩陣(2維)
Create/Input
ReferenceElements
Modify
Operations
Output
Function
Example
Array陣列(多維)
Create/Input
ReferenceElements
Modify
Operations
Output
Function
Example
xts:timeseriesdata
Create/Input
ReferenceElements
Modify
Operations
Output
Function
Example
DataTypes
Numeric
Operations
Function
Example
Logical
Operations
Function
Example
Character文字型別
Operations文字操作
Create建立
Length量測長度
Case大小寫
Space空格
Output格式化輸出
Capture擷取
Date日期時間
Split分隔
Position位置
Replace取代
RegularExpression正規表達
ApplytoArray應用文字處理函數至陣列
Function
Example
Factor因子
Operations
Function
Example
Dates
Operations
Function
Example
MissingData
Operations
Function
Example
Function
Date
Variable變數
DiscreteVariables
ContinuousVariables
QuantitativeVariables
QualitativeVariables
CategoricalVariable
Loop
if判斷式
switch單選
while-loop
for-loop
repeat-loop
breakloop
nextloop
Graphics
BasicGraphics
BarChart
Histogram
Boxplot
AdvancedGraphics
PackageGraphics
{ggplot2}a-z
{ggplot2}optiona-z
{graphics}a-z
{graphics}argumentsa-z
{lattice}a-z
SaveGraphstoFiles
Issue問題
Date
Time
Season
Trend
Shiny
ShinyIntroduction
Buildshinyapplications
Learning_R
LearningMapR
Tools
RCommandA-Z
CheatSheet
HowR
PoweredbyGitBook
Replace取代
String字元/Replace根據特徵取代
如同在修訂文件時常用的取代功能,我們常需要在文字中將符合某些特徵或關鍵字的部分搜尋出來後再取代為指定文字。
R語言中使用
sub()函數:只取代第一個搜尋到的特徵
gsub()函數:取代所有搜尋到的特徵
指定兩個參數
pattern參數:指定搜尋特徵
replacement參數:則指定要取代的文字
shaq
延伸文章資訊
- 1R學習筆記:資料清理Cleaning Data (2)
str_pad():將0補上字串資料 str_detect():偵測向量資料中的特定字串 str_replace() : 尋找並取代文字值(例如用-取代e,"one apple"會變成on- a...
- 2Chapter 10 文字與字串資料處理| R 資料科學與統計 - Bookdown
{R} 內有許多函數可以處理文字型態的資料物件或文字資料(Character Data), 常用之文字函式有 paste() , substr() , substring() , grep() ...
- 3R語言學習筆記(二):常用指令 - Yanwei Liu
as.character(my_logical) # "TRUE"### R 語言基本的資料結構大致有五類。 ... merge(data1, data2, all = FALSE)#grep,...
- 46 資料處理與清洗| 資料科學與R語言
介紹如何使用R語言完成資料讀取、處理、分析與呈現,以及大數據技術與R的整合. ... 在所有的程式語言中,只要用到字串比對與字串取代等字串相關功能,都會用到正規表示 ...
- 5R筆記--(2)基本資料型態 - RPubs
而在R語言的資料型態,常用的有這些:. integer; number; logic; character; factor; vector; list ...