当前位置:网站首页>RNote108---Display the running progress of the R program
RNote108---Display the running progress of the R program
2022-08-05 07:04:00 【51CTO】
I was looking for a displayshinyThe method of the program running progress,However, I only see the progress of the loop execution~Whatever,记录下吧
一、tcltk包
案例:

参数说明:
函数 | 说明 |
tkProgressBar | Displays widgets with labels and progress bars |
setTkProgessBar | Used to update values and labels |
具体参数设置 | |
title, label | 字符串,The title and label of the dialog window are given respectively |
min, max | 数值型,进度条的范围 |
initial, value | The initial value of the progress bar |
width | Pixels of the progress bar |
pb, con | tkProgressBar 的对象 |
二、progress包
A progress bar can be configured,显示百分比、经过时间、Estimated completion time.
案例:
默认参数

Estimated completion time
显示下载百分比,and the remaining time to complete


Calculate the execution time

参数说明:
A function to create a progress bar
函数 | 说明 |
progress_bar$new() | 创建进度条 |
参数设置 | |
format | Can be formatted as a progress bar,默认是百分比"[:bar] :percent".The progress bar is in parentheses on the left,Percentages are printed on the right |
total | total progress,默认100 |
width | 进度条宽度,The default is the width of the current terminal page-2 |
stream | The output method of the progress bar,默认stderr(),但是在Rstudio下有bug,Standard output is used in this casestdout .If not in terminal eitherRstudio中输出,Then no progress bar is printed |
complete | 完成的标识,默认为"=" |
incomplete | Unfinished logo,默认为"-" |
callback | 进度条结束时,调用回调函数. The progress bar object itself is passed as a single parameter to the callback function |
clear | 进度条结束时,是否清除.默认清除 |
show_after | A progress bar is displayed on the screen after a few seconds,For very short processes,Probably not worth showing at all.默认1/10秒 |
force | Whether to force the progress bar to be displayed,即使给定的(或默认的)Streams don't seem to support it |
Functions that use progress bars
There are two functions that update the progress bar:
progress_bar$tick() 按照1or other specified number to increase the progress of the progress bar
progress_bar$update 按照比例
The progress bar is in the first onetick命令后显示,This may not be desirable for long computations,Because nothing is displayed before the first run.Set at the time of calculation or downloadtick(0)A progress bar can be displayed instantly.
函数 | 说明 |
:bar | The progress bar itself |
:current | 当前进度数 |
:total | 总进度数 |
:elapsed | Elapsed time in seconds |
:eta | Estimated completion time |
:percent | 完成百分比 |
:rate | 下载速率,每秒字节数 |
:bytes | 显示字节.If you don't know the file size in advance,Can be useful for downloading or file reading |
:spin | Displays a spinner,even if the process is there0will also be updated |
REF
Package文档即可
边栏推荐
- 真实字节跳动测试开发面试题,拿下年薪50万offer。
- Redis
- 技术分析模式(十一)如何交易头肩形态
- Technical Analysis Patterns (11) How to Trade Head and Shoulders Patterns
- Kioxia and Aerospike Collaborate to Improve Database Application Performance
- PCI Pharma Services Announces Multi-Million Dollar Expansion of UK Manufacturing Facility to Meet Growing Demand for Global High Potency Drug Manufacturing Services to Support Oncology Treatment
- 一天学会从抓包到接口测试,通过智慧物业项目深度解析
- VS Code私有服务器部署(私有化)
- 【MyCat简单介绍】
- 日本卫生设备行业协会:日本温水喷淋马桶座出货量达1亿套
猜你喜欢
随机推荐
RK3568环境安装
PCI Pharma Services宣布斥资数百万美元扩建英国制造设施,以满足市场对支持肿瘤治疗的全球高效药制造服务日益增长的需求
Week 8 Document Clustering(文本聚类)
《PyTorch深度学习实践》第十一课(卷积神经网络CNN高级版)
二叉搜索树问题
算法拾遗十五补链表相关面试题
八大排序之堆排序
UDP广播
字体样式及其分类
2022 Fusion Welding and Thermal Cutting Operation Certificate Exam Questions and Mock Exams
技术分析模式(八)双顶和底
360度反馈调查表中的问题示范
淘宝客APP带自营商城本地生活CPS外卖优惠电影票话费更新渠道跟单生活特权V3
export使用
MySQL: basic part
AH8669-AC380/VAC220V转降5V12V24V500MA内电源芯片IC方案
#Sealos#使用工具部署kubernetesV1.24.0
Redis
基于快速行进平方法的水面无人船路径规划
(2022杭电多校六)1012-Loop(单调栈+思维)









