Export

R绘图导入ppt

转自:https://guangchuangyu.github.io/cn/2019/04/export-office/ 在PPT中编辑你的图 这里我们需要一个神器export包,安装很简单,因为在CRAN上。 install.packages("export") library(export) 举个例子,下面这个图,用lattice画出来: libra...

LINUX --- echo修改GPIO状态

GPIO sysfs InterfaceThe GPIO sysfs interface allows users to manipulate any GPIO from userspace (also known as programmable flags). Since it uses gpiolib, it is able to dynamicall...

NodeJS中的require和import

  ES6标准发布后,module成为标准,标准的使用是以export指令导出接口,以import引入模块,但是在我们一贯的node模块中,我们采用的是CommonJS规范,使用require引入模块,使用module.exports导出接口。 不把require和import整清楚,会在未来的标准编程中死的很难看。 require时代的模块 node编...

es6模块化导入导出

模块化指的就是将一个大程序拆分成若干个互相依赖的小文件,然后在用简单的方法拼装起来。 在 ES6 之前,JS没有模块化系统,社区制定了一些模块加载方案 最主要的有 CommonJS(Asynchronous module definition) 和 AMD(common module definition) 两种。前者用于服务器,后者用于浏览器 /* Co...