Skip to content

RMark

R Code for Mark Analysis

v3.0.8 · Jun 13, 2026 · GPL (>= 2)

Description

An interface to the software package MARK that constructs input files for MARK and extracts the output. MARK was developed by Gary White and is freely available at <http://www.phidot.org/software/mark/downloads/> but is not open source.

Downloads

CRAN

1.4K

Last 30 days

3134th

29K

Last 90 days

81K

Last year

Trend: -74.4% (30d vs prior 30d)

r2u CRAN

7

Last 30 days

25

Last 90 days

137

Last year

Trend: -30% (30d vs prior 30d)

CRAN Check Status

4 ERROR
9 OK
Show all 13 flavors
Flavor Status
r-devel-linux-x86_64-debian-clang OK
r-devel-linux-x86_64-debian-gcc OK
r-devel-linux-x86_64-fedora-clang OK
r-devel-linux-x86_64-fedora-gcc OK
r-devel-windows-x86_64 OK
r-oldrel-macos-arm64 ERROR
r-oldrel-macos-x86_64 ERROR
r-oldrel-windows-x86_64 OK
r-patched-linux-x86_64 OK
r-release-linux-x86_64 OK
r-release-macos-arm64 ERROR
r-release-macos-x86_64 ERROR
r-release-windows-x86_64 OK
Check details (4 non-OK)
ERROR r-oldrel-macos-arm64

examples

Running examples in ‘RMark-Ex.R’ failed
The error most likely occurred in:

