{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

R语言实战:编程基础、统计分析与数据挖掘宝典

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

R语言实战:编程基础、统计分析与数据挖掘宝典

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

全面介绍了来自统计分析、机器学习、人工智能等领域的多种数据分析算法,在讲解与之相关的R代码时,还讨论了这些算法的原理、优缺点与适用背景。本书按照由易到难的原则组织章节主题,读者将获得*好的阅读体验。

Content Description

本书是一本优秀的R语言入门读物,旨在帮助读者迅速构建起与数据分析相关的知识体系,并学习如何使用R软件实现数据分析方法。无论有无编程基础或数学基础,本书都能帮助读者成长为一名合格的数据分析师。本书全面介绍了来自统计分析、机器学习、人工智能等领域的多种数据分析算法,在讲解与之相关的R代码时,还讨论了这些算法的原理、优缺点与适用背景。本书按照由易到难的原则组织章节主题,读者将获得*好的阅读体验。通过阅读本书,读者将对R语言在数据分析领域的应用有一个全面的认识。这种认识不被特定行业所局限,任何行业的读者都能利用本书介绍的数据分析方法解决本行业的数据分析问题。
Author Description

李倩星,毕业于西南大学统计学专业,对数据挖掘、机器学习以及人工智能领域有深刻的研究。主持翻译了《传播学中的大数据:发展与不足》、《大数据、一个新兴领域的误区和方法与概念》、《数据挖掘揭示了差评导致的负反馈怪圈》等数十篇前沿科技文章,并发表于PPV课社区。
Catalogue

第 1章R的基本介绍 …………………………………………………………1
1.1 强大的 R ………………………………………………………………………… 1
1.2 R的安装与启动 ………………………………………………………………… 2
1.2.1 安装并启动 R …………………………………………………………… 3
1.2.2 安装并启动一个 IDE …………………………………………………… 5
1.3 R的向量、矩阵和数组 ………………………………………………………… 6
1.3.1 向量的操作方法和固有属性 …………………………………………… 6
1.3.2 矩阵的操作和运算 ……………………………………………………… 9
1.3.3 数组中的维度函数 ……………………………………………………… 12
1.4 R的列表和数据框 ……………………………………………………………… 14
1.4.1 列表的特性和编辑方法 ………………………………………………… 14
1.4.2 数据框的创建和基本操作 ……………………………………………… 18
1.5 R数据文件的载入和载出 ……………………………………………………… 20
1.5.1 结构化纯文本文件的读取和输出 ……………………………………… 21
1.5.2 其他文件的读取和输出 ………………………………………………… 23
1.6 向 R中安装包 …………………………………………………………………… 25
第 2章原始数据的探索与预处理 ………………………………………… 29
2.1 度量数据集的集中程度 ………………………………………………………… 29
2.2 度量数据集的分散程度 ………………………………………………………… 31
2.2.1 极值、方差和标准差 …………………………………………………… 31
2.2.2 标准误和偏度系数、峰度系数 ………………………………………… 33
2.3 创建一个数值摘要表 …………………………………………………………… 35
2.4 异常值的观测与说明 …………………………………………………………… 37
2.4.1 利用箱线图观测异常值并处理 ………………………………………… 38
2.4.2 异常值检测的其他情况和说明 ………………………………………… 40
2.5 缺失值的填补与处理 …………………………………………………………… 42
2.5.1 删除缺失值或对其进行简单填补 ……………………………………… 42
2.5.2 按照相关性对空缺值进行填补 ………………………………………… 45
第 3章R的数据可视化 …………………………………………………… 47
3.1 plot()函数和常用的图形参数 ………………………………………………… 47
3.1.1 设置 plot()函数中的参数 ……………………………………………… 47
3.1.2 修改散点图的坐标并加入标注 ………………………………………… 51
3.2 经典的基础图形及用途 ………………………………………………………… 54
3.2.1 线图 ……………………………………………………………………… 54
3.2.2 直方图 …………………………………………………………………… 59
3.2.3 箱线图和茎叶图 ………………………………………………………… 63
3.3 将图形组合起来 ………………………………………………………………… 66
3.4 更多的高水平作图函数 ………………………………………………………… 69
3.5 更多的常用作图命令 …………………………………………………………… 72
第 4章R中参数的估计和检验 …………………………………………… 75
4.1 使用 R进行点估计和区间估计 ………………………………………………… 75
4.1.1 简单的点估计和区间估计 ……………………………………………… 75
4.1.2 估计单侧置信区间 ……………………………………………………… 79
4.2 与正态总体有关的参数检验 …………………………………………………… 83
4.3 列联表与独立性检验 …………………………………………………………… 87
4.4 几种检验数据分布的函数 ……………………………………………………… 89
4.5 对非正态总体的区间估计和检验 ……………………………………………… 92
4.5.1 非正态总体的区间估计 ………………………………………………… 92
4.5.2 非参数检验中的符号检验 ……………………………………………… 94
4.5.3 非参数检验中的秩检验 ………………………………………………… 96
第 5章R中的方差分析 …………………………………………………… 99
5.1 方差分析模型的建立 …………………………………………………………… 99
5.2 单因素方差分析 ……………………………………………………………… 100
5.2.1 单因素方差分析的数学思想与模型 ………………………………… 101
5.2.2 检验样本是否满足方差分析的假设条件 …………………………… 102
5.2.3 构建单因素方差分析模型 …………………………………………… 105
5.3 多因素方差分析 ……………………………………………………………… 108
5.3.1 多因素方差分析的数学思想与模型 ………………………………… 108
5.3.2 不考虑交互作用的双因素方差分析 ………………………………… 110
5.3.3 考虑交互作用的双因素方差分析 …………………………………… 112
5.4 秩检验和协方差分析 ………………………………………………………… 114
5.4.1 对控制变量应用秩检验方法 ………………………………………… 114
5.4.2 协方差分析的假设与应用 …………………………………………… 116
第 6章R中的相关分析和回归分析 ………………………………………118
6.1 多种相关系数的度量和分析 ………………………………………………… 118
6.1.1 简单相关系数的计算和检验 ………………………………………… 118
6.1.2 散布矩阵图和偏相关系数 …………………………………………… 121
6.1.3 典型相关分析 ………………………………………………………… 123
6.2 线性回归分析及其常规参数 ………………………………………………… 125
6.2.1 对数据进行预处理 …………………………………………………… 126
6.2.2 构建第一个回归模型 ………………………………………………… 127
6.2.3 修正方程并检验残差 ………………………………………………… 129
6.3 使用逐步回归筛选自变量 …………………………………………………… 132
6.3.1 逐步回归的思想与分类 ……………………………………………… 132
6.3.2 构建逐步回归模型 …………………………………………………… 133
6.4 哑变量和逻辑回归 …………………………………………………………… 135
6.4.1 哑变量和逻辑回归的思想 …………………………………………… 135
6.4.2 向线性回归模型中纳入哑变量 ……………………………………… 137
第 7章更高级的数据可视化 ………………………………………………140
7.1 基础图形的拓展与延伸 ……………………………………………………… 140
7.1.1 绘制分类散点图并添加图标 ………………………………………… 140
7.1.2 绘制含多种类别的密度分布图 ……………………………………… 143
7.1.3 复合条形图和堆栈条形图 …………………………………………… 146
7.2 有关多元分布函数的特殊图形 ……………………………………………… 149
7.2.1 星图和脸谱图 ………………………………………………………… 150
7.2.2 轮廓图 ………………………………………………………………… 153
7.2.3 调和曲线图 …………………………………………………………… 155
7.3 建立最简单的 3D图形 ……………………………………………………… 157
7.4 如何让图形更美观 …………………………………………………………… 160
7.5 更多的绘图包和系统 ………………………………………………………… 162
第 8章R中的聚类分析和判别分析 ………………………………………164
8.1 几种聚类分析的异同 ………………………………………………………… 164
8.2 使用 R实现 KNN聚类 ……………………………………………………… 165
8.2.1 KNN算法的思想和模型 …………………………………………… 165
8.2.2 使用 R实现 KNN聚类 ……………………………………………… 167
8.3 使用 R实现系统聚类 ………………………………………………………… 170
8.3.1 系统聚类的思想和模型 ……………………………………………… 170
8.3.2 使用 R实现系统聚类 ……………………………………………… 171
8.4 使用 R实现快速聚类 ………………………………………………………… 174
8.4.1 快速聚类的思想和模型 ……………………………………………… 174
8.4.2 使用 R实现快速聚类 ……………………………………………… 176
8.5 几种判别分析模型综述 ……………………………………………………… 178
8.5.1 距离判别模型 ………………………………………………………… 179
8.5.2 Fisher判别模型 ……………………………………………………… 182
第 9章R中的主成分分析和因子分析 ……………………………………186
9.1 主成分分析的实现与应用 …………………………………………………… 186
9.1.1 主成分分析的模型假设和数据处理 ………………………………… 186
9.1.2 构造一个主成分分析模型 …………………………………………… 189
9.1.3 计算主成分的综合得分 ……………………………………………… 191
9.2 因子分析的初次构建与完善 ………………………………………………… 193
9.2.1 构造一个简单的因子分析模型 ……………………………………… 194
9.2.2 计算因子得分并分析 ………………………………………………… 196
9.3 对因子分析模型进行修正 …………………………………………………… 198
9.3.1 修改因子分析模型中的因子个数 …………………………………… 198
9.3.2 基于主成分法和主轴因子法进行因子分析 ………………………… 200
9.4 在降维分析的基础上进行回归分析和聚类分析 …………………………… 202
9.4.1 在降维分析的基础上进行回归分析 ………………………………… 202
9.4.2 在降维分析的基础上进行聚类分析 ………………………………… 206
第 10章R中的广义线性回归模型…………………………………………209
10.1 一般的广义线性回归模型 ………………………………………………… 209
10.1.1 使用二次函数拟合线性回归模型 ………………………………… 209
10.1.2 拟合更多的广义线性模型 ………………………………………… 212
10.1.3 比较线性模型的优劣 ……………………………………………… 214
10.2 Logistic线性回归模型 ……………………………………………………… 217
10.2.1 Logistic模型的原理与构建方法…………………………………… 217
10.2.2 Logistic模型的显著性检验和优势比……………………………… 220
10.2.3 修正被警告的 Logistic模型 ……………………………………… 221
10.3 泊松回归分析模型 ………………………………………………………… 224
10.3.1 拟合第一个泊松回归模型 ………………………………………… 224
10.3.2 泊松回归模型的过散布检验 ……………………………………… 228
10.4 广义线性模型的交叉验证 ………………………………………………… 230
第 11章R中的时间序列模型 ………………………………………………233
11.1 将数据转换为时间序列格式 ……………………………………………… 233
11.1.1 使用 ts()函数转换数据格式并绘制时间序列曲线 ……………… 233
11.1.2 使用 zoo()函数转换数据格式并绘制时间序列曲线……………… 236
11.2 分解时间序列并检验时间序列的自相关性 ……………………………… 239
11.2.1 使用经典方法分解时间序列 ……………………………………… 239
11.2.2 使用 STL方法分解时间序列 ……………………………………… 241
11.3 探究时间序列的自相关性 ………………………………………………… 243
11.3.1 使用月图和季度图探究自相关性 ………………………………… 243
11.3.2 使用散点图探究自相关性 ………………………………………… 245
11.4 构建时间序列并预测 ……………………………………………………… 248
11.4.1 均值预测、单纯预测和漂移 ……………………………………… 248
11.4.2 不考虑长期趋势和季节波动的简单指数平滑 …………………… 251
11.4.3 在指数平滑中加入长期趋势和季节波动 ………………………… 253
11.4.4 自回归移动平均模型 ……………………………………………… 256
第 12章R中的最优化问题…………………………………………………259
12.1 最优化问题简述 …………………………………………………………… 259
12.2 黄金分割法 ………………………………………………………………… 260
12.2.1 黄金分割法和局部最优解 ………………………………………… 261
12.2.2 使用 R实现黄金分割法 …………………………………………… 263
12.3 牛顿最优化方法 …………………………………………………………… 265
12.3.1 牛顿方法的算法原理 ……………………………………………… 265
12.3.2 在一维情形下实现牛顿迭代法 …………………………………… 267
12.3.3 在多维情形下实现牛顿迭代法 …………………………………… 270
12.4 最快上升法 ………………………………………………………………… 272
12.4.1 利用梯度求解上升最快的相邻点 ………………………………… 272
12.4.2 构建最快上升法函数并检验 ……………………………………… 274
12.5 R中的最优化函数…………………………………………………………… 276
第 13章使用 R绘制地理信息图形 ………………………………………279
13.1 绘制世界、国家、省市地图 ……………………………………………… 279
13.1.1 使用 map()函数绘制地图 ………………………………………… 279
13.1.2 另一种绘制地图的方法 …………………………………………… 281
13.1.3 分省市绘制地图 …………………………………………………… 284
13.2 向地图中添加颜色 ………………………………………………………… 288
13.2.1 向地图中添加颜色前的准备工作 ………………………………… 288
13.2.2 在地图上添加颜色 ………………………………………………… 290
13.3 向地图中添加标签和线条 ………………………………………………… 292
13.3.1 向地图中添加标签前的准备工作 ………………………………… 293
13.3.2 在地图上添加标签 ………………………………………………… 295
13.3.3 在地图上添加线条 ………………………………………………… 298
13.4 使用其他格式的文件优化地图 …………………………………………… 300
第 14章使用 R构建支持向量机 …………………………………………305
14.1 构建一个简单的支持向量机 ……………………………………………… 305
14.1.1 支持向量机的算法原理 …………………………………………… 305
14.1.2 构建一个简单的支持向量机 ……………………………………… 308
14.1.3 使用其他核函数构建支持向量机 ………………………………… 311
14.2 优化支持向量机的参数 …………………………………………………… 315
14.2.1 优化参数 degree …………………………………………………… 315
14.2.2 优化参数 cost ……………………………………………………… 318
14.2.3 优化参数 gamma …………………………………………………… 321
14.3 比较支持向量机与 Logistic回归的优劣 …………………………………… 325
14.4 比较支持向量机和 KNN聚类算法的优劣 ………………………………… 329
第 15章实现更高效的流程控制和高级循环 ……………………………332
15.1 R中的流程控制……………………………………………………………… 332
15.1.1 if语句的多种实现方法 …………………………………………… 332
15.1.2 ifelse语句与花括号的结合 ………………………………………… 334
15.1.3 适合多分支情况的 switch语句 …………………………………… 336
15.2 R中的 for循环、while循环和 repeat循环 ……………………………… 339
15.2.1 R中的 for循环和 while循环 ……………………………………… 339
15.2.2 R中的 repeat循环 ………………………………………………… 341
15.3 apply家族中的循环函数 …………………………………………………… 344
15.3.1 R中的 apply()函数 ………………………………………………… 344

15.3.2 R中的 lapply()函数和 sapply()函数 ……………………………… 348
15.3.3 R中的 tapply()函数………………………………………………… 351
15.3.4 R中的 mapply()函数 ……………………………………………… 354
15.4 更多的高级循环函数 ……………………………………………………… 357

15.4.1 R中的 replicate()函数和 sweep()函数 …………………………… 357
15.4.2 R中的 aggregate()函数 …………………………………………… 360
第 16章R代码的调试与优化………………………………………………364
16.1 R代码的常见信息与警告…………………………………………………… 364
16.1.1 R代码的正常信息与警告 ………………………………………… 364
16.1.2 R代码中的警告处理方法 ………………………………………… 366
16.2 R代码中的错误与错误处理方法…………………………………………… 369
16.2.1 使用 try()函数处理错误信息 ……………………………………… 369
16.2.2 将 try()函数与循环相结合 ………………………………………… 371
16.3 调试 R代码 ………………………………………………………………… 373
16.3.1 查看调用栈或暂停代码 …………………………………………… 373
16.3.2 修改 error选项 ……………………………………………………… 375
16.4 向量化编程方法 …………………………………………………………… 377
16.4.1 向量化编程思想 …………………………………………………… 377
16.4.2 比较循环和向量的运行速度 ……………………………………… 378
第 17章构建电影评分预测模型 …………………………………………381
17.1 获取数据并探索 …………………………………………………………… 381

17.2 利用 recommenderlab包处理数据 ………………………………………… 384
17.3 建立模型并评估 …………………………………………………………… 387
17.3.1 模型的选择与建立 ………………………………………………… 387
17.3.2 模型之间的比较和评估 …………………………………………… 389
第 18章贝叶斯垃圾邮件过滤器模型 ……………………………………393
18.1 贝叶斯模型中的条件概率 ………………………………………………… 393
18.2 复杂的数据预处理过程 …………………………………………………… 395
18.2.1 利用 for循环读入多封邮件正文 ………………………………… 395
18.2.2 利用 tm包进一步转换数据格式…………………………………… 397
18.2.3 将 TDM转换成真正有用的数据框 ……………………………… 399
18.3 利用 occurrece值构造分类器 ……………………………………………… 402
18.3.1 完成理论准备并处理测试邮件和普通邮件 ……………………… 402
18.3.2 创建一个函数用于比较概率 ……………………………………… 405
Introduction

R语言是如今最热门的编程语言之一,它由统计学家开发,在解决数据分析问题时具有先天优势。R语言是一门新兴的语言,掌握它,就是掌握了一门高效的数据分析软件。随着大数据概念的普及, R语言能够实现的功能越来越丰富,越来越多的数据分析从业人员产生了对学习 R语言的需求。本书迎合时代潮流,讲解了大数据时代下 R语言渗透最广泛的几个领域,全面介绍了如何使用 R语言完成数据挖掘工作。对 R语言编程人员来说,本书是一本不可或缺的工具书。
本书特色
1. 通俗易懂,实用性强,适合各层次读者学习
本书对读者的数学基础或编程基础不做任何要求。在讲解知识点时,本书采用了通俗易懂的语言,对每一个疑难点都加以详细解释。此外,本书以实用为主旨,秉承“看得懂、学得会、用得上”的编写原则,精心选取了流行于行业前沿的 18个主题,在通俗易懂之余,确保读者所学的知识具有实际应用价值。通过阅读本书,任何读者都能迅速掌握 R语言的编程技巧及相关的数据分析知识,并在实际工作中立刻应用它们。
2. 条理清晰,结构巧妙,全面盘点数据分析常用算法
数据分析是一个涉及多领域的交叉学科, R软件的触角同样也能伸展到多个领域。本书选取了统计分析、机器学习、人工智能等多个学科的流行算法作为主题,讲解了如何使用 R语言实现它们。这些算法有些偏重数学思维,有些偏重编程技巧,本书主要遵循由易到难的顺序排列主题,并尽量把起源于同一学科的算法放在一起。读者可以按照顺序阅读本书,也可以优先选择感兴趣的部分。此外,本书还穿插介绍了与 R软件相关
的一些其他编程主题,这些主题共同形成知识网络,帮助读者迅速成长为能够独当一面
的数据科学家。
3. 知识点丰富,可拓展性强,满足读者的多重需求
本书涉及多个学科,全面介绍了 R软件能够实现的多种算法,满足了读者的三大需求:首先,使用通俗易懂的语言介绍 R软件,帮助读者实现零基础入门;其次,囊括多种数据分析算法,带领读者全面认识 R软件的强大之处,帮助读者成长为合格的数据科学家;最后,本书具备较强的可拓展性,从事任何行业的读者都能够从本书中获取适合其行业的知识。本书还给出了 R语言进阶的线索,无论想向哪一方面进阶,本书都能为读者打造最坚实的基础。
本书内容及体系结构
本书分为 18章,分别为 R的基本介绍、原始数据的探索与预处理、 R的数据可视化、 R中参数的估计和检验、 R中的方差分析、 R中的相关分析和回归分析、更高级的数据可视化、 R中的聚类分析和判别分析、 R中的主成分分析和因子分析、 R中的广义线性回归模型、 R中的时间序列模型、 R中的最优化问题、使用 R绘制地理信息图形、使用 R构建支持向量机、实现更高效的流程控制和高级循环、 R代码的调试与优化、构建电影评分预测模型、贝叶斯垃圾邮件过滤器模型。这 18章进一步又分为五部分。
第一部分为本书的前 6章。其中前 3章展示了 R软件的一些入门功能,如数据预处理和数据可视化等,后 3章则介绍了三种基础的统计分析方法,即参数的估计和检验、方差分析、相关分析、回归分析。这 6个章节围绕初级的统计方法展开,是数据分析师必备的基本知识。
第二部分为本书的第 7~11章,这 5个章节介绍了更高级的统计方法。其中第 7章为第 3章的延伸,介绍了数据可视化的高级方法,第 8章至第 11章则介绍了 6种高级统计分析方法,这部分的内容与第一部分互为补充。
第三部分为本书的第 12~14章,这部分内容围绕机器学习展开。第 12章的主题为最优化,是机器学习的基本理论。第 13章介绍了如何使用矢量化的思想绘制地图。第 14章则介绍了支持向量机,它是最典型的机器学习算法之一。这部分讲解了更高深的 R语言编程技巧,讨论了一些 R软件能够解决的最高难度问题。
第 15、16章可视为本书的第四部分。这两章围绕如何优化 R代码展开,系统地讨论了如何写出错误较少的、运行速度较快的代码。这部分内容帮助读者建立良好的编程习惯,以及与其他 R用户更好地协同工作。
第 17、18章则为本书的最后一部分,这两章分别讨论了一个完整的数据挖掘项目。其中电影评分预测的案例着重于表现数据挖掘的完整流程,包括繁复的数据预处理与反复的模型比较等工作;垃圾邮件过滤的案例则引出 R软件能够处理的另一个主题——文本分析。
上述划分方法仅为一个参考,本书的 18个章节互相联系又彼此独立,读者可按照上述划分方法阅读本书,也可优先阅读某些章节,如将第 3章、第 7章、第 13章等与数据可视化相关的三个章节放在一起阅读。
本书读者对象
想要了解 R语言的数据分析从业人员。
统计学、金融学、计算机技术与科学等专业的学生。
想要提高 R语言编程能力的数据分析师。
希望系统学习统计分析方法的从业人员。
其他对 R语言有兴趣的各类人员。

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book