HessianD
- 授权协议: 未知
- 开发语言: D语言
- 操作系统: 未知
- 软件首页: http://www.dsource.org/projects/hessiand
软件介绍
HessianD 是一个用 D 语言实现 Hessian 协议的库。
示例代码:
import hessian.HttpProxy :
HttpProxy;
import tango.io.Stdout;
void main ()
{
// create a Http proxy on the given Http endpoint so we can post our Hessian stream
scope service = new HttpProxy(" http://localhost:5667/test/hessiantest");
// create a proxy method that will do the Hessian serialization and deserialization
auto echo = &service.proxy!(api.echo);
// we'll perform the remote call and display the result
Stdout ("Remote result: ") ( echo("Hello World!") ).newline.flush;
}
ggplot2:数据分析与图形艺术
哈德利·威克姆 (Hadley Wickham) / 统计之都 / 西安交通大学出版社 / 2013-5-1 / CNY 46.00
中译本序 每当我们看到一个新的软件,第一反应会是:为什么又要发明一个新软件?ggplot2是R世界里相对还比较年轻的一个包,在它之前,官方R已经有自己的基础图形系统(graphics包)和网格图形系统(grid包),并且Deepayan Sarkar也开发了lattice包,看起来R的世界对图形的支持已经足够强大了。那么我们不禁要问,为什么还要发明一套新的系统? 设计理念 打个比......一起来看看 《ggplot2:数据分析与图形艺术》 这本书的介绍吧!