> ### Name: Blackduck
> ### Title: Black duck known fate data
> ### Aliases: Blackduck
> ### Keywords: datasets
> 
> ### ** Examples
> 
> 
> data(Blackduck)
> # Change BirdAge to numeric; starting with version 1.6.3 factor variables are
> # no longer allowed.  They can work as in this example but they can be misleading
> # and fail if the levels are non-numeric.  The real parameters will remain 
> # unchanged but the betas will be different.
> Blackduck$BirdAge=as.numeric(Blackduck$BirdAge)-1
> run.Blackduck=function()
+ {
+ #
+ # Process data
+ #
+ bduck.processed=process.data(Blackduck,model="Known")
+ #
+ # Create default design data
+ #
+ bduck.ddl=make.design.data(bduck.processed)
+ #
+ #  Add occasion specific data min < 0; I have no idea what it is
+ #
+ bduck.ddl$S$min=c(4,6,7,7,7,6,5,5)
+ #
+ #  Define range of models for S
+ #
+ S.dot=list(formula=~1)
+ S.time=list(formula=~time)
+ S.min=list(formula=
...[truncated]...
able to find or run mark.exe


S.dot

sh: mark: command not found
Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile,  :
  error in running command
Error in run.mark.model(model, invisible = invisible, adjust = adjust,  : 
  
Output file does not exist. Unable to find or run mark.exe


S.min

sh: mark: command not found
Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile,  :
  error in running command
Error in run.mark.model(model, invisible = invisible, adjust = adjust,  : 
  
Output file does not exist. Unable to find or run mark.exe


S.time

sh: mark: command not found
Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile,  :
  error in running command
Error in run.mark.model(model, invisible = invisible, adjust = adjust,  : 
  
Output file does not exist. Unable to find or run mark.exe


No mark models found

Error in collect.models() : 
Calls: run.Blackduck -> mark.wrapper -> collect.models
Execution halted
ERROR r-oldrel-macos-x86_64

examples

Running examples in ‘RMark-Ex.R’ failed
The error most likely occurred in:

> ### Name: Blackduck
> ### Title: Black duck known fate data
> ### Aliases: Blackduck
> ### Keywords: datasets
> 
> ### ** Examples
> 
> 
> data(Blackduck)
> # Change BirdAge to numeric; starting with version 1.6.3 factor variables are
> # no longer allowed.  They can work as in this example but they can be misleading
> # and fail if the levels are non-numeric.  The real parameters will remain 
> # unchanged but the betas will be different.
> Blackduck$BirdAge=as.numeric(Blackduck$BirdAge)-1
> run.Blackduck=function()
+ {
+ #
+ # Process data
+ #
+ bduck.processed=process.data(Blackduck,model="Known")
+ #
+ # Create default design data
+ #
+ bduck.ddl=make.design.data(bduck.processed)
+ #
+ #  Add occasion specific data min < 0; I have no idea what it is
+ #
+ bduck.ddl$S$min=c(4,6,7,7,7,6,5,5)
+ #
+ #  Define range of models for S
+ #
+ S.dot=list(formula=~1)
+ S.time=list(formula=~time)
+ S.min=list(formula=
...[truncated]...
able to find or run mark.exe


S.dot

sh: mark: command not found
Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile,  :
  error in running command
Error in run.mark.model(model, invisible = invisible, adjust = adjust,  : 
  
Output file does not exist. Unable to find or run mark.exe


S.min

sh: mark: command not found
Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile,  :
  error in running command
Error in run.mark.model(model, invisible = invisible, adjust = adjust,  : 
  
Output file does not exist. Unable to find or run mark.exe


S.time

sh: mark: command not found
Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile,  :
  error in running command
Error in run.mark.model(model, invisible = invisible, adjust = adjust,  : 
  
Output file does not exist. Unable to find or run mark.exe


No mark models found

Error in collect.models() : 
Calls: run.Blackduck -> mark.wrapper -> collect.models
Execution halted
ERROR r-release-macos-arm64

examples

Running examples in ‘RMark-Ex.R’ failed
The error most likely occurred in:

> ### Name: Blackduck
> ### Title: Black duck known fate data
> ### Aliases: Blackduck
> ### Keywords: datasets
> 
> ### ** Examples
> 
> 
> data(Blackduck)
> # Change BirdAge to numeric; starting with version 1.6.3 factor variables are
> # no longer allowed.  They can work as in this example but they can be misleading
> # and fail if the levels are non-numeric.  The real parameters will remain 
> # unchanged but the betas will be different.
> Blackduck$BirdAge=as.numeric(Blackduck$BirdAge)-1
> run.Blackduck=function()
+ {
+ #
+ # Process data
+ #
+ bduck.processed=process.data(Blackduck,model="Known")
+ #
+ # Create default design data
+ #
+ bduck.ddl=make.design.data(bduck.processed)
+ #
+ #  Add occasion specific data min < 0; I have no idea what it is
+ #
+ bduck.ddl$S$min=c(4,6,7,7,7,6,5,5)
+ #
+ #  Define range of models for S
+ #
+ S.dot=list(formula=~1)
+ S.time=list(formula=~time)
+ S.min=list(formula=
...[truncated]...
able to find or run mark.exe


S.dot

sh: mark: command not found
Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile,  :
  error in running command
Error in run.mark.model(model, invisible = invisible, adjust = adjust,  : 
  
Output file does not exist. Unable to find or run mark.exe


S.min

sh: mark: command not found
Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile,  :
  error in running command
Error in run.mark.model(model, invisible = invisible, adjust = adjust,  : 
  
Output file does not exist. Unable to find or run mark.exe


S.time

sh: mark: command not found
Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile,  :
  error in running command
Error in run.mark.model(model, invisible = invisible, adjust = adjust,  : 
  
Output file does not exist. Unable to find or run mark.exe


No mark models found

Error in collect.models() : 
Calls: run.Blackduck -> mark.wrapper -> collect.models
Execution halted
ERROR r-release-macos-x86_64

examples

Running examples in ‘RMark-Ex.R’ failed
The error most likely occurred in:

> ### Name: Blackduck
> ### Title: Black duck known fate data
> ### Aliases: Blackduck
> ### Keywords: datasets
> 
> ### ** Examples
> 
> 
> data(Blackduck)
> # Change BirdAge to numeric; starting with version 1.6.3 factor variables are
> # no longer allowed.  They can work as in this example but they can be misleading
> # and fail if the levels are non-numeric.  The real parameters will remain 
> # unchanged but the betas will be different.
> Blackduck$BirdAge=as.numeric(Blackduck$BirdAge)-1
> run.Blackduck=function()
+ {
+ #
+ # Process data
+ #
+ bduck.processed=process.data(Blackduck,model="Known")
+ #
+ # Create default design data
+ #
+ bduck.ddl=make.design.data(bduck.processed)
+ #
+ #  Add occasion specific data min < 0; I have no idea what it is
+ #
+ bduck.ddl$S$min=c(4,6,7,7,7,6,5,5)
+ #
+ #  Define range of models for S
+ #
+ S.dot=list(formula=~1)
+ S.time=list(formula=~time)
+ S.min=list(formula=
...[truncated]...
able to find or run mark.exe


S.dot

sh: mark: command not found
Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile,  :
  error in running command
Error in run.mark.model(model, invisible = invisible, adjust = adjust,  : 
  
Output file does not exist. Unable to find or run mark.exe


S.min

sh: mark: command not found
Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile,  :
  error in running command
Error in run.mark.model(model, invisible = invisible, adjust = adjust,  : 
  
Output file does not exist. Unable to find or run mark.exe


S.time

sh: mark: command not found
Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile,  :
  error in running command
Error in run.mark.model(model, invisible = invisible, adjust = adjust,  : 
  
Output file does not exist. Unable to find or run mark.exe


No mark models found

Error in collect.models() : 
Calls: run.Blackduck -> mark.wrapper -> collect.models
Execution halted

Check History

ERROR 9 OK · 0 NOTE · 0 WARNING · 5 ERROR · 0 FAILURE Mar 10, 2026
ERROR r-devel-macos-arm64

whether package can be installed

Installation failed.
See ‘/Volumes/Builds/packages/sonoma-arm64/results/4.6/RMark.Rcheck/00install.out’ for details.
ERROR r-release-macos-arm64

whether package can be installed

Installation failed.
See ‘/Volumes/Builds/packages/big-sur-arm64/results/4.5/RMark.Rcheck/00install.out’ for details.
ERROR r-release-macos-x86_64

whether package can be installed

Installation failed.
See ‘/Volumes/Builds/packages/big-sur-x86_64/results/4.5/RMark.Rcheck/00install.out’ for details.
ERROR r-oldrel-macos-arm64

whether package can be installed

Installation failed.
See ‘/Volumes/Builds/packages/big-sur-arm64/results/4.4/RMark.Rcheck/00install.out’ for details.
ERROR r-oldrel-macos-x86_64

whether package can be installed

Installation failed.
See ‘/Volumes/Builds/packages/big-sur-x86_64/results/4.4/RMark.Rcheck/00install.out’ for details.

Reverse Dependencies (4)

suggests

Dependency Network

Dependencies Reverse dependencies matrixcalc msm coda MigConnectivity R2ucare multimark openCR RMark

Version History

31 tracked
updated 3.0.8 ← 3.0.7 diff Jun 14, 2026
new 3.0.7 Mar 10, 2026
updated 3.0.7 ← 3.0.6 diff Jan 30, 2026
updated 3.0.6 ← 3.0.0 diff Jan 13, 2026
updated 3.0.0 ← 2.2.7 diff Aug 13, 2022
updated 2.2.7 ← 2.2.6 diff Nov 5, 2019
updated 2.2.6 ← 2.2.5 diff Feb 3, 2019
updated 2.2.5 ← 2.2.4 diff Jul 12, 2018
updated 2.2.4 ← 2.2.2 diff Aug 7, 2017
updated 2.2.2 ← 2.2.0 diff Dec 1, 2016
updated 2.2.0 ← 2.1.14 diff Jun 22, 2016
updated 2.1.14 ← 2.1.13 diff Dec 14, 2015
updated 2.1.13 ← 2.1.12 diff Jun 4, 2015
updated 2.1.12 ← 2.1.9 diff Mar 14, 2015
updated 2.1.9 ← 2.1.8 diff Oct 5, 2014