Displaying 1 result from an estimated 1 matches for "nb_lines".
Did you mean:
ablines
2014 Mar 05
1
[PATCH] Code coverage support proof of concept
...p://www.R-project.org
+% Copyright 1995-2010 R Core Team
+% Distributed under GPL 2 or later
+
+\name{Rcov_start}
+\alias{Rcov_start}
+\title{Start Code Coverage analysis of R's Execution}
+\description{
+ Start Code Coverage analysis of the execution of \R expressions.
+}
+\usage{
+Rcov_start(nb_lines = 10000L, growth_rate = 2)
+}
+\arguments{
+ \item{nb_lines}{
+ Initial max number of lines per source file.
+ }
+ \item{growth_rate}{
+ growth factor of the line numbers vectors per filename.
+ If a reached line number L is greater than nb_lines, the vector will
+ be reallocated...