• Working with large datasets


    Working with large datasets

    There are three issues to consider when working with large datasets:

    (a) efficient programming to speed execution,

    (b) storing data externally to limit memory issues,

    (c) using specialized statistical routines designed to efficiently analyze massive amounts of data.

    Efficient programming

    1. Vectorize calculations when possible. Use R’s built-in functions for manipulating vectors, matrices, and lists (for example, sapply, lappy, and mapply) and avoid loops (for and while) when feasible.

    2. Use matrices rather than data frames (they have less overhead).

    3. When using theread.table() family of functions to input external data into data frames, specify the colClasses and nrows options explicitly, set comment.char = "", and specify "NULL" for columns that aren’t needed. This will decrease memory usage and speed up processing considerably. When reading external data into a matrix, use the scan() function instead.

    4. Test programs on subsets of the data, in order to optimize code and remove bugs, before attempting a run on the full dataset.

    5. Delete temporary objects and objects that are no longer needed. The call rm(list=ls()) will remove all objects from memory, providing a clean slate. Specific objects can be removed with rm(object).

    6. Use the function .ls.objects() described in Jeromy Anglim’s blog entry “Memory Management in R: A Few Tips and Tricks” (jeromyanglim.blogspot.com), to list all workspace objects sorted by size (MB). This function will help you find and deal with memory hogs.

    7. Profile your programs to see how much time is being spent in each function.You can accomplish this with the Rprof() and summaryRprof() functions. The system.time() function can also help. The profr and prooftools packages provide functions that can help in analyzing profiling output.

    8. The Rcpp package can be used to transfer R objects to C++ functions and back when more optimized subroutines are needed.

    Storing data outside of RAM

    There are several packages available for storing data outside of R’s main memory.

    clip_image002

    clip_image004

    Analytic packages for large datasets

    The biglm and speedglm packages fit linear and generalized linear models to large datasets in a memory efficient manner. This offers lm() and glm() type functionality when dealing with massive datasets.

    Several packages offer analytic functions for working with the massive matrices produced by the bigmemory ackage. The biganalytics package offers k-means clustering, column statistics, and a wrapper to biglm. The bigtabulate package provides table() , split() , and tapply() functionality and the bigalgebra package provides advanced linear algebra functions.

    The biglars package offers least-angle regression, lasso, and stepwise regression for datasets that are too large to be held in memory, when used in conjunction with the ff package .

    The Brobdingnagpackage can be used to manipulate large numbers (numbers larger than 2^1024).

    High-Performance and Parallel Computing with R (cran.r-project.org/web/views)

    tanhao2013@foxmail.com || http://weibo.com/buttonwood
  • 相关阅读:
    Python股票分析系列——系列介绍和获取股票数据.p1
    快速相关
    特别长序列的快速卷积
    长序列的快速卷积
    快速卷积
    素因子快速傅里叶变换
    用一个N点复序列的FFT同时计算两个N点实序列离散傅里叶变换
    实序列快速傅里叶变换(二)
    实序列快速傅里叶变换(一)
    java 对于手机号码、邮箱、银行卡号脱敏一条龙服务
  • 原文地址:https://www.cnblogs.com/buttonwood/p/2593953.html
Copyright © 2020-2023  润新知