diff options
Diffstat (limited to 'R/mkin_wide_to_long.R')
-rw-r--r-- | R/mkin_wide_to_long.R | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/R/mkin_wide_to_long.R b/R/mkin_wide_to_long.R index 8e4ec60..826aee2 100644 --- a/R/mkin_wide_to_long.R +++ b/R/mkin_wide_to_long.R @@ -17,7 +17,8 @@ # You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>
-utils::globalVariables(c("name", "value"))
+if(getRversion() >= '2.15.1') utils::globalVariables(c("name", "value"))
+
mkin_wide_to_long <- function(wide_data, time = "t")
{
colnames <- names(wide_data)
|