
R programming
文章平均质量分 76
如锡如璧
这个作者很懒,什么都没留下…
展开
-
R语言创作词云 word cloud generation
目录1. select packages2. clean text3. generate word cloud4. 一个小技巧 a little trick1. Select packageslibrary("tm") #text mininglibrary("SnowballC") #word stemming if necessarylibrary(&am原创 2018-12-24 10:15:34 · 607 阅读 · 0 评论 -
R programming for feature selection and regression
data introductionSelect packagesSplit datasetfeature selectiontune parametersprediciton1. data introduction我的数据包含一千五百多条样例,92个属性,待预测项目有性别这样的分类问题,也有年龄这样的回归问题。2. select packageslibrary(ggplot2...原创 2018-12-24 11:04:50 · 842 阅读 · 2 评论 -
Make your model a web service (using Microsoft Azure machine learning studio)
Make your model a web service (using Microsoft Azure machine learning studio)1. construct an experiment using the studio.2. Set up the web service.Run this experiment firstly and then click the bu...原创 2019-01-21 16:18:07 · 341 阅读 · 0 评论 -
Hypothesis with R and Understanding of P-value and confidence-interval
Hypothesis with R and Understanding of P-value and confidence-intervalHypothesis with R数据集说明数据可视化使用t-test(small samples)进行双边假设检验Hypothesis with R数据集说明基于Galton数据集,检验儿子和女儿与母亲身高的相关性library("AzureML")...原创 2019-01-16 12:22:54 · 636 阅读 · 0 评论 -
Visualizing Data via R (box-plot,histogram,scatter)
Visualizing Data via R (box-plot,histogram,violin,scatter)load datalibrary("AzureML")ws = workspace()auto.price = download.datasets(ws, "Automobile price data (Raw)")## Coerce some character col...原创 2019-01-16 17:15:40 · 403 阅读 · 0 评论