zoukankan      html  css  js  c++  java
  • 我的R代码备份

    1 #f1=scan(file="f1.txt");
      2 #f2=scan(file="f2.txt");
      3 f=scan(file="5.2_topscreen.txt");                                                                                
      4 png(file="myplot2.png", bg="transparent");
      5 #qqplot(f1,f2);
      6 qqnorm(f);
      7 #axis(1,at=seq(1,5000,200));
      8 #axis(2,at=seq(1,5000,200));

    f=scan(file="f.txt");                                                                  
      2 quantile(f,0.99);                                                                       
      3 png(file="myplot2.png", bg="transparent");                                              
      4 boxplot(f);                                                                            
      5 fivenum(f);                                                                                               
      6 summary(f);                                                                                                 
      7 IQR(f);           

  • 相关阅读:
    MVC的布局页,视图布局页和分布页的使用
    C#程序的编译过程
    页面跳转到Area区域连接
    c#静态变量和非静态变量的区别
    C#设计模式:适配器模式(Adapter Pattern)
    依赖注入
    打印随机数到字符串中
    printf/scanf格式
    用fread和fwrite实现文件复制操作
    用fseek和ftell获取文件的大小
  • 原文地址:https://www.cnblogs.com/finallyliuyu/p/3728413.html
Copyright © 2011-2022 走看看