Welcome to Elm Computing
Sign up for product updates and programming tutorials
Start a free trial on AWS
Start a free trial on Azure
Get started with Alibaba Cloud
Product
-
JupyterHub Server: a popular open-source JupyterHub platform, which allows users to run interactive computing sessions with a variety of programming languages.
-
RStudio Server: a pre-configured RStudio Server environment, making it easy to set up a remote development environment for R programming.
-
RShiny Server: a pre-configured RShiny Server environment, enabling you to host Shiny apps in the cloud.
-
VPN Server: The VPN Server with Web GUI Admin powered by OpenVPN provides secure and encrypted communication channels, ensuring seamless connectivity and privacy for users across networks.
-
Linux with GUI Desktop: a desktop environment on top of a Linux operating system, providing a familiar graphical interface for users who prefer it.
-
Linux SFTP Server: a pre-configured SFTP server environment, enabling you to easily and securely transfer files to and from your cloud instances.
-
API Server: ClamAV Antivirus for AWS S3 Data: a pre-configured environment for running a server that performs virus scans using ClamAV.
-
Stable Diffusion with Web User Interface: specifically tailored for Stable Diffusion, a state-of-the-art solution in image generation and training. It's an ideal tool for artists, developers, and AI enthusiasts, empowering them to harness the capabilities of machine learning to effortlessly create and modify images.
Customer Support
At Elm Computing, we're committed to providing exceptional customer support to help you get the most out of our products and services. If you need assistance with any of our offerings, please don't hesitate to reach out to us at support@elmcomputing.io. Our dedicated support team is always ready to help you with any technical issues or general inquiries you may have, and we'll do our best to respond to your inquiries as quickly as possible. Thank you for choosing Elm Computing.
The virus scan API server using ClamAV is a pre-configured container image designed to facilitate the setup and deployment of an API server for performing virus scans on data files prior to or after being uploaded into AWS S3 buckets. It includes the ClamAV antivirus software, which is a powerful and widely used open-source solution for detecting and mitigating malware threats.
It provides a streamlined environment for developers to integrate virus scanning capabilities into their applications or systems. With this product, users can quickly develop a reliable virus scan solution, ensuring the protection of their files and data from potential malware infections.
ClamAV AntiVirus
ClamAV is an open-source antivirus software designed to detect and protect against a wide range of malware threats on Unix-based systems, including Linux, macOS, and BSD. It is one of the most widely used antivirus solutions for servers and network-based security applications. ClamAV is highly regarded for its effectiveness in identifying viruses, trojans, worms, and other malicious software, making it a crucial tool in safeguarding critical systems from potential threats.
ClamAV operates on a signature-based detection method, where it maintains an extensive database of virus signatures and patterns that are regularly updated to stay current with emerging threats. This enables ClamAV to efficiently scan files, directories, and emails for known malicious code and promptly flag any suspicious activity. Additionally, it offers the option to integrate with various mail servers and web applications, providing real-time scanning and protection.
What sets ClamAV apart is its open-source nature, which fosters a robust community of developers and contributors continuously working to improve its capabilities. This collaborative approach ensures that ClamAV remains a reliable and up-to-date antivirus solution, freely available to the broader community. Whether used as a standalone antivirus or in conjunction with other security tools, ClamAV offers essential protection for systems vulnerable to malware attacks.
Running ECS Task with Fargate
This guide provides step-by-step instructions to run the virus scan API server using Amazon ECS Fargate. If not mentioned, please use the default configurations.
Step 1: Create an ECS Task Definition
-
Log into the Amazon ECS Console.
-
Select Task Definitions and click Create new Task Definition.
-
Under Task definition configuration:
- Task definition family: Set a name (e.g.,
elm-clamav-virus-scan-api
).
- Task definition family: Set a name (e.g.,
-
Under Infrastructure requirements:
- Launch Type: Fargate
- Operating System/Architecture: Linux/X86_64
- Task size: Set 1 vCPU and 3GB memory (initial settings, adjustable as needed for handling larger or more files).
- Task role and Task execution role: Ensure the following IAM policies are attached to the roles:
AmazonECSTaskExecutionRolePolicy
AmazonS3ReadOnlyAccess
AWSMarketplaceMeteringRegisterUsage
-
Under Container - 1:
-
Container Name: Set a name (e.g.,
clamav-virus-scan-api
). -
Image URI:
709825985650.dkr.ecr.us-east-1.amazonaws.com/elm-computing/clamav-virus-scan-api:1.2.1.2
where 1.2.1.2 is the version number and can be replaced for other versions.
-
Port Mappings:
- Container Port:
8080
- Protocol:
TCP
- Port Name:
virus-scan-api
- App Protocol:
http
- Container Port:
-
Health Check: Command:
CMD-SHELL, curl -f http://localhost:8080/api/healthcheck || exit 1
- Interval: 30 seconds
- Timeout: 5 seconds
- Start period: 30 seconds
- Retries: 3
-
-
Click Create to finalize the task definition.
Step 2: Run the Task
-
In the Amazon ECS Console, select Clusters from the left-hand side and choose an existing cluster or create a new one.
-
Click on the Tasks tab, then click Run new Task.
-
Under Compute configuration (advanced):
- Compute options: Launch type
- Launch Type: Fargate.
-
Under Deployment configuration:
- Application type: Task
- Family: Select the task definition created in Step 1.
-
Under Networking:
- VPC and Subnet: Choose the appropriate VPC and subnet.
-
For Security Group, ensure the inbound port
8080
is open to all IPs or to a specific range:- Type: Custom TCP Rule.
- Port:
8080
. - Source:
0.0.0.0/0
(or restrict the IP range for secure access). - Public IP: Turned On (for security concerns, this can be turned off if the API server is only accessible from within the same subnet).
-
Click Create.
Step 3: Monitor the Task
-
Go to the Tasks tab to check the Health status. It usually takes around 2-3 minutes for the task to reach the "Healthy" status.
-
Check the task logs via Amazon CloudWatch Logs to ensure there are no errors reported and that the task is functioning correctly.
By following these steps, you will successfully run your ClamAV Virus Scan API container image with an initial task size of 1 vCPU and 3GB memory, adjustable as needed for handling larger or more files for scanning.
Scan an S3 object
After starting the EC2 instance, you can access the API Server using its IP address and the port 8080. For instance, if the IP address is 172.31.39.37, you can perform file scans on the S3 bucket by making requests to http://172.31.39.37:8080/api/clamav/scan/s3/object.
curl -d '{"stream": true, "bucket": "elm-bucket-virus-scan", "key": "test/virus_test.txt"}' -H 'Content-Type: application/json' http://172.31.39.37:8080/api/clamav/scan/s3/object
The three parameters have the following meanings:
-
stream: This parameter determines how the server should handle the file download. When set to false, it means that the server will download the whole file into memory first before saving it to disk. When set to true, the server will stream the file directly to disk in smaller chunks. Using streaming can be advantageous when dealing with large files as it reduces the memory footprint required for the download process. It allows for more efficient resource utilization and enables the server to handle files that might otherwise exceed available memory capacity.
-
bucket: This parameter specifies the name of the S3 bucket from which the file should be retrieved.
-
key: This parameter represents the key of the file within the S3 bucket. It specifies the specific file that should be downloaded and scanned.
Response
A json format string will be returned. The possible return codes are 0, 1, 2, and 99.
- Clean:
{"code":0,"message":"OK"}
- Infected: For example, when Eicar-Signature is identified, the response would be
{"code":1,"message":"Eicar-Signature FOUND"}
- Scan Errors: For example, when having file access error, the response would be
{"code":2,"message":"Can't access file /tmp/test/file"}
- Other Errors: For example, when the IAM role is not properly set, the response would be
{"code":99,"message":"no credentials in the property bag"}
Scan a local file on the API Server
you can perform file scans on local files by making requests to http://172.31.39.37:8080/api/clamav/scan/file.
curl -d '{"file": "/tmp/test.txt"}' -H 'Content-Type: application/json' http://172.31.39.37:8080/api/clamav/scan/file
Shell
curl -d '{"stream": true, "bucket": "elm-bucket-virus-scan", "key": "test/virus_test.txt"}' -H 'Content-Type: application/json' http://172.31.39.37:8080/api/clamav/scan/s3/object
Python
import requests
import json
def elm_scan_object(url, stream, bucket, key):
# Define the payload as a dictionary
payload = {
"stream": stream,
"bucket": bucket,
"key": key
}
# Set the headers
headers = {
"Content-Type": "application/json"
}
# Send a POST request to the API endpoint
response = requests.post(url, data=json.dumps(payload), headers=headers)
# Check the response status code
if response.status_code == 200:
# Request was successful
data = response.json() # Extract the JSON data from the response
return data
else:
# Request was not successful
print(f"Request failed with status code: {response.status_code}")
return None
if __name__ == '__main__':
result = elm_scan_object(
url = "http://172.31.39.37:8080/api/clamav/scan/s3/object", \
stream = True, \
bucket = 'elm-bucket-virus-scan', \
key = 'virus_test.txt')
if result:
print(result)
print(result['code'])
print(result['message'])
JavaScript
const axios = require('axios');
async function elmScanObject(url, stream, bucket, key) {
try {
const payload = {
stream,
bucket,
key,
};
const headers = {
'Content-Type': 'application/json',
};
const response = await axios.post(url, payload, { headers });
if (response.status === 200) {
return response.data;
} else {
console.log(`Request failed with status code: ${response.status}`);
return null;
}
} catch (error) {
console.error('An error occurred:', error.message);
return null;
}
}
async function main() {
const url = 'http://172.31.39.37:8080/api/clamav/scan/s3/object';
const stream = true;
const bucket = 'elm-bucket-virus-scan';
const key = 'virus_test.txt';
const result = await elmScanObject(url, stream, bucket, key);
if (result) {
console.log(result);
console.log(result.code);
console.log(result.message);
}
}
main();
Dart
import 'dart:convert';
import 'package:http/http.dart' as http;
Future<Map<String, dynamic>?> elmScanObject(String url, bool stream, String bucket, String key) async {
try {
final payload = {
'stream': stream,
'bucket': bucket,
'key': key,
};
final headers = {
'Content-Type': 'application/json',
};
final response = await http.post(Uri.parse(url), headers: headers, body: jsonEncode(payload));
if (response.statusCode == 200) {
return jsonDecode(response.body);
} else {
print('Request failed with status code: ${response.statusCode}');
return null;
}
} catch (error) {
print('An error occurred: $error');
return null;
}
}
void main() async {
final url = 'http://172.31.39.37:8080/api/clamav/scan/s3/object';
final stream = true;
final bucket = 'elm-bucket-virus-scan';
final key = 'virus_test.txt';
final result = await elmScanObject(url, stream, bucket, key);
if (result != null) {
print(result);
print(result['code']);
print(result['message']);
}
}
Go
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
func elmScanObject(url string, stream bool, bucket string, key string) (map[string]interface{}, error) {
payload := map[string]interface{}{
"stream": stream,
"bucket": bucket,
"key": key,
}
payloadBytes, err := json.Marshal(payload)
if err != nil {
return nil, err
}
req, err := http.NewRequest("POST", url, bytes.NewBuffer(payloadBytes))
if err != nil {
return nil, err
}
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
respBody, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
if resp.StatusCode == http.StatusOK {
var data map[string]interface{}
err = json.Unmarshal(respBody, &data)
if err != nil {
return nil, err
}
return data, nil
} else {
return nil, fmt.Errorf("Request failed with status code: %d", resp.StatusCode)
}
}
func main() {
url := "http://172.31.39.37:8080/api/clamav/scan/s3/object"
stream := true
bucket := "elm-bucket-virus-scan"
key := "virus_test.txt"
result, err := elmScanObject(url, stream, bucket, key)
if err != nil {
fmt.Println("An error occurred:", err)
return
}
if result != nil {
fmt.Println(result)
fmt.Println(result["code"])
fmt.Println(result["message"])
}
}
Version 1.2.1.2
-
ClamAV: 1.2.1
-
Enabled detecting OLE2 files containing VBA macros, which were not detected by signatures will be marked as "Heuristics.OLE2.ContainsMacros".
-
Enabled AlertExceedsMax.
Files exceeding the MaxFileSize (100M), MaxScanSize (400M), or MaxRecursion (10) limit will be flagged with the virus name starting with "Heuristics.Limits.Exceeded".
If your scan is expected to trigger the alert, please contact us at support@elmcomputing.io
API endpoints
-
http://ip-address:8080/api/clamav/scan/s3/object
-
http://ip-address:8080/api/clamav/scan/file
-
http://ip-address:8080/api/healthcheck
After the EC2 instance is started, you can access the RStudio Server with its public IP address. For example, if the IP address is 10.11.12.13, typing http://10.11.12.13 in the browser will bring you to the following startup page:
The default username is ruser and the password is the EC2 instance ID that has the form of i-0c7fadc4dc193eca7.
RStudio Server AMI on AWS Marketplace
Subscribe to the AMI
Continue to configure the EC2 instance
Choose a region close to your location
Choose an instance type
t2.micro is a good starting point for testing. Once everything is confirmed to work, you can switch to other instance types (more CPUs, high memory) that fit your need.
Create security group for the Rstudio Server
If you do not already have an SSH key pair, please generate a new one to use when logging into the RStudio Server.
Create SSH key pair with default values
Choose "allow" to download your SSH key pair
Launch your EC2 instance
Go to EC2 console
Select the new EC2 instance
Public IP address and Instance ID
Access the login page
Enter RStudio IDE
Change instance type
To change the instance type once the server is tested, please go to "Actions", "Instance settings", and then "Change instance type".
RStudio Server
R: 4.4.2
rstudio-server: 2024.04.2-764
Release Notes
Upgraded R to version 4.4.2, and all R packages to their latest versions.
This AMI provides thousands of R packages covering various domains such as data science, machine learning, economitrics, database, finance, official statistics, survey statistics, Bayesian statistics, clinical trials, epidemiology, experimental design, psychometric methodology, analysis of pharmacokinetic data, medical image processing, teaching statistics, time series analysis, analysis of spatial and spatiotemporal data, reproducible research, phylogenetics, web technologies, hydrology, sports analytics, natural language processing, actuarial science, optimization, genomics, proteomics, metabolomics, transcriptomics, and other omics.
R packages (4302)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.1 |
ABCoptim | 0.15.0 | abcrf | 1.9 |
abglasso | 0.1.1 | abind | 1.4-8 |
abtest | 1.0.1 | accrualPlot | 1.0.7 |
acebayes | 1.10 | acepack | 1.4.2 |
ACNE | 0.9.1 | acp | 2.1 |
acs | 2.1.4 | ACSWR | 1.0 |
ActivePathways | 2.0.5 | actuar | 3.3-4 |
actuaRE | 0.1.5 | ActuarialM | 0.1.0 |
actuaryr | 1.1.1 | actxps | 1.5.0 |
ada | 2.0-5 | adagio | 0.9.2 |
adaptivetau | 2.3-2 | adaptMCMC | 1.5 |
adaptr | 1.4.0 | ADAPTS | 1.0.22 |
adaptsmoFMRI | 1.2 | adaptTest | 1.2 |
additivityTests | 1.1-4.2 | ade4 | 1.7-22 |
ade4TkGUI | 0.3-1 | adegenet | 2.1.10 |
adegraphics | 1.0-21 | adehabitatHR | 0.4.22 |
adehabitatHS | 0.3.18 | adehabitatLT | 0.3.28 |
adehabitatMA | 0.3.17 | adephylo | 1.1-16 |
adespatial | 0.3-24 | ADGofTest | 0.3 |
adimpro | 0.9.7.2 | adiv | 2.2.1 |
adjclust | 0.6.10 | adlift | 1.4-5 |
admisc | 0.36 | AdMit | 2.1.9 |
ads | 1.5-10 | AdvancedBasketballStats | 1.0.1 |
AER | 1.2-14 | affy | 1.82.0 |
affyio | 1.74.0 | africamonitor | 0.2.4 |
agricolae | 1.3-7 | agricolaeplotr | 0.5.0 |
agridat | 1.24 | agriwater | 1.0.2 |
agvgd | 0.1.2 | AhoCorasickTrie | 0.1.2 |
aion | 1.1.0 | airGR | 1.7.6 |
airGRdatasets | 0.2.1 | airGRdatassim | 0.1.3 |
airGRiwrm | 0.7.0 | airGRteaching | 0.3.3 |
airports | 0.1.0 | airr | 1.5.0 |
ajv | 1.0.0 | akima | 0.6-3.4 |
alabama | 2023.1.0 | alakazam | 1.3.0 |
aLFQ | 1.3.6 | AlgDesign | 1.2.1.1 |
aliases2entrez | 0.1.2 | almanac | 1.0.0 |
alpaca | 0.3.4 | alphavantager | 0.1.3 |
altair | 4.2.3 | ALTopt | 0.1.2 |
Amelia | 1.8.2 | ammiBayes | 1.0-2 |
ampir | 1.1.0 | AMR | 2.1.1 |
anabel | 3.0.1 | AnaCoDa | 0.1.4.4 |
anacor | 1.1-4 | analogsea | 1.0.7.2 |
analogue | 0.17-7 | anesrake | 0.80 |
animation | 2.7 | anipaths | 0.10.3 |
anMC | 0.2.5 | annotate | 1.82.0 |
AnnotationBustR | 1.3.0 | AnnotationDbi | 1.66.0 |
AnnuityRIR | 1.0-0 | Anthropometry | 1.19 |
anytime | 0.3.9 | ao | 1.1.0 |
aod | 1.3.3 | aoos | 0.5.0 |
AovBay | 0.1.0 | apc | 2.0.0 |
apcluster | 1.4.13 | ape | 5.8 |
apex | 1.0.6 | APFr | 1.0.2 |
aphid | 1.3.5 | aphylo | 0.3-3 |
apisensr | 1.0.0 | aplot | 0.2.3 |
apollo | 0.3.4 | approximator | 1.2-8 |
apsimx | 2.8.0 | ARCensReg | 3.0.1 |
arcgislayers | 0.3.1 | arcgisutils | 0.3.1 |
archetypes | 2.2-0.1 | archive | 1.1.9 |
archivist | 2.3.8 | arcpbf | 0.1.6 |
ArDec | 2.1-1 | ARDL | 0.2.4 |
ardl.nardl | 1.3.0 | areal | 0.1.8 |
arfima | 1.8-1 | argo | 3.0.2 |
argparse | 2.2.3 | arima2 | 3.3.0 |
arkhe | 1.7.0 | arm | 1.14-4 |
aroma.affymetrix | 3.2.2 | aroma.apd | 0.7.0 |
aroma.cn | 1.7.1 | aroma.core | 3.3.1 |
aroma.light | 3.34.0 | arpr | 0.1.2 |
arrangements | 1.1.9 | arrow | 17.0.0.1 |
ars | 0.8 | arsenal | 3.6.3 |
aRxiv | 0.10 | ascii | 2.6 |
asd | 2.2 | ash | 1.0-15 |
ashr | 2.2-63 | AsioHeaders | 1.22.1-2 |
askpass | 1.2.1 | aspect | 1.0-6 |
ASSA | 2.0 | assertthat | 0.2.1 |
AssetCorr | 1.0.4 | astsa | 2.1 |
asymmetry | 2.0.4 | ata | 1.1.1 |
atom4R | 0.3-3 | atRisk | 0.1.0 |
attempt | 0.3.1 | attention | 0.4.0 |
AUC | 0.3.2 | audio | 0.1-11 |
autoFRK | 1.4.3 | autoimage | 2.2.3 |
automap | 1.1-12 | autostsm | 3.1.5 |
av | 0.9.2 | aweek | 1.0.3 |
aws | 2.5-6 | aws.signature | 0.6.0 |
awsMethods | 1.1-1 | AzureAppInsights | 0.3.1 |
AzureAuth | 1.3.3 | AzureCognitive | 1.0.1 |
AzureContainers | 1.3.2 | AzureCosmosR | 1.0.0 |
AzureGraph | 1.3.4 | AzureKusto | 1.1.3 |
AzureQstor | 1.0.1 | AzureRMR | 2.4.4 |
AzureStor | 3.7.0 | AzureTableStor | 1.0.0 |
AzureVision | 1.0.2 | AzureVM | 2.2.2 |
babelgene | 22.9 | babelwhale | 1.2.0 |
babette | 2.3.4 | BACCO | 2.1-0 |
BACCT | 1.0 | backports | 1.5.0 |
backtest | 0.3-4 | bacondecomp | 0.1.1 |
baggr | 0.7.8 | bain | 0.2.11 |
BalancedSampling | 2.0.6 | BaM | 1.0.3 |
bama | 1.3.0 | bamdit | 3.4.2 |
bamlss | 1.2-5 | BAMMtools | 2.1.12 |
bang | 1.0.4 | BANOVA | 1.2.1 |
BarcodingR | 1.0-3 | BART | 2.9.9 |
bartCause | 1.0-9 | bartcs | 1.2.2 |
bartMachine | 1.3.4.1 | bartMachineJARs | 1.2.1 |
BAS | 1.7.3 | basad | 0.3.0 |
base64 | 2.0.2 | base64enc | 0.1-3 |
base64url | 1.4 | baseballr | 1.6.0 |
basicMCMCplots | 0.2.7 | BASiNET | 0.0.5 |
BaSkePro | 1.1.1 | BasketballAnalyzeR | 0.5.0 |
BASS | 1.3.1 | BatchExperiments | 1.4.3 |
BatchJobs | 1.9 | batchmeans | 1.0-4 |
BAwiR | 1.3.2 | baycn | 1.2.0 |
bayefdr | 0.2.1 | bayes4psy | 1.2.12 |
bayesAB | 1.1.3 | bayesammi | 0.2.0 |
bayesanova | 1.6 | BayesARIMAX | 0.1.1 |
BayesBinMix | 1.4.1 | bayesbio | 1.0.0 |
bayesboot | 0.2.2 | BayesBP | 1.1 |
BayesCACE | 1.2.3 | BayesCombo | 1.0 |
BayesComm | 0.1-2 | bayescopulareg | 0.1.3 |
bayescount | 0.9.99-9 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.3.3 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.7 |
BayesFM | 0.1.7 | bayesforecast | 1.0.1 |
bayesGAM | 0.0.2 | bayesGARCH | 2.1.10 |
BayesGOF | 5.2 | BayesGPfit | 1.1.0 |
BayesGWQS | 0.1.1 | bayesian | 1.0.1 |
bayesianETAS | 1.0.3 | BayesianFactorZoo | 0.0.0.3 |
Bayesiangammareg | 0.1.0 | BayesianGLasso | 0.2.0 |
BayesianLaterality | 0.1.2 | BayesianNetwork | 0.3.2 |
BayesianTools | 0.1.8 | bayesianVARs | 0.1.4 |
bayesImageS | 0.6-1 | BayesLCA | 1.9 |
bayesLife | 5.2-0 | BayesLN | 0.2.10 |
BayesLogit | 2.1 | bayeslongitudinal | 0.1.0 |
bayesm | 3.1-6 | BayesMallows | 2.2.2 |
BayesMassBal | 1.1.0 | bayesmeta | 3.4 |
bayesmix | 0.7-6 | bayesnec | 2.1.3.0 |
bayesplot | 1.11.1 | bayesQR | 2.4 |
bayesRecon | 0.3.1 | bayestestR | 0.15.0 |
bayesTFR | 7.4-2 | BayesTools | 0.2.17 |
BayesTree | 0.3-1.5 | BayesVarSel | 2.2.5 |
BayesX | 0.3-3 | BAYSTAR | 0.2-10 |
baytrends | 2.0.12 | BB | 2019.10-1 |
BBmisc | 1.13 | bbmle | 1.0.25.1 |
bbotk | 1.2.0 | BCBCSF | 1.0-1 |
BCC1997 | 0.1.1 | BClustLonG | 0.1.3 |
bcpa | 1.3.2 | bcrm | 0.5.4 |
BDgraph | 2.73 | bdrc | 1.1.0 |
bdsmatrix | 1.3-7 | BE | 0.2.4 |
beachmat | 2.20.0 | beadarray | 2.54.0 |
BeadDataPackR | 1.56.0 | beakr | 0.4.3 |
bearishTrader | 1.0.2 | beastier | 2.5.2 |
beautier | 2.6.12 | BED | 1.5.2 |
beepr | 2.0 | beeswarm | 0.4.0 |
benchmarkme | 1.0.8 | benchmarkmeData | 1.0.4 |
BenfordTests | 1.2.0 | bentcableAR | 0.3.1 |
Bergm | 5.0.7 | Bernadette | 1.1.5 |
berryFunctions | 1.22.5 | Bessel | 0.6-1 |
BetaBit | 2.2 | betafunctions | 1.9.0 |
betapart | 1.6 | betareg | 3.2-1 |
betategarch | 3.3 | BETS | 0.4.9 |
bets.covid19 | 1.0.0 | beyondWhittle | 1.2.1 |
bezier | 1.1.2 | bfast | 1.7.0 |
BGLR | 1.1.3 | BGVAR | 2.5.8 |
bgw | 0.1.3 | BH | 1.84.0-0 |
BHH2 | 2016.05.31 | BiasCorrector | 0.2.3 |
BiasedUrn | 2.0.12 | bibtex | 0.5.1 |
biclust | 2.0.3.1 | bidask | 2.0.6 |
bife | 0.7.2 | BIFIEsurvey | 3.6-6 |
biganalytics | 1.1.22 | bigchess | 1.9.1 |
bigD | 0.2.0 | bigleaf | 0.8.2 |
biglm | 0.9-3 | bigmemory | 4.6.4 |
bigmemory.sri | 0.1.8 | bigrquery | 1.5.1 |
bigsplines | 1.1-1 | bigtime | 0.2.3 |
BigVAR | 1.1.2 | bimets | 4.0.2 |
bindr | 0.1.1 | bindrcpp | 0.2.3 |
binhf | 1.0-3 | binman | 0.1.3 |
binom | 1.1-1.1 | binr | 1.1.1 |
binseqtest | 1.0.4 | bio3d | 2.4-5 |
Biobase | 2.64.0 | BiocFileCache | 2.12.0 |
BiocGenerics | 0.50.0 | BiocIO | 1.14.0 |
BiocManager | 1.30.25 | BiocParallel | 1.38.0 |
BiocSingular | 1.20.0 | BiocVersion | 3.19.1 |
BioInsight | 0.3.1 | biomaRt | 2.60.1 |
biomartr | 1.0.7 | biomformat | 1.32.0 |
bioseq | 0.1.4 | Biostrings | 2.72.1 |
biotic | 0.1.2 | bipartite | 2.20 |
birtr | 1.0.0 | BisqueRNA | 1.0.5 |
bit | 4.5.0 | bit64 | 4.5.2 |
bitops | 1.0-9 | biwavelet | 0.20.22 |
bizdays | 1.0.16 | bkmr | 0.2.2 |
blaise | 1.3.11 | blastula | 0.3.5 |
blavaan | 0.5-6 | blink | 1.1.0 |
BLModel | 1.0.2 | blob | 1.2.4 |
blocklength | 0.1.5 | blockmatrix | 1.0 |
blockrand | 1.5 | blocksdesign | 4.9 |
blockTools | 0.6.5 | blogdown | 1.19 |
BLR | 1.6 | BLRPM | 1.0 |
BMA | 3.18.19 | bmgarch | 2.0.0 |
BMisc | 1.4.6 | bmixture | 1.7 |
BMS | 0.3.5 | BMTAR | 0.1.1 |
bnlearn | 5.0.1 | BNPTSclust | 2.0 |
BNSP | 2.2.3 | bnstruct | 1.0.15 |
boa | 1.1.8-2 | boilerpipeR | 1.3.2 |
BOIN | 2.7.2 | boiwsa | 1.1.2 |
bold | 1.3.0 | Bolstad | 0.2-41 |
Bolstad2 | 1.0-29 | bondAnalyst | 1.0.1 |
bookdown | 0.41 | Boom | 0.9.15 |
BoomSpikeSlab | 1.2.6 | bootnet | 1.6 |
BootPR | 1.0 | bootstrap | 2019.6 |
bootUR | 1.0.4 | BoSSA | 3.7 |
boussinesq | 1.0.6 | boxr | 0.3.6 |
bpca | 1.3-6 | bqtl | 1.0-38 |
BradleyTerry2 | 1.1-2 | brainR | 1.6.0 |
brandwatchR | 0.3.0 | breakfast | 2.5 |
brew | 1.0-10 | brglm | 0.7.2 |
brglm2 | 0.9.2 | bridgesampling | 1.1-2 |
BRINDA | 0.1.5 | brio | 1.1.5 |
brms | 2.22.0 | Brobdingnag | 1.2-9 |
broman | 0.84 | broom | 1.0.7 |
broom.helpers | 1.17.0 | brotli | 1.3.1 |
bsam | 1.1.3 | bsamGP | 1.2.5 |
BSgenome | 1.72.0 | bsicons | 0.1.2 |
bslib | 0.8.0 | BsMD | 2023.920 |
bspec | 1.6 | bspmma | 0.1-2 |
bssm | 2.0.2 | BSSprep | 0.1 |
bsts | 0.9.10 | bsvars | 3.2 |
bsvarSIGNs | 1.0.1 | BTLLasso | 0.1-13 |
BTM | 0.3.7 | bullishTrader | 1.0.1 |
bundesbank | 0.1-12 | BurStFin | 1.3 |
BurStMisc | 1.1 | BVAR | 1.0.5 |
bvarsv | 1.1 | bvartools | 0.2.4 |
bvls | 1.4 | C50 | 0.1.8 |
ca | 0.71.1 | cabinets | 0.6.0 |
cabootcrs | 2.1.0 | cachem | 1.1.0 |
cacIRT | 1.4 | CADFtest | 0.3-3 |
caffsim | 0.2.2 | Cairo | 1.6-2 |
CALANGO | 1.0.20 | calculus | 1.0.1 |
calibrar | 0.9.0 | calibrate | 1.7.7 |
CalibrateSSB | 1.3.0 | calibrator | 1.2-8 |
callr | 3.7.6 | cancensus | 0.5.7 |
candisc | 0.9.0 | CANSIM2R | 1.14.1 |
caper | 1.0.3 | captr | 0.3.0 |
capushe | 1.1.2 | car | 3.1-3 |
caRamel | 1.4 | CARBayes | 6.1.1 |
CARBayesdata | 3.0 | CARBayesST | 4.0 |
carData | 3.0-5 | cards | 0.3.0 |
caret | 6.0-94 | carfima | 2.0.2 |
caribou | 1.1-1 | carrier | 0.1.1 |
cartogram | 0.3.0 | Cascade | 2.1 |
CascadeData | 1.4 | CAST | 1.0.2 |
castor | 1.8.2 | CatDataAnalysis | 0.1-5 |
caTools | 1.18.3 | catR | 3.17 |
causact | 0.5.5 | CausalImpact | 1.3.0 |
CAvariants | 6.0 | CB2 | 1.3.4 |
cbioportalR | 1.1.0 | cbsodataR | 1.1 |
ccaPP | 0.3.4 | cccp | 0.3-1 |
cdlTools | 1.13 | CDM | 8.2-6 |
cds | 1.0.3 | CellNOptR | 1.50.0 |
cellranger | 1.1.0 | censReg | 0.5-38 |
censusapi | 0.8.0 | CEoptim | 1.3 |
CePa | 0.8.1 | CeRNASeek | 2.1.3 |
cffr | 1.1.1 | cfr | 0.1.2 |
CFtime | 1.4.1 | ChainLadder | 0.2.19 |
chandwich | 1.1.6 | changepoint | 2.2.4 |
changepoint.geo | 1.0.2 | changepoint.np | 1.0.5 |
checkLuhn | 1.1.0 | checkmate | 2.3.2 |
checkpoint | 1.0.2 | ChemoSpec | 6.1.10 |
ChemoSpecUtils | 1.0.4 | cherryblossom | 0.1.0 |
chess | 1.0.1 | chilemapas | 0.3.0 |
chk | 0.9.2 | choiceDes | 0.9-3 |
cholera | 0.8.0 | CholWishart | 1.1.4 |
choroplethr | 3.7.3 | choroplethrMaps | 1.0.1 |
chromoMap | 4.1.1 | chromote | 0.3.1 |
chron | 2.3-61 | cifti | 0.4.5 |
cinterpolate | 1.0.2 | circlize | 0.4.16 |
CircSpaceTime | 0.9.0 | CircStats | 0.2-6 |
circular | 0.5-1 | ciTools | 0.6.1 |
Ckmeans.1d.dp | 4.3.5 | Claddis | 0.7.0 |
clarabel | 0.9.0.1 | clarifai | 0.4.2 |
classInt | 0.4-10 | cleanepi | 1.0.2 |
clevr | 0.1.2 | cli | 3.6.3 |
clifro | 3.2-5 | climatol | 4.1.0 |
clime | 0.5.0 | clinDR | 2.4.1 |
clinfun | 1.1.5 | clinicalsignificance | 2.0.0 |
clinPK | 0.13.0 | clinsig | 1.2 |
clipr | 0.8.0 | clisymbols | 1.2.0 |
clmplus | 1.0.0 | clock | 0.7.1 |
clubSandwich | 0.5.11 | clue | 0.3-65 |
clusterGeneration | 1.3.8 | clustermole | 1.1.1 |
clusterProfiler | 4.12.6 | clusterSEs | 2.6.5 |
clustMixType | 0.4-2 | ClustVarLV | 2.1.1 |
clv | 0.3-2.4 | cmaes | 1.0-12 |
cmaesr | 1.0.3 | CMLS | 1.0-1 |
cmm | 1.0 | cmocean | 0.3-2 |
cmprsk | 2.2-12 | cmrutils | 1.3.1 |
CNLTreg | 0.1-2 | CNLTtsa | 0.1-2 |
cNORM | 3.3.1 | CNORode | 1.46.0 |
coalescentMCMC | 0.4-4 | coarseDataTools | 0.6-6 |
cobalt | 4.5.5 | cobs | 1.3-8 |
coconots | 1.1.3 | COCONUT | 1.0.2 |
cocor | 1.1-4 | cocorresp | 0.4-5 |
cocron | 1.0-1 | coda | 0.19-4.1 |
codebook | 0.9.5 | codebookr | 0.1.8 |
coin | 1.4-3 | cointReg | 0.2.0 |
colf | 0.1.3 | collapse | 2.0.16 |
collapsibleTree | 0.1.8 | collections | 0.3.7 |
colorr | 1.0.0 | colorRamps | 2.3.4 |
colorspace | 2.1-1 | colourpicker | 1.3.0 |
colourvalues | 0.3.9 | combinat | 0.0-8 |
combinedevents | 0.1.1 | CombinS | 1.1-1 |
ComICS | 1.0.4 | CommonJavaJars | 1.1-0 |
commonmark | 1.9.2 | compare | 0.2-6 |
compas | 0.1.1 | complex | 1.0.0 |
ComplexHeatmap | 2.20.0 | CompQuadForm | 1.4.3 |
comprehenr | 0.6.10 | conditionz | 0.1.0 |
coneproj | 1.19 | conf.design | 2.0.0 |
config | 0.3.2 | confintr | 1.0.2 |
conflicted | 1.2.0 | conos | 1.5.2 |
conquer | 1.3.3 | conquestr | 1.3.4 |
constrainedKriging | 0.2-8 | contactdata | 1.1.0 |
contfrac | 1.1-12 | ContourFunctions | 0.1.2 |
convevol | 2.2.1 | convey | 1.0.1 |
coop | 0.6-3 | cops | 1.12-1 |
copula | 1.1-4 | copulaData | 0.0-2 |
copulaedas | 1.4.3 | cordillera | 1.0-3 |
corHMM | 2.8 | coro | 1.0.5 |
corona | 0.3.0 | coronavirus | 0.4.1 |
corpcor | 1.6.10 | corpora | 0.6 |
corporaexplorer | 0.9.0 | corrgram | 1.14 |
corrplot | 0.95 | cosa | 2.1.0 |
CoSMoS | 2.1.0 | costat | 2.4.1 |
countrycode | 1.6.0 | CovCombR | 1.0 |
COVID19 | 3.0.3 | covid19.analytics | 2.1.3.3 |
covid19br | 0.1.8 | covid19dbcand | 0.1.1 |
covid19france | 0.1.0 | covid19italy | 0.3.1 |
covid19sf | 0.1.2 | covid19swiss | 0.1.0 |
covid19us | 0.1.9 | CovidMutations | 0.1.3 |
cowplot | 1.1.3 | cp4p | 0.3.6 |
CPBayes | 1.1.0 | cplm | 0.7-12.1 |
cpp11 | 0.5.0 | cpp11armadillo | 0.3.3 |
CptNonPar | 0.2.1 | CRABS | 1.2.0 |
crawl | 2.3.0 | crayon | 1.5.3 |
crch | 1.2-1 | credentials | 2.0.2 |
credule | 0.1.4 | crfsuite | 0.4.2 |
cricketdata | 0.2.3 | cricketr | 0.0.26 |
CRM | 1.2.4 | crmPack | 1.0.6 |
crossdes | 1.1-2 | crosslag | 0.1.0 |
Crossover | 0.1-22 | crosstalk | 1.2.1 |
crs | 0.15-38 | crseEventStudy | 1.2.2 |
crsmeta | 0.3.0 | crul | 1.5.0 |
crunch | 1.30.4 | crunchy | 0.3.3 |
cryptoQuotes | 1.3.1 | cSEM | 0.5.0 |
CSGo | 0.6.7 | cshapes | 2.0 |
CSHShydRology | 1.4.2 | csodata | 1.5.0 |
cstab | 0.2-2 | csv | 0.6.2 |
ctbi | 2.0.5 | ctmcmove | 1.2.9 |
ctmm | 1.2.0 | ctrdata | 1.19.4 |
CTT | 2.3.3 | CTTShiny | 0.1 |
ctv | 0.9-5 | cubature | 2.1.1 |
cubble | 1.0.0 | cubelyr | 1.0.2 |
cubfits | 0.1-4 | Cubist | 0.4.4 |
cumSeg | 1.3 | curl | 5.2.3 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-14 |
D3mirt | 2.0.4 | d3Network | 0.5.2.1 |
DAAG | 1.25.6 | dae | 3.2.28 |
daewr | 1.2-11 | dagitty | 0.3-4 |
DAKS | 2.1-3 | DALEX | 2.4.3 |
DAMOCLES | 2.3 | data.table | 1.16.2 |
data.tree | 1.1.0 | DatabaseConnector | 6.3.2 |
DataExplorer | 0.8.3 | dataone | 2.2.2 |
datapack | 1.4.1 | datapasta | 3.1.0 |
dataRetrieval | 2.7.17 | datarobot | 2.18.6 |
dataseries | 0.2.0 | dataverse | 0.3.14 |
datawizard | 0.13.0 | date | 1.2-42 |
dateback | 1.0.5 | datetimeoffset | 0.3.1 |
datetimeutils | 0.6-4 | dbarts | 0.9-28 |
dbhydroR | 0.2-8 | DBI | 1.2.3 |
DBItest | 1.8.1 | dbmss | 2.9-2 |
dbparser | 2.0.3 | dbplyr | 2.5.0 |
dbscan | 1.2-0 | dbx | 0.3.2 |
DChaos | 0.1-7 | dclone | 2.3-2 |
DCluster | 0.2-10 | DClusterm | 1.0-1 |
dcov | 0.1.1 | dCovTS | 1.4 |
dcurver | 0.9.2 | ddalpha | 1.3.16 |
DDD | 5.2.2 | dde | 1.0.7 |
DDPM | 0.1.0 | deBInfer | 0.4.4 |
debugme | 1.2.0 | decompr | 6.4.0 |
deducorrect | 1.3.7 | deductive | 1.0.0 |
DeductiveR | 1.0.0 | deeptime | 2.1.0 |
deeptimedata | 1.0.0 | Delaporte | 8.4.1 |
DelayedArray | 0.30.1 | DelayedMatrixStats | 1.26.0 |
deldir | 2.0-4 | deltaPlotR | 1.6 |
demography | 2.0 | dendextend | 1.18.1 |
dendsort | 0.3.4 | densEstBayes | 1.0-2.2 |
DEoptim | 2.2-8 | DEoptimR | 1.1-3 |
depmix | 0.9.16 | depmixS4 | 1.5-0 |
DepthProc | 2.1.5 | depthTools | 0.7 |
Deriv | 4.1.6 | derivmkts | 0.2.5 |
desc | 1.4.3 | DescTools | 0.99.57 |
deseats | 1.1.0 | DESeq2 | 1.44.0 |
designmatch | 0.5.4 | desiR | 1.2.2 |
desirability | 2.1 | deSolve | 1.40 |
desplot | 1.10 | devtools | 2.4.5 |
dexter | 1.5.0 | dextergui | 0.2.6 |
dexterMST | 0.9.6 | dfcomb | 3.1-4 |
dfcrm | 0.2-2.1 | dfidx | 0.1-0 |
DFIT | 1.1 | dfms | 0.2.2 |
dfmta | 1.7-6 | dfoptim | 2023.1.0 |
dfped | 1.1 | DGEobj | 1.1.2 |
DGEobj.utils | 1.0.6 | DHARMa | 0.4.7 |
DHS.rates | 0.9.2 | diagis | 0.2.3 |
diagonals | 6.4.0 | diagram | 1.6.5 |
DiagrammeR | 1.0.11 | dials | 1.3.0 |
DiceDesign | 1.10 | DiceEval | 1.6.1 |
DiceKriging | 1.6.0 | DiceOptim | 2.1.1 |
DiceView | 2.2-0 | dichromat | 2.0-0.1 |
DICOMread | 0.0.0.3 | did | 2.1.2 |
did2s | 1.0.2 | didimputation | 0.3.0 |
DIFboost | 0.3 | DiffCorr | 0.4.4 |
diffEnrich | 0.1.2 | diffobj | 0.3.5 |
diffpriv | 0.4.2 | diffusion | 0.4.0 |
DIFlasso | 1.0-4 | difNLR | 1.4.2-1 |
DIFplus | 1.1 | difR | 5.1 |
DIFtree | 3.1.6 | digest | 0.6.37 |
DIMORA | 0.3.6 | dimRed | 0.2.6 |
dina | 2.0.0 | DiPALM | 1.2 |
diptest | 0.77-1 | Dire | 2.2.0 |
DIRECT | 1.1.0 | directlabels | 2024.1.21 |
directPA | 1.5.1 | dirichletprocess | 0.4.2 |
dirmult | 0.1.3-5 | disaggR | 1.0.5.3 |
DIscBIO | 1.2.2 | DiscreteDatasets | 0.1.1 |
DiscreteFDR | 2.0.1 | DiscreteTests | 0.2.1 |
discretization | 1.0-1.1 | dispRity | 1.8 |
DistatisR | 1.1.1 | distcrete | 1.0.3 |
distfree.cr | 1.5.1 | distill | 1.6 |
distory | 1.4.5 | distr | 2.9.5 |
distrEx | 2.9.5 | distributional | 0.5.0 |
distributions3 | 0.2.2 | DistributionUtils | 0.6-1 |
distrom | 1.0.1 | distrTeach | 2.9.1 |
dittodb | 0.1.8 | diversitree | 0.10-1 |
divest | 1.1.1 | divseg | 0.0.5 |
dLagM | 1.1.13 | dlm | 1.1-6.1 |
dlmtree | 1.0.0 | dlnm | 2.4.7 |
dlsem | 2.4.6 | dlstats | 0.1.7 |
dm | 1.0.10 | dmri.tracking | 0.1.0 |
DNAcopy | 1.78.0 | doBy | 4.6.24 |
doc2vec | 0.2.0 | docopt | 0.7.1 |
docopulae | 0.4.0 | DoE.base | 1.2-4 |
DoE.MIParray | 1.0-1 | DoE.wrapper | 0.12 |
doFuture | 1.0.1 | doMC | 1.3.8 |
doParallel | 1.0.17 | doRNG | 1.8.6 |
DOSE | 3.30.5 | DoseFinding | 1.2-1 |
doSNOW | 1.0.20 | DOSPortfolio | 0.1.0 |
dotCall64 | 1.2 | DoubleML | 1.0.1 |
Dowd | 0.12 | downlit | 0.4.4 |
downloader | 0.4 | dparser | 1.3.1-13 |
dplyr | 1.1.4 | dqrng | 0.4.1 |
dr4pl | 2.0.0 | drake | 7.13.10 |
drat | 0.2.5 | DRaWR | 1.0.3 |
DRDID | 1.2.0 | dreamerr | 1.4.0 |
DriftBurstHypothesis | 0.4.0.1 | driveR | 0.4.1 |
DRomics | 2.6-2 | DRR | 0.0.4 |
dsa | 1.0.12 | DSAIDE | 0.9.6 |
dsb | 1.0.4 | DSI | 1.7.0 |
DSL | 0.1-7 | DT | 0.33 |
DTAT | 0.3-7 | DtD | 0.2.2 |
dti | 1.5.4.3 | dtplyr | 1.3.1 |
DTSg | 1.1.3 | dtt | 0.1-2 |
dtts | 0.1.3 | dtw | 1.23-1 |
dtwclust | 6.0.0 | duckdb | 1.1.2 |
duckduckr | 1.0.0 | dunn.test | 1.3.6 |
dwctaxon | 2.0.3 | dygraphs | 1.1.1.6 |
Dykstra | 1.0-0 | dyn | 0.2-9.6 |
dynamicTreeCut | 1.63-1 | dynatop | 0.2.3 |
dynatopGIS | 0.2.5 | dynaTree | 1.2-17 |
DynDoc | 1.82.0 | dynlm | 0.3-6 |
dynparam | 1.0.2 | dynutils | 1.0.11 |
dynwrap | 1.2.4 | DysPIA | 1.3 |
DysPIAData | 0.1.2 | e1071 | 1.7-16 |
earlyR | 0.0.5 | earth | 5.3.4 |
easypower | 1.0.2 | easySdcTable | 1.0.7 |
eba | 1.10-0 | ebal | 0.1-8 |
EbayesThresh | 1.4-12 | ebdbNet | 1.2.8 |
EBImage | 4.46.0 | EBMAforecast | 1.0.32 |
ecb | 0.4.2 | Ecdat | 0.4-2 |
ecespa | 1.1-17 | Ecfun | 0.3-2 |
echor | 0.1.9 | ecm | 7.2.0 |
ecodist | 2.1.3 | Ecohydmod | 1.0.0 |
ECOSolveR | 0.5.5 | ecoval | 1.2.9 |
ecp | 3.1.6 | ecr | 2.1.1 |
edfReader | 1.2.1 | edgeR | 4.2.2 |
edina | 0.1.1 | editrules | 2.9.5 |
edmdata | 1.3.0 | edstan | 1.0.6 |
EdSurvey | 4.0.7 | eegkit | 1.0-4 |
eegkitdata | 1.1 | EFAutilities | 2.1.3 |
effects | 4.2-2 | EGAnet | 2.0.8 |
egg | 0.4.5 | egor | 1.24.2 |
EGRET | 3.0.9 | EGRETci | 2.0.4 |
eha | 2.11.5 | eigenmodel | 1.11 |
eiopaR | 0.1.1 | elastic | 1.2.0 |
elasticnet | 1.3 | elevatr | 0.99.0 |
ellipse | 0.5.0 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | elo | 3.0.2 |
EloChoice | 0.29.4 | EloRating | 0.46.18 |
ELT | 1.7 | emayili | 0.9.1 |
EMbC | 2.0.4 | EMD | 1.5.9 |
emdi | 2.2.2 | emg | 1.0.9 |
emmeans | 1.10.5 | EMMIXgene | 0.1.4 |
emoa | 0.5-3 | emulator | 1.2-24 |
encode | 0.3.6 | endtoend | 2.29 |
energy | 1.7-12 | EngrExpt | 0.1-8 |
enrichplot | 1.24.4 | enrichR | 3.2 |
enrichwith | 0.3.1 | ensembleBMA | 5.1.8 |
entropart | 1.6-15 | entropy | 1.3.1 |
EntropyEstimation | 1.2.1 | EntropyMCMC | 1.0.4 |
enveomics.R | 1.9.1 | enviPat | 2.6 |
EnvStats | 3.0.0 | epanet2toolkit | 1.0.5 |
epanetReader | 0.7.3 | Epi | 2.56 |
epibasix | 1.5 | epicontacts | 1.1.4 |
EpiContactTrace | 0.18.0 | EpiCurve | 2.4-2 |
epiDisplay | 3.5.0.2 | EpiEstim | 2.2-4 |
epiflows | 0.2.1 | EpiILM | 1.5.2 |
EpiILMCT | 1.1.7 | epimdr | 0.6-5 |
EpiModel | 2.5.0 | epinet | 2.1.11 |
EpiNow2 | 1.6.1 | epiR | 2.0.76 |
EpiReport | 1.0.2 | episensr | 1.3.0 |
EpiSignalDetection | 0.1.2 | epitools | 0.5-10.1 |
epitrix | 0.4.0 | epitweetr | 2.2.16 |
epm | 1.1.3 | epo | 0.1.0 |
equate | 2.0.8 | equateIRT | 2.5.1 |
equateMultiple | 1.1.1 | equivalence | 0.7.2 |
era | 0.4.1 | erah | 2.0.1 |
ergm | 4.7.1 | ergm.ego | 1.1.0 |
ergm.multi | 0.2.1 | eRm | 1.0-6 |
errorlocate | 1.1.1 | errum | 0.0.3 |
esemifar | 2.0.1 | ESG | 1.3 |
EstCRM | 1.6 | estimability | 1.5.1 |
EstimateGroupNetwork | 0.3.1 | estimatr | 1.0.4 |
ETLUtils | 1.5 | etm | 1.1.1 |
etrm | 1.0.1 | etrunct | 0.1 |
etwfe | 0.4.0 | EUfootball | 0.0.1 |
eulerr | 7.0.2 | europepmc | 0.4.3 |
eurostat | 4.0.0 | evaluate | 1.0.1 |
Evapotranspiration | 1.16 | evd | 2.3-7.1 |
evgam | 1.0.0 | evir | 1.7-4 |
evobiR | 1.1 | EvoPhylo | 0.3.2 |
evtree | 1.0-8 | ewoc | 0.3.0 |
Exact | 3.3 | exactextractr | 0.10.0 |
exactRankTests | 0.8-35 | exams | 2.4-1 |
ExceedanceTools | 1.3.6 | exdex | 1.2.3 |
EXPAR | 0.1.0 | EXPARMA | 0.1.0 |
experiment | 1.2.1 | expint | 0.1-8 |
expm | 1.0-0 | ExPosition | 2.8.23 |
expsmooth | 2.3 | exreport | 0.4.1 |
extraDistr | 1.10.0 | extrafont | 0.19 |
extrafontdb | 1.0 | extraoperators | 0.3.0 |
ExtremeBounds | 0.1.7 | ExtremeRisks | 0.0.4 |
eyelinker | 0.2.1 | ez | 4.4-0 |
fable | 0.4.0 | fable.prophet | 0.1.0 |
fableCount | 0.1.0 | fabletools | 0.5.0 |
factoextra | 1.0.7 | FactoMineR | 2.11 |
factorstochvol | 1.1.0 | FAdist | 2.4 |
fanplot | 4.0.0 | fansi | 1.0.6 |
FAOSTAT | 2.4.0 | faoutlier | 0.7.6 |
faraway | 1.0.8 | farver | 2.1.2 |
fAssets | 4023.85 | fasstr | 0.5.3 |
fastcluster | 1.2.6 | fastcpd | 0.14.3 |
fastDummies | 1.7.4 | fastGHQuad | 1.0.1 |
fastglm | 0.0.3 | fastICA | 1.2-5.1 |
fastLink | 0.6.1 | fastmap | 1.2.0 |
fastmatch | 1.1-4 | fastRhockey | 0.4.0 |
fastrmodels | 1.0.2 | FastRWeb | 1.2-1 |
fasttime | 1.1-0 | fastTS | 1.0.1 |
FatTailsR | 1.8-5 | fauxpas | 0.5.2 |
FAVAR | 0.1.3 | fbar | 0.6.0 |
fBasics | 4041.97 | fBonds | 3042.78 |
fbRads | 17.0.0 | fCopulae | 4022.85 |
FCVAR | 0.1.4 | FD | 1.0-12.3 |
fda | 6.2.0 | fdaACF | 1.0.0 |
fdapace | 0.6.0 | fdrtool | 1.2.18 |
fds | 1.8 | fdth | 1.3-0 |
feasts | 0.4.1 | feather | 0.3.5 |
fechner | 1.0-3 | FedData | 4.0.1 |
FeedbackTS | 1.5 | feisr | 1.3.0 |
fExtremes | 4032.84 | ff | 4.5.0 |
FFD | 1.0-9 | ffscrapr | 1.4.8 |
fftwtools | 0.9-11 | fGarch | 4033.92 |
fgsea | 1.30.0 | fHMM | 1.4.1 |
FielDHub | 1.4.2 | fields | 16.3 |
fiery | 1.2.1 | filehash | 2.4-6 |
filehashSQLite | 0.2-7 | filelock | 1.0.3 |
filematrix | 1.3 | fImport | 4041.88 |
finalsize | 0.2.1 | FinancialMath | 0.1.1 |
findpython | 1.0.8 | FinNet | 0.2.1 |
finnts | 0.5.0 | finreportr | 1.0.4 |
FinTS | 0.4-9 | FiRE | 1.0.1 |
fishMod | 0.29.2 | fitdistrplus | 1.2-1 |
fitzRoy | 1.5.0 | fixest | 0.12.1 |
FKF | 0.2.6 | FKF.SP | 0.3.3 |
flacco | 1.8 | flap | 0.2.0 |
flashClust | 1.01-2 | flexclust | 1.4-2 |
flexmix | 2.3-19 | FlexScan | 0.2.2 |
flextable | 0.9.7 | flippant | 1.5.5 |
float | 0.3-2 | flock | 0.7 |
flowr | 0.9.11 | FlowScreen | 1.2.6 |
fma | 2.5 | FMC | 1.0.1 |
fmcmc | 0.5-2 | fmdates | 0.1.4 |
FME | 1.3.6.3 | fmesher | 0.1.7 |
fmri | 1.9.12.1 | fMultivar | 4031.84 |
fnets | 0.1.6 | FNN | 1.1.4.1 |
fNonlinear | 4041.82 | fontawesome | 0.5.2 |
fontBitstreamVera | 0.1.1 | fontLiberation | 0.1.0 |
fontquiver | 0.2.1 | footballpenaltiesBL | 1.0.0 |
footBayes | 0.2.0 | forcats | 1.0.0 |
foreach | 1.5.2 | ForeCA | 0.2.7 |
forecast | 8.23.0 | ForecastComb | 1.3.1 |
forecastHybrid | 5.0.19 | forecastLSW | 1.0 |
forecastML | 0.9.0 | FoReco | 1.0.0 |
ForeComp | 0.9.0 | forecTheta | 2.6.2 |
forestplot | 3.1.5 | forge | 0.2.0 |
formatR | 1.14 | formattable | 0.2.1 |
formods | 0.1.7 | Formula | 1.2-5 |
formula.tools | 1.7.1 | FossilSim | 2.4.1 |
fourPNO | 1.1.0 | fpc | 2.2-13 |
fpcb | 0.1.0 | fpCompare | 0.2.4 |
FPLdata | 0.1.0 | fPortfolio | 4023.84 |
fpp2 | 2.5 | fpp3 | 1.0.1 |
fracdiff | 1.5-3 | fracdist | 0.1.1 |
Frames2 | 0.2.1 | FRAPO | 0.4-1 |
fredr | 2.1.0 | freecurrencyapi | 0.1.0 |
freesurferformats | 0.1.18 | fRegression | 4021.83 |
frenchdata | 0.2.0 | freqdom | 2.0.5 |
freqdom.fda | 1.0.1 | fresh | 0.2.1 |
FrF2 | 2.3-3 | FrF2.catlg128 | 1.2-3 |
FRK | 2.3.1 | frontier | 1.1-8 |
frostr | 0.2.0 | fs | 1.6.5 |
FSA | 0.9.5 | fslr | 2.25.3 |
fst | 0.9.8 | fstcore | 0.9.18 |
fTrading | 3042.79 | ftrCOOL | 2.0.0 |
ftsa | 6.4 | func2vis | 1.0-3 |
functional | 0.6 | fungible | 2.4.4 |
funtimes | 9.1 | furrr | 0.3.1 |
futile.logger | 1.4.3 | futile.options | 1.0.1 |
future | 1.34.0 | future.apply | 1.11.3 |
fuzzyjoin | 0.1.6 | fxregime | 1.0-4 |
GA | 3.2.4 | GAD | 2.0 |
gafit | 0.5.1 | gam | 1.22-5 |
gamlr | 1.13-8 | gamlss | 5.4-22 |
gamlss.data | 6.0-6 | gamlss.dist | 6.1-1 |
gamm4 | 0.2-6 | GANPA | 1.2 |
GANPAdata | 1.0 | gap | 1.6 |
gap.datasets | 0.0.6 | gapfill | 0.9.6-1 |
GARCHSK | 0.1.0 | garchx | 1.5 |
gargle | 1.5.2 | garma | 0.9.23 |
GAS | 0.3.4.1 | gasmodel | 0.6.0 |
gaussquad | 1.0-3 | GaussSuppression | 0.9.0 |
gbm | 2.2.2 | gbutils | 0.5 |
gclus | 1.3.2 | GCPM | 1.2.2 |
gdalcubes | 0.7.0 | gdalUtilities | 1.2.5 |
gdata | 3.0.1 | GDINA | 2.9.4 |
gdistance | 1.6.4 | gdpc | 1.1.4 |
gdtools | 0.4.0 | gear | 0.3.4 |
gee | 4.13-27 | geeM | 0.10.1 |
geepack | 1.3.12 | geigen | 2.3 |
geiger | 2.0.11 | genalg | 0.2.1 |
gender | 0.6.0 | GeneCycle | 1.1.5 |
geneExpressionFromGEO | 0.9 | genefilter | 1.86.0 |
GeneNet | 1.2.16 | GeneralizedHyperbolic | 0.8-6 |
GeneralizedUmatrix | 1.2.6 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | geno2proteo | 0.0.6 |
GenomeInfoDb | 1.40.1 | GenomeInfoDbData | 1.2.12 |
GenomicAlignments | 1.40.0 | GenomicFeatures | 1.56.0 |
GenomicRanges | 1.56.2 | GenomicTools.fileHandler | 0.1.5.9 |
genoPlotR | 0.8.11 | GenOrd | 1.4.0 |
GenSA | 1.1.14.1 | geobr | 1.9.1 |
geodist | 0.1.0 | geogrid | 0.1.2 |
geojson | 0.3.5 | geojsonio | 0.11.3 |
geojsonsf | 2.0.3 | GEOmap | 2.5-11 |
geomapdata | 2.0-2 | geometa | 0.8-0 |
GEOmetadb | 1.66.0 | geometries | 0.2.4 |
geometry | 0.5.0 | geomorph | 4.0.8 |
geomtextpath | 0.1.4 | geonames | 0.999 |
geonapi | 0.7-2 | GEOquery | 2.72.0 |
geoR | 1.9-4 | georob | 0.3-20 |
geos | 0.2.4 | geosapi | 0.7-1 |
geoscale | 2.0.1 | geosphere | 1.5-20 |
geospt | 1.0-4 | geostan | 0.7.0 |
geotopbricks | 1.5.8.2 | geouy | 0.2.8 |
gert | 2.1.4 | GET | 1.0-3 |
GetoptLong | 1.0.5 | getPass | 0.2-4 |
gets | 0.38 | GetTDData | 1.5.6 |
gfonts | 0.2.0 | ggalluvial | 0.12.5 |
GGally | 2.2.1 | ggalt | 0.4.0 |
gganimate | 1.0.9 | ggcharts | 0.2.1 |
ggdag | 0.2.13 | ggdemetra | 0.2.8 |
ggdendro | 0.2.0 | ggdist | 3.3.2 |
ggExtra | 0.10.1 | ggfittext | 0.10.2 |
ggforce | 0.4.2 | ggformula | 0.12.0 |
ggfortify | 0.4.17 | ggfun | 0.1.7 |
gggenes | 0.5.1 | ggh4x | 0.2.8 |
gghalves | 0.1.4 | ggimage | 0.3.3 |
gginnards | 0.2.0 | ggkegg | 1.2.3 |
gglasso | 1.5.1 | ggm | 2.5.1 |
ggmap | 4.0.0 | ggmcmc | 1.5.1.1 |
ggmuller | 0.5.6 | ggnetwork | 0.5.13 |
ggnewscale | 0.5.0 | ggokabeito | 0.1.0 |
ggpath | 1.0.2 | ggplot2 | 3.5.1 |
ggplotify | 0.1.2 | ggpmisc | 0.6.0 |
ggpp | 0.5.8-1 | ggpubr | 0.6.0 |
ggquiver | 0.3.3 | ggraph | 2.2.1 |
ggrepel | 0.9.6 | ggridges | 0.5.6 |
ggsci | 3.2.0 | ggseas | 0.5.4 |
ggseqlogo | 0.2 | ggsignif | 0.6.4 |
ggsoccer | 0.2.0 | ggspatial | 1.1.9 |
ggstats | 0.7.0 | ggtext | 0.1.2 |
ggthemes | 5.1.0 | ggtree | 3.12.0 |
ggupset | 0.4.0 | ggvis | 0.4.9 |
gh | 1.4.1 | ghyp | 1.6.5 |
Gifi | 0.4-0 | gifti | 0.8.0 |
GIGrvg | 0.8 | gimme | 0.7-18 |
giscoR | 0.6.0 | gistr | 0.9.0 |
git2r | 0.35.0 | gitcreds | 0.1.2 |
gitlabr | 2.1.0 | glarma | 1.6-0 |
GlarmaVarSel | 1.0 | glasso | 1.11 |
glassoFast | 1.0.1 | gld | 2.6.6 |
glm2 | 1.2.1 | glmmML | 1.1.7 |
GLMMRR | 0.5.0 | glmmSeq | 0.5.5 |
glmmTMB | 1.1.10 | glmnet | 4.1-8 |
glmx | 0.2-1 | GlobalOptions | 0.1.2 |
globalOptTests | 1.1 | globals | 0.16.3 |
globaltest | 5.58.0 | glpkAPI | 1.3.4 |
glue | 1.8.0 | gmailr | 2.0.0 |
GMDH | 1.6 | Gmedian | 1.2.7 |
gmm | 1.8 | gmnl | 1.1-3.2 |
gmodels | 2.19.1 | gmp | 0.7-5 |
gmt | 2.0.3 | gmvarkit | 2.1.2 |
GNAR | 1.1.4 | gnm | 1.1-5 |
GO.db | 3.19.1 | goftest | 1.2-3 |
gogarch | 0.7-5 | golem | 0.5.1 |
gontr | 1.1.0 | googleAnalyticsR | 1.2.0 |
googleAuthR | 2.0.2 | googleCloudStorageR | 0.7.0 |
googleComputeEngineR | 0.3.0 | googledrive | 2.1.1 |
googleLanguageR | 0.3.0 | googlePolylines | 0.8.5 |
googlesheets4 | 1.1.1 | googleVis | 0.7.3 |
googleway | 2.7.8 | GOSemSim | 2.30.2 |
gower | 1.0.1 | GOxploreR | 1.2.7 |
GPareto | 1.1.8 | GPArotation | 2024.3-1 |
GPCMlasso | 0.1-7 | GPfit | 1.0-8 |
gpindex | 0.6.2 | gplots | 3.2.0 |
GPRMortality | 0.1.0 | gprofiler2 | 0.2.3 |
gradethis | 0.2.14 | graDiEnt | 1.0.1 |
gRain | 1.4.5 | grantham | 0.1.2 |
graph | 1.82.0 | graphicalVAR | 0.3.4 |
graphite | 1.50.0 | graphlayouts | 1.2.0 |
graphsim | 1.0.3 | graphTweets | 0.5.3 |
grates | 1.2.2 | gratis | 1.0.7 |
gravitas | 0.1.3 | gravity | 1.1 |
gRbase | 2.0.3 | greeks | 1.4.3 |
greta | 0.4.5 | greybox | 2.0.2 |
grf | 2.3.2 | gridBase | 0.4-7 |
gridExtra | 2.3 | gridGraphics | 0.5-1 |
gridSVG | 1.7-5 | gridtext | 0.1.5 |
grImport | 0.9-7 | grImport2 | 0.3-3 |
grnn | 0.1.0 | groundhog | 3.2.1 |
GroupSeq | 1.4.3 | grplasso | 0.4-7 |
grwat | 0.0.4 | GSA | 1.03.3 |
gsarima | 0.1-5 | gsDesign | 3.6.4 |
GSEABase | 1.66.0 | gsheet | 0.4.5 |
gsignal | 0.3-7 | gsisdecoder | 0.0.1 |
gsl | 2.1-8 | gslnls | 1.3.2 |
GSODR | 4.1.3 | gson | 0.1.0 |
gss | 2.2-8 | gstat | 2.1-2 |
gsubfn | 0.7 | GSVA | 1.52.3 |
GSVAdata | 1.40.0 | gsw | 1.2-0 |
gsynth | 1.2.1 | gt | 0.11.1 |
gtable | 0.3.6 | gtheory | 0.1.2 |
gtools | 3.9.5 | gtrendsR | 1.5.1 |
gtsummary | 2.0.3 | GUIDE | 1.2.7 |
gumboot | 1.0.1 | GUniFrac | 1.8 |
gustave | 1.0.0 | gvc | 6.4.0 |
gwavr | 0.3.1 | gWidgets2 | 1.0-9 |
GWmodel | 2.4-1 | gwrr | 0.2-2 |
GWSDAT | 3.2.1 | h2o | 3.44.0.3 |
hackeRnews | 0.1.0 | HandTill2001 | 1.0.1 |
HaploSim | 1.8.4.2 | hardhat | 1.4.0 |
hash | 2.2.6.3 | haven | 2.5.4 |
hbsae | 1.2 | HBV.IANIGLA | 0.2.6 |
HDF5Array | 1.32.1 | hdf5r | 1.3.11 |
hdi | 0.1-9 | HDInterval | 0.2.4 |
hdm | 0.3.2 | HDMT | 1.0.5 |
HDO.db | 0.99.1 | hdrcde | 3.4 |
HDShOP | 0.1.5 | HDTSA | 1.0.4 |
heatmaply | 1.5.0 | heplots | 1.7.0 |
here | 1.0.1 | hett | 0.3-3 |
hexbin | 1.28.4 | hexSticker | 0.4.9 |
hflights | 0.1 | hglm | 2.2-1 |
hglm.data | 1.0-1 | hgnc | 0.1.4 |
HGNChelper | 0.8.14 | hgu95a.db | 3.13.0 |
HH | 3.1-52 | hht | 2.1.6 |
HiClimR | 2.2.1 | highcharter | 0.9.4 |
highfrequency | 1.0.1 | highlight | 0.5.1 |
highr | 0.11 | highs | 0.1-10 |
HIMA | 2.3.0 | hipread | 0.2.4 |
hisse | 2.1.11 | HistData | 0.9-1 |
HKRbook | 0.1.3 | HLMdiag | 0.5.0 |
HMDHFDplus | 2.0.3 | Hmisc | 5.2-0 |
HMMpa | 1.0.1 | HMP | 2.0.1 |
HMPTrees | 1.4 | hms | 1.1.3 |
hoardr | 0.5.4 | homals | 1.0-10 |
hommel | 1.6 | hoopR | 2.1.0 |
hot.deck | 1.2 | howzatR | 1.0.1 |
hpfilter | 1.0.2 | HRW | 1.0-5 |
HSAUR3 | 1.0-15 | hsstan | 0.8.2 |
htm2txt | 2.2.2 | htmlTable | 2.4.3 |
htmltools | 0.5.8.1 | HTMLUtils | 0.1.9 |
htmlwidgets | 1.6.4 | hts | 6.0.3 |
HTSCluster | 2.0.11 | htsr | 2.1.6 |
httpcache | 1.2.0 | httpcode | 0.3.0 |
httping | 0.2.0 | httpRequest | 0.0.11 |
httptest | 4.2.2 | httpuv | 1.6.15 |
httr | 1.4.7 | httr2 | 1.0.5 |
hubeau | 0.5.0 | humanFormat | 1.2 |
humanize | 0.2.0 | humidity | 0.1.5 |
hunspell | 3.0.5 | hurricaneexposure | 0.1.1 |
hutils | 1.8.1 | huxtable | 5.5.7 |
hwriter | 1.3.2.1 | hwwntest | 1.3.2 |
hydraulics | 0.7.0 | hydroEvents | 0.11 |
hydrogeo | 0.6-1 | hydroGOF | 0.6-0 |
hydroloom | 1.1.0 | HydroMe | 2.1.1 |
hydropeak | 0.1.2 | hydroroute | 0.1.2 |
hydrostats | 0.2.9 | hydrotoolbox | 1.1.2 |
hydroTSM | 0.7-0 | hyfo | 1.4.6 |
HyperbolicDist | 0.6-5 | hypergeo | 1.2-13 |
iarm | 0.4.3 | ibd | 1.6 |
IBMPopSim | 1.1.0 | iBreakDown | 2.1.2 |
IBrokers | 0.10-2 | ica | 1.0-3 |
ICAMS | 2.3.12 | ICAOD | 1.0.1 |
iCARH | 2.0.2.1 | icarus | 0.3.2 |
ICBioMark | 0.1.4 | ICC | 2.4.0 |
iccbeta | 1.2.0 | ICDS | 0.1.3 |
iCellR | 1.6.7 | Icens | 1.76.0 |
ICGE | 0.4.2 | ichimoku | 1.5.5 |
ICS | 1.4-1 | ICSNP | 1.1-2 |
ICtest | 0.3-5 | idbr | 1.2 |
IDE | 0.3.1 | idefix | 1.0.3 |
idendr0 | 1.5.3 | IDF | 2.1.2 |
IDPmisc | 1.1.21 | ids | 1.0.1 |
ie2misc | 0.9.1 | ie2miscdata | 1.0.4 |
IETD | 1.0.0 | ifaTools | 0.23 |
ifo | 0.1.0 | igraph | 2.1.1 |
igraphdata | 1.0.1 | illuminaio | 0.46.0 |
imbibe | 0.1.1 | imguR | 1.0.3 |
IMIX | 1.1.5 | immer | 1.5-13 |
immunarch | 0.9.1 | imp4p | 1.2 |
implied | 0.5 | implyr | 0.5.0 |
import | 1.3.2 | impute | 1.78.0 |
imputeLCMD | 2.1 | imputeTestbench | 3.0.3 |
imputeTS | 3.3 | imsig | 1.1.3 |
inca | 0.0.4 | IncDTW | 1.1.4.4 |
incidence | 1.7.5 | incidence2 | 2.5.0 |
inctools | 1.0.15 | inegiR | 3.0.0 |
ineq | 0.2-13 | infer | 1.0.7 |
influence.SEM | 2.3 | influxdbr | 0.14.2 |
infotheo | 1.2.0.1 | InfoTrad | 1.2 |
ingredients | 2.3.0 | ini | 0.3.1 |
injurytools | 1.0.3 | inline | 0.3.19 |
insight | 0.20.5 | InspectChangepoint | 1.2 |
instaR | 0.2.4 | insuranceData | 1.0 |
insurancerating | 0.7.5 | intamap | 1.5-7 |
integIRTy | 1.0.7 | InteRD | 0.1.1 |
interep | 0.4.1 | interleave | 0.1.2 |
interp | 1.1-6 | InterpretMSSpectrum | 1.4.5 |
intervals | 0.15.5 | inum | 1.0-5 |
investr | 1.4.2 | invgamma | 1.1 |
ioncopy | 2.2.2 | iotables | 0.9.3 |
iotools | 0.3-5 | ipaddress | 1.0.2 |
ipdw | 2.0-0 | ipfp | 1.0.2 |
ipred | 0.9-15 | ips | 0.0.12 |
ipumsr | 0.8.1 | iq | 1.9.12 |
irace | 3.5 | IRanges | 2.38.1 |
IRdisplay | 1.1 | IRkernel | 1.3.2 |
irlba | 2.3.5.1 | irr | 0.84.1 |
irtDemo | 0.1.4 | irtoys | 0.2.2 |
irtrees | 1.0.0 | IRTShiny | 1.2 |
IsingFit | 0.4 | IsingSampler | 0.2.3 |
ISLR | 1.4 | ismev | 1.42 |
Iso | 0.0-21 | isoband | 0.2.7 |
ISOcodes | 2024.02.12 | isotone | 1.1-1 |
isoWater | 1.2.0 | ISOweek | 0.6-2 |
ISwR | 2.0-9 | iterators | 1.0.14 |
iterLap | 1.1-4 | itertools | 0.1-3 |
itscalledsoccer | 0.3.0 | itsmr | 1.10 |
ivreg | 0.6-4 | JADE | 2.0-4 |
jalcal | 0.1.0 | janeaustenr | 1.0.0 |
janitor | 2.2.0 | JavaGD | 0.6-5 |
JBrowseR | 0.10.2 | jetset | 3.4.0 |
jiebaR | 0.11 | jiebaRD | 0.1 |
jjb | 0.1.1 | JMdesign | 1.5 |
jointCalib | 0.1.0 | jointDiag | 0.4 |
jomo | 2.7-6 | JoSAE | 0.3.0 |
jose | 1.2.1 | jpeg | 0.1-10 |
jqr | 1.3.5 | jquerylib | 0.1.4 |
jrt | 1.1.2 | js | 1.2.1 |
jsonify | 1.2.2 | jsonlite | 1.8.9 |
jsonvalidate | 1.3.2 | JSparO | 1.5.0 |
jstor | 0.3.11 | juicyjuice | 0.1.0 |
JuliaConnectoR | 1.1.4 | JWileymisc | 1.4.1 |
kableExtra | 1.4.0 | kalmanfilter | 2.1.1 |
kappaSize | 1.2 | kDGLM | 1.2.0 |
KEGGgraph | 1.64.0 | KEGGREST | 1.44.1 |
kelvin | 2.0-2 | Kendall | 2.2.1 |
kequate | 1.6.4 | keras | 2.15.0 |
keras3 | 1.2.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-33 | keyperm | 0.1.1 |
keyring | 1.3.2 | KFAS | 1.5.1 |
kfigr | 1.2.1 | kinship2 | 1.9.6.1 |
kitagawa | 3.1.2 | kiwisR | 0.2.4 |
klaR | 1.7-3 | klsh | 0.1.0 |
km.ci | 0.5-6 | kmer | 1.1.2 |
KMsurv | 0.1-5 | knitcitations | 1.0.12 |
knitLatex | 0.9.0 | knitr | 1.48 |
kofnGA | 1.3 | koRpus | 0.13-8 |
KrigInv | 1.4.2 | KRIS | 1.1.6 |
krm | 2022.10-17 | ks | 1.14.3 |
kst | 0.5-4 | kutils | 1.73 |
kyotil | 2024.7-31 | kza | 4.1.0.1 |
labdsv | 2.1-0 | label.switching | 1.8 |
labeling | 0.4.3 | labelled | 2.13.0 |
labelVector | 0.1.2 | laeken | 0.5.3 |
LaF | 0.8.4 | lagged | 0.3.2 |
Lahman | 12.0-0 | lakemorpho | 1.3.2 |
LAM | 0.7-22 | lambda.r | 1.2.4 |
lamW | 2.2.4 | landsat | 1.1.2 |
landscapemetrics | 2.1.4 | languagelayeR | 1.2.4 |
languageR | 1.5.0 | LaplacesDemon | 16.1.6 |
LARF | 1.4 | lars | 1.3 |
latdiag | 0.3 | later | 1.3.2 |
latex2exp | 0.9.6 | latticeExtra | 0.6-30 |
LatticeKrig | 9.3.0 | lava | 1.8.0 |
lavaan | 0.6-19 | LAWBL | 1.5.0 |
lazyeval | 0.2.2 | lazyWeave | 3.0.2 |
lbfgs | 1.2.1.2 | lbfgsb3c | 2024-3.5 |
LCAvarsel | 1.1 | lcda | 0.3.2 |
lcmm | 2.1.0 | lctools | 0.2-10 |
lda | 1.5.2 | ldbounds | 2.0.2 |
leafem | 0.2.3 | leaflet | 2.2.2 |
leaflet.extras | 2.0.1 | leaflet.providers | 2.0.0 |
leafpm | 0.1.0 | leafpop | 0.1.0 |
leafsync | 0.1.0 | leapp | 1.3 |
leaps | 3.2 | LearnBayes | 2.15.1 |
learnr | 0.11.5.9000 | legion | 0.1.2 |
leiden | 0.4.3.1 | leidenAlg | 1.1.4 |
lfactors | 1.0.4 | lfe | 3.0-0 |
lfstat | 0.9.12 | lgarch | 0.6-2 |
lgr | 0.4.4 | lgtdl | 1.1.5 |
lhs | 1.2.0 | libcoin | 1.0-10 |
libgeos | 3.11.1-2 | LiblineaR | 2.10-24 |
lidR | 4.1.2 | lifecontingencies | 1.3.12 |
lifecycle | 1.0.4 | LifeInsuranceContracts | 0.0.6 |
LifeInsureR | 1.0.0 | liftr | 0.9.2 |
likert | 1.3.5 | lilikoi | 2.1.1 |
LIM | 1.4.7.1 | limma | 3.60.6 |
limSolve | 1.5.7.1 | linelist | 1.1.4 |
lineup | 0.44 | lineup2 | 0.6 |
link2GI | 0.6-2 | linpk | 1.1.2 |
linprog | 0.9-4 | LinRegInteractive | 0.3-3 |
lintools | 0.1.7 | lisrelToR | 0.3 |
listcomp | 0.4.1 | listenv | 0.9.1 |
liteq | 1.1.0 | lmds | 0.1.0 |
lme4 | 1.1-35.5 | lmerTest | 3.1-3 |
lmForc | 1.0.0 | lmm | 1.4 |
lmodel2 | 1.7-3 | lmom | 3.2 |
lmomco | 2.5.1 | Lmoments | 1.3-1 |
lmomRFA | 3.8 | lmQCM | 0.2.4 |
lmtest | 0.9-40 | LNIRT | 0.5.1 |
lobstr | 1.1.2 | locfit | 1.5-9.10 |
locits | 1.7.7 | locpol | 0.8.0 |
log4r | 0.4.4 | logger | 0.4.0 |
logging | 0.10-108 | logitnorm | 0.8.39 |
logitr | 1.1.2 | logspline | 2.1.22 |
lokern | 1.1-12 | lomb | 2.5.0 |
longitudinal | 1.1.13 | longitudinalData | 2.4.7 |
longmemo | 1.1-3 | LongMemoryTS | 0.1.0 |
longpower | 1.0.27 | longurl | 0.3.3 |
loo | 2.8.0 | lordif | 0.3-3 |
lotri | 1.0.0 | LowRankQP | 1.0.6 |
lpacf | 1.0.1 | lpdensity | 2.5 |
lpirfs | 0.2.3 | LPM | 3.2 |
LPS | 1.0.16 | lpSolve | 5.6.21 |
lpSolveAPI | 5.5.2.0-17.12 | lsa | 0.73.3 |
lsei | 1.3-0 | lsl | 0.5.6 |
lslx | 0.6.11 | LSMonteCarlo | 1.0 |
LSMRealOptions | 0.2.1 | LSPFP | 1.0.3 |
LSTS | 2.1 | LSWPlib | 0.1.0 |
ltm | 1.2-0 | ltsa | 1.4.6.1 |
lubridate | 1.9.3 | LUCIDus | 3.0.3 |
lulcc | 1.0.4 | Luminescence | 0.9.25 |
lutz | 0.3.2 | luz | 0.4.0 |
lvnet | 0.3.5 | lvplot | 0.2.1 |
LWFBrook90R | 0.6.1 | lwgeom | 0.2-14 |
M3C | 1.26.0 | m5 | 0.1.1 |
MAAPER | 1.1.1 | maat | 1.1.0 |
madrat | 3.6.4 | maestro | 0.3.0 |
maftools | 2.20.0 | magclass | 6.13.2 |
magic | 1.6-1 | magick | 2.8.5 |
magrittr | 2.0.3 | maGUI | 4.0 |
mailR | 0.8 | makeit | 1.0.1 |
makepipe | 0.2.1 | makeProject | 1.0 |
malariaAtlas | 1.6.3 | MAMS | 3.0.0 |
manhattanly | 0.3.0 | ManifoldOptim | 1.0.1 |
manipulate | 1.0.1 | manipulateWidget | 0.11.1 |
MaOEA | 0.6.2 | Map2NCBI | 1.4 |
MAPA | 2.0.7 | mapdata | 2.3.1 |
mapdeck | 0.3.5 | mapedit | 0.6.0 |
mapiso | 0.3.0 | maplegend | 0.1.0 |
mapme.biodiversity | 0.9.3 | mapmisc | 2.1.0 |
mapproj | 1.2.11 | maps | 3.4.2 |
mapsapi | 0.5.4 | mapsf | 0.12.0 |
mapSpain | 0.9.2 | maptiles | 0.8.0 |
maptpx | 1.9-7 | maptree | 1.4-8 |
mapview | 2.11.2 | mAr | 1.2-0 |
mar1s | 2.1.1 | marcher | 0.0-2 |
marginaleffects | 0.23.0 | margins | 0.3.28 |
markdown | 1.13 | markerpen | 0.1.1 |
markophylo | 1.0.9 | markovchain | 0.9.5 |
MarkowitzR | 1.0.3 | marmap | 1.0.10 |
marqLevAlg | 2.0.8 | MARSS | 3.11.9 |
MassSpecWavelet | 1.70.0 | Matching | 4.10-15 |
matchingMarkets | 1.0-4 | matchingR | 1.3.3 |
MatchIt | 4.5.5 | matchmaker | 0.1.1 |
MatchThem | 1.2.1 | mathjaxr | 1.6-0 |
mathpix | 0.6.0 | matlab | 1.0.4.1 |
matlabr | 1.5.2 | matrixcalc | 1.0-6 |
MatrixExtra | 0.1.15 | MatrixGenerics | 1.16.0 |
MatrixModels | 0.5-3 | matrixset | 0.3.0 |
matrixStats | 1.4.1 | matrixTests | 0.2.3 |
mauricer | 2.5.4 | maxLik | 1.5-2.1 |
MaxPro | 4.1-2 | maxstat | 0.7-25 |
MBA | 0.1-2 | mbbefd | 0.8.12 |
MBBEFDLite | 0.0.4 | MBC | 0.10-6 |
MBESS | 4.9.3 | MBHdesign | 2.3.15 |
mblm | 0.12.1 | mboost | 2.9-11 |
mbsts | 3.0 | mc2d | 0.2.1 |
MCAvariants | 2.6.1 | mcclust | 1.0.1 |
mcga | 3.0.7 | mclust | 6.1.1 |
mcmc | 0.9-8 | MCMC.qpcr | 1.2.4 |
mcmcensemble | 3.1.0 | MCMCglmm | 2.36 |
MCMCpack | 1.7-1 | mcmcse | 1.5-0 |
MCMCvis | 0.16.3 | mco | 1.17 |
Mcomp | 2.8 | mcompanion | 0.6 |
MCPMod | 1.0-10.1 | mdftracks | 0.2.2 |
measurementProtocol | 0.1.1 | meboot | 1.4-9.4 |
medflex | 0.6-10 | Mediana | 1.0.8 |
mediation | 4.5.0 | MEFM | 0.1.1 |
MEIGOR | 1.38.0 | mem | 2.18 |
memapp | 2.16 | memisc | 0.99.31.8.1 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
MESS | 0.5.12 | meta | 8.0-1 |
metaboData | 0.6.3 | MetabolAnalyze | 1.3.1 |
MetabolicSurv | 1.1.2 | MetabolomicsBasics | 1.4.5 |
metacoder | 0.3.7 | metadat | 1.2-0 |
metafor | 4.6-0 | metaheuristicOpt | 2.0.0 |
MetaIntegrator | 2.1.3 | metaMA | 3.1.3 |
metap | 1.11 | metaplot | 0.8.4 |
metaRNASeq | 1.0.7 | metaSEM | 1.5.0 |
metasens | 1.5-2 | meteo | 2.0-3 |
meteoland | 2.2.2 | metR | 0.16.0 |
Metrics | 0.1.4 | metRology | 0.9-28-1 |
MetSizeR | 2.0.0 | mev | 1.17 |
mFilter | 0.1-5 | Mfuzz | 2.64.0 |
mfx | 1.2-2 | mgm | 1.2-14 |
mgsub | 1.7.3 | mhurdle | 1.3-1 |
mi | 1.1 | mi4p | 1.2 |
mice | 3.16.0 | miceadds | 3.17-44 |
micEcon | 0.6-18 | micEconAids | 0.6-20 |
micEconCES | 1.0-2 | micEconIndex | 0.1-8 |
micEconSNQP | 0.6-10 | microbenchmark | 1.5.0 |
micromap | 1.9.10 | Microsoft365R | 2.4.0 |
MicSim | 2.0.1 | midasr | 0.8 |
miic | 2.0.3 | MIIVsem | 0.5.8 |
mime | 0.12 | mind | 1.1.0 |
MinEDfind | 0.1.3 | minerva | 1.5.10 |
minet | 3.62.0 | miniCRAN | 0.3.0 |
minimalRSD | 1.0.0 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-4 | minqa | 1.2.8 |
MINTplates | 1.0.1 | minty | 0.0.1 |
mipfp | 3.2.1 | mirai | 1.3.0 |
MiRNAQCD | 1.1.3 | mirt | 1.42 |
mirtCAT | 1.14 | misc3d | 0.9-1 |
miscTools | 0.6-28 | missForest | 1.5 |
missMDA | 1.19 | mitml | 0.4-5 |
mitools | 2.4 | mix | 1.0-12 |
mixAR | 0.22.8 | MixedPsy | 1.1.0 |
mixexp | 1.2.7.1 | mixl | 1.3.4 |
mixOmics | 6.28.0 | mixsqp | 0.3-54 |
mixtools | 2.0.0 | mize | 0.2.4 |
mknapsack | 0.1.0 | mkssd | 1.2 |
mlapi | 0.1.1 | mlbench | 2.1-5 |
mlbstats | 0.1.0 | MLCIRTwithin | 2.1.1 |
MLDS | 0.5.1 | MLmetrics | 1.1.3 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlogitBMA | 0.1-9 | mlr | 2.19.2 |
mlr3 | 0.21.1 | mlr3learners | 0.8.0 |
mlr3measures | 1.0.0 | mlr3misc | 0.15.1 |
mlr3spatiotempcv | 2.3.1 | mlr3tuning | 1.1.0 |
mlrMBO | 1.1.5.1 | mlVAR | 0.5.2 |
mma | 10.7-1 | mmand | 1.6.3 |
mmrm | 0.3.14 | mnormt | 2.1.1 |
MNP | 3.1-5 | modeest | 2.4.0 |
modeldata | 1.4.0 | modelenv | 0.2.0 |
ModelMap | 3.4.0.4 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.11 | modelSSE | 0.1-3 |
modelsummary | 2.2.0 | modeltime | 1.3.1 |
modeltime.resample | 0.2.3 | modeltools | 0.2-23 |
moderndive | 0.7.0 | MODISTools | 1.1.5 |
modules | 0.13.0 | mokken | 3.1.2 |
mombf | 3.5.4 | moments | 0.14.1 |
momentuHMM | 1.5.5 | mondate | 1.0 |
mongolite | 2.8.1 | mongopipe | 0.1.1 |
monmlp | 1.1.5 | monobin | 0.2.4 |
Morpho | 2.12 | MortalityGaps | 1.0.0 |
MortalityLaws | 2.1.0 | MortalityTables | 2.0.5 |
MortCast | 2.7-0 | mosaic | 1.9.1 |
mosaicCore | 0.9.4.0 | mosaicData | 0.20.4 |
MOSS | 0.2.2 | mosum | 1.2.7 |
motmot | 2.1.3 | mousetrap | 3.2.3 |
move | 4.2.5 | move2 | 0.3.0 |
movecost | 2.1 | moveHMM | 1.9 |
moveWindSpeed | 0.2.4 | movMF | 0.2-8 |
MPDiR | 0.2 | MplusAutomation | 1.1.1 |
mpm | 1.0-23 | mpmi | 0.43.2.1 |
MPSEM | 0.5-1 | mpt | 1.0-0 |
MPTinR | 1.14.1 | MPV | 1.64 |
mratios | 1.4.2 | mrf | 0.1.6 |
mrgsolve | 1.5.2 | mritc | 0.5-3 |
mschart | 0.4.0 | mscstexta4r | 0.1.2 |
mscsweblm4r | 0.1.2 | MSGARCH | 2.51 |
msgps | 1.3.5 | msigdbr | 7.5.1 |
msm | 1.8.1 | msos | 1.2.0 |
MSSQL | 1.0.1 | mstate | 0.3.3 |
MSwM | 1.5 | mtarm | 0.1.2 |
MTS | 1.2.1 | mtsdi | 0.3.5 |
mudfold | 1.1.21 | multcomp | 1.4-26 |
multcompView | 0.1-10 | multDM | 1.1.4 |
multicool | 1.0.1 | MultiGlarmaVarSel | 1.0 |
MultiLCIRT | 2.11 | multilevLCA | 1.5.2 |
MultipleBubbles | 0.2.0 | multiplex | 3.7 |
multipol | 1.0-9 | multitaper | 1.0-17 |
multiway | 1.0-6 | multiwayvcov | 1.2.3 |
multtest | 2.60.0 | MuMIn | 1.48.4 |
munfold | 0.3.5 | munsell | 0.5.1 |
musica | 0.1.3 | mutoss | 0.1-13 |
mutSignatures | 2.1.1 | mvgam | 1.1.3 |
mvglmmRank | 1.2-4 | mvLSW | 1.2.5 |
mvLSWimpute | 0.1.1 | mvMORPH | 1.2.1 |
mvnfast | 0.2.8 | mvnormtest | 0.1-9-3 |
mvQuad | 1.0-8 | mvtnorm | 1.3-1 |
mvtsplot | 1.0-5 | mxkssd | 1.2 |
myClim | 1.3.0 | n1qn1 | 6.0.1-12 |
N2R | 1.0.3 | nabor | 0.5.0 |
NACHO | 2.0.6 | NADA | 1.6-1.1 |
NAEPirtparams | 1.0.0 | NAEPprimer | 1.0.1 |
nanoarrow | 0.6.0 | nanonext | 1.3.0 |
nanostringr | 0.4.2 | nanotime | 0.3.10 |
nardl | 0.1.6 | nasapower | 4.2.1 |
natserv | 1.0.0 | naturalsort | 0.1.3 |
NBAloveR | 0.1.3.3 | nbapalettes | 0.1.0 |
NbClust | 3.0.1 | NBPSeq | 0.3.1 |
nbTransmission | 1.1.4 | ncappc | 0.3.0 |
ncar | 0.5.0 | ncbit | 2013.03.29.1 |
ncdf4 | 1.23 | ncdfgeom | 1.1.6 |
ncf | 1.3-2 | ncmeta | 0.4.0 |
NCmisc | 1.2.0 | ncvreg | 3.14.3 |
ndjson | 0.9.0 | neighbours | 0.1-3 |
neldermead | 1.0-12 | neo2R | 2.4.2 |
net4pg | 0.1.1 | netgsa | 4.0.5 |
NetIndices | 1.4.4.1 | nets | 0.9.1 |
NetSimR | 0.1.5 | network | 1.18.2 |
networkABC | 0.8-1 | NetworkChange | 0.8 |
NetworkComparisonTest | 2.2.2 | networkD3 | 0.4 |
networkDynamic | 0.11.4 | networkLite | 1.0.5 |
NetworkRiskMeasures | 0.1.4 | NetworkToolbox | 1.4.2 |
networktools | 1.5.2 | networktree | 1.0.1 |
neuralnet | 1.44.2 | NeuralNetTools | 1.5.3 |
neurobase | 1.32.4 | neuroim | 0.0.6 |
neuRosim | 0.2-14 | NewmanOmics | 1.0.11 |
nFactors | 2.4.1.1 | NFCP | 1.2.1 |
nfl4th | 1.0.4 | nflfastR | 4.6.1 |
nflplotR | 1.4.0 | nflreadr | 1.4.1 |
nflseedR | 1.2.0 | NFLSimulatoR | 0.4.0 |
nflverse | 1.0.3 | ngspatial | 1.2-2 |
nhanesA | 1.1 | nhdplusTools | 1.2.1 |
nhdR | 0.6.1 | nhlapi | 0.1.4 |
NHLData | 1.0.0 | NHPoisson | 3.3 |
nifti.io | 1.0.0 | nilde | 1.1-7 |
nimble | 1.2.1 | NISTnls | 0.9-13 |
nixtlar | 0.6.2 | NlcOptim | 0.6 |
nleqslv | 3.3.5 | NlinTS | 1.4.5 |
nlmeVPC | 2.6 | nlmixr2 | 3.0.1 |
nlmixr2data | 2.0.9 | nlmixr2est | 3.0.1 |
nlmixr2extra | 3.0.1 | nlmixr2plot | 3.0.0 |
nlmixr2rpt | 0.2.0 | nloptr | 2.1.1 |
NLP | 0.3-0 | nls2 | 0.3-4 |
nlsem | 0.8-1 | nlsic | 1.0.4 |
nlsr | 2023.8.31 | nlstools | 2.1-0 |
nlt | 2.2-1 | nlts | 1.0-2 |
nLTT | 1.4.9 | NMF | 0.28 |
NMOF | 2.10-0 | nmw | 0.1.5 |
nnfor | 0.9.9 | nnls | 1.6 |
NNS | 10.9.3 | noaastormevents | 0.2.0 |
nodbi | 0.10.7 | nomisr | 0.4.7 |
nomnoml | 0.3.0 | NonCompart | 0.7.0 |
nonlinearTseries | 0.3.1 | nonmem2R | 0.2.5 |
nonmem2rx | 0.1.5 | nonmemica | 1.0.11 |
nonneg.cg | 0.1.6-1 | nonnest2 | 0.5-8 |
NonProbEst | 0.2.4 | nonprobsvy | 0.1.0 |
nor1mix | 1.3-3 | norm | 1.0-11.1 |
normalp | 0.7.2.1 | nortest | 1.0-4 |
nosoi | 1.1.2 | notifyme | 0.3.0 |
np | 0.60-17 | npi | 0.2.0 |
nppbib | 1.2-0 | NPRED | 1.1.0 |
nsarfima | 0.2.0.0 | nse | 1.21 |
nsga2R | 1.1 | nspmix | 1.5-0 |
nsprcomp | 0.5.1-2 | nsRFA | 0.7-17 |
NTS | 1.1.3 | numberize | 1.0.1 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
NVAR | 0.1.0 | nvmix | 0.1-1 |
o2geosocial | 1.1.3 | o2plsda | 0.0.25 |
oai | 0.4.0 | OAIHarvester | 0.3-4 |
obAnalytics | 0.1.1 | objectProperties | 0.6.8 |
objectSignals | 0.10.3 | occ | 1.2 |
oce | 1.8-3 | OCNet | 1.2.2 |
octopus | 0.4.2 | od | 0.5.1 |
odbc | 1.5.0 | odds.converter | 1.4.8 |
oddsapiR | 0.0.3 | odin | 1.2.6 |
odr | 1.4.4 | OECD | 0.2.5 |
oeli | 0.7.0 | officer | 0.6.7 |
ohoegdm | 0.1.0 | OmicNavigator | 1.13.13 |
omicwas | 0.8.0 | ompr | 1.0.4 |
omu | 1.1.2 | onbrand | 1.0.6 |
oncoPredict | 1.2 | onlineforecast | 1.0.2 |
onls | 0.1-2 | ontologyIndex | 2.12 |
oompaBase | 3.2.9 | oompaData | 3.1.4 |
OOR | 0.1.4 | opdisDownsampling | 1.0.1 |
OPDOE | 1.0-10 | openair | 2.18-2 |
opencage | 0.2.2 | opencpu | 2.2.14 |
opendotaR | 0.1.4 | openEBGM | 0.9.1 |
openintro | 2.5.0 | OpenML | 1.12 |
OpenMx | 2.21.13 | openNLP | 0.2-7 |
openNLPdata | 1.5.3-5 | openssl | 2.2.2 |
OpenStreetMap | 0.4.0 | openxlsx | 4.2.7.1 |
opera | 1.2.0 | operator.tools | 1.6.3 |
operators | 0.1-8 | optBiomarker | 1.0-28 |
OptCirClust | 0.0.4 | optextras | 2019-12.4 |
OptGS | 1.2 | OptHedging | 1.0 |
OptimalDesign | 1.0.1 | OptimaRegion | 1.2 |
optimbase | 1.0-10 | optimizeR | 1.1.1 |
optimParallel | 1.0-2 | optimsimplex | 1.0-8 |
optimx | 2023-10.21 | OptionPricing | 0.1.2 |
optiscale | 1.2.3 | optmatch | 0.10.8 |
orderly | 1.4.3 | ordinal | 2023.12-4.1 |
ore | 1.7.4.1 | org.Hs.eg.db | 3.19.1 |
ORIClust | 1.0-2 | oro.dicom | 0.5.3 |
oro.nifti | 0.11.4 | oro.pet | 0.2.7 |
OrthoPanels | 1.2-4 | orthopolynom | 1.0-6.1 |
osd | 0.1 | osDesign | 1.8 |
osmapiR | 0.2.1 | osmdata | 0.2.5 |
osmextract | 0.5.1 | osqp | 0.6.3.3 |
osrm | 4.2.0 | otsfeatures | 1.0.0 |
ouch | 2.20 | outbreaker2 | 1.1.3 |
outbreaks | 1.9.0 | OUwie | 2.10 |
overlapping | 2.1 | ows4R | 0.4 |
pa | 1.2-4 | packcircles | 0.3.6 |
packMBPLSDA | 0.9.0 | packrat | 0.9.2 |
padr | 0.6.2 | pagoda2 | 1.0.12 |
PairedData | 1.1.1 | pairwise | 0.6.1-0 |
paleobuddy | 1.0.0 | paleotree | 3.4.7 |
paleoTS | 0.6.2 | paletteer | 1.6.0 |
palmerpenguins | 0.1.1 | pampe | 1.1.2 |
pan | 1.9 | pander | 0.6.5 |
panelaggregation | 0.1.1 | panelvar | 0.5.5 |
papeR | 1.0-5 | paradox | 1.0.1 |
ParallelLogger | 3.3.1 | parallelly | 1.38.0 |
parallelMap | 1.5.1 | parameters | 0.23.0 |
ParamHelpers | 1.14.1 | params | 0.7.3 |
paran | 1.5.3 | Pareto | 2.4.5 |
parma | 1.7 | parmigene | 1.1.1 |
parsedate | 1.3.1 | parsnip | 1.2.1 |
partitions | 1.10-7 | partsm | 1.1-3 |
parttime | 0.1.2 | party | 1.3-17 |
partykit | 1.2-22 | pastecs | 1.4.2 |
patchwork | 1.3.0 | pathfindR | 2.4.1 |
pathfindR.data | 2.1.0 | pathview | 1.44.0 |
pathwayTMB | 0.1.3 | Patterns | 1.5 |
paws | 0.7.0 | paws.analytics | 0.7.0 |
paws.application.integration | 0.7.0 | paws.common | 0.7.7 |
paws.compute | 0.7.0 | paws.cost.management | 0.7.0 |
paws.customer.engagement | 0.7.0 | paws.database | 0.7.0 |
paws.developer.tools | 0.7.0 | paws.end.user.computing | 0.7.0 |
paws.machine.learning | 0.7.0 | paws.management | 0.7.0 |
paws.networking | 0.7.0 | paws.security.identity | 0.7.0 |
paws.storage | 0.7.0 | pbapply | 1.7-2 |
PBD | 1.4 | pbdZMQ | 0.3-13 |
PBIBD | 1.3 | pbivnorm | 0.6.0 |
pbkrtest | 0.5.3 | pbm | 1.2.1 |
pbmcapply | 1.5.1 | pbo | 1.3.5 |
pbs | 1.1 | PBSddesolve | 1.13.4 |
PBSmapping | 2.74.1 | PBSmodelling | 2.69.3 |
pbv | 0.5-47 | pcaMethods | 1.96.0 |
pcaPP | 2.0-5 | pcdpca | 0.4 |
pcFactorStan | 1.5.4 | pcIRT | 0.2.4 |
PCMRS | 0.1-4 | pco | 1.0.1 |
PCPS | 1.0.7 | pcse | 1.9.1.1 |
pcts | 0.15.7 | pdc | 1.0.3 |
pder | 1.0-2 | pdfCluster | 1.0-4 |
pdfetch | 0.3.2 | pdftables | 0.1 |
pdftools | 3.4.1 | pdist | 1.2.1 |
pdp | 0.8.2 | pdR | 1.9.3 |
pdynmc | 0.9.11 | peacots | 1.3.2 |
PeakError | 2023.9.4 | PeakSegDisk | 2024.10.1 |
PeakSegJoint | 2024.10.1 | PeakSegOptimal | 2024.10.1 |
PearsonDS | 1.3.1 | pedigree | 1.4.2 |
PeerPerformance | 2.2.5 | penalized | 0.9-52 |
penaltyLearning | 2024.9.3 | penppml | 0.2.3 |
Peptides | 2.4.6 | perARMA | 1.7 |
performance | 0.12.4 | PerformanceAnalytics | 2.0.4 |
permPATH | 1.3 | permute | 0.9-7 |
pglm | 0.2-3 | PGM2 | 1.0-1 |
ph2bayes | 0.0.2 | ph2bye | 0.1.4 |
phangorn | 2.12.1 | pharmaRTF | 0.1.4 |
pharmr | 1.0.1 | phateR | 1.0.7 |
pheatmap | 1.0.12 | philentropy | 0.8.0 |
phonics | 1.3.10 | phonTools | 0.2-2.2 |
phyclust | 0.1-34 | phyext2 | 0.0.4 |
phylobase | 0.8.12 | phylocanvas | 0.1.3 |
phyloclim | 0.9.5 | PHYLOGR | 1.0.11 |
phylogram | 2.1.0 | phylolm | 2.6.5 |
phyloregion | 1.0.8 | phyloseq | 1.48.0 |
phylosignal | 1.3.1 | phylotate | 1.3 |
phylotools | 0.2.2 | phyloTop | 2.1.2 |
phyreg | 1.0.2 | phytools | 2.3-0 |
piar | 0.8.1 | picante | 1.8.2 |
picasso | 1.3.1 | pid | 0.50 |
piecewiseSEM | 2.3.0.1 | piggyback | 0.1.5 |
pillar | 1.9.0 | pinfsc50 | 1.3.0 |
pinnacle.data | 0.1.4 | pins | 1.4.0 |
PINSPlus | 2.0.7 | pipe.design | 0.5.1 |
pipeR | 0.6.1.3 | piqp | 0.2.2 |
piratings | 0.1.9 | pixmap | 0.4-13 |
PK | 1.3-6 | PKconverter | 1.5 |
pkdata | 0.1.0 | pkgbuild | 1.4.5 |
pkgcache | 2.2.3 | pkgconfig | 2.0.3 |
pkgdepends | 0.8.0 | pkgdown | 2.1.1 |
pkgfilecache | 0.1.5 | pkgload | 1.4.0 |
pkgsearch | 3.1.3 | PKNCA | 0.11.0 |
PKPDsim | 1.4.0 | pkr | 0.1.3 |
pks | 0.6-1 | PlackettLuce | 0.4.3 |
PlayerRatings | 1.1-0 | plgp | 1.1-12 |
plink | 1.5-1 | plm | 2.6-4 |
PLMIX | 2.1.1 | PLmixed | 0.1.7 |
plogr | 0.2.0 | plot3D | 1.4.1 |
plot3Drgl | 1.0.4 | plotdap | 1.0.3 |
plotly | 4.10.4 | plotMCMC | 2.0.1 |
plotmo | 3.6.4 | plotrix | 3.8-4 |
plotROC | 2.3.1 | plotSEMM | 2.4 |
PlotTools | 0.3.1 | plotwidgets | 0.5.1 |
pls | 2.8-5 | plumber | 1.2.2 |
plyr | 1.8.9 | PMA | 1.2-4 |
pmc | 1.0.6 | pmr | 1.2.5.1 |
pmxcode | 0.1.4 | pmxpartab | 0.5.0 |
pmxTools | 1.3 | png | 0.1-8 |
POD | 1.2.0 | PoiClaClu | 1.0.2.1 |
pointblank | 0.12.2 | poisbinom | 1.0.1 |
PoissonBinomial | 1.2.7 | poLCA | 1.6.0.1 |
polspline | 1.1.25 | polyclip | 1.10-7 |
polycor | 0.8-1 | polyCub | 0.9.1 |
polylabelr | 0.2.0 | polynom | 1.4-1 |
PolynomF | 2.0-8 | polyreg | 0.8.0 |
pomp | 5.11 | pool | 1.0.4 |
poorman | 0.2.7 | PopED | 0.7.0 |
popEpi | 0.4.12 | popPCR | 0.1.1.1 |
portes | 6.0 | PortfolioOptim | 1.1.1 |
PortRisk | 1.1.0 | posologyr | 1.2.7 |
PostcodesioR | 0.3.1 | posterior | 1.6.0 |
postlightmercury | 1.2 | powdist | 0.1.4 |
powerbydesign | 1.0.5 | powerGWASinteraction | 1.1.3 |
PowerSDI | 1.0.0 | powerSurvEpi | 0.1.3 |
PowerTOST | 1.5-6 | PowerUpR | 1.1.0 |
PP | 0.6.3-11 | ppcor | 1.1 |
PPRL | 0.3.8 | pps | 1.0 |
PQLseq | 1.2.1 | prabclus | 2.3-4 |
pracma | 2.4.4 | PracTools | 1.5 |
praise | 1.0.0 | pRecipe | 3.0.1-3 |
PreciseSums | 0.7 | PredCRG | 1.0.2 |
prediction | 0.3.18 | predicts | 0.1-16 |
prefmod | 0.8-36 | PReMiuM | 3.2.13 |
preprocessCore | 1.66.0 | prereg | 0.6.0 |
PresenceAbsence | 1.1.11 | presize | 0.3.7 |
prettydoc | 0.4.1 | prettyGraphs | 2.1.6 |
prettymapr | 0.2.5 | prettyunits | 1.2.0 |
prevalence | 0.4.1 | prevR | 5.0.0 |
princurve | 2.1.6 | prioGene | 1.0.1 |
prioritylasso | 0.3.1 | prism | 0.2.1 |
prismatic | 1.1.2 | ProbitSpatial | 1.1 |
pROC | 1.18.5 | proceduralnames | 0.2.2 |
processx | 3.8.4 | prodigenr | 0.6.2 |
prodlim | 2024.06.25 | ProfessR | 2.4-3 |
profileModel | 0.6.1 | profileR | 0.3-5 |
profoc | 1.3.3 | profvis | 0.4.0 |
progress | 1.2.3 | progressr | 0.15.0 |
PROJ | 0.5.0 | proj4 | 1.0-14 |
ProjectionBasedClustering | 1.2.2 | projects | 2.1.3 |
ProjectTemplate | 0.11.0 | promises | 1.3.0 |
prophet | 1.0 | PROsetta | 0.4.1 |
proto | 1.0.0 | protoclust | 1.6.4 |
protolite | 2.3.1 | protr | 1.7-4 |
protti | 0.9.1 | protViz | 0.7.9 |
proxy | 0.4-27 | proxyC | 0.4.1 |
prozor | 0.3.1 | PRROC | 1.3.1 |
pryr | 0.1.6 | ps | 1.8.1 |
PSCBS | 0.67.0 | pscl | 1.5.9 |
psd | 2.1.1 | PSF | 0.5 |
psidR | 2.2 | pso | 1.0.4 |
psoptim | 1.0 | pspline | 1.0-20 |
psqn | 0.3.2 | PSSMCOOL | 0.2.4 |
psy | 1.2 | psych | 2.4.6.26 |
psychomix | 1.1-9 | psychonetrics | 0.13 |
psychotools | 0.7-4 | psychotree | 0.16-1 |
psychTools | 2.4.3 | psyphy | 0.3 |
PTAk | 2.0.0 | ptm | 1.0.1 |
PTSR | 0.1.2 | ptw | 1.9-16 |
PTXQC | 1.1.1 | pubmed.mineR | 1.0.21 |
purrr | 1.0.2 | pushoverr | 1.1.0 |
pvca | 1.44.0 | pvclust | 2.2-0 |
pwr | 1.3-0 | PwrGSD | 2.3.8 |
pwrRasch | 0.1-2 | pwt | 7.1-1 |
pwt8 | 8.1-1 | pwt9 | 9.1-0 |
pxweb | 0.17.0 | PxWebApiData | 0.9.0 |
qap | 0.1-2 | qcv | 1.0 |
qdap | 2.4.6 | qdapDictionaries | 1.0.7 |
qdapRegex | 0.7.8 | qdapTools | 1.3.7 |
qgam | 1.3.4 | qgisprocess | 0.4.1 |
qgraph | 1.9.8 | qicharts2 | 0.7.5 |
qlcal | 0.0.13 | qmap | 1.0-4 |
qMRI | 1.2.7.6 | qpdf | 1.3.4 |
qpgraph | 2.38.0 | qpmadr | 1.1.0-0 |
qpNCA | 1.1.6 | qqconf | 1.3.2 |
qqplotr | 0.0.6 | qrmdata | 2024-03-04-2 |
qrmtools | 0.0-17 | qrng | 0.0-10 |
qs | 0.27.2 | qtl | 1.70 |
quadprog | 1.5-8 | quadprogXT | 0.0.5 |
qualmap | 0.2.2 | qualtRics | 3.2.1 |
Quandl | 2.11.0 | quanteda | 4.1.0 |
quantification | 0.2.0 | quantmod | 0.4.26 |
quantreg | 5.99 | quantspec | 1.2-4 |
Quartet | 1.2.7 | questionr | 0.7.8 |
QuickJSR | 1.4.0 | quickpsy | 0.1.5.1 |
qvalue | 2.36.0 | qvcalc | 1.0.3 |
R.cache | 0.16.0 | R.devices | 2.17.2 |
R.filesets | 2.15.1 | R.huge | 0.10.1 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.26.0 | R.rsp | 0.46.0 |
R.utils | 2.12.3 | R0 | 1.3-1 |
R2BEAT | 1.0.5 | r2d3 | 0.2.6 |
R2HTML | 2.3.4 | R2jags | 0.8-9 |
R2OpenBUGS | 3.2-3.2.1 | r2rtf | 1.1.1 |
R2WinBUGS | 2.1-22.1 | R4CouchDB | 0.7.5 |
R6 | 2.5.1 | R6P | 0.3.0 |
radarchart | 0.3.1 | radiant | 1.6.6 |
radiant.basics | 1.6.6 | radiant.data | 1.6.7 |
radiant.design | 1.6.6 | radiant.model | 1.6.7 |
radiant.multivariate | 1.6.6 | RAdwords | 0.1.18 |
ragg | 1.3.3 | ragtop | 1.1.1 |
rainbow | 3.8 | rakeR | 0.2.1 |
rAmCharts | 2.1.15 | RAMClustR | 1.3.1 |
ramcmc | 0.1.2 | ramps | 0.6.18 |
randomcoloR | 1.1.0.1 | randomForest | 4.7-1.2 |
randomForestSRC | 3.3.1 | randomizeR | 3.0.2 |
randomizr | 1.0.0 | randomLCA | 1.1-4 |
randtoolbox | 2.0.5 | rang | 0.3.0 |
ranger | 0.16.0 | rankdist | 1.1.4 |
RANN | 2.6.2 | rapiclient | 0.1.8 |
rapidjsonr | 1.2.0 | RApiSerialize | 0.1.4 |
rappdirs | 0.3.3 | rapport | 1.1 |
rapportools | 1.1 | Raquifer | 0.1.0 |
rARPACK | 0.11-0 | RaschSampler | 0.8-10 |
raster | 3.6-30 | rasterImage | 0.4.0 |
rasterVis | 0.51.6 | ratelimitr | 0.4.1 |
RATest | 0.1.10 | RavenR | 2.2.2 |
raw | 0.1.8 | rBayesianOptimization | 1.2.1 |
Rbeast | 1.0.1 | rbedrock | 0.3.2 |
rbenchmark | 1.0.0 | RBGL | 1.80.0 |
rBiasCorrection | 0.3.4 | rbibutils | 2.3 |
Rblpapi | 0.3.15 | rbmi | 1.3.0 |
RCarb | 0.1.6 | rcartocolor | 2.1.1 |
Rcatch22 | 0.2.3 | rcdd | 1.6 |
RCEIM | 0.3 | Rchoice | 0.3-6 |
RCircos | 1.2.2 | rclipboard | 0.2.1 |
rCMA | 1.1.1 | rcmdcheck | 1.4.0 |
Rcmdr | 2.9-5 | RcmdrMisc | 2.9-1 |
RcmdrPlugin.depthTools | 1.4 | RcmdrPlugin.DoE | 0.12-6 |
RcmdrPlugin.temis | 0.7.10 | RColorBrewer | 1.1-3 |
rcompendium | 1.3 | Rcpp | 1.0.13 |
RcppAnnoy | 0.0.22 | RcppArmadillo | 14.0.2-1 |
RcppCCTZ | 0.2.12 | RcppClock | 1.1 |
RcppDate | 0.0.4 | RcppDE | 0.1.7 |
RcppDist | 0.1.1 | RcppEigen | 0.3.4.0.2 |
RcppGSL | 0.3.13 | RcppHNSW | 0.6.0 |
RcppHungarian | 0.3 | RcppNumerical | 0.6-0 |
RcppParallel | 5.1.9 | RcppProgress | 0.4.2 |
RcppQuantuccia | 0.1.2 | RcppRedis | 0.2.4 |
RcppRoll | 0.3.1 | RcppSimdJson | 0.1.12 |
RcppSpdlog | 0.0.18 | RcppThread | 2.1.7 |
rcpptimer | 1.2.1 | RcppTN | 0.2-2 |
RcppTOML | 0.2.2 | RcppZiggurat | 0.1.6 |
Rcrawler | 0.1.9-1 | rcrossref | 1.2.0 |
Rcsdp | 0.1.57.5 | RCurl | 1.98-1.16 |
RCy3 | 2.24.0 | RCzechia | 1.12.2 |
rdatacite | 0.5.4 | rdbnomics | 0.6.4 |
rdd | 0.57 | rddensity | 2.6 |
rdflib | 0.2.9 | rdhs | 0.8.1 |
rdlocrand | 1.0 | rdmulti | 1.1 |
RDota2 | 0.1.6 | Rdpack | 2.6.1 |
rdpower | 2.2 | rdrobust | 2.2 |
Rdsdp | 1.0.5.2.1 | rdwd | 1.8.0 |
re2 | 0.1.3 | reactable | 0.4.4 |
reactR | 0.6.1 | read.gb | 2.2 |
readabs | 0.4.16 | reader | 1.0.6 |
readJDX | 0.6.4 | readODS | 2.3.0 |
readr | 2.1.5 | readsdmx | 0.3.1 |
readstata13 | 0.10.1 | readxl | 1.4.3 |
reasonabletools | 0.1 | REBayes | 2.56 |
recipes | 1.1.0 | reclin2 | 0.5.0 |
recmap | 1.0.17 | RecordLinkage | 0.4-12.4 |
redcapAPI | 2.10.0 | REDCapR | 1.3.0 |
REDCapTidieR | 1.2.0 | Rediscover | 0.3.2 |
redland | 1.0.17-18 | redux | 1.1.4 |
RefManageR | 1.4.0 | reformulas | 0.3.0 |
refugees | 2024.6.0 | regions | 0.1.8 |
registry | 0.5-1 | regnet | 1.0.1 |
regress | 1.3-21 | RegSDC | 0.7.0 |
regsem | 1.9.5 | regspec | 2.7 |
regtools | 1.7.0 | ReIns | 1.0.14 |
reinsureR | 0.1.0 | relations | 0.6-13 |
reldist | 1.7-2 | relimp | 1.0-5 |
rematch | 2.0.0 | rematch2 | 2.1.2 |
remotes | 2.5.0 | REndo | 2.4.10 |
rentrez | 1.2.3 | renv | 1.0.11 |
replicateBE | 1.1.3 | repmis | 0.5 |
repo | 2.1.5 | RepoGenerator | 0.0.1 |
reportfactory | 0.4.0 | reportr | 1.3.0 |
reporttools | 1.1.3 | repr | 1.1.7 |
representr | 0.1.5 | represtools | 0.1.3 |
reprex | 2.1.1 | reproducible | 2.1.0 |
reproj | 0.7.0 | reqres | 0.2.5 |
REQS | 0.8-13 | request | 0.1.0 |
Require | 1.0.1 | rerddap | 1.1.0 |
rerddapXtracto | 1.2.1 | resampledata | 0.3.1 |
resde | 1.1 | reservoir | 1.1.5 |
reshape | 0.8.9 | reshape2 | 1.4.4 |
restfulr | 0.0.15 | restimizeapi | 1.0.0 |
reticulate | 1.39.0 | retrosheet | 1.1.6 |
retry | 0.1.1 | revdbayes | 1.5.5 |
RevGadgets | 1.2.1 | Revticulate | 1.0.0 |
rex | 1.2.1 | Rexperigen | 0.2.1 |
Rfacebook | 0.6.15 | Rfast | 2.1.0 |
Rfast2 | 0.1.5.2 | rfigshare | 0.3.8 |
Rfit | 0.27.0 | rflexscan | 1.1.0 |
rgbif | 3.8.1 | RGBM | 1.0-11 |
rgee | 1.1.7 | rgen | 0.0.1 |
RGENERATE | 1.3.7 | RGENERATEPREC | 1.2.9 |
rgenoud | 5.9-0.11 | rgeoda | 0.0.10-4 |
rgl | 1.3.12 | Rglpk | 0.6-5.1 |
RgoogleMaps | 1.5.1 | RGraphics | 3.0-2 |
Rgraphviz | 2.48.0 | rgrass | 0.4-4 |
RGreenplum | 0.1.2 | rgugik | 0.4.1 |
RH2 | 0.2.4 | rhandsontable | 0.3.8 |
RHclust | 2.0.0 | rhdf5 | 2.48.0 |
rhdf5filters | 1.16.0 | Rhdf5lib | 1.26.0 |
RHMS | 1.7 | rhosa | 0.3.0 |
RhpcBLASctl | 0.23-42 | Rhtslib | 3.0.0 |
rhub | 2.0.0 | rib | 0.23.1 |
riceidconverter | 1.1.1 | RIdeogram | 0.2.2 |
ridge | 3.3 | riingo | 0.3.1 |
Rilostat | 2.2.0 | ring | 1.0.6 |
RInside | 0.2.18 | rintrojs | 0.3.4 |
rio | 1.2.3 | Rirt | 0.0.2 |
Risk | 1.0 | riskCommunicator | 1.0.1 |
riskParityPortfolio | 0.2.2 | RiskPortfolios | 2.1.7 |
riskSimul | 0.1.2 | ritis | 1.0.0 |
riverdist | 0.17.0 | rivernet | 1.2.3 |
rivnet | 0.5.0 | rjags | 4-16 |
rJava | 1.0-11 | RJDBC | 0.2-10 |
RJDemetra | 0.2.7 | rje | 1.12.1 |
rjson | 0.2.23 | RJSONIO | 1.3-1.9 |
rjstat | 0.4.3 | RKEA | 0.0-6 |
RKEAjars | 5.0-4 | RKelly | 1.0 |
rlang | 1.1.4 | rlas | 1.8.0 |
rle | 0.9.2 | rlecuyer | 0.3-8 |
rlemon | 0.2.1 | Rlgt | 0.2-2 |
Rlibeemd | 1.4.3 | Rlinkedin | 0.2 |
rlist | 0.4.6.2 | rLTP | 0.1.4 |
RLumShiny | 0.2.3 | RM2006 | 0.1.1 |
Rmalschains | 0.2-10 | rmapshaper | 0.5.0 |
RMariaDB | 1.3.2 | rmarkdown | 2.28 |
rmatio | 0.19.0 | RMAWGEN | 1.3.7 |
rmcfs | 1.3.6 | rmdpartials | 0.5.8 |
rmeta | 3.0 | rmgarch | 1.3-9 |
rminizinc | 0.0.8 | Rmisc | 1.5.1 |
rmoo | 0.2.0 | Rmosek | 1.3.5 |
Rmpfr | 0.9-5 | rms | 6.8-2 |
RMTstat | 0.3.1 | rmutil | 1.1.10 |
RMySQL | 0.10.29 | rmzqc | 0.5.4 |
Rnanoflann | 0.0.3 | RNAseqNet | 0.1.5 |
rnaturalearth | 1.0.1 | rnaturalearthdata | 1.0.0 |
RNCEP | 1.0.10 | rncl | 0.8.7 |
RND | 1.2 | RNentropy | 1.2.3 |
rneos | 0.4-0 | RNetCDF | 2.9-2 |
RNeXML | 2.4.11 | rngtools | 1.5.2 |
rngWELL | 0.10-10 | RNifti | 1.7.0 |
RNiftyReg | 2.8.4 | rnn | 1.9.0 |
rnrfa | 2.1.0.6 | roadoi | 0.7.3 |
ROAuth | 0.9.6 | robfilter | 4.1.5 |
RobKF | 1.0.2 | RoBMA | 3.1.0 |
robotoolbox | 1.3.2 | robotstxt | 0.7.15 |
robsurvey | 0.7 | robustbase | 0.99-4-1 |
RobustRankAggreg | 1.2.1 | rockchalk | 1.8.157 |
rocker | 0.3.1 | ROCR | 1.0-11 |
RODBC | 1.3-23 | rodd | 0.2-1 |
Rogue | 2.1.6 | ROI | 1.0-1 |
ROI.plugin.ecos | 1.0-2 | ROI.plugin.neos | 1.0-2 |
ROI.plugin.qpoases | 1.0-3 | roll | 1.1.7 |
Rook | 1.2 | ROOPSD | 0.3.9 |
rootSolve | 1.8.2.4 | ROpenDota | 0.1.2 |
roperators | 1.3.14 | roptim | 0.1.6 |
rorcid | 0.7.0 | rosetteApi | 1.14.4 |
rosm | 0.3.0 | rotl | 3.1.0 |
routr | 0.4.1 | roxygen2 | 7.3.2 |
rpact | 4.1.0 | RPANDA | 2.3 |
rpanel | 1.1-5.2 | rPanglaoDB | 0.2.1 |
rpart.plot | 3.1.2 | rpf | 1.0.14 |
Rphylopars | 0.3.10 | rpinterest | 0.3.1 |
RPMG | 2.2-7 | rpms | 0.5.1 |
rpostgis | 1.5.1 | RPostgres | 1.4.7 |
RPostgreSQL | 0.7-7 | RPPairwiseDesign | 1.0 |
RPresto | 1.4.6 | rprintf | 0.2.1 |
RprobitB | 1.1.4 | rprojroot | 2.0.4 |
RPushbullet | 0.3.4 | RPyGeo | 1.0.0 |
rqti | 0.3.0 | RQuantLib | 0.4.24 |
rrcov | 1.7-6 | rredlist | 0.7.1 |
rrefine | 2.1.0 | RRPP | 2.0.3 |
RRreg | 0.7.5 | RRTCS | 0.0.4 |
rrum | 0.2.1 | rsae | 0.3 |
RSAGA | 1.4.0 | Rsagacmd | 0.4.3 |
rsample | 1.2.1 | Rsamtools | 2.20.0 |
RSclient | 0.7-10 | rscopus | 0.6.6 |
rsdmx | 0.6-3 | rSEA | 2.1.2 |
RSEIS | 4.2-4 | RSelenium | 1.7.9 |
rsem | 0.5.1 | Rserve | 1.8-13 |
Rsfar | 0.0.1 | RSGHB | 1.2.2 |
rsi | 0.3.1 | rsm | 2.10.5 |
RSmartlyIO | 0.1.3 | rsoi | 0.5.6 |
Rsolnp | 1.16 | rspa | 0.2.8 |
rsparse | 0.5.2 | RSpectra | 0.16-2 |
RSQLite | 2.3.7 | Rssa | 1.1 |
rstac | 1.0.1 | rstan | 2.32.6 |
rstanarm | 2.32.1 | rstantools | 2.4.0 |
rstatix | 0.7.2 | rstiefel | 1.0.1 |
rStrava | 1.3.2 | rstudioapi | 0.17.1 |
rsurface | 1.1.0 | RSurveillance | 0.2.1 |
rsvd | 1.0.5 | rsvg | 2.6.1 |
Rsymphony | 0.1-33 | rTensor | 1.4.8 |
rtf | 0.4-14.1 | RTFA | 0.1.0 |
rticles | 0.27 | RTL | 1.3.5 |
rtoot | 0.3.5 | rtop | 0.6-9 |
rtracklayer | 1.64.0 | RTransferEntropy | 0.2.21 |
rtrim | 2.3.0 | rts | 1.1-14 |
Rtsne | 0.17 | Rttf2pt1 | 1.3.12 |
rtweet | 2.0.0 | rucrdtw | 0.1.6 |
rugarch | 1.5-3 | ruimtehol | 0.3.2 |
ruin | 0.1.1 | rules | 1.0.2 |
ruminate | 0.2.4 | runexp | 0.2.1 |
RUnit | 0.4.33 | runjags | 2.2.2-4 |
runner | 0.4.4 | runstats | 1.1.0 |
Runuran | 0.40 | rust | 1.4.3 |
RVA | 0.0.5 | Rvcg | 0.24 |
rversions | 2.1.2 | rvest | 1.0.4 |
Rwave | 2.6-5 | RWDataPlyr | 0.6.4 |
RweaveExtra | 1.1-0 | rwebstat | 1.1.1 |
RWeka | 0.4-46 | RWekajars | 3.9.3-2 |
rWikiPathways | 1.24.0 | rworldmap | 1.3-8 |
rworldxtra | 1.01 | rwunderground | 0.1.8 |
rxode2 | 3.0.2 | rxode2et | 2.0.13 |
rxode2ll | 2.0.11 | rxode2parse | 2.0.19 |
rxode2random | 2.1.1 | RYandexTranslate | 1.0 |
s2 | 1.1.7 | S4Arrays | 1.4.1 |
S4Vectors | 0.42.1 | sae | 1.3 |
saeRobust | 0.5.0 | saeSim | 0.11.0 |
SAEval | 1.0.0 | safetensors | 0.1.2 |
samadb | 0.3.0 | sampleSelection | 1.2-12 |
samplesize | 0.2-4 | sampling | 2.10 |
SamplingBigData | 1.0.0 | samplingbook | 1.2.4 |
SamplingStrata | 1.5-4 | samplingVarEst | 1.5 |
samr | 3.0 | sandwich | 3.1-1 |
sarima | 0.9.3 | SAScii | 1.0.2 |
sass | 0.4.9 | satellite | 1.0.5 |
sazedR | 2.0.2 | sbgcop | 0.980 |
SBN | 1.0.0 | scagnostics | 0.2-6 |
ScaledMatrix | 1.12.0 | scales | 1.3.0 |
scalreg | 1.0.1 | scam | 1.2-17 |
scaRabee | 1.1-4 | scatterD3 | 1.0.1 |
scattermore | 1.2 | scatterpie | 0.2.4 |
scatterplot3d | 0.3-44 | scBio | 0.1.6 |
sccore | 1.0.5 | scholar | 0.2.4 |
SCI | 1.0-2 | scINSIGHT | 0.1.4 |
scLink | 1.0.1 | scoper | 1.3.0 |
scoringRules | 1.1.3 | scoringutils | 2.0.0 |
SCORPIUS | 1.0.9 | ScottKnott | 1.3-2 |
scs | 3.2.4 | scSorter | 0.0.2 |
scTenifoldKnk | 1.0.1 | scTenifoldNet | 1.3 |
sctransform | 0.4.1 | SDaA | 0.1-5 |
sdcHierarchies | 0.21.0 | sdcMicro | 5.7.8 |
sdcSpatial | 0.5.2 | sdcTable | 0.32.6 |
sde | 2.0.18 | sdmTMB | 0.6.0 |
sdpt3r | 0.3 | sdrt | 1.0.0 |
sealasso | 0.1-3 | seas | 0.6-0 |
season | 0.3.15 | seasonal | 1.10.0 |
seasonalview | 1.0.0 | seastests | 0.15.4 |
secretbase | 1.0.3 | seeker | 1.1.6 |
seer | 1.1.8 | segmented | 2.1-3 |
SelectBoost | 2.2.2 | selectiveInference | 1.2.5 |
selectr | 0.4-2 | seleniumPipes | 0.3.7 |
sem | 3.1-16 | semantic.assets | 1.1.0 |
semds | 0.9-6 | SemiPar | 1.0-4.2 |
semmcmc | 0.0.6 | semPlot | 1.1.6 |
SEMsens | 1.5.5 | semsfa | 1.1 |
semTools | 0.5-6 | semtree | 0.9.20 |
semver | 0.2.0 | sendmailR | 1.4-0 |
SensoMineR | 1.27 | sentencepiece | 0.2.3 |
sentiment.ai | 0.1.1 | sentometrics | 1.0.0 |
separationplot | 1.4 | seqDesign | 1.2 |
seqgendiff | 1.2.4 | seqinr | 4.2-36 |
SeqNet | 1.1.3 | SequenceSpikeSlab | 1.0.1 |
seriation | 1.5.6 | servr | 0.32 |
sessioninfo | 1.2.2 | setartree | 0.2.1 |
setRNG | 2024.2-1 | sets | 1.0-25 |
settings | 0.2.7 | Seurat | 5.1.0 |
SeuratObject | 5.0.2 | sf | 1.0-18 |
sfd | 0.1.0 | sFFLHD | 0.1.2 |
sfheaders | 0.4.4 | sfsmisc | 1.1-19 |
sftime | 0.3.0 | sgeostat | 1.0-27 |
shades | 1.4.0 | shadowtext | 0.1.4 |
shape | 1.4.6.1 | shapefiles | 0.7.2 |
shapes | 1.2.7 | SharpeR | 1.3.0 |
shazam | 1.2.0 | ShiftConvolvePoibin | 1.0.0 |
shiny | 1.9.1 | shiny.semantic | 0.5.1 |
shinyAce | 0.4.3 | shinyalert | 3.1.0 |
shinybrms | 1.8.0 | shinyBS | 0.61.1 |
shinybusy | 0.3.3 | shinycssloaders | 1.1.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.5 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.1 |
shinyjs | 2.1.0 | shinymaterial | 1.2.0 |
shinystan | 2.6.0 | shinythemes | 1.2.0 |
shinyTree | 0.3.1 | shinyWidgets | 0.8.7 |
showimage | 1.0.0 | showtext | 0.9-7 |
showtextdb | 3.0 | shrinkTVP | 3.0.1 |
SIBERG | 2.0.3 | sigminer | 2.3.1 |
sigmoid | 1.4.0 | Signac | 1.14.0 |
SignacX | 2.2.5 | signal | 1.8-1 |
signs | 0.1.2 | sigora | 3.1.1 |
SigTree | 1.10.6 | Sim.DiffProc | 4.9 |
simcdm | 0.1.2 | SimComp | 3.3 |
SimDesign | 2.17.1 | simex | 1.8 |
simfinapi | 1.0.0 | simglm | 0.8.9 |
SimilarityMeasures | 1.4 | SimInf | 9.8.1 |
SIMMS | 1.3.2 | SimMultiCorrData | 0.2.2 |
simpleboot | 1.1-8 | simPop | 2.1.3 |
simputation | 0.2.8 | simrel | 2.1.0 |
SiMRiv | 1.0.7 | simsem | 0.5-16 |
SimSurvey | 0.1.6 | SingleCellExperiment | 1.26.0 |
singleCellHaystack | 1.0.2 | singleRcapture | 0.2.1.2 |
singscore | 1.24.0 | siplab | 1.6 |
sirt | 4.1-15 | sitmo | 2.0.2 |
sits | 1.5.1 | sjlabelled | 1.2.0 |
SkewHyperbolic | 0.4-2 | skimr | 2.1.5 |
skmeans | 0.2-17 | skpr | 1.7.1 |
slackr | 3.3.1 | slam | 0.1-54 |
SlaPMEG | 1.0.1 | SLBDD | 0.0.4 |
slcm | 0.1.0 | sleekts | 1.0.2 |
sleeperapi | 1.1.1 | Sleuth2 | 2.0-7 |
Sleuth3 | 1.0-6 | slfm | 1.0.2 |
SLHD | 2.1-1 | slider | 0.3.2 |
slippymath | 0.3.1 | sm | 2.2-6.0 |
smacof | 2.1-7 | smacofx | 1.6-1 |
smacpod | 2.6.4 | SmallCountRounding | 1.0.8 |
smam | 0.7.2 | SmCCNet | 2.0.3 |
SMDIC | 0.1.6 | smerc | 1.8.4 |
smoof | 1.6.0.3 | smooth | 4.1.0 |
smoothr | 1.0.1 | smoots | 1.1.4 |
smovie | 1.1.6 | SMPracticals | 1.4-3.1 |
sms | 2.3.1 | SMVar | 1.3.4 |
sn | 2.1.1 | sna | 2.8 |
snakecase | 0.11.1 | snow | 0.4-4 |
SnowballC | 0.7.1 | snowfall | 1.84-6.3 |
snpStats | 1.54.0 | snvecR | 3.9.4 |
SOAs | 1.4 | soc.ca | 0.8.0 |
socceR | 0.1.1 | socialmixr | 0.4.0 |
sodium | 1.3.2 | sofa | 0.4.0 |
SoilHyP | 0.1.7 | soilhypfit | 0.1-7 |
soilwater | 1.0.5 | solaR | 0.46 |
solartime | 0.0.2 | solrium | 1.2.0 |
solvebio | 2.15.0 | soma | 1.2.0 |
sonicLength | 1.4.7 | sorvi | 0.8.21 |
SoupX | 1.6.2 | sourcetools | 0.1.7-1 |
sp | 2.1-4 | sp23design | 0.9-1 |
spacefillr | 0.3.3 | spacetime | 1.3-2 |
spam | 2.11-0 | spam64 | 2.10-0 |
spaMM | 4.5.0 | spant | 2.23.0 |
sparklyr | 1.8.6 | sparktex | 0.1 |
sparr | 2.3-15 | SparseArray | 1.4.8 |
sparseDFM | 1.0 | sparseinv | 0.1.3 |
SparseM | 1.84-2 | sparseMatrixStats | 1.16.0 |
sparseMVN | 0.2.2 | sparsevar | 0.1.0 |
spatgraphs | 3.4 | spatialCovariance | 0.6-9 |
SpatialEpi | 1.2.8 | SpatialExperiment | 1.14.0 |
SpatialExtremes | 2.1-0 | SpatialPosition | 2.1.2 |
spatialprobit | 1.0.4 | spatialreg | 1.3-5 |
spatialsample | 0.6.0 | SpatialTools | 1.0.5 |
spatialwidget | 0.2.5 | spatstat | 3.2-1 |
spatstat.data | 3.1-2 | spatstat.explore | 3.3-3 |
spatstat.geom | 3.3-3 | spatstat.linnet | 3.2-2 |
spatstat.model | 3.3-2 | spatstat.random | 3.3-2 |
spatstat.sparse | 3.1-0 | spatstat.univar | 3.0-1 |
spatstat.utils | 3.1-0 | spBayes | 0.4-8 |
spBayesSurv | 1.1.8 | Spbsampling | 1.3.5 |
spd | 2.0-1 | spData | 2.3.3 |
spdep | 1.3-6 | spec | 0.1.9 |
spectral | 2.0 | speff2trial | 1.0.5 |
SPEI | 1.8.1 | spelling | 2.3.1 |
sperrorest | 3.0.5 | sphet | 2.0 |
spiderbar | 0.2.5 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-20 | spINAR | 0.2.0 |
spind | 2.2.1 | splancs | 2.01-45 |
SPLICE | 1.1.2 | splines2 | 0.5.3 |
splitstackshape | 1.4.8 | splm | 1.6-5 |
spls | 2.2-3 | splus2R | 1.3-5 |
spmodel | 0.8.0 | spmoran | 0.3.1 |
SportsTour | 0.1.0 | sportyR | 2.2.2 |
sps | 0.5.4 | spselect | 0.0.1 |
spsur | 1.0.2.5 | spsurvey | 5.5.1 |
spTimer | 3.3.3 | sptotal | 1.0.1 |
sqldf | 0.4-11 | SqlRender | 1.19.0 |
SQRL | 1.0.2 | SQUAREM | 2021.1 |
srvyr | 1.3.0 | ssanv | 1.1 |
SSBtools | 1.5.5 | ssfa | 1.2.2 |
ssgraph | 1.15 | ssize.fdr | 1.3 |
ssizeRNA | 1.3.2 | ssMousetrack | 1.1.6 |
ssmrob | 1.0 | SSN2 | 0.2.1 |
sstvars | 1.0.1 | stable | 1.1.6 |
stabledist | 0.7-2 | stabs | 0.6-4 |
staggered | 1.2.1 | stampr | 0.3.1 |
StanHeaders | 2.32.10 | StanMoMo | 1.2.0 |
stargazer | 5.2.3 | starma | 1.3 |
stars | 0.6-6 | starter | 0.1.16 |
STARTS | 1.3-8 | startupmsg | 0.9.7 |
statcanR | 0.2.6 | statcodelists | 0.9.2 |
statcomp | 0.1.0 | statebins | 1.4.0 |
statespacer | 0.5.0 | stationaRy | 0.5.1 |
statip | 0.2.3 | StatMatch | 1.4.2 |
statmod | 1.5.0 | statnet.common | 4.10.0 |
StatRank | 0.0.6 | statVisual | 1.2.1 |
steadyICA | 1.0 | SteinIV | 0.1-1 |
STFTS | 0.1.0 | stinepack | 1.5 |
stlplus | 0.5.1 | stm | 1.3.7 |
StMoMo | 0.4.1 | stochQN | 0.1.2-1 |
stochvol | 3.2.5 | stockAnalyst | 1.0.1 |
stops | 1.8-2 | stopwords | 2.3 |
storr | 1.2.5 | stplanr | 1.2.2 |
stR | 0.7 | strand | 0.2.0 |
strap | 1.6-1 | stratification | 2.2-7 |
streamDepletr | 0.2.0 | streamR | 0.4.5 |
stringdist | 0.9.12 | stringfish | 0.16.0 |
stringi | 1.8.4 | stringmagic | 1.1.2 |
stringr | 1.5.1 | strucchange | 1.5-4 |
strucchangeRcpp | 1.5-4-1.0.0 | StructuralDecompose | 0.1.1 |
styler | 1.10.3 | subplex | 1.9 |
subscore | 3.3 | sufficientForecasting | 0.1.0 |
sugrrants | 0.2.9 | SummarizedExperiment | 1.34.0 |
SUMMER | 1.4.0 | suntools | 1.0.0 |
supclust | 1.1-1 | SuperLearner | 2.0-29 |
superml | 0.5.7 | superpc | 1.12 |
SuppDists | 1.1-9.8 | support.CEs | 0.7-0 |
surface | 0.6 | SurrogateRegression | 0.6.0.1 |
suRtex | 0.9 | survcomp | 1.54.0 |
surveillance | 1.24.0 | survey | 4.4-2 |
surveybootstrap | 0.0.3 | surveydata | 0.2.7 |
surveyplanning | 4.0 | surveysd | 1.3.1 |
survival666 | 0.5 | survivalROC | 1.0.3.1 |
survminer | 0.5.0 | survMisc | 0.5.6 |
survPresmooth | 1.1-11 | sva | 3.52.0 |
svars | 1.3.11 | svd | 0.5.7 |
svDialogs | 1.1.0 | SVDNF | 0.1.11 |
svglite | 2.1.3 | svGUI | 1.0.1 |
svrep | 0.6.4 | svs | 3.1.1 |
svUnit | 1.0.6 | swagger | 5.17.14.1 |
sweep | 0.2.5 | swephR | 0.3.1 |
SwimmeR | 0.14.2 | swirl | 2.4.5 |
swirlify | 0.5.3 | switchr | 0.14.8 |
SWTools | 1.1.0 | sylly | 0.1-6 |
sym.arma | 1.0 | symengine | 0.2.6 |
symmoments | 1.2.1 | synchronicity | 1.3.10 |
SYNCSA | 1.3.4 | Synth | 1.1-8 |
synthACS | 1.7.1 | synthesis | 1.2.5 |
SynthETIC | 1.1.0 | synthpop | 1.8-0 |
sys | 3.4.3 | sysfonts | 0.8.9 |
systemfit | 1.1-30 | systemfonts | 1.1.0 |
table1 | 1.4.3 | tables | 0.9.31 |
tabnet | 0.6.0 | tabuSearch | 1.1.1 |
TAF | 4.2.0 | tagcloud | 0.6 |
TailRank | 3.2.2 | TAM | 4.2-21 |
tanaka | 0.4.0 | TAQMNGR | 2018.5-1 |
targets | 1.8.0 | tau | 0.0-26 |
taxize | 0.9.100 | tbea | 1.5.0 |
TBRDist | 1.0.2 | tbrf | 0.1.5 |
TCA | 1.2.1 | TCGAbiolinks | 2.32.0 |
TCGAbiolinksGUI.data | 1.24.0 | TCGAretriever | 1.9.1 |
TcGSA | 0.12.10 | tcltk2 | 1.2-11 |
Tcomp | 1.0.1 | tdigest | 0.4.2 |
TeachingDemos | 2.13 | teamcolors | 0.0.4 |
telegram.bot | 3.0.0 | tempdisagg | 1.1.1 |
tensor | 1.5 | tensorA | 0.36.2.1 |
tensorflow | 2.16.0 | tensorMiss | 1.1.1 |
TensorPreAve | 1.1.0 | tensorTS | 1.0.2 |
TEQR | 6.0-0 | tergm | 4.2.1 |
Ternary | 2.3.3 | terra | 1.7-83 |
terrainr | 0.7.5 | TESS | 2.1.2 |
tesseract | 5.2.2 | testcorr | 0.2.0 |
TestDataImputation | 2.3 | TestDesign | 1.7.0 |
tester | 0.2.0 | TestFunctions | 0.2.2 |
testit | 0.13 | TestScorer | 1.7.2 |
testthat | 3.2.1.1 | TexExamRandomizer | 1.2.7 |
texreg | 1.39.4 | text2vec | 0.6.4 |
textcat | 1.0-8 | textir | 2.0-5 |
textplot | 0.2.2 | textrank | 0.3.1 |
textreuse | 0.1.5 | textshaping | 0.4.0 |
textTinyR | 1.1.8 | textutils | 0.4-1 |
tfarima | 0.3.2 | tfautograph | 0.3.2 |
tfdatasets | 2.17.0 | tfhub | 0.8.1 |
tfio | 0.4.1 | TFisher | 0.2.0 |
tframe | 2015.12-1.1 | tfruns | 1.5.3 |
tgp | 2.4-23 | TGS | 1.0.1 |
TH.data | 1.1-2 | theft | 0.6.3 |
thief | 0.3 | ThreeGroups | 0.21 |
threejs | 0.3.3 | ThreeWay | 1.1.3 |
thurstonianIRT | 0.12.5 | tibble | 3.2.1 |
tibbletime | 0.1.8 | tictoc | 1.2.1 |
Tides | 2.1 | tidyBdE | 0.3.7 |
tidycensus | 1.6.7 | tidyestimate | 1.1.1 |
tidygraph | 1.3.1 | tidyhydat | 0.7.0 |
tidyLPA | 1.1.0 | tidymodels | 1.2.0 |
tidyquant | 1.0.9 | tidyr | 1.3.1 |
tidyREDCap | 1.1.2 | tidyRSS | 2.0.7 |
tidyselect | 1.2.1 | tidySEM | 0.2.7 |
tidysynth | 0.2.0 | tidyterra | 0.6.1 |
tidytext | 0.4.2 | tidytree | 0.4.6 |
tidyverse | 2.0.0 | tidyvpc | 1.5.1 |
tiff | 0.1-12 | tigris | 2.1 |
tikzDevice | 0.12.6 | timechange | 0.3.0 |
timeDate | 4041.110 | timeless | 0.2.3 |
timeSeries | 4041.111 | timeseriesdb | 1.0.0-1.1.2 |
timetk | 2.9.0 | timsac | 1.3.8-4 |
tinyarray | 2.4.2 | tinyProject | 0.6.1 |
tinytable | 0.5.0 | tinytex | 0.53 |
tis | 1.39 | tkrplot | 0.0-27 |
tkWidgets | 1.82.0 | TLMoments | 0.7.5.3 |
tm | 0.7-14 | tm.plugin.alceste | 1.1.1 |
tm.plugin.dc | 0.2-10 | tm.plugin.europresse | 1.4 |
tm.plugin.factiva | 1.8 | tm.plugin.lexisnexis | 1.4.1 |
tm.plugin.mail | 0.3-1 | tmap | 3.3-4 |
tmaptools | 3.1-1 | TMB | 1.9.15 |
Tmisc | 1.0.1 | tmod | 0.50.13 |
tmvnsim | 1.0-2 | tmvtnorm | 1.6 |
tnet | 3.0.16 | tokenizers | 0.3.0 |
tokenizers.bpe | 0.1.3 | topicdoc | 0.1.1 |
topicmodels | 0.2-17 | topicmodels.etm | 0.1.0 |
topmodel | 0.7.5 | topologyGSA | 1.5.0 |
toprdata | 1.0.2 | torch | 0.13.0 |
torchaudio | 0.3.1.9000 | torchdatasets | 0.3.1 |
torchvision | 0.6.0 | tpr | 0.3-3 |
tracerer | 2.2.3 | trackdem | 0.7.2 |
trackdf | 0.3.3 | trackdown | 1.1.1 |
trackeR | 1.6.0 | trackeRapp | 1.2 |
TrackReconstruction | 1.3 | tractor.base | 3.4.2 |
traipse | 0.3.0 | trajectories | 0.2-9 |
TrajectoryUtils | 1.12.0 | trajr | 1.5.1 |
transformr | 0.1.5 | transfR | 1.0.11 |
TransPhylo | 1.4.5 | trapezoid | 2.0-2 |
traudem | 1.0.3 | tree | 1.0-43 |
treebalance | 1.2.0 | treebase | 0.1.5 |
TreeBUGS | 1.5.0 | treedater | 0.5.0 |
TreeDist | 2.9.1 | treefit | 1.0.2 |
treeio | 1.28.0 | treemap | 2.4-4 |
TreeSearch | 1.5.1 | TreeSim | 2.4 |
treespace | 1.1.4.3 | TreeTools | 1.12.0 |
trend | 1.1.6 | trendeval | 0.1.0 |
trending | 0.1.0 | TrialSize | 1.4 |
triangle | 1.0 | triebeard | 0.4.1 |
trimcluster | 0.1-5 | trip | 1.10.0 |
tripack | 1.3-9.2 | tripEstimation | 0.0-46 |
TripleR | 1.5.4 | TruncatedNormal | 2.3 |
truncdist | 1.0-2 | truncnorm | 1.0-9 |
truncreg | 0.2-5 | trust | 0.1-8 |
trustOptim | 0.8.7.3 | tryCatchLog | 1.3.1 |
TSA | 1.3.1 | TSANN | 0.1.0 |
tsbox | 0.4.2 | tsBSS | 1.0.0 |
TSCAN | 1.42.0 | TSclust | 1.3.1 |
tscount | 1.4.3 | tsdataleaks | 2.1.1 |
tsdb | 1.1-0 | tsdecomp | 0.2 |
TSdeeplearning | 0.1.0 | tsdisagg2 | 0.1.0 |
TSdisaggregation | 2.0.0 | TSdist | 3.7.1 |
tsdistributions | 1.0.2 | tsDyn | 11.0.5.2 |
TSEAL | 0.1.3 | TSEntropies | 0.9 |
tseries | 0.10-58 | tseriesChaos | 0.1-13.1 |
tseriesEntropy | 0.7-2 | tseriesTARMA | 0.5-1 |
tsfeatures | 1.1.1 | tsfknn | 0.6.0 |
tsgarch | 1.0.3 | tsibble | 1.1.5 |
tsibbledata | 0.4.1 | tsibbletalk | 0.1.0 |
tsintermittent | 1.10 | tsiR | 0.4.3 |
TSLSTM | 0.1.0 | TSLSTMplus | 1.0.5 |
tsmethods | 1.0.2 | tsModel | 0.6-2 |
tsne | 0.1-3.1 | tsnet | 0.1.0 |
tsoutliers | 0.6-10 | TSP | 1.2-4 |
tsPI | 1.0.4 | TSrepr | 1.1.0 |
tsrobprep | 0.3.2 | tssim | 0.1.7 |
TSstudio | 0.1.7 | tstests | 1.0.1 |
TSTutorial | 1.2.7 | tsutils | 0.9.4 |
tswge | 2.1.0 | tth | 4.16-0 |
TTR | 0.24.4 | tufterhandout | 1.2.1 |
tune | 1.2.1 | TUWmodel | 1.1-1 |
tvm | 0.5.2 | twdtw | 1.0-1 |
tweedie | 2.3.5 | tweenr | 2.0.3 |
twosamples | 2.0.1 | TxDb.Hsapiens.UCSC.hg19.knownGene | 3.2.2 |
TxDb.Hsapiens.UCSC.hg38.knownGene | 3.18.0 | tximport | 1.32.0 |
txtq | 0.2.4 | tzdb | 0.4.0 |
uaparserjs | 0.3.5 | ubiquity | 2.0.3 |
ucminf | 1.2.2 | UComp | 5.0.4 |
UCSC.utils | 1.0.0 | udpipe | 0.8.11 |
ufRisk | 1.0.7 | ugatsdb | 0.2.3 |
uGMAR | 3.5.0 | umap | 0.2.10.0 |
uncmbb | 0.2.2 | unglue | 0.1.0 |
UnifiedDoseFinding | 0.1.10 | unifir | 0.2.4 |
units | 0.8-5 | univOutl | 0.4 |
unrepx | 1.0-2 | unrtf | 1.4.7 |
UpSetR | 1.4.0 | uptasticsearch | 0.4.0 |
urca | 1.3-4 | urlchecker | 1.0.1 |
urlshorteneR | 1.5.7 | urltools | 1.7.3 |
uroot | 2.1-3 | usdata | 0.3.1 |
usethis | 3.0.0 | usmap | 0.7.1 |
usmapdata | 0.3.0 | utf8 | 1.2.4 |
utility | 1.4.6 | uuid | 1.2-1 |
uwot | 0.2.2 | V8 | 6.0.0 |
VALERIE | 1.1.0 | validate | 1.1.5 |
validatetools | 0.5.2 | valr | 0.8.2 |
VAM | 1.1.0 | vapour | 0.10.0 |
VAR.etp | 1.1 | varbvs | 2.6-10 |
VARDetect | 0.1.8 | vardiag | 0.2-1 |
vardpoor | 0.20.1 | VaRES | 1.0.2 |
vars | 1.6-1 | VARshrink | 0.3.1 |
varycoef | 0.3.4 | VCA | 1.5.1 |
vcd | 1.4-13 | vcdExtra | 0.8-5 |
vcr | 1.6.0 | vctrs | 0.6.5 |
vdg | 1.2.3 | VedicDateTime | 0.1.9 |
vegan | 2.6-8 | vegawidget | 0.5.0 |
vegperiod | 0.4.0 | VennDiagram | 1.7.3 |
venneuler | 1.1-4 | VGAM | 1.1-12 |
VGAMdata | 1.1-12 | vglmer | 1.0.5 |
vhica | 0.2.8 | VIC5 | 0.2.6 |
VIM | 6.2.2 | VineCopula | 2.5.1 |
vines | 1.1.5 | vip | 0.4.1 |
viridis | 0.6.5 | viridisLite | 0.4.2 |
visNetwork | 2.1.2 | visualize | 4.5.0 |
vkR | 0.2 | volatilityTrader | 1.0.1 |
volcano3D | 2.0.9 | volleystat | 0.2.0 |
vpc | 1.2.2 | vroom | 1.6.5 |
vrtest | 1.2 | vsn | 3.72.0 |
W3CMarkupValidator | 0.1-7 | waiter | 0.2.5 |
waldo | 0.5.3 | warp | 0.2.1 |
washdata | 0.1.4 | WASP | 1.4.4 |
waterData | 1.0.8 | waterquality | 1.0.0 |
WaveletComp | 1.1 | wavelets | 0.3-0.2 |
waveslim | 1.8.5 | wavethresh | 4.7.3 |
wavScalogram | 1.1.3 | waywiser | 0.6.0 |
wbstats | 1.0.4 | wCorr | 1.9.8 |
WDI | 2.7.8 | wdm | 0.2.4 |
wdman | 0.2.6 | weatherOz | 1.0.0 |
WebAnalytics | 0.9.12 | webchem | 1.3.0 |
webdriver | 1.0.6 | WebGestaltR | 0.4.6 |
webmockr | 1.0.0 | webreadr | 0.4.0 |
webshot | 0.5.5 | webshot2 | 0.1.1 |
websocket | 1.4.2 | webutils | 1.2.2 |
wehoop | 2.1.0 | WeightedPortTest | 1.1 |
WeightIt | 1.3.1 | weights | 1.0.4 |
welo | 0.1.4 | WeMix | 4.0.3 |
WGCNA | 1.73 | WH | 1.1.2 |
whisker | 0.4.1 | whitebox | 2.4.0 |
whitening | 1.4.0 | whoami | 1.3.0 |
widgetframe | 0.3.1 | widgetTools | 1.82.0 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
WikipediR | 1.7.1 | wikitaxa | 0.4.0 |
wildlifeDI | 1.0.0 | wilson | 2.4.2 |
windex | 2.0.8 | wINEQ | 1.2.1 |
withr | 3.0.2 | wk | 0.9.4 |
wktmo | 1.0.5 | wkutils | 0.1.3 |
wnl | 0.8.1 | wooldridge | 1.4-3 |
worcs | 0.1.15 | word2vec | 0.4.0 |
wordcloud | 2.6 | wordnet | 0.1-17 |
workflowr | 1.7.1 | workflows | 1.1.4 |
workflowsets | 1.1.0 | worldfootballR | 0.6.2 |
worldmet | 0.9.8 | worrms | 0.4.3 |
wpp2017 | 1.2-3 | wpp2019 | 1.1-1 |
wql | 1.0.1 | WrightMap | 1.4 |
writexl | 1.5.1 | WriteXLS | 6.7.0 |
wrMisc | 1.15.2 | wrProteo | 1.12.0 |
WRSS | 3.1 | wrswoR | 1.1.1 |
WRTDStidal | 1.1.4 | WufooR | 1.0.1 |
x12 | 1.10.3 | x13binary | 1.1.61 |
xaringan | 0.30 | XBRL | 0.99.19.1 |
xfun | 0.49 | xgboost | 1.7.8.1 |
xgxr | 1.1.2 | XLConnect | 1.1.0 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.17 | xml2 | 1.3.6 |
XML2R | 0.0.8 | xmlrpc2 | 1.1 |
xopen | 1.0.1 | xplain | 0.2.2 |
xpose | 0.4.18 | xpose.nlmixr2 | 0.4.0 |
xpose4 | 4.7.3 | xslt | 1.4.6 |
xtable | 1.8-4 | xts | 0.14.1 |
XVector | 0.44.0 | xxIRT | 2.1.2 |
yaImpute | 1.0-34.1 | yaml | 2.3.10 |
yardstick | 1.3.1 | yesno | 0.1.3 |
yhatr | 0.15.1 | ympes | 1.6.0 |
yorkr | 0.0.42 | ypssc | 1.1.0 |
yuima | 1.15.27 | yulab.utils | 0.1.7 |
zeallot | 0.1.0 | zen4R | 0.10 |
zic | 0.9.1 | ZIM | 1.1.0 |
ZINARp | 0.1.0 | zip | 2.3.1 |
zipfR | 0.6-70 | zlib | 1.0.3 |
zlibbioc | 1.50.0 | zoo | 1.8-12 |
ZRA | 0.2 | ztable | 0.2.3 |
zTree | 1.0.7 | zyp | 0.11-1 |
RStudio Server
R: 4.4.1
rstudio-server: 2024.04.2-764
Release Notes
Since RStudio v1.3, the default authentication timeout configuration was changed to address security concerns about session hijacking, as users could remain signed in for extended periods. The new default automatically signs users out after 60 minutes of inactivity (no interaction with the IDE). This change impacts long-running code that is not started as a background job. To accommodate user preferences, the legacy behavior has been restored, allowing users to stay signed in for several days without being forced to log in again after going idle.
This AMI provides thousands of R packages covering various domains such as data science, machine learning, economitrics, database, finance, official statistics, survey statistics, Bayesian statistics, clinical trials, epidemiology, experimental design, psychometric methodology, analysis of pharmacokinetic data, medical image processing, teaching statistics, time series analysis, analysis of spatial and spatiotemporal data, reproducible research, phylogenetics, web technologies, hydrology, sports analytics, natural language processing, actuarial science, optimization, genomics, proteomics, metabolomics, transcriptomics, and other omics.
R packages (4293)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.1 |
ABCoptim | 0.15.0 | abcrf | 1.9 |
abglasso | 0.1.1 | abind | 1.4-5 |
abtest | 1.0.1 | accrualPlot | 1.0.7 |
acebayes | 1.10 | acepack | 1.4.2 |
ACNE | 0.9.1 | acp | 2.1 |
acs | 2.1.4 | ACSWR | 1.0 |
ActivePathways | 2.0.5 | actuar | 3.3-4 |
actuaRE | 0.1.5 | ActuarialM | 0.1.0 |
actuaryr | 1.1.1 | actxps | 1.5.0 |
ada | 2.0-5 | adagio | 0.9.2 |
adaptivetau | 2.3-1 | adaptMCMC | 1.5 |
adaptr | 1.4.0 | ADAPTS | 1.0.22 |
adaptsmoFMRI | 1.2 | adaptTest | 1.2 |
additivityTests | 1.1-4.2 | ade4 | 1.7-22 |
ade4TkGUI | 0.3-1 | adegenet | 2.1.10 |
adegraphics | 1.0-21 | adehabitatHR | 0.4.21 |
adehabitatHS | 0.3.17 | adehabitatLT | 0.3.27 |
adehabitatMA | 0.3.16 | adephylo | 1.1-16 |
adespatial | 0.3-23 | ADGofTest | 0.3 |
adimpro | 0.9.7 | adiv | 2.2.1 |
adjclust | 0.6.9 | adlift | 1.4-5 |
admisc | 0.35 | AdMit | 2.1.9 |
ads | 1.5-10 | AdvancedBasketballStats | 1.0.1 |
AER | 1.2-12 | affy | 1.82.0 |
affyio | 1.74.0 | africamonitor | 0.2.4 |
agricolae | 1.3-7 | agricolaeplotr | 0.5.0 |
agridat | 1.23 | agriwater | 1.0.2 |
agvgd | 0.1.2 | AhoCorasickTrie | 0.1.2 |
aion | 1.0.4 | airGR | 1.7.6 |
airGRdatasets | 0.2.1 | airGRdatassim | 0.1.3 |
airGRiwrm | 0.6.2 | airGRteaching | 0.3.3 |
airports | 0.1.0 | airr | 1.5.0 |
ajv | 1.0.0 | akima | 0.6-3.4 |
alabama | 2023.1.0 | alakazam | 1.3.0 |
aLFQ | 1.3.6 | AlgDesign | 1.2.1 |
aliases2entrez | 0.1.2 | almanac | 1.0.0 |
alpaca | 0.3.4 | alphavantager | 0.1.3 |
altair | 4.2.3 | ALTopt | 0.1.2 |
Amelia | 1.8.2 | ammiBayes | 1.0-2 |
ampir | 1.1.0 | AMR | 2.1.1 |
anabel | 3.0.1 | AnaCoDa | 0.1.4.4 |
anacor | 1.1-4 | analogsea | 1.0.7.2 |
analogue | 0.17-6 | anesrake | 0.80 |
animation | 2.7 | anipaths | 0.10.3 |
anMC | 0.2.5 | annotate | 1.82.0 |
AnnotationBustR | 1.3.0 | AnnotationDbi | 1.66.0 |
AnnuityRIR | 1.0-0 | Anthropometry | 1.19 |
anytime | 0.3.9 | ao | 1.1.0 |
aod | 1.3.3 | aoos | 0.5.0 |
AovBay | 0.1.0 | apc | 2.0.0 |
apcluster | 1.4.13 | ape | 5.8 |
apex | 1.0.6 | APFr | 1.0.2 |
aphid | 1.3.5 | aphylo | 0.3-3 |
apisensr | 1.0.0 | aplot | 0.2.3 |
apollo | 0.3.3 | approximator | 1.2-8 |
apsimx | 2.7.7 | ARCensReg | 3.0.1 |
arcgislayers | 0.3.0 | arcgisutils | 0.3.0 |
archetypes | 2.2-0.1 | archive | 1.1.8 |
archivist | 2.3.6 | arcpbf | 0.1.4 |
ArDec | 2.1-1 | ARDL | 0.2.4 |
ardl.nardl | 1.3.0 | areal | 0.1.8 |
arfima | 1.8-1 | argo | 3.0.2 |
argparse | 2.2.3 | arima2 | 3.1.0 |
arkhe | 1.7.0 | arm | 1.14-4 |
aroma.affymetrix | 3.2.2 | aroma.apd | 0.7.0 |
aroma.cn | 1.7.1 | aroma.core | 3.3.1 |
aroma.light | 3.34.0 | arpr | 0.1.2 |
arrangements | 1.1.9 | arrow | 16.1.0 |
ars | 0.7 | arsenal | 3.6.3 |
aRxiv | 0.10 | ascii | 2.6 |
asd | 2.2 | ash | 1.0-15 |
ashr | 2.2-63 | AsioHeaders | 1.22.1-2 |
askpass | 1.2.0 | aspect | 1.0-6 |
ASSA | 2.0 | assertthat | 0.2.1 |
AssetCorr | 1.0.4 | astsa | 2.1 |
asymmetry | 2.0.4 | ata | 1.1.1 |
atom4R | 0.3-3 | atRisk | 0.1.0 |
attempt | 0.3.1 | attention | 0.4.0 |
AUC | 0.3.2 | audio | 0.1-11 |
autoFRK | 1.4.3 | autoimage | 2.2.3 |
automap | 1.1-9 | autostsm | 3.1.5 |
av | 0.9.0 | aweek | 1.0.3 |
aws | 2.5-5 | aws.signature | 0.6.0 |
awsMethods | 1.1-1 | AzureAppInsights | 0.3.1 |
AzureAuth | 1.3.3 | AzureCognitive | 1.0.1 |
AzureContainers | 1.3.2 | AzureCosmosR | 1.0.0 |
AzureGraph | 1.3.4 | AzureKusto | 1.1.3 |
AzureQstor | 1.0.1 | AzureRMR | 2.4.4 |
AzureStor | 3.7.0 | AzureTableStor | 1.0.0 |
AzureVision | 1.0.2 | AzureVM | 2.2.2 |
babelgene | 22.9 | babelwhale | 1.2.0 |
babette | 2.3.4 | BACCO | 2.1-0 |
BACCT | 1.0 | backports | 1.5.0 |
backtest | 0.3-4 | bacondecomp | 0.1.1 |
baggr | 0.7.8 | bain | 0.2.11 |
BalancedSampling | 2.0.6 | BaM | 1.0.3 |
bama | 1.3.0 | bamdit | 3.4.1 |
bamlss | 1.2-4 | BAMMtools | 2.1.11 |
bang | 1.0.4 | BANOVA | 1.2.1 |
BarcodingR | 1.0-3 | BART | 2.9.9 |
bartCause | 1.0-8 | bartcs | 1.2.2 |
bartMachine | 1.3.4.1 | bartMachineJARs | 1.2.1 |
BAS | 1.7.1 | basad | 0.3.0 |
base64 | 2.0.1 | base64enc | 0.1-3 |
base64url | 1.4 | baseballr | 1.6.0 |
basicMCMCplots | 0.2.7 | BASiNET | 0.0.5 |
BaSkePro | 1.1.1 | BasketballAnalyzeR | 0.5.0 |
BASS | 1.3.1 | BatchExperiments | 1.4.3 |
BatchJobs | 1.9 | batchmeans | 1.0-4 |
BAwiR | 1.3.2 | baycn | 1.2.0 |
bayefdr | 0.2.1 | bayes4psy | 1.2.12 |
bayesAB | 1.1.3 | bayesammi | 0.1.0 |
bayesanova | 1.6 | BayesARIMAX | 0.1.1 |
BayesBinMix | 1.4.1 | bayesbio | 1.0.0 |
bayesboot | 0.2.2 | BayesBP | 1.1 |
BayesCACE | 1.2.3 | BayesCombo | 1.0 |
BayesComm | 0.1-2 | bayescopulareg | 0.1.3 |
bayescount | 0.9.99-9 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.3.3 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.7 |
BayesFM | 0.1.7 | bayesforecast | 1.0.1 |
bayesGAM | 0.0.2 | bayesGARCH | 2.1.10 |
BayesGOF | 5.2 | BayesGPfit | 1.1.0 |
BayesGWQS | 0.1.1 | bayesian | 1.0.1 |
bayesianETAS | 1.0.3 | BayesianFactorZoo | 0.0.0.2 |
Bayesiangammareg | 0.1.0 | BayesianGLasso | 0.2.0 |
BayesianLaterality | 0.1.2 | BayesianNetwork | 0.3.2 |
BayesianTools | 0.1.8 | bayesianVARs | 0.1.3 |
bayesImageS | 0.6-1 | BayesLCA | 1.9 |
bayesLife | 5.2-0 | BayesLN | 0.2.10 |
BayesLogit | 2.1 | bayeslongitudinal | 0.1.0 |
bayesm | 3.1-6 | BayesMallows | 2.2.1 |
BayesMassBal | 1.1.0 | bayesmeta | 3.4 |
bayesmix | 0.7-6 | bayesnec | 2.1.2.0 |
bayesplot | 1.11.1 | bayesQR | 2.4 |
bayesRecon | 0.3.0 | bayestestR | 0.14.0 |
bayesTFR | 7.4-2 | BayesTools | 0.2.17 |
BayesTree | 0.3-1.5 | BayesVarSel | 2.2.5 |
BayesX | 0.3-3 | BAYSTAR | 0.2-10 |
baytrends | 2.0.12 | BB | 2019.10-1 |
BBmisc | 1.13 | bbmle | 1.0.25.1 |
bbotk | 1.0.1 | BCBCSF | 1.0-1 |
BCC1997 | 0.1.1 | BClustLonG | 0.1.3 |
bcpa | 1.3.2 | bcrm | 0.5.4 |
BDgraph | 2.72 | bdrc | 1.1.0 |
bdsmatrix | 1.3-7 | BE | 0.2.4 |
beachmat | 2.20.0 | beadarray | 2.54.0 |
BeadDataPackR | 1.56.0 | beakr | 0.4.3 |
bearishTrader | 1.0.2 | beastier | 2.5.1 |
beautier | 2.6.12 | BED | 1.5.2 |
beepr | 2.0 | beeswarm | 0.4.0 |
benchmarkme | 1.0.8 | benchmarkmeData | 1.0.4 |
BenfordTests | 1.2.0 | bentcableAR | 0.3.1 |
Bergm | 5.0.7 | Bernadette | 1.1.5 |
berryFunctions | 1.22.5 | Bessel | 0.6-1 |
BetaBit | 2.2 | betafunctions | 1.9.0 |
betapart | 1.6 | betareg | 3.2-0 |
betategarch | 3.3 | BETS | 0.4.9 |
bets.covid19 | 1.0.0 | beyondWhittle | 1.2.1 |
bezier | 1.1.2 | bfast | 1.6.1 |
BGLR | 1.1.2 | BGVAR | 2.5.7 |
bgw | 0.1.3 | BH | 1.84.0-0 |
BHH2 | 2016.05.31 | BiasCorrector | 0.2.2 |
BiasedUrn | 2.0.12 | bibtex | 0.5.1 |
biclust | 2.0.3.1 | bidask | 2.0.4 |
bife | 0.7.2 | BIFIEsurvey | 3.6-6 |
biganalytics | 1.1.22 | bigchess | 1.9.1 |
bigD | 0.2.0 | bigleaf | 0.8.2 |
biglm | 0.9-3 | bigmemory | 4.6.4 |
bigmemory.sri | 0.1.8 | bigrquery | 1.5.1 |
bigsplines | 1.1-1 | bigtime | 0.2.3 |
BigVAR | 1.1.2 | bimets | 4.0.2 |
bindr | 0.1.1 | bindrcpp | 0.2.3 |
binhf | 1.0-3 | binman | 0.1.3 |
binom | 1.1-1.1 | binr | 1.1.1 |
binseqtest | 1.0.4 | bio3d | 2.4-4 |
Biobase | 2.64.0 | BiocFileCache | 2.12.0 |
BiocGenerics | 0.50.0 | BiocIO | 1.14.0 |
BiocManager | 1.30.23 | BiocParallel | 1.38.0 |
BiocSingular | 1.20.0 | BiocVersion | 3.19.1 |
BioInsight | 0.3.1 | biomaRt | 2.60.1 |
biomartr | 1.0.7 | biomformat | 1.32.0 |
bioseq | 0.1.4 | Biostrings | 2.72.1 |
biotic | 0.1.2 | bipartite | 2.20 |
birtr | 1.0.0 | BisqueRNA | 1.0.5 |
bit | 4.0.5 | bit64 | 4.0.5 |
bitops | 1.0-8 | biwavelet | 0.20.21 |
bizdays | 1.0.16 | bkmr | 0.2.2 |
blaise | 1.3.11 | blastula | 0.3.5 |
blavaan | 0.5-5 | blink | 1.1.0 |
BLModel | 1.0.2 | blob | 1.2.4 |
blocklength | 0.1.5 | blockmatrix | 1.0 |
blockrand | 1.5 | blocksdesign | 4.9 |
blockTools | 0.6.4 | blogdown | 1.19 |
BLR | 1.6 | BLRPM | 1.0 |
BMA | 3.18.17 | bmgarch | 2.0.0 |
BMisc | 1.4.6 | bmixture | 1.7 |
BMS | 0.3.5 | BMTAR | 0.1.1 |
bnlearn | 5.0 | BNPTSclust | 2.0 |
BNSP | 2.2.3 | bnstruct | 1.0.15 |
boa | 1.1.8-2 | boilerpipeR | 1.3.2 |
BOIN | 2.7.2 | boiwsa | 1.1.1 |
bold | 1.3.0 | Bolstad | 0.2-41 |
Bolstad2 | 1.0-29 | bondAnalyst | 1.0.1 |
bookdown | 0.40 | Boom | 0.9.15 |
BoomSpikeSlab | 1.2.6 | bootnet | 1.6 |
BootPR | 1.0 | bootstrap | 2019.6 |
bootUR | 1.0.4 | BoSSA | 3.7 |
boussinesq | 1.0.6 | boxr | 0.3.6 |
bpca | 1.3-6 | bqtl | 1.0-36 |
BradleyTerry2 | 1.1-2 | brainR | 1.6.0 |
brandwatchR | 0.3.0 | breakfast | 2.4 |
brew | 1.0-10 | brglm | 0.7.2 |
brglm2 | 0.9.2 | bridgesampling | 1.1-2 |
BRINDA | 0.1.5 | brio | 1.1.5 |
brms | 2.21.0 | Brobdingnag | 1.2-9 |
broman | 0.84 | broom | 1.0.6 |
broom.helpers | 1.15.0 | brotli | 1.3.0 |
bsam | 1.1.3 | bsamGP | 1.2.5 |
BSgenome | 1.72.0 | bsicons | 0.1.2 |
bslib | 0.8.0 | BsMD | 2023.920 |
bspec | 1.6 | bspmma | 0.1-2 |
bssm | 2.0.2 | BSSprep | 0.1 |
bsts | 0.9.10 | bsvars | 3.1 |
bsvarSIGNs | 1.0 | BTLLasso | 0.1-13 |
BTM | 0.3.7 | bullishTrader | 1.0.1 |
bundesbank | 0.1-12 | BurStFin | 1.3 |
BurStMisc | 1.1 | BVAR | 1.0.5 |
bvarsv | 1.1 | bvartools | 0.2.4 |
bvls | 1.4 | C50 | 0.1.8 |
ca | 0.71.1 | cabinets | 0.6.0 |
cabootcrs | 2.1.0 | cachem | 1.1.0 |
cacIRT | 1.4 | CADFtest | 0.3-3 |
caffsim | 0.2.2 | Cairo | 1.6-2 |
CALANGO | 1.0.16 | calculus | 1.0.1 |
calibrar | 0.9.0 | calibrate | 1.7.7 |
CalibrateSSB | 1.3.0 | calibrator | 1.2-8 |
callr | 3.7.6 | cancensus | 0.5.7 |
candisc | 0.9.0 | CANSIM2R | 1.14.1 |
caper | 1.0.3 | captr | 0.3.0 |
capushe | 1.1.2 | car | 3.1-2 |
caRamel | 1.4 | CARBayes | 6.1.1 |
CARBayesdata | 3.0 | CARBayesST | 4.0 |
carData | 3.0-5 | cards | 0.2.1 |
caret | 6.0-94 | carfima | 2.0.2 |
caribou | 1.1-1 | carrier | 0.1.1 |
cartogram | 0.3.0 | Cascade | 2.1 |
CascadeData | 1.4 | CAST | 1.0.2 |
castor | 1.8.2 | CatDataAnalysis | 0.1-5 |
caTools | 1.18.2 | catR | 3.17 |
causact | 0.5.5 | CausalImpact | 1.3.0 |
CAvariants | 6.0 | CB2 | 1.3.4 |
cbioportalR | 1.1.0 | cbsodataR | 1.0.1 |
ccaPP | 0.3.3 | cccp | 0.3-1 |
cdlTools | 1.13 | CDM | 8.2-6 |
cds | 1.0.3 | CellNOptR | 1.50.0 |
cellranger | 1.1.0 | censReg | 0.5-38 |
censusapi | 0.8.0 | CEoptim | 1.3 |
CePa | 0.8.0 | CeRNASeek | 2.1.3 |
cffr | 1.1.1 | cfr | 0.1.1 |
CFtime | 1.4.0 | ChainLadder | 0.2.19 |
chandwich | 1.1.6 | changepoint | 2.2.4 |
changepoint.geo | 1.0.2 | changepoint.np | 1.0.5 |
checkLuhn | 1.1.0 | checkmate | 2.3.2 |
checkpoint | 1.0.2 | ChemoSpec | 6.1.10 |
ChemoSpecUtils | 1.0.4 | cherryblossom | 0.1.0 |
chess | 1.0.1 | chilemapas | 0.3.0 |
chk | 0.9.2 | choiceDes | 0.9-3 |
cholera | 0.8.0 | CholWishart | 1.1.2 |
choroplethr | 3.7.3 | choroplethrMaps | 1.0.1 |
chromoMap | 4.1.1 | chromote | 0.2.0 |
chron | 2.3-61 | cifti | 0.4.5 |
cinterpolate | 1.0.1 | circlize | 0.4.16 |
CircSpaceTime | 0.9.0 | CircStats | 0.2-6 |
circular | 0.5-0 | ciTools | 0.6.1 |
Ckmeans.1d.dp | 4.3.5 | Claddis | 0.6.3 |
clarabel | 0.9.0 | clarifai | 0.4.2 |
classInt | 0.4-10 | cleanepi | 1.0.2 |
clevr | 0.1.2 | cli | 3.6.3 |
clifro | 3.2-5 | climatol | 4.1.0 |
clime | 0.5.0 | clinDR | 2.4.1 |
clinfun | 1.1.5 | clinicalsignificance | 2.0.0 |
clinPK | 0.13.0 | clinsig | 1.2 |
clipr | 0.8.0 | clisymbols | 1.2.0 |
clmplus | 1.0.0 | clock | 0.7.1 |
clubSandwich | 0.5.11 | clue | 0.3-65 |
clusterGeneration | 1.3.8 | clustermole | 1.1.1 |
clusterProfiler | 4.12.3 | clusterSEs | 2.6.5 |
clustMixType | 0.4-2 | ClustVarLV | 2.1.1 |
clv | 0.3-2.4 | cmaes | 1.0-12 |
cmaesr | 1.0.3 | CMLS | 1.0-1 |
cmm | 1.0 | cmocean | 0.3-1 |
cmprsk | 2.2-12 | cmrutils | 1.3.1 |
CNLTreg | 0.1-2 | CNLTtsa | 0.1-2 |
cNORM | 3.1.0 | CNORode | 1.46.0 |
coalescentMCMC | 0.4-4 | coarseDataTools | 0.6-6 |
cobalt | 4.5.5 | cobs | 1.3-8 |
coconots | 1.1.3 | COCONUT | 1.0.2 |
cocor | 1.1-4 | cocorresp | 0.4-4 |
cocron | 1.0-1 | coda | 0.19-4.1 |
codebook | 0.9.2 | codebookr | 0.1.8 |
coin | 1.4-3 | cointReg | 0.2.0 |
colf | 0.1.3 | collapse | 2.0.15 |
collapsibleTree | 0.1.8 | collections | 0.3.7 |
colorr | 1.0.0 | colorRamps | 2.3.4 |
colorspace | 2.1-1 | colourpicker | 1.3.0 |
colourvalues | 0.3.9 | combinat | 0.0-8 |
combinedevents | 0.1.1 | CombinS | 1.1-1 |
ComICS | 1.0.4 | CommonJavaJars | 1.1-0 |
commonmark | 1.9.1 | compare | 0.2-6 |
compas | 0.1.1 | complex | 1.0.0 |
ComplexHeatmap | 2.20.0 | CompQuadForm | 1.4.3 |
comprehenr | 0.6.10 | conditionz | 0.1.0 |
coneproj | 1.19 | conf.design | 2.0.0 |
config | 0.3.2 | confintr | 1.0.2 |
conflicted | 1.2.0 | conos | 1.5.2 |
conquer | 1.3.3 | conquestr | 1.3.4 |
constrainedKriging | 0.2-7 | contactdata | 1.0.0 |
contfrac | 1.1-12 | convevol | 2.2.1 |
convey | 1.0.0 | coop | 0.6-3 |
cops | 1.11-3 | copula | 1.1-3 |
copulaData | 0.0-2 | copulaedas | 1.4.3 |
cordillera | 1.0-0 | corHMM | 2.8 |
coro | 1.0.4 | corona | 0.3.0 |
coronavirus | 0.4.1 | corpcor | 1.6.10 |
corpora | 0.6 | corporaexplorer | 0.8.6 |
corrgram | 1.14 | corrplot | 0.92 |
cosa | 2.1.0 | CoSMoS | 2.1.0 |
costat | 2.4.1 | countrycode | 1.6.0 |
CovCombR | 1.0 | COVID19 | 3.0.3 |
covid19.analytics | 2.1.3.3 | covid19br | 0.1.8 |
covid19dbcand | 0.1.1 | covid19france | 0.1.0 |
covid19italy | 0.3.1 | covid19sf | 0.1.2 |
covid19swiss | 0.1.0 | covid19us | 0.1.9 |
CovidMutations | 0.1.3 | cowplot | 1.1.3 |
cp4p | 0.3.6 | CPBayes | 1.1.0 |
cplm | 0.7-12 | cpp11 | 0.4.7 |
CptNonPar | 0.2.1 | CRABS | 1.2.0 |
crawl | 2.3.0 | crayon | 1.5.3 |
crch | 1.1-2 | credentials | 2.0.1 |
credule | 0.1.4 | crfsuite | 0.4.2 |
cricketdata | 0.2.3 | cricketr | 0.0.26 |
CRM | 1.2.4 | crmPack | 1.0.6 |
crossdes | 1.1-2 | crosslag | 0.1.0 |
Crossover | 0.1-22 | crosstalk | 1.2.1 |
crs | 0.15-37 | crseEventStudy | 1.2.2 |
crsmeta | 0.3.0 | crul | 1.5.0 |
crunch | 1.30.4 | crunchy | 0.3.3 |
cryptoQuotes | 1.3.1 | cSEM | 0.5.0 |
CSGo | 0.6.7 | cshapes | 2.0 |
CSHShydRology | 1.4.2 | csodata | 1.5.0 |
cstab | 0.2-2 | csv | 0.6.2 |
ctbi | 2.0.5 | ctmcmove | 1.2.9 |
ctmm | 1.2.0 | ctrdata | 1.19.1 |
CTT | 2.3.3 | CTTShiny | 0.1 |
ctv | 0.9-5 | cubature | 2.1.1 |
cubble | 0.3.2 | cubelyr | 1.0.2 |
cubfits | 0.1-4 | Cubist | 0.4.4 |
cumSeg | 1.3 | curl | 5.2.1 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-14 |
D3mirt | 2.0.4 | d3Network | 0.5.2.1 |
DAAG | 1.25.6 | dae | 3.2.28 |
daewr | 1.2-11 | dagitty | 0.3-4 |
DAKS | 2.1-3 | DALEX | 2.4.3 |
DAMOCLES | 2.3 | data.table | 1.15.4 |
data.tree | 1.1.0 | DatabaseConnector | 6.3.2 |
DataExplorer | 0.8.3 | dataone | 2.2.2 |
datapack | 1.4.1 | datapasta | 3.1.0 |
dataRetrieval | 2.7.16 | datarobot | 2.18.6 |
dataseries | 0.2.0 | dataverse | 0.3.14 |
datawizard | 0.12.2 | date | 1.2-42 |
dateback | 1.0.5 | datetimeoffset | 0.3.1 |
datetimeutils | 0.6-4 | dbarts | 0.9-28 |
dbhydroR | 0.2-8 | DBI | 1.2.3 |
DBItest | 1.8.1 | dbmss | 2.9-0 |
dbparser | 2.0.3 | dbplyr | 2.5.0 |
dbscan | 1.2-0 | dbx | 0.3.2 |
DChaos | 0.1-7 | dclone | 2.3-2 |
DCluster | 0.2-10 | DClusterm | 1.0-1 |
dcov | 0.1.1 | dCovTS | 1.4 |
dcurver | 0.9.2 | ddalpha | 1.3.15 |
DDD | 5.2.2 | dde | 1.0.5 |
DDPM | 0.1.0 | deBInfer | 0.4.4 |
debugme | 1.2.0 | decompr | 6.4.0 |
deducorrect | 1.3.7 | deductive | 1.0.0 |
DeductiveR | 1.0.0 | deeptime | 1.1.1 |
Delaporte | 8.4.1 | DelayedArray | 0.30.1 |
DelayedMatrixStats | 1.26.0 | deldir | 2.0-4 |
deltaPlotR | 1.6 | demography | 2.0 |
dendextend | 1.17.1 | dendsort | 0.3.4 |
densEstBayes | 1.0-2.2 | DEoptim | 2.2-8 |
DEoptimR | 1.1-3 | depmix | 0.9.16 |
depmixS4 | 1.5-0 | DepthProc | 2.1.5 |
depthTools | 0.7 | Deriv | 4.1.3 |
derivmkts | 0.2.5 | desc | 1.4.3 |
DescTools | 0.99.55 | deseats | 1.1.0 |
DESeq2 | 1.44.0 | designmatch | 0.5.4 |
desiR | 1.2.2 | desirability | 2.1 |
deSolve | 1.40 | desplot | 1.10 |
devtools | 2.4.5 | dexter | 1.5.0 |
dextergui | 0.2.6 | dexterMST | 0.9.6 |
dfcomb | 3.1-1 | dfcrm | 0.2-2.1 |
dfidx | 0.0-5 | DFIT | 1.1 |
dfms | 0.2.2 | dfmta | 1.7-3 |
dfoptim | 2023.1.0 | dfped | 1.1 |
DGEobj | 1.1.2 | DGEobj.utils | 1.0.6 |
DHARMa | 0.4.6 | DHS.rates | 0.9.2 |
diagis | 0.2.3 | diagonals | 6.4.0 |
diagram | 1.6.5 | DiagrammeR | 1.0.11 |
dials | 1.3.0 | DiceDesign | 1.10 |
DiceEval | 1.6.1 | DiceKriging | 1.6.0 |
DiceOptim | 2.1.1 | DiceView | 2.2-0 |
dichromat | 2.0-0.1 | DICOMread | 0.0.0.3 |
did | 2.1.2 | did2s | 1.0.2 |
didimputation | 0.3.0 | DIFboost | 0.3 |
DiffCorr | 0.4.3 | diffEnrich | 0.1.2 |
diffobj | 0.3.5 | diffpriv | 0.4.2 |
diffusion | 0.4.0 | DIFlasso | 1.0-4 |
difNLR | 1.4.2-1 | DIFplus | 1.1 |
difR | 5.1 | DIFtree | 3.1.6 |
digest | 0.6.36 | DIMORA | 0.3.6 |
dimRed | 0.2.6 | dina | 2.0.0 |
DiPALM | 1.2 | diptest | 0.77-1 |
Dire | 2.2.0 | DIRECT | 1.1.0 |
directlabels | 2024.1.21 | directPA | 1.5.1 |
dirichletprocess | 0.4.2 | dirmult | 0.1.3-5 |
disaggR | 1.0.5.3 | DIscBIO | 1.2.2 |
DiscreteDatasets | 0.1.1 | DiscreteFDR | 2.0.0 |
DiscreteTests | 0.2.0 | discretization | 1.0-1.1 |
dispRity | 1.8 | DistatisR | 1.1.1 |
distcrete | 1.0.3 | distfree.cr | 1.5.1 |
distill | 1.6 | distory | 1.4.4 |
distr | 2.9.3 | distrEx | 2.9.2 |
distributional | 0.4.0 | distributions3 | 0.2.1 |
DistributionUtils | 0.6-1 | distrom | 1.0.1 |
distrTeach | 2.9.1 | dittodb | 0.1.8 |
diversitree | 0.10-0 | divest | 1.0.0 |
divseg | 0.0.5 | dLagM | 1.1.13 |
dlm | 1.1-6 | dlmtree | 1.0.0 |
dlnm | 2.4.7 | dlsem | 2.4.6 |
dlstats | 0.1.7 | dm | 1.0.10 |
dmri.tracking | 0.1.0 | DNAcopy | 1.78.0 |
doBy | 4.6.22 | doc2vec | 0.2.0 |
docopt | 0.7.1 | docopulae | 0.4.0 |
DoE.base | 1.2-4 | DoE.MIParray | 1.0-1 |
DoE.wrapper | 0.12 | doFuture | 1.0.1 |
doMC | 1.3.8 | doParallel | 1.0.17 |
doRNG | 1.8.6 | DOSE | 3.30.2 |
DoseFinding | 1.1-1 | doSNOW | 1.0.20 |
DOSPortfolio | 0.1.0 | dotCall64 | 1.1-1 |
DoubleML | 1.0.1 | Dowd | 0.12 |
downlit | 0.4.4 | downloader | 0.4 |
dparser | 1.3.1-11 | dplyr | 1.1.4 |
dqrng | 0.4.1 | dr4pl | 2.0.0 |
drake | 7.13.10 | drat | 0.2.4 |
DRaWR | 1.0.3 | DRDID | 1.0.7 |
dreamerr | 1.4.0 | DriftBurstHypothesis | 0.4.0.1 |
driveR | 0.4.1 | DRomics | 2.5-2 |
DRR | 0.0.4 | dsa | 1.0.12 |
DSAIDE | 0.9.6 | dsb | 1.0.4 |
DSI | 1.6.0 | DSL | 0.1-7 |
DT | 0.33 | DTAT | 0.3-7 |
DtD | 0.2.2 | dti | 1.5.4 |
dtplyr | 1.3.1 | DTSg | 1.1.3 |
dtt | 0.1-2 | dtts | 0.1.3 |
dtw | 1.23-1 | dtwclust | 6.0.0 |
duckdb | 1.0.0-2 | duckduckr | 1.0.0 |
dunn.test | 1.3.6 | dwctaxon | 2.0.3 |
dygraphs | 1.1.1.6 | Dykstra | 1.0-0 |
dyn | 0.2-9.6 | dynamicTreeCut | 1.63-1 |
dynatop | 0.2.3 | dynatopGIS | 0.2.5 |
dynaTree | 1.2-16 | DynDoc | 1.82.0 |
dynlm | 0.3-6 | dynparam | 1.0.2 |
dynutils | 1.0.11 | dynwrap | 1.2.4 |
DysPIA | 1.3 | DysPIAData | 0.1.2 |
e1071 | 1.7-14 | earlyR | 0.0.5 |
earth | 5.3.3 | easypower | 1.0.2 |
easySdcTable | 1.0.7 | eba | 1.10-0 |
ebal | 0.1-8 | EbayesThresh | 1.4-12 |
ebdbNet | 1.2.8 | EBImage | 4.46.0 |
EBMAforecast | 1.0.32 | ecb | 0.4.2 |
Ecdat | 0.4-2 | ecespa | 1.1-17 |
Ecfun | 0.3-2 | echor | 0.1.9 |
ecm | 7.2.0 | ecodist | 2.1.3 |
Ecohydmod | 1.0.0 | ECOSolveR | 0.5.5 |
ecoval | 1.2.9 | ecp | 3.1.5 |
ecr | 2.1.1 | edfReader | 1.2.1 |
edgeR | 4.2.1 | edina | 0.1.1 |
editrules | 2.9.5 | edmdata | 1.2.0 |
edstan | 1.0.6 | EdSurvey | 4.0.7 |
eegkit | 1.0-4 | eegkitdata | 1.1 |
EFAutilities | 2.1.3 | effects | 4.2-2 |
EGAnet | 2.0.6 | egg | 0.4.5 |
egor | 1.24.2 | EGRET | 3.0.9 |
EGRETci | 2.0.4 | eha | 2.11.4 |
eigenmodel | 1.11 | eiopaR | 0.1.1 |
elastic | 1.2.0 | elasticnet | 1.3 |
elevatr | 0.99.0 | ellipse | 0.5.0 |
ellipsis | 0.3.2 | elliptic | 1.4-0 |
elo | 3.0.2 | EloChoice | 0.29.4 |
EloRating | 0.46.18 | ELT | 1.7 |
emayili | 0.9.1 | EMbC | 2.0.4 |
EMD | 1.5.9 | emdi | 2.2.2 |
emg | 1.0.9 | emmeans | 1.10.3 |
EMMIXgene | 0.1.4 | emoa | 0.5-2 |
emulator | 1.2-24 | encode | 0.3.6 |
endtoend | 2.29 | energy | 1.7-11 |
EngrExpt | 0.1-8 | enrichplot | 1.24.2 |
enrichR | 3.2 | enrichwith | 0.3.1 |
ensembleBMA | 5.1.8 | entropart | 1.6-13 |
entropy | 1.3.1 | EntropyEstimation | 1.2 |
EntropyMCMC | 1.0.4 | enveomics.R | 1.9.1 |
enviPat | 2.6 | EnvStats | 2.8.1 |
epanet2toolkit | 1.0.5 | epanetReader | 0.7.3 |
Epi | 2.53 | epibasix | 1.5 |
epicontacts | 1.1.4 | EpiContactTrace | 0.17.0 |
EpiCurve | 2.4-2 | epiDisplay | 3.5.0.2 |
EpiEstim | 2.2-4 | epiflows | 0.2.1 |
EpiILM | 1.5.2 | EpiILMCT | 1.1.7 |
epimdr | 0.6-5 | EpiModel | 2.4.0 |
epinet | 2.1.11 | EpiNow2 | 1.5.2 |
epiR | 2.0.75 | EpiReport | 1.0.2 |
episensr | 1.3.0 | EpiSignalDetection | 0.1.2 |
epitools | 0.5-10.1 | epitrix | 0.4.0 |
epitweetr | 2.2.16 | epm | 1.1.2 |
epo | 0.1.0 | equate | 2.0.8 |
equateIRT | 2.5.0 | equateMultiple | 0.1.2 |
equivalence | 0.7.2 | era | 0.4.1 |
erah | 2.0.1 | ergm | 4.6.0 |
ergm.ego | 1.1.0 | ergm.multi | 0.2.1 |
eRm | 1.0-6 | errorlocate | 1.1.1 |
errum | 0.0.3 | esemifar | 2.0.1 |
ESG | 1.3 | EstCRM | 1.6 |
estimability | 1.5.1 | EstimateGroupNetwork | 0.3.1 |
estimatr | 1.0.4 | ETLUtils | 1.5 |
etm | 1.1.1 | etrm | 1.0.1 |
etrunct | 0.1 | etwfe | 0.4.0 |
EUfootball | 0.0.1 | eulerr | 7.0.2 |
europepmc | 0.4.3 | eurostat | 4.0.0 |
evaluate | 0.24.0 | Evapotranspiration | 1.16 |
evd | 2.3-7 | evgam | 1.0.0 |
evir | 1.7-4 | evobiR | 1.1 |
EvoPhylo | 0.3.2 | evtree | 1.0-8 |
ewoc | 0.3.0 | Exact | 3.3 |
exactextractr | 0.10.0 | exactRankTests | 0.8-35 |
exams | 2.4-1 | ExceedanceTools | 1.3.6 |
exdex | 1.2.3 | EXPAR | 0.1.0 |
EXPARMA | 0.1.0 | experiment | 1.2.1 |
expint | 0.1-8 | expm | 0.999-9 |
ExPosition | 2.8.23 | expsmooth | 2.3 |
exreport | 0.4.1 | extraDistr | 1.10.0 |
extrafont | 0.19 | extrafontdb | 1.0 |
extraoperators | 0.3.0 | ExtremeBounds | 0.1.7 |
ExtremeRisks | 0.0.4 | eyelinker | 0.2.1 |
ez | 4.4-0 | fable | 0.3.4 |
fable.prophet | 0.1.0 | fableCount | 0.1.0 |
fabletools | 0.4.2 | factoextra | 1.0.7 |
FactoMineR | 2.11 | factorstochvol | 1.1.0 |
FAdist | 2.4 | fanplot | 4.0.0 |
fansi | 1.0.6 | FAOSTAT | 2.4.0 |
faoutlier | 0.7.6 | faraway | 1.0.8 |
farver | 2.1.2 | fAssets | 4023.85 |
fasstr | 0.5.2 | fastcluster | 1.2.6 |
fastcpd | 0.14.3 | fastDummies | 1.7.4 |
fastGHQuad | 1.0.1 | fastglm | 0.0.3 |
fastICA | 1.2-4 | fastLink | 0.6.1 |
fastmap | 1.2.0 | fastmatch | 1.1-4 |
fastRhockey | 0.4.0 | fastrmodels | 1.0.2 |
FastRWeb | 1.2-1 | fasttime | 1.1-0 |
fastTS | 1.0.1 | FatTailsR | 1.8-5 |
fauxpas | 0.5.2 | FAVAR | 0.1.3 |
fbar | 0.6.0 | fBasics | 4032.96 |
fBonds | 3042.78 | fbRads | 17.0.0 |
fCopulae | 4022.85 | FCVAR | 0.1.4 |
FD | 1.0-12.3 | fda | 6.1.8 |
fdaACF | 1.0.0 | fdapace | 0.6.0 |
fdrtool | 1.2.17 | fds | 1.8 |
fdth | 1.3-0 | feasts | 0.3.2 |
feather | 0.3.5 | fechner | 1.0-3 |
FedData | 4.0.1 | FeedbackTS | 1.5 |
feisr | 1.3.0 | fExtremes | 4032.84 |
ff | 4.0.12 | FFD | 1.0-9 |
ffscrapr | 1.4.8 | fftwtools | 0.9-11 |
fGarch | 4033.92 | fgsea | 1.30.0 |
fHMM | 1.3.1 | FielDHub | 1.4.2 |
fields | 16.2 | fiery | 1.2.1 |
filehash | 2.4-6 | filehashSQLite | 0.2-7 |
filelock | 1.0.3 | filematrix | 1.3 |
fImport | 4032.87 | finalsize | 0.2.1 |
FinancialMath | 0.1.1 | findpython | 1.0.8 |
FinNet | 0.1.2 | finnts | 0.4.0 |
finreportr | 1.0.4 | FinTS | 0.4-9 |
FiRE | 1.0.1 | fishMod | 0.29 |
fitdistrplus | 1.2-1 | fitzRoy | 1.5.0 |
fixest | 0.12.1 | FKF | 0.2.5 |
FKF.SP | 0.3.1 | flacco | 1.8 |
flap | 0.2.0 | flashClust | 1.01-2 |
flexclust | 1.4-2 | flexmix | 2.3-19 |
FlexScan | 0.2.2 | flextable | 0.9.6 |
flippant | 1.5.5 | float | 0.3-2 |
flock | 0.7 | flowr | 0.9.11 |
FlowScreen | 1.2.6 | fma | 2.5 |
FMC | 1.0.1 | fmcmc | 0.5-2 |
fmdates | 0.1.4 | FME | 1.3.6.3 |
fmesher | 0.1.7 | fmri | 1.9.12.1 |
fMultivar | 4031.84 | fnets | 0.1.6 |
FNN | 1.1.4 | fNonlinear | 4021.81 |
fontawesome | 0.5.2 | fontBitstreamVera | 0.1.1 |
fontLiberation | 0.1.0 | fontquiver | 0.2.1 |
footballpenaltiesBL | 1.0.0 | footBayes | 0.2.0 |
forcats | 1.0.0 | foreach | 1.5.2 |
ForeCA | 0.2.7 | forecast | 8.23.0 |
ForecastComb | 1.3.1 | forecastHybrid | 5.0.19 |
forecastLSW | 1.0 | forecastML | 0.9.0 |
FoReco | 0.2.6 | ForeComp | 0.9.0 |
forecTheta | 2.6.2 | forestplot | 3.1.3 |
forge | 0.2.0 | formatR | 1.14 |
formattable | 0.2.1 | formods | 0.1.6 |
Formula | 1.2-5 | formula.tools | 1.7.1 |
FossilSim | 2.3.3 | fourPNO | 1.1.0 |
fpc | 2.2-12 | fpcb | 0.1.0 |
fpCompare | 0.2.4 | FPLdata | 0.1.0 |
fPortfolio | 4023.84 | fpp2 | 2.5 |
fpp3 | 1.0.0 | fracdiff | 1.5-3 |
fracdist | 0.1.1 | Frames2 | 0.2.1 |
FRAPO | 0.4-1 | fredr | 2.1.0 |
freecurrencyapi | 0.1.0 | freesurferformats | 0.1.18 |
fRegression | 4021.83 | frenchdata | 0.2.0 |
freqdom | 2.0.5 | freqdom.fda | 1.0.1 |
fresh | 0.2.1 | FrF2 | 2.3-3 |
FrF2.catlg128 | 1.2-3 | FRK | 2.3.1 |
frontier | 1.1-8 | frostr | 0.2.0 |
fs | 1.6.4 | FSA | 0.9.5 |
fslr | 2.25.3 | fst | 0.9.8 |
fstcore | 0.9.18 | fTrading | 3042.79 |
ftrCOOL | 2.0.0 | ftsa | 6.4 |
func2vis | 1.0-3 | functional | 0.6 |
fungible | 2.4.4 | funtimes | 9.1 |
furrr | 0.3.1 | futile.logger | 1.4.3 |
futile.options | 1.0.1 | future | 1.34.0 |
future.apply | 1.11.2 | fuzzyjoin | 0.1.6 |
fxregime | 1.0-4 | GA | 3.2.4 |
GAD | 2.0 | gafit | 0.5.1 |
gam | 1.22-4 | gamlr | 1.13-8 |
gamlss | 5.4-22 | gamlss.data | 6.0-6 |
gamlss.dist | 6.1-1 | gamm4 | 0.2-6 |
GANPA | 1.2 | GANPAdata | 1.0 |
gap | 1.5-3 | gap.datasets | 0.0.6 |
gapfill | 0.9.6-1 | GARCHSK | 0.1.0 |
garchx | 1.5 | gargle | 1.5.2 |
garma | 0.9.13 | GAS | 0.3.4 |
gasmodel | 0.6.0 | gaussquad | 1.0-3 |
GaussSuppression | 0.8.8 | gbm | 2.2.2 |
gbutils | 0.5 | gclus | 1.3.2 |
GCPM | 1.2.2 | gdalcubes | 0.7.0 |
gdalUtilities | 1.2.5 | gdata | 3.0.0 |
GDINA | 2.9.4 | gdistance | 1.6.4 |
gdpc | 1.1.4 | gdtools | 0.3.7 |
gear | 0.3.4 | gee | 4.13-27 |
geeM | 0.10.1 | geepack | 1.3.11 |
geigen | 2.3 | geiger | 2.0.11 |
genalg | 0.2.1 | gender | 0.6.0 |
GeneCycle | 1.1.5 | geneExpressionFromGEO | 0.9 |
genefilter | 1.86.0 | GeneNet | 1.2.16 |
GeneralizedHyperbolic | 0.8-6 | GeneralizedUmatrix | 1.2.6 |
generics | 0.1.3 | genetics | 1.3.8.1.3 |
geno2proteo | 0.0.6 | GenomeInfoDb | 1.40.1 |
GenomeInfoDbData | 1.2.12 | GenomicAlignments | 1.40.0 |
GenomicFeatures | 1.56.0 | GenomicRanges | 1.56.1 |
GenomicTools.fileHandler | 0.1.5.9 | genoPlotR | 0.8.11 |
GenSA | 1.1.14 | geobr | 1.9.0 |
geodist | 0.1.0 | geogrid | 0.1.2 |
geojson | 0.3.5 | geojsonio | 0.11.3 |
geojsonsf | 2.0.3 | GEOmap | 2.5-11 |
geomapdata | 2.0-2 | geometa | 0.8-0 |
GEOmetadb | 1.66.0 | geometries | 0.2.4 |
geometry | 0.4.7 | geomorph | 4.0.8 |
geomtextpath | 0.1.4 | geonames | 0.999 |
geonapi | 0.7-2 | GEOquery | 2.72.0 |
geoR | 1.9-4 | georob | 0.3-19 |
geos | 0.2.4 | geosapi | 0.7-1 |
geoscale | 2.0.1 | geosphere | 1.5-18 |
geospt | 1.0-4 | geostan | 0.6.2 |
geotopbricks | 1.5.8.2 | geouy | 0.2.8 |
gert | 2.1.0 | GET | 1.0-2 |
GetoptLong | 1.0.5 | getPass | 0.2-4 |
gets | 0.38 | GetTDData | 1.5.5 |
gfonts | 0.2.0 | ggalluvial | 0.12.5 |
GGally | 2.2.1 | ggalt | 0.4.0 |
gganimate | 1.0.9 | ggcharts | 0.2.1 |
ggdag | 0.2.13 | ggdemetra | 0.2.8 |
ggdendro | 0.2.0 | ggdist | 3.3.2 |
ggExtra | 0.10.1 | ggfittext | 0.10.2 |
ggforce | 0.4.2 | ggformula | 0.12.0 |
ggfortify | 0.4.17 | ggfun | 0.1.5 |
gggenes | 0.5.1 | gghalves | 0.1.4 |
ggimage | 0.3.3 | gginnards | 0.2.0 |
ggkegg | 1.2.2 | gglasso | 1.5.1 |
ggm | 2.5.1 | ggmap | 4.0.0 |
ggmcmc | 1.5.1.1 | ggmuller | 0.5.6 |
ggnetwork | 0.5.13 | ggnewscale | 0.5.0 |
ggokabeito | 0.1.0 | ggpath | 1.0.1 |
ggplot2 | 3.5.1 | ggplotify | 0.1.2 |
ggpmisc | 0.6.0 | ggpp | 0.5.8-1 |
ggpubr | 0.6.0 | ggquiver | 0.3.3 |
ggraph | 2.2.1 | ggrepel | 0.9.5 |
ggridges | 0.5.6 | ggsci | 3.2.0 |
ggseas | 0.5.4 | ggseqlogo | 0.2 |
ggsignif | 0.6.4 | ggsoccer | 0.1.7 |
ggspatial | 1.1.9 | ggstats | 0.6.0 |
ggtext | 0.1.2 | ggthemes | 5.1.0 |
ggtree | 3.12.0 | ggupset | 0.4.0 |
ggvis | 0.4.9 | gh | 1.4.1 |
ghyp | 1.6.4 | Gifi | 0.4-0 |
gifti | 0.8.0 | GIGrvg | 0.8 |
gimme | 0.7-18 | giscoR | 0.5.1 |
gistr | 0.9.0 | git2r | 0.33.0 |
gitcreds | 0.1.2 | gitlabr | 2.1.0 |
glarma | 1.6-0 | GlarmaVarSel | 1.0 |
glasso | 1.11 | glassoFast | 1.0.1 |
gld | 2.6.6 | glm2 | 1.2.1 |
glmmML | 1.1.6 | GLMMRR | 0.5.0 |
glmmSeq | 0.5.5 | glmmTMB | 1.1.9 |
glmnet | 4.1-8 | glmx | 0.2-0 |
GlobalOptions | 0.1.2 | globalOptTests | 1.1 |
globals | 0.16.3 | globaltest | 5.58.0 |
glpkAPI | 1.3.4 | glue | 1.7.0 |
gmailr | 2.0.0 | GMDH | 1.6 |
Gmedian | 1.2.7 | gmm | 1.8 |
gmnl | 1.1-3.2 | gmodels | 2.19.1 |
gmp | 0.7-4 | gmt | 2.0.3 |
gmvarkit | 2.1.2 | GNAR | 1.1.3 |
gnm | 1.1-5 | GO.db | 3.19.1 |
goftest | 1.2-3 | gogarch | 0.7-5 |
golem | 0.4.1 | gontr | 1.1.0 |
googleAnalyticsR | 1.2.0 | googleAuthR | 2.0.2 |
googleCloudStorageR | 0.7.0 | googleComputeEngineR | 0.3.0 |
googledrive | 2.1.1 | googleLanguageR | 0.3.0 |
googlePolylines | 0.8.4 | googlesheets4 | 1.1.1 |
googleVis | 0.7.3 | googleway | 2.7.8 |
GOSemSim | 2.30.0 | gower | 1.0.1 |
GOxploreR | 1.2.7 | GPareto | 1.1.8 |
GPArotation | 2024.3-1 | GPCMlasso | 0.1-7 |
GPfit | 1.0-8 | gpindex | 0.6.2 |
gplots | 3.1.3.1 | GPRMortality | 0.1.0 |
gprofiler2 | 0.2.3 | gradethis | 0.2.14 |
graDiEnt | 1.0.1 | gRain | 1.4.1 |
grantham | 0.1.2 | graph | 1.82.0 |
graphicalVAR | 0.3.4 | graphite | 1.50.0 |
graphlayouts | 1.1.1 | graphsim | 1.0.3 |
graphTweets | 0.5.3 | grates | 1.2.1 |
gratis | 1.0.7 | gravitas | 0.1.3 |
gravity | 1.1 | gRbase | 2.0.2 |
greeks | 1.4.2 | greta | 0.4.5 |
greybox | 2.0.1 | grf | 2.3.2 |
gridBase | 0.4-7 | gridExtra | 2.3 |
gridGraphics | 0.5-1 | gridSVG | 1.7-5 |
gridtext | 0.1.5 | grImport | 0.9-7 |
grImport2 | 0.3-3 | grnn | 0.1.0 |
groundhog | 3.2.0 | GroupSeq | 1.4.3 |
grplasso | 0.4-7 | grwat | 0.0.4 |
GSA | 1.03.3 | gsarima | 0.1-5 |
gsDesign | 3.6.4 | GSEABase | 1.66.0 |
gsheet | 0.4.5 | gsignal | 0.3-5 |
gsisdecoder | 0.0.1 | gsl | 2.1-8 |
gslnls | 1.3.2 | GSODR | 4.1.1 |
gson | 0.1.0 | gss | 2.2-7 |
gstat | 2.1-1 | gsubfn | 0.7 |
GSVA | 1.52.3 | GSVAdata | 1.40.0 |
gsw | 1.1-1 | gsynth | 1.2.1 |
gt | 0.11.0 | gtable | 0.3.5 |
gtheory | 0.1.2 | gtools | 3.9.5 |
gtrendsR | 1.5.1 | gtsummary | 2.0.0 |
GUIDE | 1.2.7 | gumboot | 1.0.1 |
GUniFrac | 1.8 | gustave | 1.0.0 |
gvc | 6.4.0 | gwavr | 0.3.1 |
gWidgets2 | 1.0-9 | GWmodel | 2.3-3 |
gwrr | 0.2-2 | GWSDAT | 3.2.1 |
h2o | 3.44.0.3 | hackeRnews | 0.1.0 |
HandTill2001 | 1.0.1 | HaploSim | 1.8.4.2 |
hardhat | 1.4.0 | hash | 2.2.6.3 |
haven | 2.5.4 | hbsae | 1.2 |
HBV.IANIGLA | 0.2.6 | HDF5Array | 1.32.1 |
hdf5r | 1.3.11 | hdi | 0.1-9 |
HDInterval | 0.2.4 | hdm | 0.3.2 |
HDMT | 1.0.5 | HDO.db | 0.99.1 |
hdrcde | 3.4 | HDShOP | 0.1.5 |
HDTSA | 1.0.3 | heatmaply | 1.5.0 |
heplots | 1.7.0 | here | 1.0.1 |
hett | 0.3-3 | hexbin | 1.28.3 |
hexSticker | 0.4.9 | hflights | 0.1 |
hglm | 2.2-1 | hglm.data | 1.0-1 |
hgnc | 0.1.4 | HGNChelper | 0.8.14 |
hgu95a.db | 3.13.0 | HH | 3.1-52 |
hht | 2.1.6 | HiClimR | 2.2.1 |
highcharter | 0.9.4 | highfrequency | 1.0.1 |
highlight | 0.5.1 | highr | 0.11 |
highs | 0.1-10 | HIMA | 2.2.1 |
hipread | 0.2.4 | hisse | 2.1.11 |
HistData | 0.9-1 | HKRbook | 0.1.3 |
HLMdiag | 0.5.0 | HMDHFDplus | 2.0.3 |
Hmisc | 5.1-3 | HMMpa | 1.0.1 |
HMP | 2.0.1 | HMPTrees | 1.4 |
hms | 1.1.3 | hoardr | 0.5.4 |
homals | 1.0-10 | hommel | 1.6 |
hoopR | 2.1.0 | hot.deck | 1.2 |
howzatR | 1.0.1 | hpfilter | 1.0.2 |
HRW | 1.0-5 | HSAUR3 | 1.0-14 |
hsstan | 0.8.2 | htm2txt | 2.2.2 |
htmlTable | 2.4.3 | htmltools | 0.5.8.1 |
HTMLUtils | 0.1.9 | htmlwidgets | 1.6.4 |
hts | 6.0.3 | HTSCluster | 2.0.11 |
htsr | 2.1.5 | httpcache | 1.2.0 |
httpcode | 0.3.0 | httping | 0.2.0 |
httpRequest | 0.0.11 | httptest | 4.2.2 |
httpuv | 1.6.15 | httr | 1.4.7 |
httr2 | 1.0.2 | hubeau | 0.5.0 |
humanFormat | 1.2 | humanize | 0.2.0 |
humidity | 0.1.5 | hunspell | 3.0.3 |
hurricaneexposure | 0.1.1 | hutils | 1.8.1 |
huxtable | 5.5.6 | hwriter | 1.3.2.1 |
hwwntest | 1.3.2 | hydraulics | 0.7.0 |
hydroEvents | 0.11 | hydrogeo | 0.6-1 |
hydroGOF | 0.6-0 | hydroloom | 1.0.2 |
HydroMe | 2.1.1 | hydropeak | 0.1.2 |
hydroroute | 0.1.2 | hydrostats | 0.2.9 |
hydrotoolbox | 1.1.2 | hydroTSM | 0.7-0 |
hyfo | 1.4.6 | HyperbolicDist | 0.6-5 |
hypergeo | 1.2-13 | iarm | 0.4.3 |
ibd | 1.6 | IBMPopSim | 1.0.0 |
iBreakDown | 2.1.2 | IBrokers | 0.10-2 |
ica | 1.0-3 | ICAMS | 2.3.12 |
ICAOD | 1.0.1 | iCARH | 2.0.2.1 |
icarus | 0.3.2 | ICBioMark | 0.1.4 |
ICC | 2.4.0 | iccbeta | 1.2.0 |
ICDS | 0.1.3 | iCellR | 1.6.7 |
Icens | 1.76.0 | ICGE | 0.4.2 |
ichimoku | 1.5.3 | ICS | 1.4-1 |
ICSNP | 1.1-2 | ICtest | 0.3-5 |
idbr | 1.2 | IDE | 0.3.1 |
idefix | 1.0.3 | idendr0 | 1.5.3 |
IDF | 2.1.2 | IDPmisc | 1.1.21 |
ids | 1.0.1 | ie2misc | 0.9.1 |
ie2miscdata | 1.0.4 | IETD | 1.0.0 |
ifaTools | 0.23 | ifo | 0.1.0 |
igraph | 2.0.3 | igraphdata | 1.0.1 |
illuminaio | 0.46.0 | imbibe | 0.1.1 |
imguR | 1.0.3 | IMIX | 1.1.5 |
immer | 1.5-13 | immunarch | 0.9.1 |
imp4p | 1.2 | implied | 0.5 |
implyr | 0.5.0 | import | 1.3.2 |
impute | 1.78.0 | imputeLCMD | 2.1 |
imputeTestbench | 3.0.3 | imputeTS | 3.3 |
imsig | 1.1.3 | inca | 0.0.4 |
IncDTW | 1.1.4.4 | incidence | 1.7.5 |
incidence2 | 2.3.1 | inctools | 1.0.15 |
inegiR | 3.0.0 | ineq | 0.2-13 |
infer | 1.0.7 | influence.SEM | 2.3 |
influxdbr | 0.14.2 | infotheo | 1.2.0.1 |
InfoTrad | 1.2 | ingredients | 2.3.0 |
ini | 0.3.1 | injurytools | 1.0.3 |
inline | 0.3.19 | insight | 0.20.2 |
InspectChangepoint | 1.2 | instaR | 0.2.4 |
insuranceData | 1.0 | insurancerating | 0.7.4 |
intamap | 1.5-7 | integIRTy | 1.0.7 |
InteRD | 0.1.1 | interep | 0.4.1 |
interleave | 0.1.2 | interp | 1.1-6 |
InterpretMSSpectrum | 1.4.5 | intervals | 0.15.4 |
inum | 1.0-5 | investr | 1.4.2 |
invgamma | 1.1 | ioncopy | 2.2.2 |
iotables | 0.9.3 | iotools | 0.3-5 |
ipaddress | 1.0.2 | ipdw | 2.0-0 |
ipfp | 1.0.2 | ipred | 0.9-15 |
ips | 0.0.12 | ipumsr | 0.8.1 |
iq | 1.9.12 | irace | 3.5 |
IRanges | 2.38.1 | IRdisplay | 1.1 |
IRkernel | 1.3.2 | irlba | 2.3.5.1 |
irr | 0.84.1 | irtDemo | 0.1.4 |
irtoys | 0.2.2 | irtrees | 1.0.0 |
IRTShiny | 1.2 | IsingFit | 0.4 |
IsingSampler | 0.2.3 | ISLR | 1.4 |
ismev | 1.42 | Iso | 0.0-21 |
isoband | 0.2.7 | ISOcodes | 2024.02.12 |
isotone | 1.1-1 | isoWater | 1.2.0 |
ISOweek | 0.6-2 | ISwR | 2.0-8 |
iterators | 1.0.14 | iterLap | 1.1-4 |
itertools | 0.1-3 | itscalledsoccer | 0.2.4 |
itsmr | 1.10 | ivreg | 0.6-3 |
JADE | 2.0-4 | jalcal | 0.1.0 |
janeaustenr | 1.0.0 | janitor | 2.2.0 |
JavaGD | 0.6-5 | JBrowseR | 0.10.2 |
jetset | 3.4.0 | jiebaR | 0.11 |
jiebaRD | 0.1 | jjb | 0.1.1 |
JMdesign | 1.5 | jointCalib | 0.1.0 |
jointDiag | 0.4 | jomo | 2.7-6 |
JoSAE | 0.3.0 | jose | 1.2.0 |
jpeg | 0.1-10 | jqr | 1.3.3 |
jquerylib | 0.1.4 | jrt | 1.1.2 |
js | 1.2 | jsonify | 1.2.2 |
jsonlite | 1.8.8 | jsonvalidate | 1.3.2 |
JSparO | 1.5.0 | jstor | 0.3.11 |
juicyjuice | 0.1.0 | JuliaConnectoR | 1.1.3 |
JWileymisc | 1.4.1 | kableExtra | 1.4.0 |
kalmanfilter | 2.1.1 | kappaSize | 1.2 |
kDGLM | 1.2.0 | KEGGgraph | 1.64.0 |
KEGGREST | 1.44.1 | kelvin | 2.0-2 |
Kendall | 2.2.1 | kequate | 1.6.4 |
keras | 2.15.0 | keras3 | 1.1.0.9000 |
kernelFactory | 0.3.0 | kernlab | 0.9-33 |
keyperm | 0.1.1 | keyring | 1.3.2 |
KFAS | 1.5.1 | kfigr | 1.2.1 |
kinship2 | 1.9.6.1 | kitagawa | 3.1.2 |
kiwisR | 0.2.0 | klaR | 1.7-3 |
klsh | 0.1.0 | km.ci | 0.5-6 |
kmer | 1.1.2 | KMsurv | 0.1-5 |
knitcitations | 1.0.12 | knitLatex | 0.9.0 |
knitr | 1.48 | kofnGA | 1.3 |
koRpus | 0.13-8 | KrigInv | 1.4.2 |
KRIS | 1.1.6 | krm | 2022.10-17 |
ks | 1.14.2 | kst | 0.5-4 |
kutils | 1.73 | kyotil | 2024.7-31 |
kza | 4.1.0.1 | labdsv | 2.1-0 |
label.switching | 1.8 | labeling | 0.4.3 |
labelled | 2.13.0 | labelVector | 0.1.2 |
laeken | 0.5.3 | LaF | 0.8.4 |
lagged | 0.3.2 | Lahman | 11.0-0 |
lakemorpho | 1.3.2 | LAM | 0.7-22 |
lambda.r | 1.2.4 | lamW | 2.2.4 |
landsat | 1.1.2 | landscapemetrics | 2.1.4 |
languagelayeR | 1.2.4 | languageR | 1.5.0 |
LaplacesDemon | 16.1.6 | LARF | 1.4 |
lars | 1.3 | latdiag | 0.3 |
later | 1.3.2 | latex2exp | 0.9.6 |
latticeExtra | 0.6-30 | LatticeKrig | 8.4 |
lava | 1.8.0 | lavaan | 0.6-18 |
LAWBL | 1.5.0 | lazyeval | 0.2.2 |
lazyWeave | 3.0.2 | lbfgs | 1.2.1.2 |
lbfgsb3c | 2024-3.4 | LCAvarsel | 1.1 |
lcda | 0.3.2 | lcmm | 2.1.0 |
lctools | 0.2-10 | lda | 1.5.2 |
ldbounds | 2.0.2 | leafem | 0.2.3 |
leaflet | 2.2.2 | leaflet.extras | 2.0.0 |
leaflet.providers | 2.0.0 | leafpm | 0.1.0 |
leafpop | 0.1.0 | leafsync | 0.1.0 |
leapp | 1.3 | leaps | 3.2 |
LearnBayes | 2.15.1 | learnr | 0.11.5.9000 |
legion | 0.1.2 | leiden | 0.4.3.1 |
leidenAlg | 1.1.3 | lfactors | 1.0.4 |
lfe | 3.0-0 | lfstat | 0.9.12 |
lgarch | 0.6-2 | lgr | 0.4.4 |
lgtdl | 1.1.5 | lhs | 1.2.0 |
libcoin | 1.0-10 | libgeos | 3.11.1-2 |
LiblineaR | 2.10-23 | lidR | 4.1.2 |
lifecontingencies | 1.3.11 | lifecycle | 1.0.4 |
LifeInsuranceContracts | 0.0.6 | LifeInsureR | 1.0.0 |
liftr | 0.9.2 | likert | 1.3.5 |
lilikoi | 2.1.1 | LIM | 1.4.7.1 |
limma | 3.60.4 | limSolve | 1.5.7.1 |
linelist | 1.1.4 | lineup | 0.44 |
lineup2 | 0.6 | link2GI | 0.6-1 |
linpk | 1.1.2 | linprog | 0.9-4 |
LinRegInteractive | 0.3-3 | lintools | 0.1.7 |
lisrelToR | 0.3 | listcomp | 0.4.1 |
listenv | 0.9.1 | liteq | 1.1.0 |
lmds | 0.1.0 | lme4 | 1.1-35.5 |
lmerTest | 3.1-3 | lmForc | 0.1.0 |
lmm | 1.4 | lmodel2 | 1.7-3 |
lmom | 3.0 | lmomco | 2.5.1 |
Lmoments | 1.3-1 | lmomRFA | 3.6 |
lmQCM | 0.2.4 | lmtest | 0.9-40 |
LNIRT | 0.5.1 | lobstr | 1.1.2 |
locfit | 1.5-9.10 | locits | 1.7.7 |
locpol | 0.8.0 | log4r | 0.4.3 |
logger | 0.3.0 | logging | 0.10-108 |
logitnorm | 0.8.39 | logitr | 1.1.2 |
logspline | 2.1.22 | lokern | 1.1-12 |
lomb | 2.5.0 | longitudinal | 1.1.13 |
longitudinalData | 2.4.5.1 | longmemo | 1.1-3 |
LongMemoryTS | 0.1.0 | longpower | 1.0.25 |
longurl | 0.3.3 | loo | 2.8.0 |
lordif | 0.3-3 | lotri | 0.4.3 |
LowRankQP | 1.0.6 | lpacf | 1.0.1 |
lpdensity | 2.4 | lpirfs | 0.2.3 |
LPM | 3.2 | LPS | 1.0.16 |
lpSolve | 5.6.20 | lpSolveAPI | 5.5.2.0-17.12 |
lsa | 0.73.3 | lsei | 1.3-0 |
lsl | 0.5.6 | lslx | 0.6.11 |
LSMonteCarlo | 1.0 | LSMRealOptions | 0.2.1 |
LSPFP | 1.0.3 | LSTS | 2.1 |
LSWPlib | 0.1.0 | ltm | 1.2-0 |
ltsa | 1.4.6 | lubridate | 1.9.3 |
LUCIDus | 3.0.2 | lulcc | 1.0.4 |
Luminescence | 0.9.24 | lutz | 0.3.2 |
luz | 0.4.0 | lvnet | 0.3.5 |
lvplot | 0.2.1 | LWFBrook90R | 0.5.3 |
lwgeom | 0.2-14 | M3C | 1.26.0 |
m5 | 0.1.1 | MAAPER | 1.1.1 |
maat | 1.1.0 | madrat | 3.6.4 |
maestro | 0.1.2 | maftools | 2.20.0 |
magclass | 6.13.2 | magic | 1.6-1 |
magick | 2.8.4 | magrittr | 2.0.3 |
maGUI | 4.0 | mailR | 0.8 |
makeit | 1.0.1 | makepipe | 0.2.1 |
makeProject | 1.0 | malariaAtlas | 1.6.1 |
MAMS | 2.0.2 | manhattanly | 0.3.0 |
ManifoldOptim | 1.0.1 | manipulate | 1.0.1 |
manipulateWidget | 0.11.1 | MaOEA | 0.6.2 |
Map2NCBI | 1.4 | MAPA | 2.0.7 |
mapdata | 2.3.1 | mapdeck | 0.3.5 |
mapedit | 0.6.0 | mapiso | 0.3.0 |
maplegend | 0.1.0 | mapme.biodiversity | 0.8.0 |
mapmisc | 2.1.0 | mapproj | 1.2.11 |
maps | 3.4.2 | mapsapi | 0.5.4 |
mapsf | 0.11.0 | mapSpain | 0.9.1 |
maptiles | 0.7.0 | maptpx | 1.9-7 |
maptree | 1.4-8 | mapview | 2.11.2 |
mAr | 1.2-0 | mar1s | 2.1.1 |
marcher | 0.0-2 | marginaleffects | 0.21.0 |
margins | 0.3.28 | markdown | 1.13 |
markerpen | 0.1.1 | markophylo | 1.0.9 |
markovchain | 0.9.5 | MarkowitzR | 1.0.3 |
marmap | 1.0.10 | marqLevAlg | 2.0.8 |
MARSS | 3.11.9 | MassSpecWavelet | 1.70.0 |
Matching | 4.10-14 | matchingMarkets | 1.0-4 |
matchingR | 1.3.3 | MatchIt | 4.5.5 |
matchmaker | 0.1.1 | MatchThem | 1.2.1 |
mathjaxr | 1.6-0 | mathpix | 0.6.0 |
matlab | 1.0.4.1 | matlabr | 1.5.2 |
matrixcalc | 1.0-6 | MatrixExtra | 0.1.15 |
MatrixGenerics | 1.16.0 | MatrixModels | 0.5-3 |
matrixset | 0.3.0 | matrixStats | 1.3.0 |
matrixTests | 0.2.3 | mauricer | 2.5.4 |
maxLik | 1.5-2.1 | MaxPro | 4.1-2 |
maxstat | 0.7-25 | MBA | 0.1-0 |
mbbefd | 0.8.11 | MBBEFDLite | 0.0.4 |
MBC | 0.10-6 | MBESS | 4.9.3 |
MBHdesign | 2.3.15 | mblm | 0.12.1 |
mboost | 2.9-10 | mbsts | 3.0 |
mc2d | 0.2.1 | MCAvariants | 2.6.1 |
mcclust | 1.0.1 | mcga | 3.0.7 |
mclust | 6.1.1 | mcmc | 0.9-8 |
MCMC.qpcr | 1.2.4 | mcmcensemble | 3.1.0 |
MCMCglmm | 2.36 | MCMCpack | 1.7-0 |
mcmcse | 1.5-0 | MCMCvis | 0.16.3 |
mco | 1.16 | Mcomp | 2.8 |
mcompanion | 0.6 | MCPMod | 1.0-10.1 |
mdftracks | 0.2.2 | measurementProtocol | 0.1.1 |
meboot | 1.4-9.4 | medflex | 0.6-10 |
Mediana | 1.0.8 | mediation | 4.5.0 |
MEFM | 0.1.1 | MEIGOR | 1.38.0 |
mem | 2.18 | memapp | 2.16 |
memisc | 0.99.31.7 | memoise | 2.0.1 |
MEMSS | 0.9-3 | MESS | 0.5.12 |
meta | 7.0-0 | metaboData | 0.6.3 |
MetabolAnalyze | 1.3.1 | MetabolicSurv | 1.1.2 |
MetabolomicsBasics | 1.4.5 | metacoder | 0.3.7 |
metadat | 1.2-0 | metafor | 4.6-0 |
metaheuristicOpt | 2.0.0 | MetaIntegrator | 2.1.3 |
metaMA | 3.1.3 | metap | 1.11 |
metaplot | 0.8.4 | metaRNASeq | 1.0.7 |
metaSEM | 1.4.0 | metasens | 1.5-2 |
meteo | 2.0-3 | meteoland | 2.2.1 |
metR | 0.15.0 | Metrics | 0.1.4 |
metRology | 0.9-28-1 | MetSizeR | 2.0.0 |
mev | 1.17 | mFilter | 0.1-5 |
Mfuzz | 2.64.0 | mfx | 1.2-2 |
mgm | 1.2-14 | mgsub | 1.7.3 |
mhurdle | 1.3-1 | mi | 1.1 |
mi4p | 1.1 | mice | 3.16.0 |
miceadds | 3.17-44 | micEcon | 0.6-18 |
micEconAids | 0.6-20 | micEconCES | 1.0-2 |
micEconIndex | 0.1-8 | micEconSNQP | 0.6-10 |
microbenchmark | 1.4.10 | micromap | 1.9.8 |
Microsoft365R | 2.4.0 | MicSim | 2.0.1 |
midasr | 0.8 | miic | 1.5.3 |
MIIVsem | 0.5.8 | mime | 0.12 |
mind | 1.1.0 | MinEDfind | 0.1.3 |
minerva | 1.5.10 | minet | 3.62.0 |
miniCRAN | 0.3.0 | minimalRSD | 1.0.0 |
miniUI | 0.1.1.1 | minpack.lm | 1.2-4 |
minqa | 1.2.7 | MINTplates | 1.0.1 |
minty | 0.0.1 | mipfp | 3.2.1 |
mirai | 1.1.1 | MiRNAQCD | 1.1.3 |
mirt | 1.42 | mirtCAT | 1.14 |
misc3d | 0.9-1 | miscTools | 0.6-28 |
missForest | 1.5 | missMDA | 1.19 |
mitml | 0.4-5 | mitools | 2.4 |
mix | 1.0-12 | mixAR | 0.22.8 |
MixedPsy | 1.1.0 | mixexp | 1.2.7 |
mixl | 1.3.4 | mixOmics | 6.28.0 |
mixsqp | 0.3-54 | mixtools | 2.0.0 |
mize | 0.2.4 | mknapsack | 0.1.0 |
mkssd | 1.2 | mlapi | 0.1.1 |
mlbench | 2.1-5 | mlbstats | 0.1.0 |
MLCIRTwithin | 2.1.1 | MLDS | 0.5.1 |
MLmetrics | 1.1.3 | mlmRev | 1.0-8 |
mlogit | 1.1-1 | mlogitBMA | 0.1-7 |
mlr | 2.19.2 | mlr3 | 0.20.2 |
mlr3learners | 0.7.0 | mlr3measures | 0.6.0 |
mlr3misc | 0.15.1 | mlr3spatiotempcv | 2.3.1 |
mlr3tuning | 1.0.0 | mlrMBO | 1.1.5.1 |
mlVAR | 0.5.2 | mma | 10.7-1 |
mmand | 1.6.3 | mmrm | 0.3.12 |
mnormt | 2.1.1 | MNP | 3.1-5 |
modeest | 2.4.0 | modeldata | 1.4.0 |
modelenv | 0.1.1 | ModelMap | 3.4.0.4 |
ModelMetrics | 1.2.2.2 | modelr | 0.1.11 |
modelSSE | 0.1-3 | modelsummary | 2.1.1 |
modeltime | 1.3.0 | modeltime.resample | 0.2.3 |
modeltools | 0.2-23 | moderndive | 0.6.1 |
MODISTools | 1.1.5 | modules | 0.13.0 |
mokken | 3.1.2 | mombf | 3.5.4 |
moments | 0.14.1 | momentuHMM | 1.5.5 |
mondate | 1.0 | mongolite | 2.8.0 |
mongopipe | 0.1.1 | monmlp | 1.1.5 |
monobin | 0.2.4 | Morpho | 2.12 |
MortalityGaps | 1.0.0 | MortalityLaws | 2.1.0 |
MortalityTables | 2.0.5 | MortCast | 2.7-0 |
mosaic | 1.9.1 | mosaicCore | 0.9.4.0 |
mosaicData | 0.20.4 | MOSS | 0.2.2 |
mosum | 1.2.7 | motmot | 2.1.3 |
mousetrap | 3.2.3 | move | 4.2.4 |
move2 | 0.3.0 | movecost | 2.1 |
moveHMM | 1.9 | moveWindSpeed | 0.2.4 |
movMF | 0.2-8 | MPDiR | 0.2 |
MplusAutomation | 1.1.1 | mpm | 1.0-23 |
mpmi | 0.43.2.1 | MPSEM | 0.4-1 |
mpt | 0.8-0 | MPTinR | 1.14.1 |
MPV | 1.63 | mratios | 1.4.2 |
mrf | 0.1.6 | mrgsolve | 1.5.1 |
mritc | 0.5-3 | mschart | 0.4.0 |
mscstexta4r | 0.1.2 | mscsweblm4r | 0.1.2 |
MSGARCH | 2.51 | msgps | 1.3.5 |
msigdbr | 7.5.1 | msm | 1.7.1 |
msos | 1.2.0 | MSSQL | 1.0.0 |
mstate | 0.3.3 | MSwM | 1.5 |
mtarm | 0.1.2 | MTS | 1.2.1 |
mtsdi | 0.3.5 | mudfold | 1.1.21 |
multcomp | 1.4-26 | multcompView | 0.1-10 |
multDM | 1.1.4 | multicool | 1.0.1 |
MultiGlarmaVarSel | 1.0 | MultiLCIRT | 2.11 |
multilevLCA | 1.5.1 | MultipleBubbles | 0.2.0 |
multiplex | 3.4 | multipol | 1.0-9 |
multitaper | 1.0-17 | multiway | 1.0-6 |
multiwayvcov | 1.2.3 | multtest | 2.60.0 |
MuMIn | 1.48.4 | munfold | 0.3.5 |
munsell | 0.5.1 | musica | 0.1.3 |
mutoss | 0.1-13 | mutSignatures | 2.1.1 |
mvgam | 1.1.2 | mvglmmRank | 1.2-4 |
mvLSW | 1.2.5 | mvLSWimpute | 0.1.1 |
mvMORPH | 1.1.9 | mvnfast | 0.2.8 |
mvnormtest | 0.1-9-3 | mvQuad | 1.0-8 |
mvtnorm | 1.2-5 | mvtsplot | 1.0-5 |
mxkssd | 1.2 | myClim | 1.1.0 |
n1qn1 | 6.0.1-11 | N2R | 1.0.3 |
nabor | 0.5.0 | NACHO | 2.0.6 |
NADA | 1.6-1.1 | NAEPirtparams | 1.0.0 |
NAEPprimer | 1.0.1 | nanoarrow | 0.5.0.1 |
nanonext | 1.1.1 | nanostringr | 0.4.2 |
nanotime | 0.3.9 | nardl | 0.1.6 |
nasapower | 4.2.1 | natserv | 1.0.0 |
naturalsort | 0.1.3 | NBAloveR | 0.1.3.3 |
nbapalettes | 0.1.0 | NbClust | 3.0.1 |
NBPSeq | 0.3.1 | nbTransmission | 1.1.4 |
ncappc | 0.3.0 | ncar | 0.5.0 |
ncbit | 2013.03.29.1 | ncdf4 | 1.22 |
ncdfgeom | 1.1.6 | ncf | 1.3-2 |
ncmeta | 0.4.0 | NCmisc | 1.2.0 |
ncvreg | 3.14.2 | ndjson | 0.9.0 |
neighbours | 0.1-3 | neldermead | 1.0-12 |
neo2R | 2.4.2 | net4pg | 0.1.1 |
netgsa | 4.0.5 | NetIndices | 1.4.4.1 |
nets | 0.9.1 | NetSimR | 0.1.5 |
network | 1.18.2 | networkABC | 0.8-1 |
NetworkChange | 0.8 | NetworkComparisonTest | 2.2.2 |
networkD3 | 0.4 | networkDynamic | 0.11.4 |
networkLite | 1.0.5 | NetworkRiskMeasures | 0.1.4 |
NetworkToolbox | 1.4.2 | networktools | 1.5.2 |
networktree | 1.0.1 | neuralnet | 1.44.2 |
NeuralNetTools | 1.5.3 | neurobase | 1.32.4 |
neuroim | 0.0.6 | neuRosim | 0.2-14 |
NewmanOmics | 1.0.11 | nFactors | 2.4.1.1 |
NFCP | 1.2.1 | nfl4th | 1.0.4 |
nflfastR | 4.6.1 | nflplotR | 1.3.1 |
nflreadr | 1.4.1 | nflseedR | 1.2.0 |
NFLSimulatoR | 0.4.0 | nflverse | 1.0.3 |
ngspatial | 1.2-2 | nhanesA | 1.1 |
nhdplusTools | 1.2.1 | nhdR | 0.6.1 |
nhlapi | 0.1.4 | NHLData | 1.0.0 |
NHPoisson | 3.3 | nifti.io | 1.0.0 |
nilde | 1.1-7 | nimble | 1.2.1 |
NISTnls | 0.9-13 | nixtlar | 0.5.2 |
NlcOptim | 0.6 | nleqslv | 3.3.5 |
NlinTS | 1.4.5 | nlmeVPC | 2.6 |
nlmixr2 | 2.1.2 | nlmixr2data | 2.0.9 |
nlmixr2est | 2.2.2 | nlmixr2extra | 2.0.10 |
nlmixr2plot | 2.0.9 | nlmixr2rpt | 0.2.0 |
nloptr | 2.1.1 | NLP | 0.3-0 |
nls2 | 0.3-4 | nlsem | 0.8-1 |
nlsic | 1.0.4 | nlsr | 2023.8.31 |
nlstools | 2.1-0 | nlt | 2.2-1 |
nlts | 1.0-2 | nLTT | 1.4.9 |
NMF | 0.27 | NMOF | 2.8-0 |
nmw | 0.1.5 | nnfor | 0.9.9 |
nnls | 1.5 | NNS | 10.8.2 |
noaastormevents | 0.2.0 | nodbi | 0.10.6 |
nomisr | 0.4.7 | nomnoml | 0.3.0 |
NonCompart | 0.7.0 | nonlinearTseries | 0.3.0 |
nonmem2R | 0.2.5 | nonmem2rx | 0.1.4 |
nonmemica | 1.0.8 | nonneg.cg | 0.1.6-1 |
nonnest2 | 0.5-7 | NonProbEst | 0.2.4 |
nonprobsvy | 0.1.0 | nor1mix | 1.3-3 |
norm | 1.0-11.1 | normalp | 0.7.2.1 |
nortest | 1.0-4 | nosoi | 1.1.2 |
notifyme | 0.3.0 | np | 0.60-17 |
npi | 0.2.0 | nppbib | 1.2-0 |
NPRED | 1.1.0 | nsarfima | 0.2.0.0 |
nse | 1.21 | nsga2R | 1.1 |
nspmix | 1.5-0 | nsprcomp | 0.5.1-2 |
nsRFA | 0.7-17 | NTS | 1.1.3 |
numberize | 1.0.0 | numbers | 0.8-5 |
numDeriv | 2016.8-1.1 | NVAR | 0.1.0 |
nvmix | 0.1-1 | o2geosocial | 1.1.3 |
o2plsda | 0.0.25 | oai | 0.4.0 |
OAIHarvester | 0.3-4 | obAnalytics | 0.1.1 |
objectProperties | 0.6.8 | objectSignals | 0.10.3 |
occ | 1.1 | oce | 1.8-2 |
OCNet | 1.2.2 | octopus | 0.4.2 |
od | 0.4.4 | odbc | 1.5.0 |
odds.converter | 1.4.8 | oddsapiR | 0.0.3 |
odin | 1.2.5 | odr | 1.4.4 |
OECD | 0.2.5 | oeli | 0.5.2 |
officer | 0.6.6 | ohoegdm | 0.1.0 |
OmicNavigator | 1.13.13 | omicwas | 0.8.0 |
ompr | 1.0.4 | omu | 1.1.2 |
onbrand | 1.0.5 | oncoPredict | 1.2 |
onlineforecast | 1.0.2 | onls | 0.1-2 |
ontologyIndex | 2.12 | oompaBase | 3.2.9 |
oompaData | 3.1.4 | OOR | 0.1.4 |
opdisDownsampling | 1.0.1 | OPDOE | 1.0-10 |
openair | 2.18-2 | opencage | 0.2.2 |
opencpu | 2.2.13 | opendotaR | 0.1.4 |
openEBGM | 0.9.1 | openintro | 2.5.0 |
OpenML | 1.12 | OpenMx | 2.21.11 |
openNLP | 0.2-7 | openNLPdata | 1.5.3-5 |
openssl | 2.2.0 | OpenStreetMap | 0.4.0 |
openxlsx | 4.2.6.1 | opera | 1.2.0 |
operator.tools | 1.6.3 | operators | 0.1-8 |
optBiomarker | 1.0-28 | OptCirClust | 0.0.4 |
optextras | 2019-12.4 | OptGS | 1.2 |
OptHedging | 1.0 | OptimalDesign | 1.0.1 |
OptimaRegion | 1.2 | optimbase | 1.0-10 |
optimizeR | 1.1.1 | optimParallel | 1.0-2 |
optimsimplex | 1.0-8 | optimx | 2023-10.21 |
OptionPricing | 0.1.2 | optiscale | 1.2.3 |
optmatch | 0.10.7 | orderly | 1.4.3 |
ordinal | 2023.12-4 | ore | 1.7.4.1 |
org.Hs.eg.db | 3.19.1 | ORIClust | 1.0-2 |
oro.dicom | 0.5.3 | oro.nifti | 0.11.4 |
oro.pet | 0.2.7 | OrthoPanels | 1.2-4 |
orthopolynom | 1.0-6.1 | osd | 0.1 |
osDesign | 1.8 | osmapiR | 0.1.0 |
osmdata | 0.2.5 | osmextract | 0.5.1 |
osqp | 0.6.3.3 | osrm | 4.2.0 |
otsfeatures | 1.0.0 | ouch | 2.20 |
outbreaker2 | 1.1.3 | outbreaks | 1.9.0 |
OUwie | 2.10 | overlapping | 2.1 |
ows4R | 0.4 | pa | 1.2-4 |
packcircles | 0.3.6 | packMBPLSDA | 0.9.0 |
packrat | 0.9.2 | padr | 0.6.2 |
pagoda2 | 1.0.12 | PairedData | 1.1.1 |
pairwise | 0.6.1-0 | paleobuddy | 1.0.0 |
paleotree | 3.4.7 | paleoTS | 0.6.1 |
paletteer | 1.6.0 | palmerpenguins | 0.1.1 |
pampe | 1.1.2 | pan | 1.9 |
pander | 0.6.5 | panelaggregation | 0.1.1 |
panelvar | 0.5.5 | papeR | 1.0-5 |
paradox | 1.0.1 | ParallelLogger | 3.3.0 |
parallelly | 1.38.0 | parallelMap | 1.5.1 |
parameters | 0.22.1 | ParamHelpers | 1.14.1 |
params | 0.7.3 | paran | 1.5.3 |
Pareto | 2.4.5 | parma | 1.7 |
parmigene | 1.1.0 | parsedate | 1.3.1 |
parsnip | 1.2.1 | partitions | 1.10-7 |
partsm | 1.1-3 | parttime | 0.1.2 |
party | 1.3-16 | partykit | 1.2-21 |
pastecs | 1.4.2 | patchwork | 1.2.0 |
pathfindR | 2.4.1 | pathfindR.data | 2.1.0 |
pathview | 1.44.0 | pathwayTMB | 0.1.3 |
Patterns | 1.5 | paws | 0.6.0 |
paws.analytics | 0.6.0 | paws.application.integration | 0.6.0 |
paws.common | 0.7.4 | paws.compute | 0.6.1 |
paws.cost.management | 0.6.1 | paws.customer.engagement | 0.6.0 |
paws.database | 0.6.0 | paws.developer.tools | 0.6.0 |
paws.end.user.computing | 0.6.0 | paws.machine.learning | 0.6.0 |
paws.management | 0.6.1 | paws.networking | 0.6.0 |
paws.security.identity | 0.6.1 | paws.storage | 0.6.0 |
pbapply | 1.7-2 | PBD | 1.4 |
pbdZMQ | 0.3-11 | PBIBD | 1.3 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.3 |
pbm | 1.2.1 | pbmcapply | 1.5.1 |
pbo | 1.3.5 | pbs | 1.1 |
PBSddesolve | 1.13.4 | PBSmapping | 2.73.4 |
PBSmodelling | 2.69.3 | pbv | 0.5-47 |
pcaMethods | 1.96.0 | pcaPP | 2.0-4-1 |
pcdpca | 0.4 | pcFactorStan | 1.5.4 |
pcIRT | 0.2.4 | PCMRS | 0.1-4 |
pco | 1.0.1 | PCPS | 1.0.7 |
pcse | 1.9.1.1 | pcts | 0.15.7 |
pdc | 1.0.3 | pder | 1.0-2 |
pdfCluster | 1.0-4 | pdfetch | 0.2.9 |
pdftables | 0.1 | pdftools | 3.4.0 |
pdist | 1.2.1 | pdp | 0.8.1 |
pdR | 1.9.2 | pdynmc | 0.9.11 |
peacots | 1.3.2 | PeakError | 2023.9.4 |
PeakSegDisk | 2023.11.27 | PeakSegJoint | 2024.6.27 |
PeakSegOptimal | 2024.1.24 | PearsonDS | 1.3.1 |
pedigree | 1.4.2 | PeerPerformance | 2.2.5 |
penalized | 0.9-52 | penaltyLearning | 2024.1.25 |
penppml | 0.2.3 | Peptides | 2.4.6 |
perARMA | 1.7 | performance | 0.12.2 |
PerformanceAnalytics | 2.0.4 | permPATH | 1.3 |
permute | 0.9-7 | pglm | 0.2-3 |
PGM2 | 1.0-1 | ph2bayes | 0.0.2 |
ph2bye | 0.1.4 | phangorn | 2.11.1 |
pharmaRTF | 0.1.4 | pharmr | 1.0.1 |
phateR | 1.0.7 | pheatmap | 1.0.12 |
philentropy | 0.8.0 | phonics | 1.3.10 |
phonTools | 0.2-2.2 | phyclust | 0.1-34 |
phyext2 | 0.0.4 | phylobase | 0.8.12 |
phylocanvas | 0.1.3 | phyloclim | 0.9.5 |
PHYLOGR | 1.0.11 | phylogram | 2.1.0 |
phylolm | 2.6.2 | phyloregion | 1.0.8 |
phyloseq | 1.48.0 | phylosignal | 1.3.1 |
phylotate | 1.3 | phylotools | 0.2.2 |
phyloTop | 2.1.2 | phyreg | 1.0.2 |
phytools | 2.3-0 | piar | 0.7.0 |
picante | 1.8.2 | picasso | 1.3.1 |
pid | 0.50 | piecewiseSEM | 2.3.0.1 |
piggyback | 0.1.5 | pillar | 1.9.0 |
pinfsc50 | 1.3.0 | pinnacle.data | 0.1.4 |
pins | 1.3.0 | PINSPlus | 2.0.7 |
pipe.design | 0.5.1 | pipeR | 0.6.1.3 |
piqp | 0.2.2 | piratings | 0.1.9 |
pixmap | 0.4-13 | PK | 1.3-6 |
PKconverter | 1.5 | pkdata | 0.1.0 |
pkgbuild | 1.4.4 | pkgcache | 2.2.2 |
pkgconfig | 2.0.3 | pkgdepends | 0.7.2 |
pkgdown | 2.1.0 | pkgfilecache | 0.1.5 |
pkgload | 1.4.0 | pkgsearch | 3.1.3 |
PKNCA | 0.11.0 | PKPDsim | 1.3.0 |
pkr | 0.1.3 | pks | 0.6-0 |
PlackettLuce | 0.4.3 | PlayerRatings | 1.1-0 |
plgp | 1.1-12 | plink | 1.5-1 |
plm | 2.6-4 | PLMIX | 2.1.1 |
PLmixed | 0.1.7 | plogr | 0.2.0 |
plot3D | 1.4.1 | plot3Drgl | 1.0.4 |
plotdap | 1.0.3 | plotly | 4.10.4 |
plotMCMC | 2.0.1 | plotmo | 3.6.3 |
plotrix | 3.8-4 | plotROC | 2.3.1 |
plotSEMM | 2.4 | PlotTools | 0.3.0 |
plotwidgets | 0.5.1 | pls | 2.8-4 |
plumber | 1.2.2 | plyr | 1.8.9 |
PMA | 1.2-3 | pmc | 1.0.6 |
pmr | 1.2.5.1 | pmxcode | 0.1.3 |
pmxpartab | 0.5.0 | pmxTools | 1.3 |
png | 0.1-8 | POD | 1.2.0 |
PoiClaClu | 1.0.2.1 | pointblank | 0.12.1 |
poisbinom | 1.0.1 | PoissonBinomial | 1.2.6 |
poLCA | 1.6.0.1 | polspline | 1.1.25 |
polyclip | 1.10-7 | polycor | 0.8-1 |
polyCub | 0.9.1 | polylabelr | 0.2.0 |
polynom | 1.4-1 | PolynomF | 2.0-8 |
polyreg | 0.8.0 | pomp | 5.10 |
pool | 1.0.3 | poorman | 0.2.7 |
PopED | 0.6.0 | popEpi | 0.4.12 |
popPCR | 0.1.1.1 | portes | 6.0 |
PortfolioOptim | 1.1.1 | PortRisk | 1.1.0 |
posologyr | 1.2.4 | PostcodesioR | 0.3.1 |
posterior | 1.6.0 | postlightmercury | 1.2 |
powdist | 0.1.4 | powerbydesign | 1.0.5 |
powerGWASinteraction | 1.1.3 | PowerSDI | 1.0.0 |
powerSurvEpi | 0.1.3 | PowerTOST | 1.5-6 |
PowerUpR | 1.1.0 | PP | 0.6.3-11 |
ppcor | 1.1 | PPRL | 0.3.8 |
pps | 1.0 | PQLseq | 1.2.1 |
prabclus | 2.3-3 | pracma | 2.4.4 |
PracTools | 1.5 | praise | 1.0.0 |
pRecipe | 3.0.1-3 | PreciseSums | 0.6 |
PredCRG | 1.0.2 | prediction | 0.3.18 |
predicts | 0.1-11 | prefmod | 0.8-36 |
PReMiuM | 3.2.13 | preprocessCore | 1.66.0 |
prereg | 0.6.0 | PresenceAbsence | 1.1.11 |
presize | 0.3.7 | prettydoc | 0.4.1 |
prettyGraphs | 2.1.6 | prettymapr | 0.2.5 |
prettyunits | 1.2.0 | prevalence | 0.4.1 |
prevR | 5.0.0 | princurve | 2.1.6 |
prioGene | 1.0.1 | prioritylasso | 0.3.1 |
prism | 0.2.1 | prismatic | 1.1.2 |
ProbitSpatial | 1.1 | pROC | 1.18.5 |
proceduralnames | 0.2.2 | processx | 3.8.4 |
prodigenr | 0.6.2 | prodlim | 2024.06.25 |
ProfessR | 2.4-3 | profileModel | 0.6.1 |
profileR | 0.3-5 | profoc | 1.3.2 |
profvis | 0.3.8 | progress | 1.2.3 |
progressr | 0.14.0 | PROJ | 0.5.0 |
proj4 | 1.0-14 | ProjectionBasedClustering | 1.2.2 |
projects | 2.1.3 | ProjectTemplate | 0.11.0 |
promises | 1.3.0 | prophet | 1.0 |
PROsetta | 0.4.1 | proto | 1.0.0 |
protoclust | 1.6.4 | protolite | 2.3.0 |
protr | 1.7-2 | protti | 0.9.0 |
protViz | 0.7.9 | proxy | 0.4-27 |
proxyC | 0.4.1 | prozor | 0.3.1 |
PRROC | 1.3.1 | pryr | 0.1.6 |
ps | 1.7.7 | PSCBS | 0.67.0 |
pscl | 1.5.9 | psd | 2.1.1 |
PSF | 0.5 | psidR | 2.2 |
pso | 1.0.4 | psoptim | 1.0 |
pspline | 1.0-20 | psqn | 0.3.1 |
PSSMCOOL | 0.2.4 | psy | 1.2 |
psych | 2.4.6.26 | psychomix | 1.1-8 |
psychonetrics | 0.13 | psychotools | 0.7-4 |
psychotree | 0.16-1 | psychTools | 2.4.3 |
psyphy | 0.3 | PTAk | 2.0.0 |
ptm | 1.0.1 | PTSR | 0.1.2 |
ptw | 1.9-16 | PTXQC | 1.1.1 |
pubmed.mineR | 1.0.20 | purrr | 1.0.2 |
pushoverr | 1.1.0 | pvca | 1.44.0 |
pvclust | 2.2-0 | pwr | 1.3-0 |
PwrGSD | 2.3.7 | pwrRasch | 0.1-2 |
pwt | 7.1-1 | pwt8 | 8.1-1 |
pwt9 | 9.1-0 | pxweb | 0.17.0 |
PxWebApiData | 0.9.0 | qap | 0.1-2 |
qcv | 1.0 | qdap | 2.4.6 |
qdapDictionaries | 1.0.7 | qdapRegex | 0.7.8 |
qdapTools | 1.3.7 | qgam | 1.3.4 |
qgisprocess | 0.4.0 | qgraph | 1.9.8 |
qicharts2 | 0.7.5 | qlcal | 0.0.12 |
qmap | 1.0-4 | qMRI | 1.2.7.6 |
qpdf | 1.3.3 | qpgraph | 2.38.0 |
qpmadr | 1.1.0-0 | qpNCA | 1.1.6 |
qqconf | 1.3.2 | qqplotr | 0.0.6 |
qrmdata | 2024-03-04-2 | qrmtools | 0.0-17 |
qrng | 0.0-10 | qs | 0.26.3 |
qtl | 1.66 | quadprog | 1.5-8 |
quadprogXT | 0.0.5 | qualmap | 0.2.2 |
qualtRics | 3.2.1 | Quandl | 2.11.0 |
quanteda | 4.0.2 | quantification | 0.2.0 |
quantmod | 0.4.26 | quantreg | 5.98 |
quantspec | 1.2-4 | Quartet | 1.2.6 |
questionr | 0.7.8 | QuickJSR | 1.3.1 |
quickpsy | 0.1.5.1 | qvalue | 2.36.0 |
qvcalc | 1.0.3 | R.cache | 0.16.0 |
R.devices | 2.17.2 | R.filesets | 2.15.1 |
R.huge | 0.10.1 | R.matlab | 3.7.0 |
R.methodsS3 | 1.8.2 | R.oo | 1.26.0 |
R.rsp | 0.46.0 | R.utils | 2.12.3 |
R0 | 1.3-1 | R2BEAT | 1.0.5 |
r2d3 | 0.2.6 | R2HTML | 2.3.4 |
R2jags | 0.8-5 | R2OpenBUGS | 3.2-3.2.1 |
r2rtf | 1.1.1 | R2WinBUGS | 2.1-22.1 |
R4CouchDB | 0.7.5 | R6 | 2.5.1 |
R6P | 0.3.0 | radarchart | 0.3.1 |
radiant | 1.6.6 | radiant.basics | 1.6.6 |
radiant.data | 1.6.6 | radiant.design | 1.6.6 |
radiant.model | 1.6.6 | radiant.multivariate | 1.6.6 |
RAdwords | 0.1.18 | ragg | 1.3.2 |
ragtop | 1.1.1 | rainbow | 3.8 |
rakeR | 0.2.1 | rAmCharts | 2.1.15 |
RAMClustR | 1.3.1 | ramcmc | 0.1.2 |
ramps | 0.6.18 | randomcoloR | 1.1.0.1 |
randomForest | 4.7-1.1 | randomForestSRC | 3.3.1 |
randomizeR | 3.0.2 | randomizr | 1.0.0 |
randomLCA | 1.1-3 | randtoolbox | 2.0.4 |
rang | 0.3.0 | ranger | 0.16.0 |
rankdist | 1.1.4 | RANN | 2.6.1 |
rapiclient | 0.1.5 | rapidjsonr | 1.2.0 |
RApiSerialize | 0.1.3 | rappdirs | 0.3.3 |
rapport | 1.1 | rapportools | 1.1 |
Raquifer | 0.1.0 | rARPACK | 0.11-0 |
RaschSampler | 0.8-10 | raster | 3.6-26 |
rasterImage | 0.4.0 | rasterVis | 0.51.6 |
ratelimitr | 0.4.1 | RATest | 0.1.10 |
RavenR | 2.2.2 | raw | 0.1.8 |
rBayesianOptimization | 1.2.1 | Rbeast | 1.0.0 |
rbedrock | 0.3.2 | rbenchmark | 1.0.0 |
RBGL | 1.80.0 | rBiasCorrection | 0.3.4 |
rbibutils | 2.2.16 | Rblpapi | 0.3.14 |
rbmi | 1.2.6 | RCarb | 0.1.6 |
rcartocolor | 2.1.1 | Rcatch22 | 0.2.1 |
rcdd | 1.6 | RCEIM | 0.3 |
Rchoice | 0.3-6 | RCircos | 1.2.2 |
rclipboard | 0.2.1 | rCMA | 1.1.1 |
rcmdcheck | 1.4.0 | Rcmdr | 2.9-2 |
RcmdrMisc | 2.9-1 | RcmdrPlugin.depthTools | 1.4 |
RcmdrPlugin.DoE | 0.12-5 | RcmdrPlugin.temis | 0.7.10 |
RColorBrewer | 1.1-3 | rcompendium | 1.3 |
Rcpp | 1.0.13 | RcppAnnoy | 0.0.22 |
RcppArmadillo | 14.0.0-1 | RcppCCTZ | 0.2.12 |
RcppClock | 1.1 | RcppDate | 0.0.3 |
RcppDE | 0.1.7 | RcppDist | 0.1.1 |
RcppEigen | 0.3.4.0.0 | RcppGSL | 0.3.13 |
RcppHNSW | 0.6.0 | RcppHungarian | 0.3 |
RcppNumerical | 0.6-0 | RcppParallel | 5.1.8 |
RcppProgress | 0.4.2 | RcppQuantuccia | 0.1.2 |
RcppRedis | 0.2.4 | RcppRoll | 0.3.1 |
RcppSimdJson | 0.1.12 | RcppSpdlog | 0.0.17 |
RcppThread | 2.1.7 | rcpptimer | 1.1.0 |
RcppTN | 0.2-2 | RcppTOML | 0.2.2 |
RcppZiggurat | 0.1.6 | Rcrawler | 0.1.9-1 |
rcrossref | 1.2.0 | Rcsdp | 0.1.57.5 |
RCurl | 1.98-1.16 | RCy3 | 2.24.0 |
RCzechia | 1.12.2 | rdatacite | 0.5.4 |
rdbnomics | 0.6.4 | rdd | 0.57 |
rddensity | 2.5 | rdflib | 0.2.9 |
rdhs | 0.8.1 | rdlocrand | 1.0 |
rdmulti | 1.1 | RDota2 | 0.1.6 |
Rdpack | 2.6.1 | rdpower | 2.2 |
rdrobust | 2.2 | Rdsdp | 1.0.5.2.1 |
rdwd | 1.8.0 | re2 | 0.1.3 |
reactable | 0.4.4 | reactR | 0.6.0 |
read.gb | 2.2 | readabs | 0.4.16 |
reader | 1.0.6 | readJDX | 0.6.4 |
readODS | 2.3.0 | readr | 2.1.5 |
readsdmx | 0.3.1 | readstata13 | 0.10.1 |
readxl | 1.4.3 | reasonabletools | 0.1 |
REBayes | 2.56 | recipes | 1.1.0 |
reclin2 | 0.5.0 | recmap | 1.0.17 |
RecordLinkage | 0.4-12.4 | redcapAPI | 2.9.1 |
REDCapR | 1.1.0 | REDCapTidieR | 1.1.1 |
Rediscover | 0.3.2 | redland | 1.0.17-18 |
redux | 1.1.4 | RefManageR | 1.4.0 |
refugees | 2023.12.0 | regions | 0.1.8 |
registry | 0.5-1 | regnet | 1.0.1 |
regress | 1.3-21 | RegSDC | 0.7.0 |
regsem | 1.9.5 | regspec | 2.7 |
regtools | 1.7.0 | ReIns | 1.0.14 |
reinsureR | 0.1.0 | relations | 0.6-13 |
reldist | 1.7-2 | relimp | 1.0-5 |
rematch | 2.0.0 | rematch2 | 2.1.2 |
remotes | 2.5.0 | REndo | 2.4.10 |
rentrez | 1.2.3 | renv | 1.0.7 |
replicateBE | 1.1.3 | repmis | 0.5 |
repo | 2.1.5 | RepoGenerator | 0.0.1 |
reportfactory | 0.4.0 | reportr | 1.3.0 |
reporttools | 1.1.3 | repr | 1.1.7 |
representr | 0.1.5 | represtools | 0.1.3 |
reprex | 2.1.1 | reproducible | 2.1.0 |
reproj | 0.7.0 | reqres | 0.2.5 |
REQS | 0.8-13 | request | 0.1.0 |
Require | 1.0.0 | rerddap | 1.1.0 |
rerddapXtracto | 1.2.1 | resampledata | 0.3.1 |
resde | 1.1 | reservoir | 1.1.5 |
reshape | 0.8.9 | reshape2 | 1.4.4 |
restfulr | 0.0.15 | restimizeapi | 1.0.0 |
reticulate | 1.38.0 | retrosheet | 1.1.6 |
retry | 0.1.1 | revdbayes | 1.5.4 |
RevGadgets | 1.2.1 | Revticulate | 1.0.0 |
rex | 1.2.1 | Rexperigen | 0.2.1 |
Rfacebook | 0.6.15 | Rfast | 2.1.0 |
Rfast2 | 0.1.5.2 | rfigshare | 0.3.8 |
Rfit | 0.27.0 | rflexscan | 1.1.0 |
rgbif | 3.8.0 | RGBM | 1.0-11 |
rgee | 1.1.7 | rgen | 0.0.1 |
RGENERATE | 1.3.7 | RGENERATEPREC | 1.2.9 |
rgenoud | 5.9-0.10 | rgeoda | 0.0.10-4 |
rgl | 1.3.1 | Rglpk | 0.6-5.1 |
RgoogleMaps | 1.5.1 | RGraphics | 3.0-2 |
Rgraphviz | 2.48.0 | rgrass | 0.4-3 |
RGreenplum | 0.1.2 | rgugik | 0.4.1 |
RH2 | 0.2.4 | rhandsontable | 0.3.8 |
RHclust | 2.0.0 | rhdf5 | 2.48.0 |
rhdf5filters | 1.16.0 | Rhdf5lib | 1.26.0 |
RHMS | 1.7 | rhosa | 0.3.0 |
RhpcBLASctl | 0.23-42 | Rhtslib | 3.0.0 |
rhub | 2.0.0 | rib | 0.20.0 |
riceidconverter | 1.1.1 | RIdeogram | 0.2.2 |
ridge | 3.3 | riingo | 0.3.1 |
Rilostat | 2.1.0 | ring | 1.0.5 |
RInside | 0.2.18 | rintrojs | 0.3.4 |
rio | 1.2.1 | Rirt | 0.0.2 |
Risk | 1.0 | riskCommunicator | 1.0.1 |
riskParityPortfolio | 0.2.2 | RiskPortfolios | 2.1.7 |
riskSimul | 0.1.2 | ritis | 1.0.0 |
riverdist | 0.16.3 | rivernet | 1.2.3 |
rivnet | 0.4.2 | rjags | 4-15 |
rJava | 1.0-11 | RJDBC | 0.2-10 |
RJDemetra | 0.2.6 | rje | 1.12.1 |
rjson | 0.2.21 | RJSONIO | 1.3-1.9 |
rjstat | 0.4.3 | RKEA | 0.0-6 |
RKEAjars | 5.0-4 | RKelly | 1.0 |
rlang | 1.1.4 | rlas | 1.8.0 |
rle | 0.9.2 | rlecuyer | 0.3-8 |
rlemon | 0.2.1 | Rlgt | 0.2-2 |
Rlibeemd | 1.4.3 | Rlinkedin | 0.2 |
rlist | 0.4.6.2 | rLTP | 0.1.4 |
RLumShiny | 0.2.3 | RM2006 | 0.1.1 |
Rmalschains | 0.2-10 | rmapshaper | 0.5.0 |
RMariaDB | 1.3.2 | rmarkdown | 2.27 |
rmatio | 0.19.0 | RMAWGEN | 1.3.7 |
rmcfs | 1.3.5 | rmdpartials | 0.5.8 |
rmeta | 3.0 | rmgarch | 1.3-9 |
rminizinc | 0.0.8 | Rmisc | 1.5.1 |
rmoo | 0.2.0 | Rmosek | 1.3.5 |
Rmpfr | 0.9-5 | rms | 6.8-1 |
RMTstat | 0.3.1 | rmutil | 1.1.10 |
RMySQL | 0.10.27 | rmzqc | 0.5.4 |
Rnanoflann | 0.0.3 | RNAseqNet | 0.1.5 |
rnaturalearth | 1.0.1 | rnaturalearthdata | 1.0.0 |
RNCEP | 1.0.10 | rncl | 0.8.7 |
RND | 1.2 | RNentropy | 1.2.3 |
rneos | 0.4-0 | RNetCDF | 2.9-2 |
RNeXML | 2.4.11 | rngtools | 1.5.2 |
rngWELL | 0.10-9 | RNifti | 1.7.0 |
RNiftyReg | 2.8.3 | rnn | 1.9.0 |
rnrfa | 2.1.0.6 | roadoi | 0.7.2 |
ROAuth | 0.9.6 | robfilter | 4.1.5 |
RobKF | 1.0.2 | RoBMA | 3.1.0 |
robotoolbox | 1.3.2 | robotstxt | 0.7.13 |
robsurvey | 0.6 | robustbase | 0.99-3 |
RobustRankAggreg | 1.2.1 | rockchalk | 1.8.157 |
rocker | 0.3.1 | ROCR | 1.0-11 |
RODBC | 1.3-23 | rodd | 0.2-1 |
Rogue | 2.1.6 | ROI | 1.0-1 |
ROI.plugin.ecos | 1.0-2 | ROI.plugin.neos | 1.0-2 |
ROI.plugin.qpoases | 1.0-3 | roll | 1.1.7 |
Rook | 1.2 | ROOPSD | 0.3.9 |
rootSolve | 1.8.2.4 | ROpenDota | 0.1.2 |
roperators | 1.3.14 | roptim | 0.1.6 |
rorcid | 0.7.0 | rosetteApi | 1.14.4 |
rosm | 0.3.0 | rotl | 3.1.0 |
routr | 0.4.1 | roxygen2 | 7.3.2 |
rpact | 4.0.0 | RPANDA | 2.3 |
rpanel | 1.1-5.2 | rPanglaoDB | 0.2.1 |
rpart.plot | 3.1.2 | rpf | 1.0.14 |
Rphylopars | 0.3.10 | rpinterest | 0.3.1 |
RPMG | 2.2-7 | rpms | 0.5.1 |
rpostgis | 1.5.1 | RPostgres | 1.4.7 |
RPostgreSQL | 0.7-6 | RPPairwiseDesign | 1.0 |
RPresto | 1.4.6 | rprintf | 0.2.1 |
RprobitB | 1.1.4 | rprojroot | 2.0.4 |
RPushbullet | 0.3.4 | RPyGeo | 1.0.0 |
rqti | 0.3.0 | RQuantLib | 0.4.24 |
rrcov | 1.7-5 | rredlist | 0.7.1 |
rrefine | 2.1.0 | RRPP | 2.0.3 |
RRreg | 0.7.5 | RRTCS | 0.0.4 |
rrum | 0.2.1 | rsae | 0.3 |
RSAGA | 1.4.0 | Rsagacmd | 0.4.2 |
rsample | 1.2.1 | Rsamtools | 2.20.0 |
RSclient | 0.7-10 | rscopus | 0.6.6 |
rsdmx | 0.6-3 | rSEA | 2.1.2 |
RSEIS | 4.2-0 | RSelenium | 1.7.9 |
rsem | 0.5.1 | Rserve | 1.8-13 |
Rsfar | 0.0.1 | RSGHB | 1.2.2 |
rsi | 0.2.1 | rsm | 2.10.5 |
RSmartlyIO | 0.1.3 | rsoi | 0.5.6 |
Rsolnp | 1.16 | rspa | 0.2.8 |
rsparse | 0.5.2 | RSpectra | 0.16-2 |
RSQLite | 2.3.7 | Rssa | 1.0.5 |
rstac | 1.0.1 | rstan | 2.32.6 |
rstanarm | 2.32.1 | rstantools | 2.4.0 |
rstatix | 0.7.2 | rstiefel | 1.0.1 |
rStrava | 1.3.1 | rstudioapi | 0.16.0 |
rsurface | 1.1.0 | RSurveillance | 0.2.1 |
rsvd | 1.0.5 | rsvg | 2.6.0 |
Rsymphony | 0.1-33 | rTensor | 1.4.8 |
rtf | 0.4-14.1 | RTFA | 0.1.0 |
rticles | 0.27 | RTL | 1.3.5 |
rtoot | 0.3.4 | rtop | 0.6-9 |
rtracklayer | 1.64.0 | RTransferEntropy | 0.2.21 |
rtrim | 2.3.0 | rts | 1.1-14 |
Rtsne | 0.17 | Rttf2pt1 | 1.3.12 |
rtweet | 2.0.0 | rucrdtw | 0.1.6 |
rugarch | 1.5-1 | ruimtehol | 0.3.2 |
ruin | 0.1.1 | rules | 1.0.2 |
ruminate | 0.2.4 | runexp | 0.2.1 |
RUnit | 0.4.33 | runjags | 2.2.2-4 |
runner | 0.4.4 | runstats | 1.1.0 |
Runuran | 0.38 | rust | 1.4.2 |
RVA | 0.0.5 | Rvcg | 0.23 |
rversions | 2.1.2 | rvest | 1.0.4 |
Rwave | 2.6-5 | RWDataPlyr | 0.6.4 |
RweaveExtra | 1.1-0 | rwebstat | 1.1.1 |
RWeka | 0.4-46 | RWekajars | 3.9.3-2 |
rWikiPathways | 1.24.0 | rworldmap | 1.3-8 |
rworldxtra | 1.01 | rwunderground | 0.1.8 |
rxode2 | 2.1.3 | rxode2et | 2.0.13 |
rxode2ll | 2.0.11 | rxode2parse | 2.0.19 |
rxode2random | 2.1.1 | RYandexTranslate | 1.0 |
s2 | 1.1.7 | S4Arrays | 1.4.1 |
S4Vectors | 0.42.1 | sae | 1.3 |
saeRobust | 0.5.0 | saeSim | 0.11.0 |
SAEval | 1.0.0 | safetensors | 0.1.2 |
samadb | 0.3.0 | sampleSelection | 1.2-12 |
samplesize | 0.2-4 | sampling | 2.10 |
SamplingBigData | 1.0.0 | samplingbook | 1.2.4 |
SamplingStrata | 1.5-4 | samplingVarEst | 1.5 |
samr | 3.0 | sandwich | 3.1-0 |
sarima | 0.9.3 | SAScii | 1.0.2 |
sass | 0.4.9 | satellite | 1.0.5 |
sazedR | 2.0.2 | sbgcop | 0.980 |
SBN | 1.0.0 | scagnostics | 0.2-6 |
ScaledMatrix | 1.12.0 | scales | 1.3.0 |
scalreg | 1.0.1 | scam | 1.2-17 |
scaRabee | 1.1-4 | scatterD3 | 1.0.1 |
scattermore | 1.2 | scatterpie | 0.2.3 |
scatterplot3d | 0.3-44 | scBio | 0.1.6 |
sccore | 1.0.5 | scholar | 0.2.4 |
SCI | 1.0-2 | scINSIGHT | 0.1.4 |
scLink | 1.0.1 | scoper | 1.3.0 |
scoringRules | 1.1.1 | scoringutils | 1.2.2 |
SCORPIUS | 1.0.9 | ScottKnott | 1.3-2 |
scs | 3.2.4 | scSorter | 0.0.2 |
scTenifoldKnk | 1.0.1 | scTenifoldNet | 1.3 |
sctransform | 0.4.1 | SDaA | 0.1-5 |
sdcHierarchies | 0.21.0 | sdcMicro | 5.7.8 |
sdcSpatial | 0.5.2 | sdcTable | 0.32.6 |
sde | 2.0.18 | sdmTMB | 0.6.0 |
sdpt3r | 0.3 | sdrt | 1.0.0 |
sealasso | 0.1-3 | seas | 0.6-0 |
season | 0.3.15 | seasonal | 1.9.0 |
seasonalview | 0.3 | seastests | 0.15.4 |
secretbase | 1.0.1 | seeker | 1.1.5 |
seer | 1.1.8 | segmented | 2.1-1 |
SelectBoost | 2.2.2 | selectiveInference | 1.2.5 |
selectr | 0.4-2 | seleniumPipes | 0.3.7 |
sem | 3.1-15 | semantic.assets | 1.1.0 |
semds | 0.9-6 | SemiPar | 1.0-4.2 |
semmcmc | 0.0.6 | semPlot | 1.1.6 |
SEMsens | 1.5.5 | semsfa | 1.1 |
semTools | 0.5-6 | semtree | 0.9.20 |
semver | 0.2.0 | sendmailR | 1.4-0 |
SensoMineR | 1.27 | sentencepiece | 0.2.3 |
sentiment.ai | 0.1.1 | sentometrics | 1.0.0 |
separationplot | 1.4 | seqDesign | 1.2 |
seqgendiff | 1.2.4 | seqinr | 4.2-36 |
SeqNet | 1.1.3 | SequenceSpikeSlab | 1.0.1 |
seriation | 1.5.5 | servr | 0.30 |
sessioninfo | 1.2.2 | setartree | 0.2.1 |
setRNG | 2024.2-1 | sets | 1.0-25 |
settings | 0.2.7 | Seurat | 5.1.0 |
SeuratObject | 5.0.2 | sf | 1.0-16 |
sfd | 0.1.0 | sFFLHD | 0.1.2 |
sfheaders | 0.4.4 | sfsmisc | 1.1-18 |
sftime | 0.2-0 | sgeostat | 1.0-27 |
shades | 1.4.0 | shadowtext | 0.1.4 |
shape | 1.4.6.1 | shapefiles | 0.7.2 |
shapes | 1.2.7 | SharpeR | 1.3.0 |
shazam | 1.2.0 | ShiftConvolvePoibin | 1.0.0 |
shiny | 1.9.1 | shiny.semantic | 0.5.1 |
shinyAce | 0.4.2 | shinyalert | 3.1.0 |
shinybrms | 1.8.0 | shinyBS | 0.61.1 |
shinybusy | 0.3.3 | shinycssloaders | 1.1.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.4 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.1 |
shinyjs | 2.1.0 | shinymaterial | 1.2.0 |
shinystan | 2.6.0 | shinythemes | 1.2.0 |
shinyTree | 0.3.1 | shinyWidgets | 0.8.6 |
showimage | 1.0.0 | showtext | 0.9-7 |
showtextdb | 3.0 | shrinkTVP | 3.0.1 |
SIBERG | 2.0.3 | sigminer | 2.3.1 |
sigmoid | 1.4.0 | Signac | 1.13.0 |
SignacX | 2.2.5 | signal | 1.8-1 |
signs | 0.1.2 | sigora | 3.1.1 |
SigTree | 1.10.6 | Sim.DiffProc | 4.9 |
simcdm | 0.1.2 | SimComp | 3.3 |
SimDesign | 2.16 | simex | 1.8 |
simfinapi | 1.0.0 | simglm | 0.8.9 |
SimilarityMeasures | 1.4 | SimInf | 9.8.1 |
SIMMS | 1.3.2 | simpleboot | 1.1-8 |
simPop | 2.1.3 | simputation | 0.2.8 |
simrel | 2.1.0 | SiMRiv | 1.0.6 |
simsem | 0.5-16 | SimSurvey | 0.1.6 |
SingleCellExperiment | 1.26.0 | singleCellHaystack | 1.0.2 |
singleRcapture | 0.2.1.2 | singscore | 1.24.0 |
siplab | 1.6 | sirt | 4.1-15 |
sitmo | 2.0.2 | sits | 1.5.0 |
sjlabelled | 1.2.0 | SkewHyperbolic | 0.4-2 |
skimr | 2.1.5 | skmeans | 0.2-16 |
skpr | 1.7.1 | slackr | 3.3.1 |
slam | 0.1-52 | SlaPMEG | 1.0.1 |
SLBDD | 0.0.4 | slcm | 0.1.0 |
sleekts | 1.0.2 | sleeperapi | 1.1.1 |
Sleuth2 | 2.0-7 | Sleuth3 | 1.0-6 |
slfm | 1.0.2 | SLHD | 2.1-1 |
slider | 0.3.1 | slippymath | 0.3.1 |
sm | 2.2-6.0 | smacof | 2.1-6 |
smacofx | 1.5-3 | smacpod | 2.6 |
SmallCountRounding | 1.0.3 | smam | 0.7.2 |
SmCCNet | 2.0.3 | SMDIC | 0.1.5 |
smerc | 1.8.3 | smoof | 1.6.0.3 |
smooth | 4.0.2 | smoothr | 1.0.1 |
smoots | 1.1.4 | smovie | 1.1.6 |
SMPracticals | 1.4-3.1 | sms | 2.3.1 |
SMVar | 1.3.4 | sn | 2.1.1 |
sna | 2.7-2 | snakecase | 0.11.1 |
snow | 0.4-4 | SnowballC | 0.7.1 |
snowfall | 1.84-6.3 | snpStats | 1.54.0 |
snvecR | 3.9.4 | SOAs | 1.4 |
soc.ca | 0.8.0 | socceR | 0.1.1 |
socialmixr | 0.3.2 | sodium | 1.3.1 |
sofa | 0.4.0 | SoilHyP | 0.1.7 |
soilhypfit | 0.1-7 | soilwater | 1.0.5 |
solaR | 0.46 | solartime | 0.0.2 |
solrium | 1.2.0 | solvebio | 2.15.0 |
soma | 1.2.0 | sonicLength | 1.4.7 |
sorvi | 0.8.21 | SoupX | 1.6.2 |
sourcetools | 0.1.7-1 | sp | 2.1-4 |
sp23design | 0.9-1 | spacefillr | 0.3.3 |
spacetime | 1.3-1 | spam | 2.10-0 |
spaMM | 4.5.0 | spant | 2.22.0 |
sparklyr | 1.8.6 | sparktex | 0.1 |
sparr | 2.3-15 | SparseArray | 1.4.8 |
sparseDFM | 1.0 | sparseinv | 0.1.3 |
SparseM | 1.84-2 | sparseMatrixStats | 1.16.0 |
sparseMVN | 0.2.2 | sparsevar | 0.1.0 |
spatgraphs | 3.4 | spatialCovariance | 0.6-9 |
SpatialEpi | 1.2.8 | SpatialExperiment | 1.14.0 |
SpatialExtremes | 2.1-0 | SpatialPosition | 2.1.2 |
spatialprobit | 1.0.4 | spatialreg | 1.3-4 |
spatialsample | 0.5.1 | SpatialTools | 1.0.5 |
spatialwidget | 0.2.5 | spatstat | 3.1-1 |
spatstat.data | 3.1-2 | spatstat.explore | 3.3-1 |
spatstat.geom | 3.3-2 | spatstat.linnet | 3.2-1 |
spatstat.model | 3.3-1 | spatstat.random | 3.3-1 |
spatstat.sparse | 3.1-0 | spatstat.univar | 3.0-0 |
spatstat.utils | 3.0-5 | spBayes | 0.4-7 |
spBayesSurv | 1.1.8 | Spbsampling | 1.3.5 |
spd | 2.0-1 | spData | 2.3.1 |
spdep | 1.3-5 | spec | 0.1.9 |
spectral | 2.0 | speff2trial | 1.0.5 |
SPEI | 1.8.1 | spelling | 2.3.0 |
sperrorest | 3.0.5 | sphet | 2.0 |
spiderbar | 0.2.5 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-19 | spINAR | 0.2.0 |
spind | 2.2.1 | splancs | 2.01-45 |
SPLICE | 1.1.2 | splines2 | 0.5.3 |
splitstackshape | 1.4.8 | splm | 1.6-5 |
spls | 2.2-3 | splus2R | 1.3-5 |
spmodel | 0.7.0 | spmoran | 0.2.3 |
SportsTour | 0.1.0 | sportyR | 2.2.2 |
sps | 0.5.4 | spselect | 0.0.1 |
spsur | 1.0.2.5 | spsurvey | 5.5.1 |
spTimer | 3.3.2 | sptotal | 1.0.1 |
sqldf | 0.4-11 | SqlRender | 1.18.0 |
SQRL | 1.0.2 | SQUAREM | 2021.1 |
srvyr | 1.2.0 | ssanv | 1.1 |
SSBtools | 1.5.2 | ssfa | 1.2.2 |
ssgraph | 1.15 | ssize.fdr | 1.3 |
ssizeRNA | 1.3.2 | ssMousetrack | 1.1.6 |
ssmrob | 1.0 | SSN2 | 0.2.0 |
sstvars | 1.0.1 | stable | 1.1.6 |
stabledist | 0.7-1 | stabs | 0.6-4 |
staggered | 1.1 | stampr | 0.3.1 |
StanHeaders | 2.32.10 | StanMoMo | 1.2.0 |
stargazer | 5.2.3 | starma | 1.3 |
stars | 0.6-6 | starter | 0.1.15 |
STARTS | 1.3-8 | startupmsg | 0.9.6.1 |
statcanR | 0.2.6 | statcodelists | 0.9.2 |
statcomp | 0.1.0 | statebins | 1.4.0 |
statespacer | 0.5.0 | stationaRy | 0.5.1 |
statip | 0.2.3 | StatMatch | 1.4.2 |
statmod | 1.5.0 | statnet.common | 4.9.0 |
StatRank | 0.0.6 | statVisual | 1.2.1 |
steadyICA | 1.0 | SteinIV | 0.1-1 |
STFTS | 0.1.0 | stinepack | 1.5 |
stlplus | 0.5.1 | stm | 1.3.7 |
StMoMo | 0.4.1 | stochQN | 0.1.2-1 |
stochvol | 3.2.4 | stockAnalyst | 1.0.1 |
stops | 1.6-2 | stopwords | 2.3 |
storr | 1.2.5 | stplanr | 1.2.1 |
stR | 0.7 | strand | 0.2.0 |
strap | 1.6-1 | stratification | 2.2-7 |
streamDepletr | 0.2.0 | streamR | 0.4.5 |
stringdist | 0.9.12 | stringfish | 0.16.0 |
stringi | 1.8.4 | stringmagic | 1.1.2 |
stringr | 1.5.1 | strucchange | 1.5-3 |
strucchangeRcpp | 1.5-3-1.0.4 | StructuralDecompose | 0.1.1 |
styler | 1.10.3 | subplex | 1.9 |
subscore | 3.3 | sufficientForecasting | 0.1.0 |
sugrrants | 0.2.9 | SummarizedExperiment | 1.34.0 |
SUMMER | 1.4.0 | suntools | 1.0.0 |
supclust | 1.1-1 | SuperLearner | 2.0-29 |
superml | 0.5.7 | superpc | 1.12 |
SuppDists | 1.1-9.7 | support.CEs | 0.7-0 |
surface | 0.5 | SurrogateRegression | 0.6.0.1 |
suRtex | 0.9 | survcomp | 1.54.0 |
surveillance | 1.23.0 | survey | 4.4-2 |
surveybootstrap | 0.0.3 | surveydata | 0.2.7 |
surveyplanning | 4.0 | surveysd | 1.3.1 |
survival666 | 0.5 | survivalROC | 1.0.3.1 |
survminer | 0.4.9 | survMisc | 0.5.6 |
survPresmooth | 1.1-11 | sva | 3.52.0 |
svars | 1.3.11 | svd | 0.5.5 |
svDialogs | 1.1.0 | SVDNF | 0.1.8 |
svglite | 2.1.3 | svGUI | 1.0.1 |
svrep | 0.6.4 | svs | 3.1.1 |
svUnit | 1.0.6 | swagger | 5.17.14.1 |
sweep | 0.2.5 | swephR | 0.3.1 |
SwimmeR | 0.14.2 | swirl | 2.4.5 |
swirlify | 0.5.3 | switchr | 0.14.8 |
SWTools | 1.0.3 | sylly | 0.1-6 |
sym.arma | 1.0 | symengine | 0.2.6 |
symmoments | 1.2.1 | synchronicity | 1.3.10 |
SYNCSA | 1.3.4 | Synth | 1.1-8 |
synthACS | 1.7.1 | synthesis | 1.2.5 |
SynthETIC | 1.1.0 | synthpop | 1.8-0 |
sys | 3.4.2 | sysfonts | 0.8.9 |
systemfit | 1.1-30 | systemfonts | 1.1.0 |
table1 | 1.4.3 | tables | 0.9.28 |
tabnet | 0.6.0 | tabuSearch | 1.1.1 |
TAF | 4.2.0 | tagcloud | 0.6 |
TailRank | 3.2.2 | TAM | 4.2-21 |
tanaka | 0.4.0 | TAQMNGR | 2018.5-1 |
targets | 1.7.1 | tau | 0.0-25 |
taxize | 0.9.100 | tbea | 1.5.0 |
TBRDist | 1.0.2 | tbrf | 0.1.5 |
TCA | 1.2.1 | TCGAbiolinks | 2.32.0 |
TCGAbiolinksGUI.data | 1.24.0 | TCGAretriever | 1.9.1 |
TcGSA | 0.12.10 | tcltk2 | 1.2-11 |
Tcomp | 1.0.1 | tdigest | 0.4.2 |
TeachingDemos | 2.13 | teamcolors | 0.0.4 |
telegram.bot | 3.0.0 | tempdisagg | 1.1.1 |
tensor | 1.5 | tensorA | 0.36.2.1 |
tensorflow | 2.16.0 | tensorMiss | 1.1.1 |
TensorPreAve | 1.1.0 | tensorTS | 1.0.2 |
TEQR | 6.0-0 | tergm | 4.2.0 |
Ternary | 2.3.2 | terra | 1.7-78 |
terrainr | 0.7.5 | TESS | 2.1.2 |
tesseract | 5.2.1 | testcorr | 0.2.0 |
TestDataImputation | 2.3 | TestDesign | 1.6.1 |
tester | 0.2.0 | TestFunctions | 0.2.1 |
testit | 0.13 | TestScorer | 1.7.2 |
testthat | 3.2.1.1 | TexExamRandomizer | 1.2.7 |
texreg | 1.39.4 | text2vec | 0.6.4 |
textcat | 1.0-8 | textir | 2.0-5 |
textplot | 0.2.2 | textrank | 0.3.1 |
textreuse | 0.1.5 | textshaping | 0.4.0 |
textTinyR | 1.1.8 | textutils | 0.4-1 |
tfarima | 0.3.2 | tfautograph | 0.3.2 |
tfdatasets | 2.17.0 | tfhub | 0.8.1 |
tfio | 0.4.1 | TFisher | 0.2.0 |
tframe | 2015.12-1.1 | tfruns | 1.5.3 |
tgp | 2.4-22 | TGS | 1.0.1 |
TH.data | 1.1-2 | theft | 0.6.1 |
thief | 0.3 | ThreeGroups | 0.21 |
threejs | 0.3.3 | ThreeWay | 1.1.3 |
thurstonianIRT | 0.12.5 | tibble | 3.2.1 |
tibbletime | 0.1.8 | tictoc | 1.2.1 |
Tides | 2.1 | tidyBdE | 0.3.6 |
tidycensus | 1.6.5 | tidyestimate | 1.1.1 |
tidygraph | 1.3.1 | tidyhydat | 0.6.1 |
tidyLPA | 1.1.0 | tidymodels | 1.2.0 |
tidyquant | 1.0.7 | tidyr | 1.3.1 |
tidyREDCap | 1.1.1 | tidyRSS | 2.0.7 |
tidyselect | 1.2.1 | tidySEM | 0.2.7 |
tidysynth | 0.2.0 | tidyterra | 0.6.1 |
tidytext | 0.4.2 | tidytree | 0.4.6 |
tidyverse | 2.0.0 | tidyvpc | 1.5.1 |
tiff | 0.1-12 | tigris | 2.1 |
tikzDevice | 0.12.6 | timechange | 0.3.0 |
timeDate | 4032.109 | timeless | 0.2.3 |
timeSeries | 4032.109 | timeseriesdb | 1.0.0-1.1.2 |
timetk | 2.9.0 | timsac | 1.3.8-4 |
tinyarray | 2.4.2 | tinyProject | 0.6.1 |
tinytable | 0.3.0 | tinytex | 0.52 |
tis | 1.39 | tkrplot | 0.0-27 |
tkWidgets | 1.82.0 | TLMoments | 0.7.5.3 |
tm | 0.7-14 | tm.plugin.alceste | 1.1.1 |
tm.plugin.dc | 0.2-10 | tm.plugin.europresse | 1.4 |
tm.plugin.factiva | 1.8 | tm.plugin.lexisnexis | 1.4.1 |
tm.plugin.mail | 0.3-0 | tmap | 3.3-4 |
tmaptools | 3.1-1 | TMB | 1.9.14 |
Tmisc | 1.0.1 | tmod | 0.50.13 |
tmvnsim | 1.0-2 | tmvtnorm | 1.6 |
tnet | 3.0.16 | tokenizers | 0.3.0 |
tokenizers.bpe | 0.1.3 | topicdoc | 0.1.1 |
topicmodels | 0.2-17 | topicmodels.etm | 0.1.0 |
topmodel | 0.7.5 | topologyGSA | 1.5.0 |
toprdata | 1.0.2 | torch | 0.13.0 |
torchaudio | 0.3.1.9000 | torchdatasets | 0.3.1 |
torchvision | 0.6.0 | tpr | 0.3-3 |
tracerer | 2.2.3 | trackdem | 0.7.2 |
trackdf | 0.3.3 | trackdown | 1.1.1 |
trackeR | 1.6.0 | trackeRapp | 1.2 |
TrackReconstruction | 1.3 | tractor.base | 3.4.2 |
traipse | 0.3.0 | trajectories | 0.2-8 |
TrajectoryUtils | 1.12.0 | trajr | 1.5.1 |
transformr | 0.1.5 | transfR | 1.0.11 |
TransPhylo | 1.4.5 | trapezoid | 2.0-2 |
traudem | 1.0.3 | tree | 1.0-43 |
treebalance | 1.2.0 | treebase | 0.1.5 |
TreeBUGS | 1.5.0 | treedater | 0.5.0 |
TreeDist | 2.8.0 | treefit | 1.0.2 |
treeio | 1.28.0 | treemap | 2.4-4 |
TreeSearch | 1.5.1 | TreeSim | 2.4 |
treespace | 1.1.4.3 | TreeTools | 1.12.0 |
trend | 1.1.6 | trendeval | 0.1.0 |
trending | 0.1.0 | TrialSize | 1.4 |
triangle | 1.0 | triebeard | 0.4.1 |
trimcluster | 0.1-5 | trip | 1.10.0 |
tripack | 1.3-9.1 | tripEstimation | 0.0-46 |
TripleR | 1.5.4 | TruncatedNormal | 2.3 |
truncdist | 1.0-2 | truncnorm | 1.0-9 |
truncreg | 0.2-5 | trust | 0.1-8 |
trustOptim | 0.8.7.3 | tryCatchLog | 1.3.1 |
TSA | 1.3.1 | TSANN | 0.1.0 |
tsbox | 0.4.1 | tsBSS | 1.0.0 |
TSCAN | 1.42.0 | TSclust | 1.3.1 |
tscount | 1.4.3 | tsdataleaks | 2.1.1 |
tsdb | 1.1-0 | tsdecomp | 0.2 |
TSdeeplearning | 0.1.0 | tsdisagg2 | 0.1.0 |
TSdisaggregation | 2.0.0 | TSdist | 3.7.1 |
tsdistributions | 1.0.1 | tsDyn | 11.0.4.1 |
TSEAL | 0.1.3 | TSEntropies | 0.9 |
tseries | 0.10-57 | tseriesChaos | 0.1-13.1 |
tseriesEntropy | 0.7-2 | tseriesTARMA | 0.3-4 |
tsfeatures | 1.1.1 | tsfknn | 0.6.0 |
tsgarch | 1.0.2 | tsibble | 1.1.5 |
tsibbledata | 0.4.1 | tsibbletalk | 0.1.0 |
tsintermittent | 1.10 | tsiR | 0.4.3 |
TSLSTM | 0.1.0 | TSLSTMplus | 1.0.4 |
tsmethods | 1.0.1 | tsModel | 0.6-2 |
tsne | 0.1-3.1 | tsnet | 0.1.0 |
tsoutliers | 0.6-10 | TSP | 1.2-4 |
tsPI | 1.0.4 | TSrepr | 1.1.0 |
tsrobprep | 0.3.2 | tssim | 0.1.7 |
TSstudio | 0.1.7 | tstests | 1.0.0 |
TSTutorial | 1.2.7 | tsutils | 0.9.4 |
tswge | 2.1.0 | tth | 4.16-0 |
TTR | 0.24.4 | tufterhandout | 1.2.1 |
tune | 1.2.1 | TUWmodel | 1.1-1 |
tvm | 0.5.2 | twdtw | 1.0-1 |
tweedie | 2.3.5 | tweenr | 2.0.3 |
twosamples | 2.0.1 | TxDb.Hsapiens.UCSC.hg19.knownGene | 3.2.2 |
TxDb.Hsapiens.UCSC.hg38.knownGene | 3.18.0 | tximport | 1.32.0 |
txtq | 0.2.4 | tzdb | 0.4.0 |
uaparserjs | 0.3.5 | ubiquity | 2.0.3 |
ucminf | 1.2.2 | UComp | 5.0.4 |
UCSC.utils | 1.0.0 | udpipe | 0.8.11 |
ufRisk | 1.0.7 | ugatsdb | 0.2.3 |
uGMAR | 3.5.0 | umap | 0.2.10.0 |
uncmbb | 0.2.2 | unglue | 0.1.0 |
UnifiedDoseFinding | 0.1.10 | unifir | 0.2.4 |
units | 0.8-5 | univOutl | 0.4 |
unrepx | 1.0-2 | unrtf | 1.4.5 |
UpSetR | 1.4.0 | uptasticsearch | 0.4.0 |
urca | 1.3-4 | urlchecker | 1.0.1 |
urlshorteneR | 1.5.7 | urltools | 1.7.3 |
uroot | 2.1-3 | usdata | 0.3.1 |
usethis | 3.0.0 | usmap | 0.7.1 |
usmapdata | 0.3.0 | utf8 | 1.2.4 |
utility | 1.4.6 | uuid | 1.2-1 |
uwot | 0.2.2 | V8 | 4.4.2 |
VALERIE | 1.1.0 | validate | 1.1.5 |
validatetools | 0.5.2 | valr | 0.8.1 |
VAM | 1.1.0 | vapour | 0.10.0 |
VAR.etp | 1.1 | varbvs | 2.6-10 |
VARDetect | 0.1.8 | vardiag | 0.2-1 |
vardpoor | 0.20.1 | VaRES | 1.0.2 |
vars | 1.6-1 | VARshrink | 0.3.1 |
varycoef | 0.3.4 | VCA | 1.5.1 |
vcd | 1.4-12 | vcdExtra | 0.8-5 |
vcr | 1.6.0 | vctrs | 0.6.5 |
vdg | 1.2.3 | VedicDateTime | 0.1.9 |
vegan | 2.6-6.1 | vegawidget | 0.5.0 |
vegperiod | 0.4.0 | VennDiagram | 1.7.3 |
venneuler | 1.1-4 | VGAM | 1.1-11 |
VGAMdata | 1.1-9 | vglmer | 1.0.3 |
vhica | 0.2.8 | VIC5 | 0.2.6 |
VIM | 6.2.2 | VineCopula | 2.5.0 |
vines | 1.1.5 | vip | 0.4.1 |
viridis | 0.6.5 | viridisLite | 0.4.2 |
visNetwork | 2.1.2 | visualize | 4.5.0 |
vkR | 0.2 | volatilityTrader | 1.0.1 |
volcano3D | 2.0.9 | volleystat | 0.2.0 |
vpc | 1.2.2 | vroom | 1.6.5 |
vrtest | 1.2 | vsn | 3.72.0 |
W3CMarkupValidator | 0.1-7 | waiter | 0.2.5 |
waldo | 0.5.2 | warp | 0.2.1 |
washdata | 0.1.4 | WASP | 1.4.4 |
waterData | 1.0.8 | waterquality | 1.0.0 |
WaveletComp | 1.1 | wavelets | 0.3-0.2 |
waveslim | 1.8.5 | wavethresh | 4.7.2 |
wavScalogram | 1.1.3 | waywiser | 0.6.0 |
wbstats | 1.0.4 | wCorr | 1.9.8 |
WDI | 2.7.8 | wdm | 0.2.4 |
wdman | 0.2.6 | weatherOz | 1.0.0 |
WebAnalytics | 0.9.12 | webchem | 1.3.0 |
webdriver | 1.0.6 | WebGestaltR | 0.4.6 |
webmockr | 1.0.0 | webreadr | 0.4.0 |
webshot | 0.5.5 | webshot2 | 0.1.1 |
websocket | 1.4.2 | webutils | 1.2.0 |
wehoop | 2.1.0 | WeightedPortTest | 1.1 |
WeightIt | 1.2.0 | weights | 1.0.4 |
welo | 0.1.4 | WeMix | 4.0.3 |
WGCNA | 1.72-5 | WH | 1.1.1 |
whisker | 0.4.1 | whitebox | 2.4.0 |
whitening | 1.4.0 | whoami | 1.3.0 |
widgetframe | 0.3.1 | widgetTools | 1.82.0 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
WikipediR | 1.7.1 | wikitaxa | 0.4.0 |
wildlifeDI | 1.0.0 | wilson | 2.4.2 |
windex | 2.0.8 | wINEQ | 1.2.0 |
withr | 3.0.1 | wk | 0.9.2 |
wktmo | 1.0.5 | wkutils | 0.1.3 |
wnl | 0.8.1 | wooldridge | 1.4-3 |
worcs | 0.1.14 | word2vec | 0.4.0 |
wordcloud | 2.6 | wordnet | 0.1-17 |
workflowr | 1.7.1 | workflows | 1.1.4 |
workflowsets | 1.1.0 | worldfootballR | 0.6.2 |
worldmet | 0.9.8 | worrms | 0.4.3 |
wpp2017 | 1.2-3 | wpp2019 | 1.1-1 |
wql | 1.0.1 | WrightMap | 1.3 |
writexl | 1.5.0 | WriteXLS | 6.7.0 |
wrMisc | 1.15.1 | wrProteo | 1.12.0 |
WRSS | 3.1 | wrswoR | 1.1.1 |
WRTDStidal | 1.1.4 | WufooR | 1.0.1 |
x12 | 1.10.3 | x13binary | 1.1.61 |
xaringan | 0.30 | XBRL | 0.99.19.1 |
xfun | 0.46 | xgboost | 1.7.8.1 |
xgxr | 1.1.2 | XLConnect | 1.0.10 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.17 | xml2 | 1.3.6 |
XML2R | 0.0.8 | xmlrpc2 | 1.1 |
xopen | 1.0.1 | xplain | 0.2.2 |
xpose | 0.4.18 | xpose.nlmixr2 | 0.4.0 |
xpose4 | 4.7.3 | xslt | 1.4.5 |
xtable | 1.8-4 | xts | 0.14.0 |
XVector | 0.44.0 | xxIRT | 2.1.2 |
yaImpute | 1.0-34 | yaml | 2.3.10 |
yardstick | 1.3.1 | yesno | 0.1.3 |
yhatr | 0.15.1 | yorkr | 0.0.42 |
ypssc | 1.1.0 | yuima | 1.15.27 |
yulab.utils | 0.1.5 | zeallot | 0.1.0 |
zen4R | 0.10 | zic | 0.9.1 |
ZIM | 1.1.0 | ZINARp | 0.1.0 |
zip | 2.3.1 | zipfR | 0.6-70 |
zlib | 1.0.3 | zlibbioc | 1.50.0 |
zoo | 1.8-12 | ZRA | 0.2 |
ztable | 0.2.3 | zTree | 1.0.7 |
zyp | 0.11-1 |
RStudio Server
R: 4.4.1
rstudio-server: 2024.04.2-764
Release Notes
Upgraded the operating system from Ubuntu 20.04 to Ubuntu 22.04, and all R packages to their latest versions.
This AMI provides thousands of R packages covering various domains such as data science, machine learning, economitrics, database, finance, official statistics, survey statistics, Bayesian statistics, clinical trials, epidemiology, experimental design, psychometric methodology, analysis of pharmacokinetic data, medical image processing, teaching statistics, time series analysis, analysis of spatial and spatiotemporal data, reproducible research, phylogenetics, web technologies, hydrology, sports analytics, natural language processing, actuarial science, optimization, genomics, proteomics, metabolomics, transcriptomics, and other omics.
R packages (4293)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.1 |
ABCoptim | 0.15.0 | abcrf | 1.9 |
abglasso | 0.1.1 | abind | 1.4-5 |
abtest | 1.0.1 | accrualPlot | 1.0.7 |
acebayes | 1.10 | acepack | 1.4.2 |
ACNE | 0.9.1 | acp | 2.1 |
acs | 2.1.4 | ACSWR | 1.0 |
ActivePathways | 2.0.5 | actuar | 3.3-4 |
actuaRE | 0.1.5 | ActuarialM | 0.1.0 |
actuaryr | 1.1.1 | actxps | 1.5.0 |
ada | 2.0-5 | adagio | 0.9.2 |
adaptivetau | 2.3-1 | adaptMCMC | 1.5 |
adaptr | 1.4.0 | ADAPTS | 1.0.22 |
adaptsmoFMRI | 1.2 | adaptTest | 1.2 |
additivityTests | 1.1-4.2 | ade4 | 1.7-22 |
ade4TkGUI | 0.3-1 | adegenet | 2.1.10 |
adegraphics | 1.0-21 | adehabitatHR | 0.4.21 |
adehabitatHS | 0.3.17 | adehabitatLT | 0.3.27 |
adehabitatMA | 0.3.16 | adephylo | 1.1-16 |
adespatial | 0.3-23 | ADGofTest | 0.3 |
adimpro | 0.9.7 | adiv | 2.2.1 |
adjclust | 0.6.9 | adlift | 1.4-5 |
admisc | 0.35 | AdMit | 2.1.9 |
ads | 1.5-10 | AdvancedBasketballStats | 1.0.1 |
AER | 1.2-12 | affy | 1.82.0 |
affyio | 1.74.0 | africamonitor | 0.2.4 |
agricolae | 1.3-7 | agricolaeplotr | 0.5.0 |
agridat | 1.23 | agriwater | 1.0.2 |
agvgd | 0.1.2 | AhoCorasickTrie | 0.1.2 |
aion | 1.0.4 | airGR | 1.7.6 |
airGRdatasets | 0.2.1 | airGRdatassim | 0.1.3 |
airGRiwrm | 0.6.2 | airGRteaching | 0.3.3 |
airports | 0.1.0 | airr | 1.5.0 |
ajv | 1.0.0 | akima | 0.6-3.4 |
alabama | 2023.1.0 | alakazam | 1.3.0 |
aLFQ | 1.3.6 | AlgDesign | 1.2.1 |
aliases2entrez | 0.1.2 | almanac | 1.0.0 |
alpaca | 0.3.4 | alphavantager | 0.1.3 |
altair | 4.2.3 | ALTopt | 0.1.2 |
Amelia | 1.8.2 | ammiBayes | 1.0-2 |
ampir | 1.1.0 | AMR | 2.1.1 |
anabel | 3.0.1 | AnaCoDa | 0.1.4.4 |
anacor | 1.1-4 | analogsea | 1.0.7.2 |
analogue | 0.17-6 | anesrake | 0.80 |
animation | 2.7 | anipaths | 0.10.3 |
anMC | 0.2.5 | annotate | 1.82.0 |
AnnotationBustR | 1.3.0 | AnnotationDbi | 1.66.0 |
AnnuityRIR | 1.0-0 | Anthropometry | 1.19 |
anytime | 0.3.9 | ao | 1.1.0 |
aod | 1.3.3 | aoos | 0.5.0 |
AovBay | 0.1.0 | apc | 2.0.0 |
apcluster | 1.4.13 | ape | 5.8 |
apex | 1.0.6 | APFr | 1.0.2 |
aphid | 1.3.5 | aphylo | 0.3-3 |
apisensr | 1.0.0 | aplot | 0.2.3 |
apollo | 0.3.3 | approximator | 1.2-8 |
apsimx | 2.7.7 | ARCensReg | 3.0.1 |
arcgislayers | 0.3.0 | arcgisutils | 0.3.0 |
archetypes | 2.2-0.1 | archive | 1.1.8 |
archivist | 2.3.6 | arcpbf | 0.1.4 |
ArDec | 2.1-1 | ARDL | 0.2.4 |
ardl.nardl | 1.3.0 | areal | 0.1.8 |
arfima | 1.8-1 | argo | 3.0.2 |
argparse | 2.2.3 | arima2 | 3.1.0 |
arkhe | 1.7.0 | arm | 1.14-4 |
aroma.affymetrix | 3.2.2 | aroma.apd | 0.7.0 |
aroma.cn | 1.7.1 | aroma.core | 3.3.1 |
aroma.light | 3.34.0 | arpr | 0.1.2 |
arrangements | 1.1.9 | arrow | 16.1.0 |
ars | 0.7 | arsenal | 3.6.3 |
aRxiv | 0.10 | ascii | 2.6 |
asd | 2.2 | ash | 1.0-15 |
ashr | 2.2-63 | AsioHeaders | 1.22.1-2 |
askpass | 1.2.0 | aspect | 1.0-6 |
ASSA | 2.0 | assertthat | 0.2.1 |
AssetCorr | 1.0.4 | astsa | 2.1 |
asymmetry | 2.0.4 | ata | 1.1.1 |
atom4R | 0.3-3 | atRisk | 0.1.0 |
attempt | 0.3.1 | attention | 0.4.0 |
AUC | 0.3.2 | audio | 0.1-11 |
autoFRK | 1.4.3 | autoimage | 2.2.3 |
automap | 1.1-9 | autostsm | 3.1.5 |
av | 0.9.0 | aweek | 1.0.3 |
aws | 2.5-5 | aws.signature | 0.6.0 |
awsMethods | 1.1-1 | AzureAppInsights | 0.3.1 |
AzureAuth | 1.3.3 | AzureCognitive | 1.0.1 |
AzureContainers | 1.3.2 | AzureCosmosR | 1.0.0 |
AzureGraph | 1.3.4 | AzureKusto | 1.1.3 |
AzureQstor | 1.0.1 | AzureRMR | 2.4.4 |
AzureStor | 3.7.0 | AzureTableStor | 1.0.0 |
AzureVision | 1.0.2 | AzureVM | 2.2.2 |
babelgene | 22.9 | babelwhale | 1.2.0 |
babette | 2.3.4 | BACCO | 2.1-0 |
BACCT | 1.0 | backports | 1.5.0 |
backtest | 0.3-4 | bacondecomp | 0.1.1 |
baggr | 0.7.8 | bain | 0.2.11 |
BalancedSampling | 2.0.6 | BaM | 1.0.3 |
bama | 1.3.0 | bamdit | 3.4.1 |
bamlss | 1.2-4 | BAMMtools | 2.1.11 |
bang | 1.0.4 | BANOVA | 1.2.1 |
BarcodingR | 1.0-3 | BART | 2.9.9 |
bartCause | 1.0-8 | bartcs | 1.2.2 |
bartMachine | 1.3.4.1 | bartMachineJARs | 1.2.1 |
BAS | 1.7.1 | basad | 0.3.0 |
base64 | 2.0.1 | base64enc | 0.1-3 |
base64url | 1.4 | baseballr | 1.6.0 |
basicMCMCplots | 0.2.7 | BASiNET | 0.0.5 |
BaSkePro | 1.1.1 | BasketballAnalyzeR | 0.5.0 |
BASS | 1.3.1 | BatchExperiments | 1.4.3 |
BatchJobs | 1.9 | batchmeans | 1.0-4 |
BAwiR | 1.3.2 | baycn | 1.2.0 |
bayefdr | 0.2.1 | bayes4psy | 1.2.12 |
bayesAB | 1.1.3 | bayesammi | 0.1.0 |
bayesanova | 1.6 | BayesARIMAX | 0.1.1 |
BayesBinMix | 1.4.1 | bayesbio | 1.0.0 |
bayesboot | 0.2.2 | BayesBP | 1.1 |
BayesCACE | 1.2.3 | BayesCombo | 1.0 |
BayesComm | 0.1-2 | bayescopulareg | 0.1.3 |
bayescount | 0.9.99-9 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.3.3 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.7 |
BayesFM | 0.1.7 | bayesforecast | 1.0.1 |
bayesGAM | 0.0.2 | bayesGARCH | 2.1.10 |
BayesGOF | 5.2 | BayesGPfit | 1.1.0 |
BayesGWQS | 0.1.1 | bayesian | 1.0.1 |
bayesianETAS | 1.0.3 | BayesianFactorZoo | 0.0.0.2 |
Bayesiangammareg | 0.1.0 | BayesianGLasso | 0.2.0 |
BayesianLaterality | 0.1.2 | BayesianNetwork | 0.3.2 |
BayesianTools | 0.1.8 | bayesianVARs | 0.1.3 |
bayesImageS | 0.6-1 | BayesLCA | 1.9 |
bayesLife | 5.2-0 | BayesLN | 0.2.10 |
BayesLogit | 2.1 | bayeslongitudinal | 0.1.0 |
bayesm | 3.1-6 | BayesMallows | 2.2.1 |
BayesMassBal | 1.1.0 | bayesmeta | 3.4 |
bayesmix | 0.7-6 | bayesnec | 2.1.2.0 |
bayesplot | 1.11.1 | bayesQR | 2.4 |
bayesRecon | 0.3.0 | bayestestR | 0.14.0 |
bayesTFR | 7.4-2 | BayesTools | 0.2.17 |
BayesTree | 0.3-1.5 | BayesVarSel | 2.2.5 |
BayesX | 0.3-3 | BAYSTAR | 0.2-10 |
baytrends | 2.0.12 | BB | 2019.10-1 |
BBmisc | 1.13 | bbmle | 1.0.25.1 |
bbotk | 1.0.1 | BCBCSF | 1.0-1 |
BCC1997 | 0.1.1 | BClustLonG | 0.1.3 |
bcpa | 1.3.2 | bcrm | 0.5.4 |
BDgraph | 2.72 | bdrc | 1.1.0 |
bdsmatrix | 1.3-7 | BE | 0.2.4 |
beachmat | 2.20.0 | beadarray | 2.54.0 |
BeadDataPackR | 1.56.0 | beakr | 0.4.3 |
bearishTrader | 1.0.2 | beastier | 2.5.1 |
beautier | 2.6.12 | BED | 1.5.2 |
beepr | 2.0 | beeswarm | 0.4.0 |
benchmarkme | 1.0.8 | benchmarkmeData | 1.0.4 |
BenfordTests | 1.2.0 | bentcableAR | 0.3.1 |
Bergm | 5.0.7 | Bernadette | 1.1.5 |
berryFunctions | 1.22.5 | Bessel | 0.6-1 |
BetaBit | 2.2 | betafunctions | 1.9.0 |
betapart | 1.6 | betareg | 3.2-0 |
betategarch | 3.3 | BETS | 0.4.9 |
bets.covid19 | 1.0.0 | beyondWhittle | 1.2.1 |
bezier | 1.1.2 | bfast | 1.6.1 |
BGLR | 1.1.2 | BGVAR | 2.5.7 |
bgw | 0.1.3 | BH | 1.84.0-0 |
BHH2 | 2016.05.31 | BiasCorrector | 0.2.2 |
BiasedUrn | 2.0.12 | bibtex | 0.5.1 |
biclust | 2.0.3.1 | bidask | 2.0.4 |
bife | 0.7.2 | BIFIEsurvey | 3.6-6 |
biganalytics | 1.1.22 | bigchess | 1.9.1 |
bigD | 0.2.0 | bigleaf | 0.8.2 |
biglm | 0.9-3 | bigmemory | 4.6.4 |
bigmemory.sri | 0.1.8 | bigrquery | 1.5.1 |
bigsplines | 1.1-1 | bigtime | 0.2.3 |
BigVAR | 1.1.2 | bimets | 4.0.2 |
bindr | 0.1.1 | bindrcpp | 0.2.3 |
binhf | 1.0-3 | binman | 0.1.3 |
binom | 1.1-1.1 | binr | 1.1.1 |
binseqtest | 1.0.4 | bio3d | 2.4-4 |
Biobase | 2.64.0 | BiocFileCache | 2.12.0 |
BiocGenerics | 0.50.0 | BiocIO | 1.14.0 |
BiocManager | 1.30.23 | BiocParallel | 1.38.0 |
BiocSingular | 1.20.0 | BiocVersion | 3.19.1 |
BioInsight | 0.3.1 | biomaRt | 2.60.1 |
biomartr | 1.0.7 | biomformat | 1.32.0 |
bioseq | 0.1.4 | Biostrings | 2.72.1 |
biotic | 0.1.2 | bipartite | 2.20 |
birtr | 1.0.0 | BisqueRNA | 1.0.5 |
bit | 4.0.5 | bit64 | 4.0.5 |
bitops | 1.0-8 | biwavelet | 0.20.21 |
bizdays | 1.0.16 | bkmr | 0.2.2 |
blaise | 1.3.11 | blastula | 0.3.5 |
blavaan | 0.5-5 | blink | 1.1.0 |
BLModel | 1.0.2 | blob | 1.2.4 |
blocklength | 0.1.5 | blockmatrix | 1.0 |
blockrand | 1.5 | blocksdesign | 4.9 |
blockTools | 0.6.4 | blogdown | 1.19 |
BLR | 1.6 | BLRPM | 1.0 |
BMA | 3.18.17 | bmgarch | 2.0.0 |
BMisc | 1.4.6 | bmixture | 1.7 |
BMS | 0.3.5 | BMTAR | 0.1.1 |
bnlearn | 5.0 | BNPTSclust | 2.0 |
BNSP | 2.2.3 | bnstruct | 1.0.15 |
boa | 1.1.8-2 | boilerpipeR | 1.3.2 |
BOIN | 2.7.2 | boiwsa | 1.1.1 |
bold | 1.3.0 | Bolstad | 0.2-41 |
Bolstad2 | 1.0-29 | bondAnalyst | 1.0.1 |
bookdown | 0.40 | Boom | 0.9.15 |
BoomSpikeSlab | 1.2.6 | bootnet | 1.6 |
BootPR | 1.0 | bootstrap | 2019.6 |
bootUR | 1.0.4 | BoSSA | 3.7 |
boussinesq | 1.0.6 | boxr | 0.3.6 |
bpca | 1.3-6 | bqtl | 1.0-36 |
BradleyTerry2 | 1.1-2 | brainR | 1.6.0 |
brandwatchR | 0.3.0 | breakfast | 2.4 |
brew | 1.0-10 | brglm | 0.7.2 |
brglm2 | 0.9.2 | bridgesampling | 1.1-2 |
BRINDA | 0.1.5 | brio | 1.1.5 |
brms | 2.21.0 | Brobdingnag | 1.2-9 |
broman | 0.84 | broom | 1.0.6 |
broom.helpers | 1.15.0 | brotli | 1.3.0 |
bsam | 1.1.3 | bsamGP | 1.2.5 |
BSgenome | 1.72.0 | bsicons | 0.1.2 |
bslib | 0.8.0 | BsMD | 2023.920 |
bspec | 1.6 | bspmma | 0.1-2 |
bssm | 2.0.2 | BSSprep | 0.1 |
bsts | 0.9.10 | bsvars | 3.1 |
bsvarSIGNs | 1.0 | BTLLasso | 0.1-13 |
BTM | 0.3.7 | bullishTrader | 1.0.1 |
bundesbank | 0.1-12 | BurStFin | 1.3 |
BurStMisc | 1.1 | BVAR | 1.0.5 |
bvarsv | 1.1 | bvartools | 0.2.4 |
bvls | 1.4 | C50 | 0.1.8 |
ca | 0.71.1 | cabinets | 0.6.0 |
cabootcrs | 2.1.0 | cachem | 1.1.0 |
cacIRT | 1.4 | CADFtest | 0.3-3 |
caffsim | 0.2.2 | Cairo | 1.6-2 |
CALANGO | 1.0.16 | calculus | 1.0.1 |
calibrar | 0.9.0 | calibrate | 1.7.7 |
CalibrateSSB | 1.3.0 | calibrator | 1.2-8 |
callr | 3.7.6 | cancensus | 0.5.7 |
candisc | 0.9.0 | CANSIM2R | 1.14.1 |
caper | 1.0.3 | captr | 0.3.0 |
capushe | 1.1.2 | car | 3.1-2 |
caRamel | 1.4 | CARBayes | 6.1.1 |
CARBayesdata | 3.0 | CARBayesST | 4.0 |
carData | 3.0-5 | cards | 0.2.1 |
caret | 6.0-94 | carfima | 2.0.2 |
caribou | 1.1-1 | carrier | 0.1.1 |
cartogram | 0.3.0 | Cascade | 2.1 |
CascadeData | 1.4 | CAST | 1.0.2 |
castor | 1.8.2 | CatDataAnalysis | 0.1-5 |
caTools | 1.18.2 | catR | 3.17 |
causact | 0.5.5 | CausalImpact | 1.3.0 |
CAvariants | 6.0 | CB2 | 1.3.4 |
cbioportalR | 1.1.0 | cbsodataR | 1.0.1 |
ccaPP | 0.3.3 | cccp | 0.3-1 |
cdlTools | 1.13 | CDM | 8.2-6 |
cds | 1.0.3 | CellNOptR | 1.50.0 |
cellranger | 1.1.0 | censReg | 0.5-38 |
censusapi | 0.8.0 | CEoptim | 1.3 |
CePa | 0.8.0 | CeRNASeek | 2.1.3 |
cffr | 1.1.1 | cfr | 0.1.1 |
CFtime | 1.4.0 | ChainLadder | 0.2.19 |
chandwich | 1.1.6 | changepoint | 2.2.4 |
changepoint.geo | 1.0.2 | changepoint.np | 1.0.5 |
checkLuhn | 1.1.0 | checkmate | 2.3.2 |
checkpoint | 1.0.2 | ChemoSpec | 6.1.10 |
ChemoSpecUtils | 1.0.4 | cherryblossom | 0.1.0 |
chess | 1.0.1 | chilemapas | 0.3.0 |
chk | 0.9.2 | choiceDes | 0.9-3 |
cholera | 0.8.0 | CholWishart | 1.1.2 |
choroplethr | 3.7.3 | choroplethrMaps | 1.0.1 |
chromoMap | 4.1.1 | chromote | 0.2.0 |
chron | 2.3-61 | cifti | 0.4.5 |
cinterpolate | 1.0.1 | circlize | 0.4.16 |
CircSpaceTime | 0.9.0 | CircStats | 0.2-6 |
circular | 0.5-0 | ciTools | 0.6.1 |
Ckmeans.1d.dp | 4.3.5 | Claddis | 0.6.3 |
clarabel | 0.9.0 | clarifai | 0.4.2 |
classInt | 0.4-10 | cleanepi | 1.0.2 |
clevr | 0.1.2 | cli | 3.6.3 |
clifro | 3.2-5 | climatol | 4.1.0 |
clime | 0.5.0 | clinDR | 2.4.1 |
clinfun | 1.1.5 | clinicalsignificance | 2.0.0 |
clinPK | 0.13.0 | clinsig | 1.2 |
clipr | 0.8.0 | clisymbols | 1.2.0 |
clmplus | 1.0.0 | clock | 0.7.1 |
clubSandwich | 0.5.11 | clue | 0.3-65 |
clusterGeneration | 1.3.8 | clustermole | 1.1.1 |
clusterProfiler | 4.12.3 | clusterSEs | 2.6.5 |
clustMixType | 0.4-2 | ClustVarLV | 2.1.1 |
clv | 0.3-2.4 | cmaes | 1.0-12 |
cmaesr | 1.0.3 | CMLS | 1.0-1 |
cmm | 1.0 | cmocean | 0.3-1 |
cmprsk | 2.2-12 | cmrutils | 1.3.1 |
CNLTreg | 0.1-2 | CNLTtsa | 0.1-2 |
cNORM | 3.1.0 | CNORode | 1.46.0 |
coalescentMCMC | 0.4-4 | coarseDataTools | 0.6-6 |
cobalt | 4.5.5 | cobs | 1.3-8 |
coconots | 1.1.3 | COCONUT | 1.0.2 |
cocor | 1.1-4 | cocorresp | 0.4-4 |
cocron | 1.0-1 | coda | 0.19-4.1 |
codebook | 0.9.2 | codebookr | 0.1.8 |
coin | 1.4-3 | cointReg | 0.2.0 |
colf | 0.1.3 | collapse | 2.0.15 |
collapsibleTree | 0.1.8 | collections | 0.3.7 |
colorr | 1.0.0 | colorRamps | 2.3.4 |
colorspace | 2.1-1 | colourpicker | 1.3.0 |
colourvalues | 0.3.9 | combinat | 0.0-8 |
combinedevents | 0.1.1 | CombinS | 1.1-1 |
ComICS | 1.0.4 | CommonJavaJars | 1.1-0 |
commonmark | 1.9.1 | compare | 0.2-6 |
compas | 0.1.1 | complex | 1.0.0 |
ComplexHeatmap | 2.20.0 | CompQuadForm | 1.4.3 |
comprehenr | 0.6.10 | conditionz | 0.1.0 |
coneproj | 1.19 | conf.design | 2.0.0 |
config | 0.3.2 | confintr | 1.0.2 |
conflicted | 1.2.0 | conos | 1.5.2 |
conquer | 1.3.3 | conquestr | 1.3.4 |
constrainedKriging | 0.2-7 | contactdata | 1.0.0 |
contfrac | 1.1-12 | convevol | 2.2.1 |
convey | 1.0.0 | coop | 0.6-3 |
cops | 1.11-3 | copula | 1.1-3 |
copulaData | 0.0-2 | copulaedas | 1.4.3 |
cordillera | 1.0-0 | corHMM | 2.8 |
coro | 1.0.4 | corona | 0.3.0 |
coronavirus | 0.4.1 | corpcor | 1.6.10 |
corpora | 0.6 | corporaexplorer | 0.8.6 |
corrgram | 1.14 | corrplot | 0.92 |
cosa | 2.1.0 | CoSMoS | 2.1.0 |
costat | 2.4.1 | countrycode | 1.6.0 |
CovCombR | 1.0 | COVID19 | 3.0.3 |
covid19.analytics | 2.1.3.3 | covid19br | 0.1.8 |
covid19dbcand | 0.1.1 | covid19france | 0.1.0 |
covid19italy | 0.3.1 | covid19sf | 0.1.2 |
covid19swiss | 0.1.0 | covid19us | 0.1.9 |
CovidMutations | 0.1.3 | cowplot | 1.1.3 |
cp4p | 0.3.6 | CPBayes | 1.1.0 |
cplm | 0.7-12 | cpp11 | 0.4.7 |
CptNonPar | 0.2.1 | CRABS | 1.2.0 |
crawl | 2.3.0 | crayon | 1.5.3 |
crch | 1.1-2 | credentials | 2.0.1 |
credule | 0.1.4 | crfsuite | 0.4.2 |
cricketdata | 0.2.3 | cricketr | 0.0.26 |
CRM | 1.2.4 | crmPack | 1.0.6 |
crossdes | 1.1-2 | crosslag | 0.1.0 |
Crossover | 0.1-22 | crosstalk | 1.2.1 |
crs | 0.15-37 | crseEventStudy | 1.2.2 |
crsmeta | 0.3.0 | crul | 1.5.0 |
crunch | 1.30.4 | crunchy | 0.3.3 |
cryptoQuotes | 1.3.1 | cSEM | 0.5.0 |
CSGo | 0.6.7 | cshapes | 2.0 |
CSHShydRology | 1.4.2 | csodata | 1.5.0 |
cstab | 0.2-2 | csv | 0.6.2 |
ctbi | 2.0.5 | ctmcmove | 1.2.9 |
ctmm | 1.2.0 | ctrdata | 1.19.1 |
CTT | 2.3.3 | CTTShiny | 0.1 |
ctv | 0.9-5 | cubature | 2.1.1 |
cubble | 0.3.2 | cubelyr | 1.0.2 |
cubfits | 0.1-4 | Cubist | 0.4.4 |
cumSeg | 1.3 | curl | 5.2.1 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-14 |
D3mirt | 2.0.4 | d3Network | 0.5.2.1 |
DAAG | 1.25.6 | dae | 3.2.28 |
daewr | 1.2-11 | dagitty | 0.3-4 |
DAKS | 2.1-3 | DALEX | 2.4.3 |
DAMOCLES | 2.3 | data.table | 1.15.4 |
data.tree | 1.1.0 | DatabaseConnector | 6.3.2 |
DataExplorer | 0.8.3 | dataone | 2.2.2 |
datapack | 1.4.1 | datapasta | 3.1.0 |
dataRetrieval | 2.7.16 | datarobot | 2.18.6 |
dataseries | 0.2.0 | dataverse | 0.3.14 |
datawizard | 0.12.2 | date | 1.2-42 |
dateback | 1.0.5 | datetimeoffset | 0.3.1 |
datetimeutils | 0.6-4 | dbarts | 0.9-28 |
dbhydroR | 0.2-8 | DBI | 1.2.3 |
DBItest | 1.8.1 | dbmss | 2.9-0 |
dbparser | 2.0.3 | dbplyr | 2.5.0 |
dbscan | 1.2-0 | dbx | 0.3.2 |
DChaos | 0.1-7 | dclone | 2.3-2 |
DCluster | 0.2-10 | DClusterm | 1.0-1 |
dcov | 0.1.1 | dCovTS | 1.4 |
dcurver | 0.9.2 | ddalpha | 1.3.15 |
DDD | 5.2.2 | dde | 1.0.5 |
DDPM | 0.1.0 | deBInfer | 0.4.4 |
debugme | 1.2.0 | decompr | 6.4.0 |
deducorrect | 1.3.7 | deductive | 1.0.0 |
DeductiveR | 1.0.0 | deeptime | 1.1.1 |
Delaporte | 8.4.1 | DelayedArray | 0.30.1 |
DelayedMatrixStats | 1.26.0 | deldir | 2.0-4 |
deltaPlotR | 1.6 | demography | 2.0 |
dendextend | 1.17.1 | dendsort | 0.3.4 |
densEstBayes | 1.0-2.2 | DEoptim | 2.2-8 |
DEoptimR | 1.1-3 | depmix | 0.9.16 |
depmixS4 | 1.5-0 | DepthProc | 2.1.5 |
depthTools | 0.7 | Deriv | 4.1.3 |
derivmkts | 0.2.5 | desc | 1.4.3 |
DescTools | 0.99.55 | deseats | 1.1.0 |
DESeq2 | 1.44.0 | designmatch | 0.5.4 |
desiR | 1.2.2 | desirability | 2.1 |
deSolve | 1.40 | desplot | 1.10 |
devtools | 2.4.5 | dexter | 1.5.0 |
dextergui | 0.2.6 | dexterMST | 0.9.6 |
dfcomb | 3.1-1 | dfcrm | 0.2-2.1 |
dfidx | 0.0-5 | DFIT | 1.1 |
dfms | 0.2.2 | dfmta | 1.7-3 |
dfoptim | 2023.1.0 | dfped | 1.1 |
DGEobj | 1.1.2 | DGEobj.utils | 1.0.6 |
DHARMa | 0.4.6 | DHS.rates | 0.9.2 |
diagis | 0.2.3 | diagonals | 6.4.0 |
diagram | 1.6.5 | DiagrammeR | 1.0.11 |
dials | 1.3.0 | DiceDesign | 1.10 |
DiceEval | 1.6.1 | DiceKriging | 1.6.0 |
DiceOptim | 2.1.1 | DiceView | 2.2-0 |
dichromat | 2.0-0.1 | DICOMread | 0.0.0.3 |
did | 2.1.2 | did2s | 1.0.2 |
didimputation | 0.3.0 | DIFboost | 0.3 |
DiffCorr | 0.4.3 | diffEnrich | 0.1.2 |
diffobj | 0.3.5 | diffpriv | 0.4.2 |
diffusion | 0.4.0 | DIFlasso | 1.0-4 |
difNLR | 1.4.2-1 | DIFplus | 1.1 |
difR | 5.1 | DIFtree | 3.1.6 |
digest | 0.6.36 | DIMORA | 0.3.6 |
dimRed | 0.2.6 | dina | 2.0.0 |
DiPALM | 1.2 | diptest | 0.77-1 |
Dire | 2.2.0 | DIRECT | 1.1.0 |
directlabels | 2024.1.21 | directPA | 1.5.1 |
dirichletprocess | 0.4.2 | dirmult | 0.1.3-5 |
disaggR | 1.0.5.3 | DIscBIO | 1.2.2 |
DiscreteDatasets | 0.1.1 | DiscreteFDR | 2.0.0 |
DiscreteTests | 0.2.0 | discretization | 1.0-1.1 |
dispRity | 1.8 | DistatisR | 1.1.1 |
distcrete | 1.0.3 | distfree.cr | 1.5.1 |
distill | 1.6 | distory | 1.4.4 |
distr | 2.9.3 | distrEx | 2.9.2 |
distributional | 0.4.0 | distributions3 | 0.2.1 |
DistributionUtils | 0.6-1 | distrom | 1.0.1 |
distrTeach | 2.9.1 | dittodb | 0.1.8 |
diversitree | 0.10-0 | divest | 1.0.0 |
divseg | 0.0.5 | dLagM | 1.1.13 |
dlm | 1.1-6 | dlmtree | 1.0.0 |
dlnm | 2.4.7 | dlsem | 2.4.6 |
dlstats | 0.1.7 | dm | 1.0.10 |
dmri.tracking | 0.1.0 | DNAcopy | 1.78.0 |
doBy | 4.6.22 | doc2vec | 0.2.0 |
docopt | 0.7.1 | docopulae | 0.4.0 |
DoE.base | 1.2-4 | DoE.MIParray | 1.0-1 |
DoE.wrapper | 0.12 | doFuture | 1.0.1 |
doMC | 1.3.8 | doParallel | 1.0.17 |
doRNG | 1.8.6 | DOSE | 3.30.2 |
DoseFinding | 1.1-1 | doSNOW | 1.0.20 |
DOSPortfolio | 0.1.0 | dotCall64 | 1.1-1 |
DoubleML | 1.0.1 | Dowd | 0.12 |
downlit | 0.4.4 | downloader | 0.4 |
dparser | 1.3.1-11 | dplyr | 1.1.4 |
dqrng | 0.4.1 | dr4pl | 2.0.0 |
drake | 7.13.10 | drat | 0.2.4 |
DRaWR | 1.0.3 | DRDID | 1.0.7 |
dreamerr | 1.4.0 | DriftBurstHypothesis | 0.4.0.1 |
driveR | 0.4.1 | DRomics | 2.5-2 |
DRR | 0.0.4 | dsa | 1.0.12 |
DSAIDE | 0.9.6 | dsb | 1.0.4 |
DSI | 1.6.0 | DSL | 0.1-7 |
DT | 0.33 | DTAT | 0.3-7 |
DtD | 0.2.2 | dti | 1.5.4 |
dtplyr | 1.3.1 | DTSg | 1.1.3 |
dtt | 0.1-2 | dtts | 0.1.3 |
dtw | 1.23-1 | dtwclust | 6.0.0 |
duckdb | 1.0.0-2 | duckduckr | 1.0.0 |
dunn.test | 1.3.6 | dwctaxon | 2.0.3 |
dygraphs | 1.1.1.6 | Dykstra | 1.0-0 |
dyn | 0.2-9.6 | dynamicTreeCut | 1.63-1 |
dynatop | 0.2.3 | dynatopGIS | 0.2.5 |
dynaTree | 1.2-16 | DynDoc | 1.82.0 |
dynlm | 0.3-6 | dynparam | 1.0.2 |
dynutils | 1.0.11 | dynwrap | 1.2.4 |
DysPIA | 1.3 | DysPIAData | 0.1.2 |
e1071 | 1.7-14 | earlyR | 0.0.5 |
earth | 5.3.3 | easypower | 1.0.2 |
easySdcTable | 1.0.7 | eba | 1.10-0 |
ebal | 0.1-8 | EbayesThresh | 1.4-12 |
ebdbNet | 1.2.8 | EBImage | 4.46.0 |
EBMAforecast | 1.0.32 | ecb | 0.4.2 |
Ecdat | 0.4-2 | ecespa | 1.1-17 |
Ecfun | 0.3-2 | echor | 0.1.9 |
ecm | 7.2.0 | ecodist | 2.1.3 |
Ecohydmod | 1.0.0 | ECOSolveR | 0.5.5 |
ecoval | 1.2.9 | ecp | 3.1.5 |
ecr | 2.1.1 | edfReader | 1.2.1 |
edgeR | 4.2.1 | edina | 0.1.1 |
editrules | 2.9.5 | edmdata | 1.2.0 |
edstan | 1.0.6 | EdSurvey | 4.0.7 |
eegkit | 1.0-4 | eegkitdata | 1.1 |
EFAutilities | 2.1.3 | effects | 4.2-2 |
EGAnet | 2.0.6 | egg | 0.4.5 |
egor | 1.24.2 | EGRET | 3.0.9 |
EGRETci | 2.0.4 | eha | 2.11.4 |
eigenmodel | 1.11 | eiopaR | 0.1.1 |
elastic | 1.2.0 | elasticnet | 1.3 |
elevatr | 0.99.0 | ellipse | 0.5.0 |
ellipsis | 0.3.2 | elliptic | 1.4-0 |
elo | 3.0.2 | EloChoice | 0.29.4 |
EloRating | 0.46.18 | ELT | 1.7 |
emayili | 0.9.1 | EMbC | 2.0.4 |
EMD | 1.5.9 | emdi | 2.2.2 |
emg | 1.0.9 | emmeans | 1.10.3 |
EMMIXgene | 0.1.4 | emoa | 0.5-2 |
emulator | 1.2-24 | encode | 0.3.6 |
endtoend | 2.29 | energy | 1.7-11 |
EngrExpt | 0.1-8 | enrichplot | 1.24.2 |
enrichR | 3.2 | enrichwith | 0.3.1 |
ensembleBMA | 5.1.8 | entropart | 1.6-13 |
entropy | 1.3.1 | EntropyEstimation | 1.2 |
EntropyMCMC | 1.0.4 | enveomics.R | 1.9.1 |
enviPat | 2.6 | EnvStats | 2.8.1 |
epanet2toolkit | 1.0.5 | epanetReader | 0.7.3 |
Epi | 2.53 | epibasix | 1.5 |
epicontacts | 1.1.4 | EpiContactTrace | 0.17.0 |
EpiCurve | 2.4-2 | epiDisplay | 3.5.0.2 |
EpiEstim | 2.2-4 | epiflows | 0.2.1 |
EpiILM | 1.5.2 | EpiILMCT | 1.1.7 |
epimdr | 0.6-5 | EpiModel | 2.4.0 |
epinet | 2.1.11 | EpiNow2 | 1.5.2 |
epiR | 2.0.75 | EpiReport | 1.0.2 |
episensr | 1.3.0 | EpiSignalDetection | 0.1.2 |
epitools | 0.5-10.1 | epitrix | 0.4.0 |
epitweetr | 2.2.16 | epm | 1.1.2 |
epo | 0.1.0 | equate | 2.0.8 |
equateIRT | 2.5.0 | equateMultiple | 0.1.2 |
equivalence | 0.7.2 | era | 0.4.1 |
erah | 2.0.1 | ergm | 4.6.0 |
ergm.ego | 1.1.0 | ergm.multi | 0.2.1 |
eRm | 1.0-6 | errorlocate | 1.1.1 |
errum | 0.0.3 | esemifar | 2.0.1 |
ESG | 1.3 | EstCRM | 1.6 |
estimability | 1.5.1 | EstimateGroupNetwork | 0.3.1 |
estimatr | 1.0.4 | ETLUtils | 1.5 |
etm | 1.1.1 | etrm | 1.0.1 |
etrunct | 0.1 | etwfe | 0.4.0 |
EUfootball | 0.0.1 | eulerr | 7.0.2 |
europepmc | 0.4.3 | eurostat | 4.0.0 |
evaluate | 0.24.0 | Evapotranspiration | 1.16 |
evd | 2.3-7 | evgam | 1.0.0 |
evir | 1.7-4 | evobiR | 1.1 |
EvoPhylo | 0.3.2 | evtree | 1.0-8 |
ewoc | 0.3.0 | Exact | 3.3 |
exactextractr | 0.10.0 | exactRankTests | 0.8-35 |
exams | 2.4-1 | ExceedanceTools | 1.3.6 |
exdex | 1.2.3 | EXPAR | 0.1.0 |
EXPARMA | 0.1.0 | experiment | 1.2.1 |
expint | 0.1-8 | expm | 0.999-9 |
ExPosition | 2.8.23 | expsmooth | 2.3 |
exreport | 0.4.1 | extraDistr | 1.10.0 |
extrafont | 0.19 | extrafontdb | 1.0 |
extraoperators | 0.3.0 | ExtremeBounds | 0.1.7 |
ExtremeRisks | 0.0.4 | eyelinker | 0.2.1 |
ez | 4.4-0 | fable | 0.3.4 |
fable.prophet | 0.1.0 | fableCount | 0.1.0 |
fabletools | 0.4.2 | factoextra | 1.0.7 |
FactoMineR | 2.11 | factorstochvol | 1.1.0 |
FAdist | 2.4 | fanplot | 4.0.0 |
fansi | 1.0.6 | FAOSTAT | 2.4.0 |
faoutlier | 0.7.6 | faraway | 1.0.8 |
farver | 2.1.2 | fAssets | 4023.85 |
fasstr | 0.5.2 | fastcluster | 1.2.6 |
fastcpd | 0.14.3 | fastDummies | 1.7.4 |
fastGHQuad | 1.0.1 | fastglm | 0.0.3 |
fastICA | 1.2-4 | fastLink | 0.6.1 |
fastmap | 1.2.0 | fastmatch | 1.1-4 |
fastRhockey | 0.4.0 | fastrmodels | 1.0.2 |
FastRWeb | 1.2-1 | fasttime | 1.1-0 |
fastTS | 1.0.1 | FatTailsR | 1.8-5 |
fauxpas | 0.5.2 | FAVAR | 0.1.3 |
fbar | 0.6.0 | fBasics | 4032.96 |
fBonds | 3042.78 | fbRads | 17.0.0 |
fCopulae | 4022.85 | FCVAR | 0.1.4 |
FD | 1.0-12.3 | fda | 6.1.8 |
fdaACF | 1.0.0 | fdapace | 0.6.0 |
fdrtool | 1.2.17 | fds | 1.8 |
fdth | 1.3-0 | feasts | 0.3.2 |
feather | 0.3.5 | fechner | 1.0-3 |
FedData | 4.0.1 | FeedbackTS | 1.5 |
feisr | 1.3.0 | fExtremes | 4032.84 |
ff | 4.0.12 | FFD | 1.0-9 |
ffscrapr | 1.4.8 | fftwtools | 0.9-11 |
fGarch | 4033.92 | fgsea | 1.30.0 |
fHMM | 1.3.1 | FielDHub | 1.4.2 |
fields | 16.2 | fiery | 1.2.1 |
filehash | 2.4-6 | filehashSQLite | 0.2-7 |
filelock | 1.0.3 | filematrix | 1.3 |
fImport | 4032.87 | finalsize | 0.2.1 |
FinancialMath | 0.1.1 | findpython | 1.0.8 |
FinNet | 0.1.2 | finnts | 0.4.0 |
finreportr | 1.0.4 | FinTS | 0.4-9 |
FiRE | 1.0.1 | fishMod | 0.29 |
fitdistrplus | 1.2-1 | fitzRoy | 1.5.0 |
fixest | 0.12.1 | FKF | 0.2.5 |
FKF.SP | 0.3.1 | flacco | 1.8 |
flap | 0.2.0 | flashClust | 1.01-2 |
flexclust | 1.4-2 | flexmix | 2.3-19 |
FlexScan | 0.2.2 | flextable | 0.9.6 |
flippant | 1.5.5 | float | 0.3-2 |
flock | 0.7 | flowr | 0.9.11 |
FlowScreen | 1.2.6 | fma | 2.5 |
FMC | 1.0.1 | fmcmc | 0.5-2 |
fmdates | 0.1.4 | FME | 1.3.6.3 |
fmesher | 0.1.7 | fmri | 1.9.12.1 |
fMultivar | 4031.84 | fnets | 0.1.6 |
FNN | 1.1.4 | fNonlinear | 4021.81 |
fontawesome | 0.5.2 | fontBitstreamVera | 0.1.1 |
fontLiberation | 0.1.0 | fontquiver | 0.2.1 |
footballpenaltiesBL | 1.0.0 | footBayes | 0.2.0 |
forcats | 1.0.0 | foreach | 1.5.2 |
ForeCA | 0.2.7 | forecast | 8.23.0 |
ForecastComb | 1.3.1 | forecastHybrid | 5.0.19 |
forecastLSW | 1.0 | forecastML | 0.9.0 |
FoReco | 0.2.6 | ForeComp | 0.9.0 |
forecTheta | 2.6.2 | forestplot | 3.1.3 |
forge | 0.2.0 | formatR | 1.14 |
formattable | 0.2.1 | formods | 0.1.6 |
Formula | 1.2-5 | formula.tools | 1.7.1 |
FossilSim | 2.3.3 | fourPNO | 1.1.0 |
fpc | 2.2-12 | fpcb | 0.1.0 |
fpCompare | 0.2.4 | FPLdata | 0.1.0 |
fPortfolio | 4023.84 | fpp2 | 2.5 |
fpp3 | 1.0.0 | fracdiff | 1.5-3 |
fracdist | 0.1.1 | Frames2 | 0.2.1 |
FRAPO | 0.4-1 | fredr | 2.1.0 |
freecurrencyapi | 0.1.0 | freesurferformats | 0.1.18 |
fRegression | 4021.83 | frenchdata | 0.2.0 |
freqdom | 2.0.5 | freqdom.fda | 1.0.1 |
fresh | 0.2.1 | FrF2 | 2.3-3 |
FrF2.catlg128 | 1.2-3 | FRK | 2.3.1 |
frontier | 1.1-8 | frostr | 0.2.0 |
fs | 1.6.4 | FSA | 0.9.5 |
fslr | 2.25.3 | fst | 0.9.8 |
fstcore | 0.9.18 | fTrading | 3042.79 |
ftrCOOL | 2.0.0 | ftsa | 6.4 |
func2vis | 1.0-3 | functional | 0.6 |
fungible | 2.4.4 | funtimes | 9.1 |
furrr | 0.3.1 | futile.logger | 1.4.3 |
futile.options | 1.0.1 | future | 1.34.0 |
future.apply | 1.11.2 | fuzzyjoin | 0.1.6 |
fxregime | 1.0-4 | GA | 3.2.4 |
GAD | 2.0 | gafit | 0.5.1 |
gam | 1.22-4 | gamlr | 1.13-8 |
gamlss | 5.4-22 | gamlss.data | 6.0-6 |
gamlss.dist | 6.1-1 | gamm4 | 0.2-6 |
GANPA | 1.2 | GANPAdata | 1.0 |
gap | 1.5-3 | gap.datasets | 0.0.6 |
gapfill | 0.9.6-1 | GARCHSK | 0.1.0 |
garchx | 1.5 | gargle | 1.5.2 |
garma | 0.9.13 | GAS | 0.3.4 |
gasmodel | 0.6.0 | gaussquad | 1.0-3 |
GaussSuppression | 0.8.8 | gbm | 2.2.2 |
gbutils | 0.5 | gclus | 1.3.2 |
GCPM | 1.2.2 | gdalcubes | 0.7.0 |
gdalUtilities | 1.2.5 | gdata | 3.0.0 |
GDINA | 2.9.4 | gdistance | 1.6.4 |
gdpc | 1.1.4 | gdtools | 0.3.7 |
gear | 0.3.4 | gee | 4.13-27 |
geeM | 0.10.1 | geepack | 1.3.11 |
geigen | 2.3 | geiger | 2.0.11 |
genalg | 0.2.1 | gender | 0.6.0 |
GeneCycle | 1.1.5 | geneExpressionFromGEO | 0.9 |
genefilter | 1.86.0 | GeneNet | 1.2.16 |
GeneralizedHyperbolic | 0.8-6 | GeneralizedUmatrix | 1.2.6 |
generics | 0.1.3 | genetics | 1.3.8.1.3 |
geno2proteo | 0.0.6 | GenomeInfoDb | 1.40.1 |
GenomeInfoDbData | 1.2.12 | GenomicAlignments | 1.40.0 |
GenomicFeatures | 1.56.0 | GenomicRanges | 1.56.1 |
GenomicTools.fileHandler | 0.1.5.9 | genoPlotR | 0.8.11 |
GenSA | 1.1.14 | geobr | 1.9.0 |
geodist | 0.1.0 | geogrid | 0.1.2 |
geojson | 0.3.5 | geojsonio | 0.11.3 |
geojsonsf | 2.0.3 | GEOmap | 2.5-11 |
geomapdata | 2.0-2 | geometa | 0.8-0 |
GEOmetadb | 1.66.0 | geometries | 0.2.4 |
geometry | 0.4.7 | geomorph | 4.0.8 |
geomtextpath | 0.1.4 | geonames | 0.999 |
geonapi | 0.7-2 | GEOquery | 2.72.0 |
geoR | 1.9-4 | georob | 0.3-19 |
geos | 0.2.4 | geosapi | 0.7-1 |
geoscale | 2.0.1 | geosphere | 1.5-18 |
geospt | 1.0-4 | geostan | 0.6.2 |
geotopbricks | 1.5.8.2 | geouy | 0.2.8 |
gert | 2.1.0 | GET | 1.0-2 |
GetoptLong | 1.0.5 | getPass | 0.2-4 |
gets | 0.38 | GetTDData | 1.5.5 |
gfonts | 0.2.0 | ggalluvial | 0.12.5 |
GGally | 2.2.1 | ggalt | 0.4.0 |
gganimate | 1.0.9 | ggcharts | 0.2.1 |
ggdag | 0.2.13 | ggdemetra | 0.2.8 |
ggdendro | 0.2.0 | ggdist | 3.3.2 |
ggExtra | 0.10.1 | ggfittext | 0.10.2 |
ggforce | 0.4.2 | ggformula | 0.12.0 |
ggfortify | 0.4.17 | ggfun | 0.1.5 |
gggenes | 0.5.1 | gghalves | 0.1.4 |
ggimage | 0.3.3 | gginnards | 0.2.0 |
ggkegg | 1.2.2 | gglasso | 1.5.1 |
ggm | 2.5.1 | ggmap | 4.0.0 |
ggmcmc | 1.5.1.1 | ggmuller | 0.5.6 |
ggnetwork | 0.5.13 | ggnewscale | 0.5.0 |
ggokabeito | 0.1.0 | ggpath | 1.0.1 |
ggplot2 | 3.5.1 | ggplotify | 0.1.2 |
ggpmisc | 0.6.0 | ggpp | 0.5.8-1 |
ggpubr | 0.6.0 | ggquiver | 0.3.3 |
ggraph | 2.2.1 | ggrepel | 0.9.5 |
ggridges | 0.5.6 | ggsci | 3.2.0 |
ggseas | 0.5.4 | ggseqlogo | 0.2 |
ggsignif | 0.6.4 | ggsoccer | 0.1.7 |
ggspatial | 1.1.9 | ggstats | 0.6.0 |
ggtext | 0.1.2 | ggthemes | 5.1.0 |
ggtree | 3.12.0 | ggupset | 0.4.0 |
ggvis | 0.4.9 | gh | 1.4.1 |
ghyp | 1.6.4 | Gifi | 0.4-0 |
gifti | 0.8.0 | GIGrvg | 0.8 |
gimme | 0.7-18 | giscoR | 0.5.1 |
gistr | 0.9.0 | git2r | 0.33.0 |
gitcreds | 0.1.2 | gitlabr | 2.1.0 |
glarma | 1.6-0 | GlarmaVarSel | 1.0 |
glasso | 1.11 | glassoFast | 1.0.1 |
gld | 2.6.6 | glm2 | 1.2.1 |
glmmML | 1.1.6 | GLMMRR | 0.5.0 |
glmmSeq | 0.5.5 | glmmTMB | 1.1.9 |
glmnet | 4.1-8 | glmx | 0.2-0 |
GlobalOptions | 0.1.2 | globalOptTests | 1.1 |
globals | 0.16.3 | globaltest | 5.58.0 |
glpkAPI | 1.3.4 | glue | 1.7.0 |
gmailr | 2.0.0 | GMDH | 1.6 |
Gmedian | 1.2.7 | gmm | 1.8 |
gmnl | 1.1-3.2 | gmodels | 2.19.1 |
gmp | 0.7-4 | gmt | 2.0.3 |
gmvarkit | 2.1.2 | GNAR | 1.1.3 |
gnm | 1.1-5 | GO.db | 3.19.1 |
goftest | 1.2-3 | gogarch | 0.7-5 |
golem | 0.4.1 | gontr | 1.1.0 |
googleAnalyticsR | 1.2.0 | googleAuthR | 2.0.2 |
googleCloudStorageR | 0.7.0 | googleComputeEngineR | 0.3.0 |
googledrive | 2.1.1 | googleLanguageR | 0.3.0 |
googlePolylines | 0.8.4 | googlesheets4 | 1.1.1 |
googleVis | 0.7.3 | googleway | 2.7.8 |
GOSemSim | 2.30.0 | gower | 1.0.1 |
GOxploreR | 1.2.7 | GPareto | 1.1.8 |
GPArotation | 2024.3-1 | GPCMlasso | 0.1-7 |
GPfit | 1.0-8 | gpindex | 0.6.2 |
gplots | 3.1.3.1 | GPRMortality | 0.1.0 |
gprofiler2 | 0.2.3 | gradethis | 0.2.14 |
graDiEnt | 1.0.1 | gRain | 1.4.1 |
grantham | 0.1.2 | graph | 1.82.0 |
graphicalVAR | 0.3.4 | graphite | 1.50.0 |
graphlayouts | 1.1.1 | graphsim | 1.0.3 |
graphTweets | 0.5.3 | grates | 1.2.1 |
gratis | 1.0.7 | gravitas | 0.1.3 |
gravity | 1.1 | gRbase | 2.0.2 |
greeks | 1.4.2 | greta | 0.4.5 |
greybox | 2.0.1 | grf | 2.3.2 |
gridBase | 0.4-7 | gridExtra | 2.3 |
gridGraphics | 0.5-1 | gridSVG | 1.7-5 |
gridtext | 0.1.5 | grImport | 0.9-7 |
grImport2 | 0.3-3 | grnn | 0.1.0 |
groundhog | 3.2.0 | GroupSeq | 1.4.3 |
grplasso | 0.4-7 | grwat | 0.0.4 |
GSA | 1.03.3 | gsarima | 0.1-5 |
gsDesign | 3.6.4 | GSEABase | 1.66.0 |
gsheet | 0.4.5 | gsignal | 0.3-5 |
gsisdecoder | 0.0.1 | gsl | 2.1-8 |
gslnls | 1.3.2 | GSODR | 4.1.1 |
gson | 0.1.0 | gss | 2.2-7 |
gstat | 2.1-1 | gsubfn | 0.7 |
GSVA | 1.52.3 | GSVAdata | 1.40.0 |
gsw | 1.1-1 | gsynth | 1.2.1 |
gt | 0.11.0 | gtable | 0.3.5 |
gtheory | 0.1.2 | gtools | 3.9.5 |
gtrendsR | 1.5.1 | gtsummary | 2.0.0 |
GUIDE | 1.2.7 | gumboot | 1.0.1 |
GUniFrac | 1.8 | gustave | 1.0.0 |
gvc | 6.4.0 | gwavr | 0.3.1 |
gWidgets2 | 1.0-9 | GWmodel | 2.3-3 |
gwrr | 0.2-2 | GWSDAT | 3.2.1 |
h2o | 3.44.0.3 | hackeRnews | 0.1.0 |
HandTill2001 | 1.0.1 | HaploSim | 1.8.4.2 |
hardhat | 1.4.0 | hash | 2.2.6.3 |
haven | 2.5.4 | hbsae | 1.2 |
HBV.IANIGLA | 0.2.6 | HDF5Array | 1.32.1 |
hdf5r | 1.3.11 | hdi | 0.1-9 |
HDInterval | 0.2.4 | hdm | 0.3.2 |
HDMT | 1.0.5 | HDO.db | 0.99.1 |
hdrcde | 3.4 | HDShOP | 0.1.5 |
HDTSA | 1.0.3 | heatmaply | 1.5.0 |
heplots | 1.7.0 | here | 1.0.1 |
hett | 0.3-3 | hexbin | 1.28.3 |
hexSticker | 0.4.9 | hflights | 0.1 |
hglm | 2.2-1 | hglm.data | 1.0-1 |
hgnc | 0.1.4 | HGNChelper | 0.8.14 |
hgu95a.db | 3.13.0 | HH | 3.1-52 |
hht | 2.1.6 | HiClimR | 2.2.1 |
highcharter | 0.9.4 | highfrequency | 1.0.1 |
highlight | 0.5.1 | highr | 0.11 |
highs | 0.1-10 | HIMA | 2.2.1 |
hipread | 0.2.4 | hisse | 2.1.11 |
HistData | 0.9-1 | HKRbook | 0.1.3 |
HLMdiag | 0.5.0 | HMDHFDplus | 2.0.3 |
Hmisc | 5.1-3 | HMMpa | 1.0.1 |
HMP | 2.0.1 | HMPTrees | 1.4 |
hms | 1.1.3 | hoardr | 0.5.4 |
homals | 1.0-10 | hommel | 1.6 |
hoopR | 2.1.0 | hot.deck | 1.2 |
howzatR | 1.0.1 | hpfilter | 1.0.2 |
HRW | 1.0-5 | HSAUR3 | 1.0-14 |
hsstan | 0.8.2 | htm2txt | 2.2.2 |
htmlTable | 2.4.3 | htmltools | 0.5.8.1 |
HTMLUtils | 0.1.9 | htmlwidgets | 1.6.4 |
hts | 6.0.3 | HTSCluster | 2.0.11 |
htsr | 2.1.5 | httpcache | 1.2.0 |
httpcode | 0.3.0 | httping | 0.2.0 |
httpRequest | 0.0.11 | httptest | 4.2.2 |
httpuv | 1.6.15 | httr | 1.4.7 |
httr2 | 1.0.2 | hubeau | 0.5.0 |
humanFormat | 1.2 | humanize | 0.2.0 |
humidity | 0.1.5 | hunspell | 3.0.3 |
hurricaneexposure | 0.1.1 | hutils | 1.8.1 |
huxtable | 5.5.6 | hwriter | 1.3.2.1 |
hwwntest | 1.3.2 | hydraulics | 0.7.0 |
hydroEvents | 0.11 | hydrogeo | 0.6-1 |
hydroGOF | 0.6-0 | hydroloom | 1.0.2 |
HydroMe | 2.1.1 | hydropeak | 0.1.2 |
hydroroute | 0.1.2 | hydrostats | 0.2.9 |
hydrotoolbox | 1.1.2 | hydroTSM | 0.7-0 |
hyfo | 1.4.6 | HyperbolicDist | 0.6-5 |
hypergeo | 1.2-13 | iarm | 0.4.3 |
ibd | 1.6 | IBMPopSim | 1.0.0 |
iBreakDown | 2.1.2 | IBrokers | 0.10-2 |
ica | 1.0-3 | ICAMS | 2.3.12 |
ICAOD | 1.0.1 | iCARH | 2.0.2.1 |
icarus | 0.3.2 | ICBioMark | 0.1.4 |
ICC | 2.4.0 | iccbeta | 1.2.0 |
ICDS | 0.1.3 | iCellR | 1.6.7 |
Icens | 1.76.0 | ICGE | 0.4.2 |
ichimoku | 1.5.3 | ICS | 1.4-1 |
ICSNP | 1.1-2 | ICtest | 0.3-5 |
idbr | 1.2 | IDE | 0.3.1 |
idefix | 1.0.3 | idendr0 | 1.5.3 |
IDF | 2.1.2 | IDPmisc | 1.1.21 |
ids | 1.0.1 | ie2misc | 0.9.1 |
ie2miscdata | 1.0.4 | IETD | 1.0.0 |
ifaTools | 0.23 | ifo | 0.1.0 |
igraph | 2.0.3 | igraphdata | 1.0.1 |
illuminaio | 0.46.0 | imbibe | 0.1.1 |
imguR | 1.0.3 | IMIX | 1.1.5 |
immer | 1.5-13 | immunarch | 0.9.1 |
imp4p | 1.2 | implied | 0.5 |
implyr | 0.5.0 | import | 1.3.2 |
impute | 1.78.0 | imputeLCMD | 2.1 |
imputeTestbench | 3.0.3 | imputeTS | 3.3 |
imsig | 1.1.3 | inca | 0.0.4 |
IncDTW | 1.1.4.4 | incidence | 1.7.5 |
incidence2 | 2.3.1 | inctools | 1.0.15 |
inegiR | 3.0.0 | ineq | 0.2-13 |
infer | 1.0.7 | influence.SEM | 2.3 |
influxdbr | 0.14.2 | infotheo | 1.2.0.1 |
InfoTrad | 1.2 | ingredients | 2.3.0 |
ini | 0.3.1 | injurytools | 1.0.3 |
inline | 0.3.19 | insight | 0.20.2 |
InspectChangepoint | 1.2 | instaR | 0.2.4 |
insuranceData | 1.0 | insurancerating | 0.7.4 |
intamap | 1.5-7 | integIRTy | 1.0.7 |
InteRD | 0.1.1 | interep | 0.4.1 |
interleave | 0.1.2 | interp | 1.1-6 |
InterpretMSSpectrum | 1.4.5 | intervals | 0.15.4 |
inum | 1.0-5 | investr | 1.4.2 |
invgamma | 1.1 | ioncopy | 2.2.2 |
iotables | 0.9.3 | iotools | 0.3-5 |
ipaddress | 1.0.2 | ipdw | 2.0-0 |
ipfp | 1.0.2 | ipred | 0.9-15 |
ips | 0.0.12 | ipumsr | 0.8.1 |
iq | 1.9.12 | irace | 3.5 |
IRanges | 2.38.1 | IRdisplay | 1.1 |
IRkernel | 1.3.2 | irlba | 2.3.5.1 |
irr | 0.84.1 | irtDemo | 0.1.4 |
irtoys | 0.2.2 | irtrees | 1.0.0 |
IRTShiny | 1.2 | IsingFit | 0.4 |
IsingSampler | 0.2.3 | ISLR | 1.4 |
ismev | 1.42 | Iso | 0.0-21 |
isoband | 0.2.7 | ISOcodes | 2024.02.12 |
isotone | 1.1-1 | isoWater | 1.2.0 |
ISOweek | 0.6-2 | ISwR | 2.0-8 |
iterators | 1.0.14 | iterLap | 1.1-4 |
itertools | 0.1-3 | itscalledsoccer | 0.2.4 |
itsmr | 1.10 | ivreg | 0.6-3 |
JADE | 2.0-4 | jalcal | 0.1.0 |
janeaustenr | 1.0.0 | janitor | 2.2.0 |
JavaGD | 0.6-5 | JBrowseR | 0.10.2 |
jetset | 3.4.0 | jiebaR | 0.11 |
jiebaRD | 0.1 | jjb | 0.1.1 |
JMdesign | 1.5 | jointCalib | 0.1.0 |
jointDiag | 0.4 | jomo | 2.7-6 |
JoSAE | 0.3.0 | jose | 1.2.0 |
jpeg | 0.1-10 | jqr | 1.3.3 |
jquerylib | 0.1.4 | jrt | 1.1.2 |
js | 1.2 | jsonify | 1.2.2 |
jsonlite | 1.8.8 | jsonvalidate | 1.3.2 |
JSparO | 1.5.0 | jstor | 0.3.11 |
juicyjuice | 0.1.0 | JuliaConnectoR | 1.1.3 |
JWileymisc | 1.4.1 | kableExtra | 1.4.0 |
kalmanfilter | 2.1.1 | kappaSize | 1.2 |
kDGLM | 1.2.0 | KEGGgraph | 1.64.0 |
KEGGREST | 1.44.1 | kelvin | 2.0-2 |
Kendall | 2.2.1 | kequate | 1.6.4 |
keras | 2.15.0 | keras3 | 1.1.0.9000 |
kernelFactory | 0.3.0 | kernlab | 0.9-33 |
keyperm | 0.1.1 | keyring | 1.3.2 |
KFAS | 1.5.1 | kfigr | 1.2.1 |
kinship2 | 1.9.6.1 | kitagawa | 3.1.2 |
kiwisR | 0.2.0 | klaR | 1.7-3 |
klsh | 0.1.0 | km.ci | 0.5-6 |
kmer | 1.1.2 | KMsurv | 0.1-5 |
knitcitations | 1.0.12 | knitLatex | 0.9.0 |
knitr | 1.48 | kofnGA | 1.3 |
koRpus | 0.13-8 | KrigInv | 1.4.2 |
KRIS | 1.1.6 | krm | 2022.10-17 |
ks | 1.14.2 | kst | 0.5-4 |
kutils | 1.73 | kyotil | 2024.7-31 |
kza | 4.1.0.1 | labdsv | 2.1-0 |
label.switching | 1.8 | labeling | 0.4.3 |
labelled | 2.13.0 | labelVector | 0.1.2 |
laeken | 0.5.3 | LaF | 0.8.4 |
lagged | 0.3.2 | Lahman | 11.0-0 |
lakemorpho | 1.3.2 | LAM | 0.7-22 |
lambda.r | 1.2.4 | lamW | 2.2.4 |
landsat | 1.1.2 | landscapemetrics | 2.1.4 |
languagelayeR | 1.2.4 | languageR | 1.5.0 |
LaplacesDemon | 16.1.6 | LARF | 1.4 |
lars | 1.3 | latdiag | 0.3 |
later | 1.3.2 | latex2exp | 0.9.6 |
latticeExtra | 0.6-30 | LatticeKrig | 8.4 |
lava | 1.8.0 | lavaan | 0.6-18 |
LAWBL | 1.5.0 | lazyeval | 0.2.2 |
lazyWeave | 3.0.2 | lbfgs | 1.2.1.2 |
lbfgsb3c | 2024-3.4 | LCAvarsel | 1.1 |
lcda | 0.3.2 | lcmm | 2.1.0 |
lctools | 0.2-10 | lda | 1.5.2 |
ldbounds | 2.0.2 | leafem | 0.2.3 |
leaflet | 2.2.2 | leaflet.extras | 2.0.0 |
leaflet.providers | 2.0.0 | leafpm | 0.1.0 |
leafpop | 0.1.0 | leafsync | 0.1.0 |
leapp | 1.3 | leaps | 3.2 |
LearnBayes | 2.15.1 | learnr | 0.11.5.9000 |
legion | 0.1.2 | leiden | 0.4.3.1 |
leidenAlg | 1.1.3 | lfactors | 1.0.4 |
lfe | 3.0-0 | lfstat | 0.9.12 |
lgarch | 0.6-2 | lgr | 0.4.4 |
lgtdl | 1.1.5 | lhs | 1.2.0 |
libcoin | 1.0-10 | libgeos | 3.11.1-2 |
LiblineaR | 2.10-23 | lidR | 4.1.2 |
lifecontingencies | 1.3.11 | lifecycle | 1.0.4 |
LifeInsuranceContracts | 0.0.6 | LifeInsureR | 1.0.0 |
liftr | 0.9.2 | likert | 1.3.5 |
lilikoi | 2.1.1 | LIM | 1.4.7.1 |
limma | 3.60.4 | limSolve | 1.5.7.1 |
linelist | 1.1.4 | lineup | 0.44 |
lineup2 | 0.6 | link2GI | 0.6-1 |
linpk | 1.1.2 | linprog | 0.9-4 |
LinRegInteractive | 0.3-3 | lintools | 0.1.7 |
lisrelToR | 0.3 | listcomp | 0.4.1 |
listenv | 0.9.1 | liteq | 1.1.0 |
lmds | 0.1.0 | lme4 | 1.1-35.5 |
lmerTest | 3.1-3 | lmForc | 0.1.0 |
lmm | 1.4 | lmodel2 | 1.7-3 |
lmom | 3.0 | lmomco | 2.5.1 |
Lmoments | 1.3-1 | lmomRFA | 3.6 |
lmQCM | 0.2.4 | lmtest | 0.9-40 |
LNIRT | 0.5.1 | lobstr | 1.1.2 |
locfit | 1.5-9.10 | locits | 1.7.7 |
locpol | 0.8.0 | log4r | 0.4.3 |
logger | 0.3.0 | logging | 0.10-108 |
logitnorm | 0.8.39 | logitr | 1.1.2 |
logspline | 2.1.22 | lokern | 1.1-12 |
lomb | 2.5.0 | longitudinal | 1.1.13 |
longitudinalData | 2.4.5.1 | longmemo | 1.1-3 |
LongMemoryTS | 0.1.0 | longpower | 1.0.25 |
longurl | 0.3.3 | loo | 2.8.0 |
lordif | 0.3-3 | lotri | 0.4.3 |
LowRankQP | 1.0.6 | lpacf | 1.0.1 |
lpdensity | 2.4 | lpirfs | 0.2.3 |
LPM | 3.2 | LPS | 1.0.16 |
lpSolve | 5.6.20 | lpSolveAPI | 5.5.2.0-17.12 |
lsa | 0.73.3 | lsei | 1.3-0 |
lsl | 0.5.6 | lslx | 0.6.11 |
LSMonteCarlo | 1.0 | LSMRealOptions | 0.2.1 |
LSPFP | 1.0.3 | LSTS | 2.1 |
LSWPlib | 0.1.0 | ltm | 1.2-0 |
ltsa | 1.4.6 | lubridate | 1.9.3 |
LUCIDus | 3.0.2 | lulcc | 1.0.4 |
Luminescence | 0.9.24 | lutz | 0.3.2 |
luz | 0.4.0 | lvnet | 0.3.5 |
lvplot | 0.2.1 | LWFBrook90R | 0.5.3 |
lwgeom | 0.2-14 | M3C | 1.26.0 |
m5 | 0.1.1 | MAAPER | 1.1.1 |
maat | 1.1.0 | madrat | 3.6.4 |
maestro | 0.1.2 | maftools | 2.20.0 |
magclass | 6.13.2 | magic | 1.6-1 |
magick | 2.8.4 | magrittr | 2.0.3 |
maGUI | 4.0 | mailR | 0.8 |
makeit | 1.0.1 | makepipe | 0.2.1 |
makeProject | 1.0 | malariaAtlas | 1.6.1 |
MAMS | 2.0.2 | manhattanly | 0.3.0 |
ManifoldOptim | 1.0.1 | manipulate | 1.0.1 |
manipulateWidget | 0.11.1 | MaOEA | 0.6.2 |
Map2NCBI | 1.4 | MAPA | 2.0.7 |
mapdata | 2.3.1 | mapdeck | 0.3.5 |
mapedit | 0.6.0 | mapiso | 0.3.0 |
maplegend | 0.1.0 | mapme.biodiversity | 0.8.0 |
mapmisc | 2.1.0 | mapproj | 1.2.11 |
maps | 3.4.2 | mapsapi | 0.5.4 |
mapsf | 0.11.0 | mapSpain | 0.9.1 |
maptiles | 0.7.0 | maptpx | 1.9-7 |
maptree | 1.4-8 | mapview | 2.11.2 |
mAr | 1.2-0 | mar1s | 2.1.1 |
marcher | 0.0-2 | marginaleffects | 0.21.0 |
margins | 0.3.28 | markdown | 1.13 |
markerpen | 0.1.1 | markophylo | 1.0.9 |
markovchain | 0.9.5 | MarkowitzR | 1.0.3 |
marmap | 1.0.10 | marqLevAlg | 2.0.8 |
MARSS | 3.11.9 | MassSpecWavelet | 1.70.0 |
Matching | 4.10-14 | matchingMarkets | 1.0-4 |
matchingR | 1.3.3 | MatchIt | 4.5.5 |
matchmaker | 0.1.1 | MatchThem | 1.2.1 |
mathjaxr | 1.6-0 | mathpix | 0.6.0 |
matlab | 1.0.4.1 | matlabr | 1.5.2 |
matrixcalc | 1.0-6 | MatrixExtra | 0.1.15 |
MatrixGenerics | 1.16.0 | MatrixModels | 0.5-3 |
matrixset | 0.3.0 | matrixStats | 1.3.0 |
matrixTests | 0.2.3 | mauricer | 2.5.4 |
maxLik | 1.5-2.1 | MaxPro | 4.1-2 |
maxstat | 0.7-25 | MBA | 0.1-0 |
mbbefd | 0.8.11 | MBBEFDLite | 0.0.4 |
MBC | 0.10-6 | MBESS | 4.9.3 |
MBHdesign | 2.3.15 | mblm | 0.12.1 |
mboost | 2.9-10 | mbsts | 3.0 |
mc2d | 0.2.1 | MCAvariants | 2.6.1 |
mcclust | 1.0.1 | mcga | 3.0.7 |
mclust | 6.1.1 | mcmc | 0.9-8 |
MCMC.qpcr | 1.2.4 | mcmcensemble | 3.1.0 |
MCMCglmm | 2.36 | MCMCpack | 1.7-0 |
mcmcse | 1.5-0 | MCMCvis | 0.16.3 |
mco | 1.16 | Mcomp | 2.8 |
mcompanion | 0.6 | MCPMod | 1.0-10.1 |
mdftracks | 0.2.2 | measurementProtocol | 0.1.1 |
meboot | 1.4-9.4 | medflex | 0.6-10 |
Mediana | 1.0.8 | mediation | 4.5.0 |
MEFM | 0.1.1 | MEIGOR | 1.38.0 |
mem | 2.18 | memapp | 2.16 |
memisc | 0.99.31.7 | memoise | 2.0.1 |
MEMSS | 0.9-3 | MESS | 0.5.12 |
meta | 7.0-0 | metaboData | 0.6.3 |
MetabolAnalyze | 1.3.1 | MetabolicSurv | 1.1.2 |
MetabolomicsBasics | 1.4.5 | metacoder | 0.3.7 |
metadat | 1.2-0 | metafor | 4.6-0 |
metaheuristicOpt | 2.0.0 | MetaIntegrator | 2.1.3 |
metaMA | 3.1.3 | metap | 1.11 |
metaplot | 0.8.4 | metaRNASeq | 1.0.7 |
metaSEM | 1.4.0 | metasens | 1.5-2 |
meteo | 2.0-3 | meteoland | 2.2.1 |
metR | 0.15.0 | Metrics | 0.1.4 |
metRology | 0.9-28-1 | MetSizeR | 2.0.0 |
mev | 1.17 | mFilter | 0.1-5 |
Mfuzz | 2.64.0 | mfx | 1.2-2 |
mgm | 1.2-14 | mgsub | 1.7.3 |
mhurdle | 1.3-1 | mi | 1.1 |
mi4p | 1.1 | mice | 3.16.0 |
miceadds | 3.17-44 | micEcon | 0.6-18 |
micEconAids | 0.6-20 | micEconCES | 1.0-2 |
micEconIndex | 0.1-8 | micEconSNQP | 0.6-10 |
microbenchmark | 1.4.10 | micromap | 1.9.8 |
Microsoft365R | 2.4.0 | MicSim | 2.0.1 |
midasr | 0.8 | miic | 1.5.3 |
MIIVsem | 0.5.8 | mime | 0.12 |
mind | 1.1.0 | MinEDfind | 0.1.3 |
minerva | 1.5.10 | minet | 3.62.0 |
miniCRAN | 0.3.0 | minimalRSD | 1.0.0 |
miniUI | 0.1.1.1 | minpack.lm | 1.2-4 |
minqa | 1.2.7 | MINTplates | 1.0.1 |
minty | 0.0.1 | mipfp | 3.2.1 |
mirai | 1.1.1 | MiRNAQCD | 1.1.3 |
mirt | 1.42 | mirtCAT | 1.14 |
misc3d | 0.9-1 | miscTools | 0.6-28 |
missForest | 1.5 | missMDA | 1.19 |
mitml | 0.4-5 | mitools | 2.4 |
mix | 1.0-12 | mixAR | 0.22.8 |
MixedPsy | 1.1.0 | mixexp | 1.2.7 |
mixl | 1.3.4 | mixOmics | 6.28.0 |
mixsqp | 0.3-54 | mixtools | 2.0.0 |
mize | 0.2.4 | mknapsack | 0.1.0 |
mkssd | 1.2 | mlapi | 0.1.1 |
mlbench | 2.1-5 | mlbstats | 0.1.0 |
MLCIRTwithin | 2.1.1 | MLDS | 0.5.1 |
MLmetrics | 1.1.3 | mlmRev | 1.0-8 |
mlogit | 1.1-1 | mlogitBMA | 0.1-7 |
mlr | 2.19.2 | mlr3 | 0.20.2 |
mlr3learners | 0.7.0 | mlr3measures | 0.6.0 |
mlr3misc | 0.15.1 | mlr3spatiotempcv | 2.3.1 |
mlr3tuning | 1.0.0 | mlrMBO | 1.1.5.1 |
mlVAR | 0.5.2 | mma | 10.7-1 |
mmand | 1.6.3 | mmrm | 0.3.12 |
mnormt | 2.1.1 | MNP | 3.1-5 |
modeest | 2.4.0 | modeldata | 1.4.0 |
modelenv | 0.1.1 | ModelMap | 3.4.0.4 |
ModelMetrics | 1.2.2.2 | modelr | 0.1.11 |
modelSSE | 0.1-3 | modelsummary | 2.1.1 |
modeltime | 1.3.0 | modeltime.resample | 0.2.3 |
modeltools | 0.2-23 | moderndive | 0.6.1 |
MODISTools | 1.1.5 | modules | 0.13.0 |
mokken | 3.1.2 | mombf | 3.5.4 |
moments | 0.14.1 | momentuHMM | 1.5.5 |
mondate | 1.0 | mongolite | 2.8.0 |
mongopipe | 0.1.1 | monmlp | 1.1.5 |
monobin | 0.2.4 | Morpho | 2.12 |
MortalityGaps | 1.0.0 | MortalityLaws | 2.1.0 |
MortalityTables | 2.0.5 | MortCast | 2.7-0 |
mosaic | 1.9.1 | mosaicCore | 0.9.4.0 |
mosaicData | 0.20.4 | MOSS | 0.2.2 |
mosum | 1.2.7 | motmot | 2.1.3 |
mousetrap | 3.2.3 | move | 4.2.4 |
move2 | 0.3.0 | movecost | 2.1 |
moveHMM | 1.9 | moveWindSpeed | 0.2.4 |
movMF | 0.2-8 | MPDiR | 0.2 |
MplusAutomation | 1.1.1 | mpm | 1.0-23 |
mpmi | 0.43.2.1 | MPSEM | 0.4-1 |
mpt | 0.8-0 | MPTinR | 1.14.1 |
MPV | 1.63 | mratios | 1.4.2 |
mrf | 0.1.6 | mrgsolve | 1.5.1 |
mritc | 0.5-3 | mschart | 0.4.0 |
mscstexta4r | 0.1.2 | mscsweblm4r | 0.1.2 |
MSGARCH | 2.51 | msgps | 1.3.5 |
msigdbr | 7.5.1 | msm | 1.7.1 |
msos | 1.2.0 | MSSQL | 1.0.0 |
mstate | 0.3.3 | MSwM | 1.5 |
mtarm | 0.1.2 | MTS | 1.2.1 |
mtsdi | 0.3.5 | mudfold | 1.1.21 |
multcomp | 1.4-26 | multcompView | 0.1-10 |
multDM | 1.1.4 | multicool | 1.0.1 |
MultiGlarmaVarSel | 1.0 | MultiLCIRT | 2.11 |
multilevLCA | 1.5.1 | MultipleBubbles | 0.2.0 |
multiplex | 3.4 | multipol | 1.0-9 |
multitaper | 1.0-17 | multiway | 1.0-6 |
multiwayvcov | 1.2.3 | multtest | 2.60.0 |
MuMIn | 1.48.4 | munfold | 0.3.5 |
munsell | 0.5.1 | musica | 0.1.3 |
mutoss | 0.1-13 | mutSignatures | 2.1.1 |
mvgam | 1.1.2 | mvglmmRank | 1.2-4 |
mvLSW | 1.2.5 | mvLSWimpute | 0.1.1 |
mvMORPH | 1.1.9 | mvnfast | 0.2.8 |
mvnormtest | 0.1-9-3 | mvQuad | 1.0-8 |
mvtnorm | 1.2-5 | mvtsplot | 1.0-5 |
mxkssd | 1.2 | myClim | 1.1.0 |
n1qn1 | 6.0.1-11 | N2R | 1.0.3 |
nabor | 0.5.0 | NACHO | 2.0.6 |
NADA | 1.6-1.1 | NAEPirtparams | 1.0.0 |
NAEPprimer | 1.0.1 | nanoarrow | 0.5.0.1 |
nanonext | 1.1.1 | nanostringr | 0.4.2 |
nanotime | 0.3.9 | nardl | 0.1.6 |
nasapower | 4.2.1 | natserv | 1.0.0 |
naturalsort | 0.1.3 | NBAloveR | 0.1.3.3 |
nbapalettes | 0.1.0 | NbClust | 3.0.1 |
NBPSeq | 0.3.1 | nbTransmission | 1.1.4 |
ncappc | 0.3.0 | ncar | 0.5.0 |
ncbit | 2013.03.29.1 | ncdf4 | 1.22 |
ncdfgeom | 1.1.6 | ncf | 1.3-2 |
ncmeta | 0.4.0 | NCmisc | 1.2.0 |
ncvreg | 3.14.2 | ndjson | 0.9.0 |
neighbours | 0.1-3 | neldermead | 1.0-12 |
neo2R | 2.4.2 | net4pg | 0.1.1 |
netgsa | 4.0.5 | NetIndices | 1.4.4.1 |
nets | 0.9.1 | NetSimR | 0.1.5 |
network | 1.18.2 | networkABC | 0.8-1 |
NetworkChange | 0.8 | NetworkComparisonTest | 2.2.2 |
networkD3 | 0.4 | networkDynamic | 0.11.4 |
networkLite | 1.0.5 | NetworkRiskMeasures | 0.1.4 |
NetworkToolbox | 1.4.2 | networktools | 1.5.2 |
networktree | 1.0.1 | neuralnet | 1.44.2 |
NeuralNetTools | 1.5.3 | neurobase | 1.32.4 |
neuroim | 0.0.6 | neuRosim | 0.2-14 |
NewmanOmics | 1.0.11 | nFactors | 2.4.1.1 |
NFCP | 1.2.1 | nfl4th | 1.0.4 |
nflfastR | 4.6.1 | nflplotR | 1.3.1 |
nflreadr | 1.4.1 | nflseedR | 1.2.0 |
NFLSimulatoR | 0.4.0 | nflverse | 1.0.3 |
ngspatial | 1.2-2 | nhanesA | 1.1 |
nhdplusTools | 1.2.1 | nhdR | 0.6.1 |
nhlapi | 0.1.4 | NHLData | 1.0.0 |
NHPoisson | 3.3 | nifti.io | 1.0.0 |
nilde | 1.1-7 | nimble | 1.2.1 |
NISTnls | 0.9-13 | nixtlar | 0.5.2 |
NlcOptim | 0.6 | nleqslv | 3.3.5 |
NlinTS | 1.4.5 | nlmeVPC | 2.6 |
nlmixr2 | 2.1.2 | nlmixr2data | 2.0.9 |
nlmixr2est | 2.2.2 | nlmixr2extra | 2.0.10 |
nlmixr2plot | 2.0.9 | nlmixr2rpt | 0.2.0 |
nloptr | 2.1.1 | NLP | 0.3-0 |
nls2 | 0.3-4 | nlsem | 0.8-1 |
nlsic | 1.0.4 | nlsr | 2023.8.31 |
nlstools | 2.1-0 | nlt | 2.2-1 |
nlts | 1.0-2 | nLTT | 1.4.9 |
NMF | 0.27 | NMOF | 2.8-0 |
nmw | 0.1.5 | nnfor | 0.9.9 |
nnls | 1.5 | NNS | 10.8.2 |
noaastormevents | 0.2.0 | nodbi | 0.10.6 |
nomisr | 0.4.7 | nomnoml | 0.3.0 |
NonCompart | 0.7.0 | nonlinearTseries | 0.3.0 |
nonmem2R | 0.2.5 | nonmem2rx | 0.1.4 |
nonmemica | 1.0.8 | nonneg.cg | 0.1.6-1 |
nonnest2 | 0.5-7 | NonProbEst | 0.2.4 |
nonprobsvy | 0.1.0 | nor1mix | 1.3-3 |
norm | 1.0-11.1 | normalp | 0.7.2.1 |
nortest | 1.0-4 | nosoi | 1.1.2 |
notifyme | 0.3.0 | np | 0.60-17 |
npi | 0.2.0 | nppbib | 1.2-0 |
NPRED | 1.1.0 | nsarfima | 0.2.0.0 |
nse | 1.21 | nsga2R | 1.1 |
nspmix | 1.5-0 | nsprcomp | 0.5.1-2 |
nsRFA | 0.7-17 | NTS | 1.1.3 |
numberize | 1.0.0 | numbers | 0.8-5 |
numDeriv | 2016.8-1.1 | NVAR | 0.1.0 |
nvmix | 0.1-1 | o2geosocial | 1.1.3 |
o2plsda | 0.0.25 | oai | 0.4.0 |
OAIHarvester | 0.3-4 | obAnalytics | 0.1.1 |
objectProperties | 0.6.8 | objectSignals | 0.10.3 |
occ | 1.1 | oce | 1.8-2 |
OCNet | 1.2.2 | octopus | 0.4.2 |
od | 0.4.4 | odbc | 1.5.0 |
odds.converter | 1.4.8 | oddsapiR | 0.0.3 |
odin | 1.2.5 | odr | 1.4.4 |
OECD | 0.2.5 | oeli | 0.5.2 |
officer | 0.6.6 | ohoegdm | 0.1.0 |
OmicNavigator | 1.13.13 | omicwas | 0.8.0 |
ompr | 1.0.4 | omu | 1.1.2 |
onbrand | 1.0.5 | oncoPredict | 1.2 |
onlineforecast | 1.0.2 | onls | 0.1-2 |
ontologyIndex | 2.12 | oompaBase | 3.2.9 |
oompaData | 3.1.4 | OOR | 0.1.4 |
opdisDownsampling | 1.0.1 | OPDOE | 1.0-10 |
openair | 2.18-2 | opencage | 0.2.2 |
opencpu | 2.2.13 | opendotaR | 0.1.4 |
openEBGM | 0.9.1 | openintro | 2.5.0 |
OpenML | 1.12 | OpenMx | 2.21.11 |
openNLP | 0.2-7 | openNLPdata | 1.5.3-5 |
openssl | 2.2.0 | OpenStreetMap | 0.4.0 |
openxlsx | 4.2.6.1 | opera | 1.2.0 |
operator.tools | 1.6.3 | operators | 0.1-8 |
optBiomarker | 1.0-28 | OptCirClust | 0.0.4 |
optextras | 2019-12.4 | OptGS | 1.2 |
OptHedging | 1.0 | OptimalDesign | 1.0.1 |
OptimaRegion | 1.2 | optimbase | 1.0-10 |
optimizeR | 1.1.1 | optimParallel | 1.0-2 |
optimsimplex | 1.0-8 | optimx | 2023-10.21 |
OptionPricing | 0.1.2 | optiscale | 1.2.3 |
optmatch | 0.10.7 | orderly | 1.4.3 |
ordinal | 2023.12-4 | ore | 1.7.4.1 |
org.Hs.eg.db | 3.19.1 | ORIClust | 1.0-2 |
oro.dicom | 0.5.3 | oro.nifti | 0.11.4 |
oro.pet | 0.2.7 | OrthoPanels | 1.2-4 |
orthopolynom | 1.0-6.1 | osd | 0.1 |
osDesign | 1.8 | osmapiR | 0.1.0 |
osmdata | 0.2.5 | osmextract | 0.5.1 |
osqp | 0.6.3.3 | osrm | 4.2.0 |
otsfeatures | 1.0.0 | ouch | 2.20 |
outbreaker2 | 1.1.3 | outbreaks | 1.9.0 |
OUwie | 2.10 | overlapping | 2.1 |
ows4R | 0.4 | pa | 1.2-4 |
packcircles | 0.3.6 | packMBPLSDA | 0.9.0 |
packrat | 0.9.2 | padr | 0.6.2 |
pagoda2 | 1.0.12 | PairedData | 1.1.1 |
pairwise | 0.6.1-0 | paleobuddy | 1.0.0 |
paleotree | 3.4.7 | paleoTS | 0.6.1 |
paletteer | 1.6.0 | palmerpenguins | 0.1.1 |
pampe | 1.1.2 | pan | 1.9 |
pander | 0.6.5 | panelaggregation | 0.1.1 |
panelvar | 0.5.5 | papeR | 1.0-5 |
paradox | 1.0.1 | ParallelLogger | 3.3.0 |
parallelly | 1.38.0 | parallelMap | 1.5.1 |
parameters | 0.22.1 | ParamHelpers | 1.14.1 |
params | 0.7.3 | paran | 1.5.3 |
Pareto | 2.4.5 | parma | 1.7 |
parmigene | 1.1.0 | parsedate | 1.3.1 |
parsnip | 1.2.1 | partitions | 1.10-7 |
partsm | 1.1-3 | parttime | 0.1.2 |
party | 1.3-16 | partykit | 1.2-21 |
pastecs | 1.4.2 | patchwork | 1.2.0 |
pathfindR | 2.4.1 | pathfindR.data | 2.1.0 |
pathview | 1.44.0 | pathwayTMB | 0.1.3 |
Patterns | 1.5 | paws | 0.6.0 |
paws.analytics | 0.6.0 | paws.application.integration | 0.6.0 |
paws.common | 0.7.4 | paws.compute | 0.6.1 |
paws.cost.management | 0.6.1 | paws.customer.engagement | 0.6.0 |
paws.database | 0.6.0 | paws.developer.tools | 0.6.0 |
paws.end.user.computing | 0.6.0 | paws.machine.learning | 0.6.0 |
paws.management | 0.6.1 | paws.networking | 0.6.0 |
paws.security.identity | 0.6.1 | paws.storage | 0.6.0 |
pbapply | 1.7-2 | PBD | 1.4 |
pbdZMQ | 0.3-11 | PBIBD | 1.3 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.3 |
pbm | 1.2.1 | pbmcapply | 1.5.1 |
pbo | 1.3.5 | pbs | 1.1 |
PBSddesolve | 1.13.4 | PBSmapping | 2.73.4 |
PBSmodelling | 2.69.3 | pbv | 0.5-47 |
pcaMethods | 1.96.0 | pcaPP | 2.0-4-1 |
pcdpca | 0.4 | pcFactorStan | 1.5.4 |
pcIRT | 0.2.4 | PCMRS | 0.1-4 |
pco | 1.0.1 | PCPS | 1.0.7 |
pcse | 1.9.1.1 | pcts | 0.15.7 |
pdc | 1.0.3 | pder | 1.0-2 |
pdfCluster | 1.0-4 | pdfetch | 0.2.9 |
pdftables | 0.1 | pdftools | 3.4.0 |
pdist | 1.2.1 | pdp | 0.8.1 |
pdR | 1.9.2 | pdynmc | 0.9.11 |
peacots | 1.3.2 | PeakError | 2023.9.4 |
PeakSegDisk | 2023.11.27 | PeakSegJoint | 2024.6.27 |
PeakSegOptimal | 2024.1.24 | PearsonDS | 1.3.1 |
pedigree | 1.4.2 | PeerPerformance | 2.2.5 |
penalized | 0.9-52 | penaltyLearning | 2024.1.25 |
penppml | 0.2.3 | Peptides | 2.4.6 |
perARMA | 1.7 | performance | 0.12.2 |
PerformanceAnalytics | 2.0.4 | permPATH | 1.3 |
permute | 0.9-7 | pglm | 0.2-3 |
PGM2 | 1.0-1 | ph2bayes | 0.0.2 |
ph2bye | 0.1.4 | phangorn | 2.11.1 |
pharmaRTF | 0.1.4 | pharmr | 1.0.1 |
phateR | 1.0.7 | pheatmap | 1.0.12 |
philentropy | 0.8.0 | phonics | 1.3.10 |
phonTools | 0.2-2.2 | phyclust | 0.1-34 |
phyext2 | 0.0.4 | phylobase | 0.8.12 |
phylocanvas | 0.1.3 | phyloclim | 0.9.5 |
PHYLOGR | 1.0.11 | phylogram | 2.1.0 |
phylolm | 2.6.2 | phyloregion | 1.0.8 |
phyloseq | 1.48.0 | phylosignal | 1.3.1 |
phylotate | 1.3 | phylotools | 0.2.2 |
phyloTop | 2.1.2 | phyreg | 1.0.2 |
phytools | 2.3-0 | piar | 0.7.0 |
picante | 1.8.2 | picasso | 1.3.1 |
pid | 0.50 | piecewiseSEM | 2.3.0.1 |
piggyback | 0.1.5 | pillar | 1.9.0 |
pinfsc50 | 1.3.0 | pinnacle.data | 0.1.4 |
pins | 1.3.0 | PINSPlus | 2.0.7 |
pipe.design | 0.5.1 | pipeR | 0.6.1.3 |
piqp | 0.2.2 | piratings | 0.1.9 |
pixmap | 0.4-13 | PK | 1.3-6 |
PKconverter | 1.5 | pkdata | 0.1.0 |
pkgbuild | 1.4.4 | pkgcache | 2.2.2 |
pkgconfig | 2.0.3 | pkgdepends | 0.7.2 |
pkgdown | 2.1.0 | pkgfilecache | 0.1.5 |
pkgload | 1.4.0 | pkgsearch | 3.1.3 |
PKNCA | 0.11.0 | PKPDsim | 1.3.0 |
pkr | 0.1.3 | pks | 0.6-0 |
PlackettLuce | 0.4.3 | PlayerRatings | 1.1-0 |
plgp | 1.1-12 | plink | 1.5-1 |
plm | 2.6-4 | PLMIX | 2.1.1 |
PLmixed | 0.1.7 | plogr | 0.2.0 |
plot3D | 1.4.1 | plot3Drgl | 1.0.4 |
plotdap | 1.0.3 | plotly | 4.10.4 |
plotMCMC | 2.0.1 | plotmo | 3.6.3 |
plotrix | 3.8-4 | plotROC | 2.3.1 |
plotSEMM | 2.4 | PlotTools | 0.3.0 |
plotwidgets | 0.5.1 | pls | 2.8-4 |
plumber | 1.2.2 | plyr | 1.8.9 |
PMA | 1.2-3 | pmc | 1.0.6 |
pmr | 1.2.5.1 | pmxcode | 0.1.3 |
pmxpartab | 0.5.0 | pmxTools | 1.3 |
png | 0.1-8 | POD | 1.2.0 |
PoiClaClu | 1.0.2.1 | pointblank | 0.12.1 |
poisbinom | 1.0.1 | PoissonBinomial | 1.2.6 |
poLCA | 1.6.0.1 | polspline | 1.1.25 |
polyclip | 1.10-7 | polycor | 0.8-1 |
polyCub | 0.9.1 | polylabelr | 0.2.0 |
polynom | 1.4-1 | PolynomF | 2.0-8 |
polyreg | 0.8.0 | pomp | 5.10 |
pool | 1.0.3 | poorman | 0.2.7 |
PopED | 0.6.0 | popEpi | 0.4.12 |
popPCR | 0.1.1.1 | portes | 6.0 |
PortfolioOptim | 1.1.1 | PortRisk | 1.1.0 |
posologyr | 1.2.4 | PostcodesioR | 0.3.1 |
posterior | 1.6.0 | postlightmercury | 1.2 |
powdist | 0.1.4 | powerbydesign | 1.0.5 |
powerGWASinteraction | 1.1.3 | PowerSDI | 1.0.0 |
powerSurvEpi | 0.1.3 | PowerTOST | 1.5-6 |
PowerUpR | 1.1.0 | PP | 0.6.3-11 |
ppcor | 1.1 | PPRL | 0.3.8 |
pps | 1.0 | PQLseq | 1.2.1 |
prabclus | 2.3-3 | pracma | 2.4.4 |
PracTools | 1.5 | praise | 1.0.0 |
pRecipe | 3.0.1-3 | PreciseSums | 0.6 |
PredCRG | 1.0.2 | prediction | 0.3.18 |
predicts | 0.1-11 | prefmod | 0.8-36 |
PReMiuM | 3.2.13 | preprocessCore | 1.66.0 |
prereg | 0.6.0 | PresenceAbsence | 1.1.11 |
presize | 0.3.7 | prettydoc | 0.4.1 |
prettyGraphs | 2.1.6 | prettymapr | 0.2.5 |
prettyunits | 1.2.0 | prevalence | 0.4.1 |
prevR | 5.0.0 | princurve | 2.1.6 |
prioGene | 1.0.1 | prioritylasso | 0.3.1 |
prism | 0.2.1 | prismatic | 1.1.2 |
ProbitSpatial | 1.1 | pROC | 1.18.5 |
proceduralnames | 0.2.2 | processx | 3.8.4 |
prodigenr | 0.6.2 | prodlim | 2024.06.25 |
ProfessR | 2.4-3 | profileModel | 0.6.1 |
profileR | 0.3-5 | profoc | 1.3.2 |
profvis | 0.3.8 | progress | 1.2.3 |
progressr | 0.14.0 | PROJ | 0.5.0 |
proj4 | 1.0-14 | ProjectionBasedClustering | 1.2.2 |
projects | 2.1.3 | ProjectTemplate | 0.11.0 |
promises | 1.3.0 | prophet | 1.0 |
PROsetta | 0.4.1 | proto | 1.0.0 |
protoclust | 1.6.4 | protolite | 2.3.0 |
protr | 1.7-2 | protti | 0.9.0 |
protViz | 0.7.9 | proxy | 0.4-27 |
proxyC | 0.4.1 | prozor | 0.3.1 |
PRROC | 1.3.1 | pryr | 0.1.6 |
ps | 1.7.7 | PSCBS | 0.67.0 |
pscl | 1.5.9 | psd | 2.1.1 |
PSF | 0.5 | psidR | 2.2 |
pso | 1.0.4 | psoptim | 1.0 |
pspline | 1.0-20 | psqn | 0.3.1 |
PSSMCOOL | 0.2.4 | psy | 1.2 |
psych | 2.4.6.26 | psychomix | 1.1-8 |
psychonetrics | 0.13 | psychotools | 0.7-4 |
psychotree | 0.16-1 | psychTools | 2.4.3 |
psyphy | 0.3 | PTAk | 2.0.0 |
ptm | 1.0.1 | PTSR | 0.1.2 |
ptw | 1.9-16 | PTXQC | 1.1.1 |
pubmed.mineR | 1.0.20 | purrr | 1.0.2 |
pushoverr | 1.1.0 | pvca | 1.44.0 |
pvclust | 2.2-0 | pwr | 1.3-0 |
PwrGSD | 2.3.7 | pwrRasch | 0.1-2 |
pwt | 7.1-1 | pwt8 | 8.1-1 |
pwt9 | 9.1-0 | pxweb | 0.17.0 |
PxWebApiData | 0.9.0 | qap | 0.1-2 |
qcv | 1.0 | qdap | 2.4.6 |
qdapDictionaries | 1.0.7 | qdapRegex | 0.7.8 |
qdapTools | 1.3.7 | qgam | 1.3.4 |
qgisprocess | 0.4.0 | qgraph | 1.9.8 |
qicharts2 | 0.7.5 | qlcal | 0.0.12 |
qmap | 1.0-4 | qMRI | 1.2.7.6 |
qpdf | 1.3.3 | qpgraph | 2.38.0 |
qpmadr | 1.1.0-0 | qpNCA | 1.1.6 |
qqconf | 1.3.2 | qqplotr | 0.0.6 |
qrmdata | 2024-03-04-2 | qrmtools | 0.0-17 |
qrng | 0.0-10 | qs | 0.26.3 |
qtl | 1.66 | quadprog | 1.5-8 |
quadprogXT | 0.0.5 | qualmap | 0.2.2 |
qualtRics | 3.2.1 | Quandl | 2.11.0 |
quanteda | 4.0.2 | quantification | 0.2.0 |
quantmod | 0.4.26 | quantreg | 5.98 |
quantspec | 1.2-4 | Quartet | 1.2.6 |
questionr | 0.7.8 | QuickJSR | 1.3.1 |
quickpsy | 0.1.5.1 | qvalue | 2.36.0 |
qvcalc | 1.0.3 | R.cache | 0.16.0 |
R.devices | 2.17.2 | R.filesets | 2.15.1 |
R.huge | 0.10.1 | R.matlab | 3.7.0 |
R.methodsS3 | 1.8.2 | R.oo | 1.26.0 |
R.rsp | 0.46.0 | R.utils | 2.12.3 |
R0 | 1.3-1 | R2BEAT | 1.0.5 |
r2d3 | 0.2.6 | R2HTML | 2.3.4 |
R2jags | 0.8-5 | R2OpenBUGS | 3.2-3.2.1 |
r2rtf | 1.1.1 | R2WinBUGS | 2.1-22.1 |
R4CouchDB | 0.7.5 | R6 | 2.5.1 |
R6P | 0.3.0 | radarchart | 0.3.1 |
radiant | 1.6.6 | radiant.basics | 1.6.6 |
radiant.data | 1.6.6 | radiant.design | 1.6.6 |
radiant.model | 1.6.6 | radiant.multivariate | 1.6.6 |
RAdwords | 0.1.18 | ragg | 1.3.2 |
ragtop | 1.1.1 | rainbow | 3.8 |
rakeR | 0.2.1 | rAmCharts | 2.1.15 |
RAMClustR | 1.3.1 | ramcmc | 0.1.2 |
ramps | 0.6.18 | randomcoloR | 1.1.0.1 |
randomForest | 4.7-1.1 | randomForestSRC | 3.3.1 |
randomizeR | 3.0.2 | randomizr | 1.0.0 |
randomLCA | 1.1-3 | randtoolbox | 2.0.4 |
rang | 0.3.0 | ranger | 0.16.0 |
rankdist | 1.1.4 | RANN | 2.6.1 |
rapiclient | 0.1.5 | rapidjsonr | 1.2.0 |
RApiSerialize | 0.1.3 | rappdirs | 0.3.3 |
rapport | 1.1 | rapportools | 1.1 |
Raquifer | 0.1.0 | rARPACK | 0.11-0 |
RaschSampler | 0.8-10 | raster | 3.6-26 |
rasterImage | 0.4.0 | rasterVis | 0.51.6 |
ratelimitr | 0.4.1 | RATest | 0.1.10 |
RavenR | 2.2.2 | raw | 0.1.8 |
rBayesianOptimization | 1.2.1 | Rbeast | 1.0.0 |
rbedrock | 0.3.2 | rbenchmark | 1.0.0 |
RBGL | 1.80.0 | rBiasCorrection | 0.3.4 |
rbibutils | 2.2.16 | Rblpapi | 0.3.14 |
rbmi | 1.2.6 | RCarb | 0.1.6 |
rcartocolor | 2.1.1 | Rcatch22 | 0.2.1 |
rcdd | 1.6 | RCEIM | 0.3 |
Rchoice | 0.3-6 | RCircos | 1.2.2 |
rclipboard | 0.2.1 | rCMA | 1.1.1 |
rcmdcheck | 1.4.0 | Rcmdr | 2.9-2 |
RcmdrMisc | 2.9-1 | RcmdrPlugin.depthTools | 1.4 |
RcmdrPlugin.DoE | 0.12-5 | RcmdrPlugin.temis | 0.7.10 |
RColorBrewer | 1.1-3 | rcompendium | 1.3 |
Rcpp | 1.0.13 | RcppAnnoy | 0.0.22 |
RcppArmadillo | 14.0.0-1 | RcppCCTZ | 0.2.12 |
RcppClock | 1.1 | RcppDate | 0.0.3 |
RcppDE | 0.1.7 | RcppDist | 0.1.1 |
RcppEigen | 0.3.4.0.0 | RcppGSL | 0.3.13 |
RcppHNSW | 0.6.0 | RcppHungarian | 0.3 |
RcppNumerical | 0.6-0 | RcppParallel | 5.1.8 |
RcppProgress | 0.4.2 | RcppQuantuccia | 0.1.2 |
RcppRedis | 0.2.4 | RcppRoll | 0.3.1 |
RcppSimdJson | 0.1.12 | RcppSpdlog | 0.0.17 |
RcppThread | 2.1.7 | rcpptimer | 1.1.0 |
RcppTN | 0.2-2 | RcppTOML | 0.2.2 |
RcppZiggurat | 0.1.6 | Rcrawler | 0.1.9-1 |
rcrossref | 1.2.0 | Rcsdp | 0.1.57.5 |
RCurl | 1.98-1.16 | RCy3 | 2.24.0 |
RCzechia | 1.12.2 | rdatacite | 0.5.4 |
rdbnomics | 0.6.4 | rdd | 0.57 |
rddensity | 2.5 | rdflib | 0.2.9 |
rdhs | 0.8.1 | rdlocrand | 1.0 |
rdmulti | 1.1 | RDota2 | 0.1.6 |
Rdpack | 2.6.1 | rdpower | 2.2 |
rdrobust | 2.2 | Rdsdp | 1.0.5.2.1 |
rdwd | 1.8.0 | re2 | 0.1.3 |
reactable | 0.4.4 | reactR | 0.6.0 |
read.gb | 2.2 | readabs | 0.4.16 |
reader | 1.0.6 | readJDX | 0.6.4 |
readODS | 2.3.0 | readr | 2.1.5 |
readsdmx | 0.3.1 | readstata13 | 0.10.1 |
readxl | 1.4.3 | reasonabletools | 0.1 |
REBayes | 2.56 | recipes | 1.1.0 |
reclin2 | 0.5.0 | recmap | 1.0.17 |
RecordLinkage | 0.4-12.4 | redcapAPI | 2.9.1 |
REDCapR | 1.1.0 | REDCapTidieR | 1.1.1 |
Rediscover | 0.3.2 | redland | 1.0.17-18 |
redux | 1.1.4 | RefManageR | 1.4.0 |
refugees | 2023.12.0 | regions | 0.1.8 |
registry | 0.5-1 | regnet | 1.0.1 |
regress | 1.3-21 | RegSDC | 0.7.0 |
regsem | 1.9.5 | regspec | 2.7 |
regtools | 1.7.0 | ReIns | 1.0.14 |
reinsureR | 0.1.0 | relations | 0.6-13 |
reldist | 1.7-2 | relimp | 1.0-5 |
rematch | 2.0.0 | rematch2 | 2.1.2 |
remotes | 2.5.0 | REndo | 2.4.10 |
rentrez | 1.2.3 | renv | 1.0.7 |
replicateBE | 1.1.3 | repmis | 0.5 |
repo | 2.1.5 | RepoGenerator | 0.0.1 |
reportfactory | 0.4.0 | reportr | 1.3.0 |
reporttools | 1.1.3 | repr | 1.1.7 |
representr | 0.1.5 | represtools | 0.1.3 |
reprex | 2.1.1 | reproducible | 2.1.0 |
reproj | 0.7.0 | reqres | 0.2.5 |
REQS | 0.8-13 | request | 0.1.0 |
Require | 1.0.0 | rerddap | 1.1.0 |
rerddapXtracto | 1.2.1 | resampledata | 0.3.1 |
resde | 1.1 | reservoir | 1.1.5 |
reshape | 0.8.9 | reshape2 | 1.4.4 |
restfulr | 0.0.15 | restimizeapi | 1.0.0 |
reticulate | 1.38.0 | retrosheet | 1.1.6 |
retry | 0.1.1 | revdbayes | 1.5.4 |
RevGadgets | 1.2.1 | Revticulate | 1.0.0 |
rex | 1.2.1 | Rexperigen | 0.2.1 |
Rfacebook | 0.6.15 | Rfast | 2.1.0 |
Rfast2 | 0.1.5.2 | rfigshare | 0.3.8 |
Rfit | 0.27.0 | rflexscan | 1.1.0 |
rgbif | 3.8.0 | RGBM | 1.0-11 |
rgee | 1.1.7 | rgen | 0.0.1 |
RGENERATE | 1.3.7 | RGENERATEPREC | 1.2.9 |
rgenoud | 5.9-0.10 | rgeoda | 0.0.10-4 |
rgl | 1.3.1 | Rglpk | 0.6-5.1 |
RgoogleMaps | 1.5.1 | RGraphics | 3.0-2 |
Rgraphviz | 2.48.0 | rgrass | 0.4-3 |
RGreenplum | 0.1.2 | rgugik | 0.4.1 |
RH2 | 0.2.4 | rhandsontable | 0.3.8 |
RHclust | 2.0.0 | rhdf5 | 2.48.0 |
rhdf5filters | 1.16.0 | Rhdf5lib | 1.26.0 |
RHMS | 1.7 | rhosa | 0.3.0 |
RhpcBLASctl | 0.23-42 | Rhtslib | 3.0.0 |
rhub | 2.0.0 | rib | 0.20.0 |
riceidconverter | 1.1.1 | RIdeogram | 0.2.2 |
ridge | 3.3 | riingo | 0.3.1 |
Rilostat | 2.1.0 | ring | 1.0.5 |
RInside | 0.2.18 | rintrojs | 0.3.4 |
rio | 1.2.1 | Rirt | 0.0.2 |
Risk | 1.0 | riskCommunicator | 1.0.1 |
riskParityPortfolio | 0.2.2 | RiskPortfolios | 2.1.7 |
riskSimul | 0.1.2 | ritis | 1.0.0 |
riverdist | 0.16.3 | rivernet | 1.2.3 |
rivnet | 0.4.2 | rjags | 4-15 |
rJava | 1.0-11 | RJDBC | 0.2-10 |
RJDemetra | 0.2.6 | rje | 1.12.1 |
rjson | 0.2.21 | RJSONIO | 1.3-1.9 |
rjstat | 0.4.3 | RKEA | 0.0-6 |
RKEAjars | 5.0-4 | RKelly | 1.0 |
rlang | 1.1.4 | rlas | 1.8.0 |
rle | 0.9.2 | rlecuyer | 0.3-8 |
rlemon | 0.2.1 | Rlgt | 0.2-2 |
Rlibeemd | 1.4.3 | Rlinkedin | 0.2 |
rlist | 0.4.6.2 | rLTP | 0.1.4 |
RLumShiny | 0.2.3 | RM2006 | 0.1.1 |
Rmalschains | 0.2-10 | rmapshaper | 0.5.0 |
RMariaDB | 1.3.2 | rmarkdown | 2.27 |
rmatio | 0.19.0 | RMAWGEN | 1.3.7 |
rmcfs | 1.3.5 | rmdpartials | 0.5.8 |
rmeta | 3.0 | rmgarch | 1.3-9 |
rminizinc | 0.0.8 | Rmisc | 1.5.1 |
rmoo | 0.2.0 | Rmosek | 1.3.5 |
Rmpfr | 0.9-5 | rms | 6.8-1 |
RMTstat | 0.3.1 | rmutil | 1.1.10 |
RMySQL | 0.10.27 | rmzqc | 0.5.4 |
Rnanoflann | 0.0.3 | RNAseqNet | 0.1.5 |
rnaturalearth | 1.0.1 | rnaturalearthdata | 1.0.0 |
RNCEP | 1.0.10 | rncl | 0.8.7 |
RND | 1.2 | RNentropy | 1.2.3 |
rneos | 0.4-0 | RNetCDF | 2.9-2 |
RNeXML | 2.4.11 | rngtools | 1.5.2 |
rngWELL | 0.10-9 | RNifti | 1.7.0 |
RNiftyReg | 2.8.3 | rnn | 1.9.0 |
rnrfa | 2.1.0.6 | roadoi | 0.7.2 |
ROAuth | 0.9.6 | robfilter | 4.1.5 |
RobKF | 1.0.2 | RoBMA | 3.1.0 |
robotoolbox | 1.3.2 | robotstxt | 0.7.13 |
robsurvey | 0.6 | robustbase | 0.99-3 |
RobustRankAggreg | 1.2.1 | rockchalk | 1.8.157 |
rocker | 0.3.1 | ROCR | 1.0-11 |
RODBC | 1.3-23 | rodd | 0.2-1 |
Rogue | 2.1.6 | ROI | 1.0-1 |
ROI.plugin.ecos | 1.0-2 | ROI.plugin.neos | 1.0-2 |
ROI.plugin.qpoases | 1.0-3 | roll | 1.1.7 |
Rook | 1.2 | ROOPSD | 0.3.9 |
rootSolve | 1.8.2.4 | ROpenDota | 0.1.2 |
roperators | 1.3.14 | roptim | 0.1.6 |
rorcid | 0.7.0 | rosetteApi | 1.14.4 |
rosm | 0.3.0 | rotl | 3.1.0 |
routr | 0.4.1 | roxygen2 | 7.3.2 |
rpact | 4.0.0 | RPANDA | 2.3 |
rpanel | 1.1-5.2 | rPanglaoDB | 0.2.1 |
rpart.plot | 3.1.2 | rpf | 1.0.14 |
Rphylopars | 0.3.10 | rpinterest | 0.3.1 |
RPMG | 2.2-7 | rpms | 0.5.1 |
rpostgis | 1.5.1 | RPostgres | 1.4.7 |
RPostgreSQL | 0.7-6 | RPPairwiseDesign | 1.0 |
RPresto | 1.4.6 | rprintf | 0.2.1 |
RprobitB | 1.1.4 | rprojroot | 2.0.4 |
RPushbullet | 0.3.4 | RPyGeo | 1.0.0 |
rqti | 0.3.0 | RQuantLib | 0.4.24 |
rrcov | 1.7-5 | rredlist | 0.7.1 |
rrefine | 2.1.0 | RRPP | 2.0.3 |
RRreg | 0.7.5 | RRTCS | 0.0.4 |
rrum | 0.2.1 | rsae | 0.3 |
RSAGA | 1.4.0 | Rsagacmd | 0.4.2 |
rsample | 1.2.1 | Rsamtools | 2.20.0 |
RSclient | 0.7-10 | rscopus | 0.6.6 |
rsdmx | 0.6-3 | rSEA | 2.1.2 |
RSEIS | 4.2-0 | RSelenium | 1.7.9 |
rsem | 0.5.1 | Rserve | 1.8-13 |
Rsfar | 0.0.1 | RSGHB | 1.2.2 |
rsi | 0.2.1 | rsm | 2.10.5 |
RSmartlyIO | 0.1.3 | rsoi | 0.5.6 |
Rsolnp | 1.16 | rspa | 0.2.8 |
rsparse | 0.5.2 | RSpectra | 0.16-2 |
RSQLite | 2.3.7 | Rssa | 1.0.5 |
rstac | 1.0.1 | rstan | 2.32.6 |
rstanarm | 2.32.1 | rstantools | 2.4.0 |
rstatix | 0.7.2 | rstiefel | 1.0.1 |
rStrava | 1.3.1 | rstudioapi | 0.16.0 |
rsurface | 1.1.0 | RSurveillance | 0.2.1 |
rsvd | 1.0.5 | rsvg | 2.6.0 |
Rsymphony | 0.1-33 | rTensor | 1.4.8 |
rtf | 0.4-14.1 | RTFA | 0.1.0 |
rticles | 0.27 | RTL | 1.3.5 |
rtoot | 0.3.4 | rtop | 0.6-9 |
rtracklayer | 1.64.0 | RTransferEntropy | 0.2.21 |
rtrim | 2.3.0 | rts | 1.1-14 |
Rtsne | 0.17 | Rttf2pt1 | 1.3.12 |
rtweet | 2.0.0 | rucrdtw | 0.1.6 |
rugarch | 1.5-1 | ruimtehol | 0.3.2 |
ruin | 0.1.1 | rules | 1.0.2 |
ruminate | 0.2.4 | runexp | 0.2.1 |
RUnit | 0.4.33 | runjags | 2.2.2-4 |
runner | 0.4.4 | runstats | 1.1.0 |
Runuran | 0.38 | rust | 1.4.2 |
RVA | 0.0.5 | Rvcg | 0.23 |
rversions | 2.1.2 | rvest | 1.0.4 |
Rwave | 2.6-5 | RWDataPlyr | 0.6.4 |
RweaveExtra | 1.1-0 | rwebstat | 1.1.1 |
RWeka | 0.4-46 | RWekajars | 3.9.3-2 |
rWikiPathways | 1.24.0 | rworldmap | 1.3-8 |
rworldxtra | 1.01 | rwunderground | 0.1.8 |
rxode2 | 2.1.3 | rxode2et | 2.0.13 |
rxode2ll | 2.0.11 | rxode2parse | 2.0.19 |
rxode2random | 2.1.1 | RYandexTranslate | 1.0 |
s2 | 1.1.7 | S4Arrays | 1.4.1 |
S4Vectors | 0.42.1 | sae | 1.3 |
saeRobust | 0.5.0 | saeSim | 0.11.0 |
SAEval | 1.0.0 | safetensors | 0.1.2 |
samadb | 0.3.0 | sampleSelection | 1.2-12 |
samplesize | 0.2-4 | sampling | 2.10 |
SamplingBigData | 1.0.0 | samplingbook | 1.2.4 |
SamplingStrata | 1.5-4 | samplingVarEst | 1.5 |
samr | 3.0 | sandwich | 3.1-0 |
sarima | 0.9.3 | SAScii | 1.0.2 |
sass | 0.4.9 | satellite | 1.0.5 |
sazedR | 2.0.2 | sbgcop | 0.980 |
SBN | 1.0.0 | scagnostics | 0.2-6 |
ScaledMatrix | 1.12.0 | scales | 1.3.0 |
scalreg | 1.0.1 | scam | 1.2-17 |
scaRabee | 1.1-4 | scatterD3 | 1.0.1 |
scattermore | 1.2 | scatterpie | 0.2.3 |
scatterplot3d | 0.3-44 | scBio | 0.1.6 |
sccore | 1.0.5 | scholar | 0.2.4 |
SCI | 1.0-2 | scINSIGHT | 0.1.4 |
scLink | 1.0.1 | scoper | 1.3.0 |
scoringRules | 1.1.1 | scoringutils | 1.2.2 |
SCORPIUS | 1.0.9 | ScottKnott | 1.3-2 |
scs | 3.2.4 | scSorter | 0.0.2 |
scTenifoldKnk | 1.0.1 | scTenifoldNet | 1.3 |
sctransform | 0.4.1 | SDaA | 0.1-5 |
sdcHierarchies | 0.21.0 | sdcMicro | 5.7.8 |
sdcSpatial | 0.5.2 | sdcTable | 0.32.6 |
sde | 2.0.18 | sdmTMB | 0.6.0 |
sdpt3r | 0.3 | sdrt | 1.0.0 |
sealasso | 0.1-3 | seas | 0.6-0 |
season | 0.3.15 | seasonal | 1.9.0 |
seasonalview | 0.3 | seastests | 0.15.4 |
secretbase | 1.0.1 | seeker | 1.1.5 |
seer | 1.1.8 | segmented | 2.1-1 |
SelectBoost | 2.2.2 | selectiveInference | 1.2.5 |
selectr | 0.4-2 | seleniumPipes | 0.3.7 |
sem | 3.1-15 | semantic.assets | 1.1.0 |
semds | 0.9-6 | SemiPar | 1.0-4.2 |
semmcmc | 0.0.6 | semPlot | 1.1.6 |
SEMsens | 1.5.5 | semsfa | 1.1 |
semTools | 0.5-6 | semtree | 0.9.20 |
semver | 0.2.0 | sendmailR | 1.4-0 |
SensoMineR | 1.27 | sentencepiece | 0.2.3 |
sentiment.ai | 0.1.1 | sentometrics | 1.0.0 |
separationplot | 1.4 | seqDesign | 1.2 |
seqgendiff | 1.2.4 | seqinr | 4.2-36 |
SeqNet | 1.1.3 | SequenceSpikeSlab | 1.0.1 |
seriation | 1.5.5 | servr | 0.30 |
sessioninfo | 1.2.2 | setartree | 0.2.1 |
setRNG | 2024.2-1 | sets | 1.0-25 |
settings | 0.2.7 | Seurat | 5.1.0 |
SeuratObject | 5.0.2 | sf | 1.0-16 |
sfd | 0.1.0 | sFFLHD | 0.1.2 |
sfheaders | 0.4.4 | sfsmisc | 1.1-18 |
sftime | 0.2-0 | sgeostat | 1.0-27 |
shades | 1.4.0 | shadowtext | 0.1.4 |
shape | 1.4.6.1 | shapefiles | 0.7.2 |
shapes | 1.2.7 | SharpeR | 1.3.0 |
shazam | 1.2.0 | ShiftConvolvePoibin | 1.0.0 |
shiny | 1.9.1 | shiny.semantic | 0.5.1 |
shinyAce | 0.4.2 | shinyalert | 3.1.0 |
shinybrms | 1.8.0 | shinyBS | 0.61.1 |
shinybusy | 0.3.3 | shinycssloaders | 1.1.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.4 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.1 |
shinyjs | 2.1.0 | shinymaterial | 1.2.0 |
shinystan | 2.6.0 | shinythemes | 1.2.0 |
shinyTree | 0.3.1 | shinyWidgets | 0.8.6 |
showimage | 1.0.0 | showtext | 0.9-7 |
showtextdb | 3.0 | shrinkTVP | 3.0.1 |
SIBERG | 2.0.3 | sigminer | 2.3.1 |
sigmoid | 1.4.0 | Signac | 1.13.0 |
SignacX | 2.2.5 | signal | 1.8-1 |
signs | 0.1.2 | sigora | 3.1.1 |
SigTree | 1.10.6 | Sim.DiffProc | 4.9 |
simcdm | 0.1.2 | SimComp | 3.3 |
SimDesign | 2.16 | simex | 1.8 |
simfinapi | 1.0.0 | simglm | 0.8.9 |
SimilarityMeasures | 1.4 | SimInf | 9.8.1 |
SIMMS | 1.3.2 | simpleboot | 1.1-8 |
simPop | 2.1.3 | simputation | 0.2.8 |
simrel | 2.1.0 | SiMRiv | 1.0.6 |
simsem | 0.5-16 | SimSurvey | 0.1.6 |
SingleCellExperiment | 1.26.0 | singleCellHaystack | 1.0.2 |
singleRcapture | 0.2.1.2 | singscore | 1.24.0 |
siplab | 1.6 | sirt | 4.1-15 |
sitmo | 2.0.2 | sits | 1.5.0 |
sjlabelled | 1.2.0 | SkewHyperbolic | 0.4-2 |
skimr | 2.1.5 | skmeans | 0.2-16 |
skpr | 1.7.1 | slackr | 3.3.1 |
slam | 0.1-52 | SlaPMEG | 1.0.1 |
SLBDD | 0.0.4 | slcm | 0.1.0 |
sleekts | 1.0.2 | sleeperapi | 1.1.1 |
Sleuth2 | 2.0-7 | Sleuth3 | 1.0-6 |
slfm | 1.0.2 | SLHD | 2.1-1 |
slider | 0.3.1 | slippymath | 0.3.1 |
sm | 2.2-6.0 | smacof | 2.1-6 |
smacofx | 1.5-3 | smacpod | 2.6 |
SmallCountRounding | 1.0.3 | smam | 0.7.2 |
SmCCNet | 2.0.3 | SMDIC | 0.1.5 |
smerc | 1.8.3 | smoof | 1.6.0.3 |
smooth | 4.0.2 | smoothr | 1.0.1 |
smoots | 1.1.4 | smovie | 1.1.6 |
SMPracticals | 1.4-3.1 | sms | 2.3.1 |
SMVar | 1.3.4 | sn | 2.1.1 |
sna | 2.7-2 | snakecase | 0.11.1 |
snow | 0.4-4 | SnowballC | 0.7.1 |
snowfall | 1.84-6.3 | snpStats | 1.54.0 |
snvecR | 3.9.4 | SOAs | 1.4 |
soc.ca | 0.8.0 | socceR | 0.1.1 |
socialmixr | 0.3.2 | sodium | 1.3.1 |
sofa | 0.4.0 | SoilHyP | 0.1.7 |
soilhypfit | 0.1-7 | soilwater | 1.0.5 |
solaR | 0.46 | solartime | 0.0.2 |
solrium | 1.2.0 | solvebio | 2.15.0 |
soma | 1.2.0 | sonicLength | 1.4.7 |
sorvi | 0.8.21 | SoupX | 1.6.2 |
sourcetools | 0.1.7-1 | sp | 2.1-4 |
sp23design | 0.9-1 | spacefillr | 0.3.3 |
spacetime | 1.3-1 | spam | 2.10-0 |
spaMM | 4.5.0 | spant | 2.22.0 |
sparklyr | 1.8.6 | sparktex | 0.1 |
sparr | 2.3-15 | SparseArray | 1.4.8 |
sparseDFM | 1.0 | sparseinv | 0.1.3 |
SparseM | 1.84-2 | sparseMatrixStats | 1.16.0 |
sparseMVN | 0.2.2 | sparsevar | 0.1.0 |
spatgraphs | 3.4 | spatialCovariance | 0.6-9 |
SpatialEpi | 1.2.8 | SpatialExperiment | 1.14.0 |
SpatialExtremes | 2.1-0 | SpatialPosition | 2.1.2 |
spatialprobit | 1.0.4 | spatialreg | 1.3-4 |
spatialsample | 0.5.1 | SpatialTools | 1.0.5 |
spatialwidget | 0.2.5 | spatstat | 3.1-1 |
spatstat.data | 3.1-2 | spatstat.explore | 3.3-1 |
spatstat.geom | 3.3-2 | spatstat.linnet | 3.2-1 |
spatstat.model | 3.3-1 | spatstat.random | 3.3-1 |
spatstat.sparse | 3.1-0 | spatstat.univar | 3.0-0 |
spatstat.utils | 3.0-5 | spBayes | 0.4-7 |
spBayesSurv | 1.1.8 | Spbsampling | 1.3.5 |
spd | 2.0-1 | spData | 2.3.1 |
spdep | 1.3-5 | spec | 0.1.9 |
spectral | 2.0 | speff2trial | 1.0.5 |
SPEI | 1.8.1 | spelling | 2.3.0 |
sperrorest | 3.0.5 | sphet | 2.0 |
spiderbar | 0.2.5 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-19 | spINAR | 0.2.0 |
spind | 2.2.1 | splancs | 2.01-45 |
SPLICE | 1.1.2 | splines2 | 0.5.3 |
splitstackshape | 1.4.8 | splm | 1.6-5 |
spls | 2.2-3 | splus2R | 1.3-5 |
spmodel | 0.7.0 | spmoran | 0.2.3 |
SportsTour | 0.1.0 | sportyR | 2.2.2 |
sps | 0.5.4 | spselect | 0.0.1 |
spsur | 1.0.2.5 | spsurvey | 5.5.1 |
spTimer | 3.3.2 | sptotal | 1.0.1 |
sqldf | 0.4-11 | SqlRender | 1.18.0 |
SQRL | 1.0.2 | SQUAREM | 2021.1 |
srvyr | 1.2.0 | ssanv | 1.1 |
SSBtools | 1.5.2 | ssfa | 1.2.2 |
ssgraph | 1.15 | ssize.fdr | 1.3 |
ssizeRNA | 1.3.2 | ssMousetrack | 1.1.6 |
ssmrob | 1.0 | SSN2 | 0.2.0 |
sstvars | 1.0.1 | stable | 1.1.6 |
stabledist | 0.7-1 | stabs | 0.6-4 |
staggered | 1.1 | stampr | 0.3.1 |
StanHeaders | 2.32.10 | StanMoMo | 1.2.0 |
stargazer | 5.2.3 | starma | 1.3 |
stars | 0.6-6 | starter | 0.1.15 |
STARTS | 1.3-8 | startupmsg | 0.9.6.1 |
statcanR | 0.2.6 | statcodelists | 0.9.2 |
statcomp | 0.1.0 | statebins | 1.4.0 |
statespacer | 0.5.0 | stationaRy | 0.5.1 |
statip | 0.2.3 | StatMatch | 1.4.2 |
statmod | 1.5.0 | statnet.common | 4.9.0 |
StatRank | 0.0.6 | statVisual | 1.2.1 |
steadyICA | 1.0 | SteinIV | 0.1-1 |
STFTS | 0.1.0 | stinepack | 1.5 |
stlplus | 0.5.1 | stm | 1.3.7 |
StMoMo | 0.4.1 | stochQN | 0.1.2-1 |
stochvol | 3.2.4 | stockAnalyst | 1.0.1 |
stops | 1.6-2 | stopwords | 2.3 |
storr | 1.2.5 | stplanr | 1.2.1 |
stR | 0.7 | strand | 0.2.0 |
strap | 1.6-1 | stratification | 2.2-7 |
streamDepletr | 0.2.0 | streamR | 0.4.5 |
stringdist | 0.9.12 | stringfish | 0.16.0 |
stringi | 1.8.4 | stringmagic | 1.1.2 |
stringr | 1.5.1 | strucchange | 1.5-3 |
strucchangeRcpp | 1.5-3-1.0.4 | StructuralDecompose | 0.1.1 |
styler | 1.10.3 | subplex | 1.9 |
subscore | 3.3 | sufficientForecasting | 0.1.0 |
sugrrants | 0.2.9 | SummarizedExperiment | 1.34.0 |
SUMMER | 1.4.0 | suntools | 1.0.0 |
supclust | 1.1-1 | SuperLearner | 2.0-29 |
superml | 0.5.7 | superpc | 1.12 |
SuppDists | 1.1-9.7 | support.CEs | 0.7-0 |
surface | 0.5 | SurrogateRegression | 0.6.0.1 |
suRtex | 0.9 | survcomp | 1.54.0 |
surveillance | 1.23.0 | survey | 4.4-2 |
surveybootstrap | 0.0.3 | surveydata | 0.2.7 |
surveyplanning | 4.0 | surveysd | 1.3.1 |
survival666 | 0.5 | survivalROC | 1.0.3.1 |
survminer | 0.4.9 | survMisc | 0.5.6 |
survPresmooth | 1.1-11 | sva | 3.52.0 |
svars | 1.3.11 | svd | 0.5.5 |
svDialogs | 1.1.0 | SVDNF | 0.1.8 |
svglite | 2.1.3 | svGUI | 1.0.1 |
svrep | 0.6.4 | svs | 3.1.1 |
svUnit | 1.0.6 | swagger | 5.17.14.1 |
sweep | 0.2.5 | swephR | 0.3.1 |
SwimmeR | 0.14.2 | swirl | 2.4.5 |
swirlify | 0.5.3 | switchr | 0.14.8 |
SWTools | 1.0.3 | sylly | 0.1-6 |
sym.arma | 1.0 | symengine | 0.2.6 |
symmoments | 1.2.1 | synchronicity | 1.3.10 |
SYNCSA | 1.3.4 | Synth | 1.1-8 |
synthACS | 1.7.1 | synthesis | 1.2.5 |
SynthETIC | 1.1.0 | synthpop | 1.8-0 |
sys | 3.4.2 | sysfonts | 0.8.9 |
systemfit | 1.1-30 | systemfonts | 1.1.0 |
table1 | 1.4.3 | tables | 0.9.28 |
tabnet | 0.6.0 | tabuSearch | 1.1.1 |
TAF | 4.2.0 | tagcloud | 0.6 |
TailRank | 3.2.2 | TAM | 4.2-21 |
tanaka | 0.4.0 | TAQMNGR | 2018.5-1 |
targets | 1.7.1 | tau | 0.0-25 |
taxize | 0.9.100 | tbea | 1.5.0 |
TBRDist | 1.0.2 | tbrf | 0.1.5 |
TCA | 1.2.1 | TCGAbiolinks | 2.32.0 |
TCGAbiolinksGUI.data | 1.24.0 | TCGAretriever | 1.9.1 |
TcGSA | 0.12.10 | tcltk2 | 1.2-11 |
Tcomp | 1.0.1 | tdigest | 0.4.2 |
TeachingDemos | 2.13 | teamcolors | 0.0.4 |
telegram.bot | 3.0.0 | tempdisagg | 1.1.1 |
tensor | 1.5 | tensorA | 0.36.2.1 |
tensorflow | 2.16.0 | tensorMiss | 1.1.1 |
TensorPreAve | 1.1.0 | tensorTS | 1.0.2 |
TEQR | 6.0-0 | tergm | 4.2.0 |
Ternary | 2.3.2 | terra | 1.7-78 |
terrainr | 0.7.5 | TESS | 2.1.2 |
tesseract | 5.2.1 | testcorr | 0.2.0 |
TestDataImputation | 2.3 | TestDesign | 1.6.1 |
tester | 0.2.0 | TestFunctions | 0.2.1 |
testit | 0.13 | TestScorer | 1.7.2 |
testthat | 3.2.1.1 | TexExamRandomizer | 1.2.7 |
texreg | 1.39.4 | text2vec | 0.6.4 |
textcat | 1.0-8 | textir | 2.0-5 |
textplot | 0.2.2 | textrank | 0.3.1 |
textreuse | 0.1.5 | textshaping | 0.4.0 |
textTinyR | 1.1.8 | textutils | 0.4-1 |
tfarima | 0.3.2 | tfautograph | 0.3.2 |
tfdatasets | 2.17.0 | tfhub | 0.8.1 |
tfio | 0.4.1 | TFisher | 0.2.0 |
tframe | 2015.12-1.1 | tfruns | 1.5.3 |
tgp | 2.4-22 | TGS | 1.0.1 |
TH.data | 1.1-2 | theft | 0.6.1 |
thief | 0.3 | ThreeGroups | 0.21 |
threejs | 0.3.3 | ThreeWay | 1.1.3 |
thurstonianIRT | 0.12.5 | tibble | 3.2.1 |
tibbletime | 0.1.8 | tictoc | 1.2.1 |
Tides | 2.1 | tidyBdE | 0.3.6 |
tidycensus | 1.6.5 | tidyestimate | 1.1.1 |
tidygraph | 1.3.1 | tidyhydat | 0.6.1 |
tidyLPA | 1.1.0 | tidymodels | 1.2.0 |
tidyquant | 1.0.7 | tidyr | 1.3.1 |
tidyREDCap | 1.1.1 | tidyRSS | 2.0.7 |
tidyselect | 1.2.1 | tidySEM | 0.2.7 |
tidysynth | 0.2.0 | tidyterra | 0.6.1 |
tidytext | 0.4.2 | tidytree | 0.4.6 |
tidyverse | 2.0.0 | tidyvpc | 1.5.1 |
tiff | 0.1-12 | tigris | 2.1 |
tikzDevice | 0.12.6 | timechange | 0.3.0 |
timeDate | 4032.109 | timeless | 0.2.3 |
timeSeries | 4032.109 | timeseriesdb | 1.0.0-1.1.2 |
timetk | 2.9.0 | timsac | 1.3.8-4 |
tinyarray | 2.4.2 | tinyProject | 0.6.1 |
tinytable | 0.3.0 | tinytex | 0.52 |
tis | 1.39 | tkrplot | 0.0-27 |
tkWidgets | 1.82.0 | TLMoments | 0.7.5.3 |
tm | 0.7-14 | tm.plugin.alceste | 1.1.1 |
tm.plugin.dc | 0.2-10 | tm.plugin.europresse | 1.4 |
tm.plugin.factiva | 1.8 | tm.plugin.lexisnexis | 1.4.1 |
tm.plugin.mail | 0.3-0 | tmap | 3.3-4 |
tmaptools | 3.1-1 | TMB | 1.9.14 |
Tmisc | 1.0.1 | tmod | 0.50.13 |
tmvnsim | 1.0-2 | tmvtnorm | 1.6 |
tnet | 3.0.16 | tokenizers | 0.3.0 |
tokenizers.bpe | 0.1.3 | topicdoc | 0.1.1 |
topicmodels | 0.2-17 | topicmodels.etm | 0.1.0 |
topmodel | 0.7.5 | topologyGSA | 1.5.0 |
toprdata | 1.0.2 | torch | 0.13.0 |
torchaudio | 0.3.1.9000 | torchdatasets | 0.3.1 |
torchvision | 0.6.0 | tpr | 0.3-3 |
tracerer | 2.2.3 | trackdem | 0.7.2 |
trackdf | 0.3.3 | trackdown | 1.1.1 |
trackeR | 1.6.0 | trackeRapp | 1.2 |
TrackReconstruction | 1.3 | tractor.base | 3.4.2 |
traipse | 0.3.0 | trajectories | 0.2-8 |
TrajectoryUtils | 1.12.0 | trajr | 1.5.1 |
transformr | 0.1.5 | transfR | 1.0.11 |
TransPhylo | 1.4.5 | trapezoid | 2.0-2 |
traudem | 1.0.3 | tree | 1.0-43 |
treebalance | 1.2.0 | treebase | 0.1.5 |
TreeBUGS | 1.5.0 | treedater | 0.5.0 |
TreeDist | 2.8.0 | treefit | 1.0.2 |
treeio | 1.28.0 | treemap | 2.4-4 |
TreeSearch | 1.5.1 | TreeSim | 2.4 |
treespace | 1.1.4.3 | TreeTools | 1.12.0 |
trend | 1.1.6 | trendeval | 0.1.0 |
trending | 0.1.0 | TrialSize | 1.4 |
triangle | 1.0 | triebeard | 0.4.1 |
trimcluster | 0.1-5 | trip | 1.10.0 |
tripack | 1.3-9.1 | tripEstimation | 0.0-46 |
TripleR | 1.5.4 | TruncatedNormal | 2.3 |
truncdist | 1.0-2 | truncnorm | 1.0-9 |
truncreg | 0.2-5 | trust | 0.1-8 |
trustOptim | 0.8.7.3 | tryCatchLog | 1.3.1 |
TSA | 1.3.1 | TSANN | 0.1.0 |
tsbox | 0.4.1 | tsBSS | 1.0.0 |
TSCAN | 1.42.0 | TSclust | 1.3.1 |
tscount | 1.4.3 | tsdataleaks | 2.1.1 |
tsdb | 1.1-0 | tsdecomp | 0.2 |
TSdeeplearning | 0.1.0 | tsdisagg2 | 0.1.0 |
TSdisaggregation | 2.0.0 | TSdist | 3.7.1 |
tsdistributions | 1.0.1 | tsDyn | 11.0.4.1 |
TSEAL | 0.1.3 | TSEntropies | 0.9 |
tseries | 0.10-57 | tseriesChaos | 0.1-13.1 |
tseriesEntropy | 0.7-2 | tseriesTARMA | 0.3-4 |
tsfeatures | 1.1.1 | tsfknn | 0.6.0 |
tsgarch | 1.0.2 | tsibble | 1.1.5 |
tsibbledata | 0.4.1 | tsibbletalk | 0.1.0 |
tsintermittent | 1.10 | tsiR | 0.4.3 |
TSLSTM | 0.1.0 | TSLSTMplus | 1.0.4 |
tsmethods | 1.0.1 | tsModel | 0.6-2 |
tsne | 0.1-3.1 | tsnet | 0.1.0 |
tsoutliers | 0.6-10 | TSP | 1.2-4 |
tsPI | 1.0.4 | TSrepr | 1.1.0 |
tsrobprep | 0.3.2 | tssim | 0.1.7 |
TSstudio | 0.1.7 | tstests | 1.0.0 |
TSTutorial | 1.2.7 | tsutils | 0.9.4 |
tswge | 2.1.0 | tth | 4.16-0 |
TTR | 0.24.4 | tufterhandout | 1.2.1 |
tune | 1.2.1 | TUWmodel | 1.1-1 |
tvm | 0.5.2 | twdtw | 1.0-1 |
tweedie | 2.3.5 | tweenr | 2.0.3 |
twosamples | 2.0.1 | TxDb.Hsapiens.UCSC.hg19.knownGene | 3.2.2 |
TxDb.Hsapiens.UCSC.hg38.knownGene | 3.18.0 | tximport | 1.32.0 |
txtq | 0.2.4 | tzdb | 0.4.0 |
uaparserjs | 0.3.5 | ubiquity | 2.0.3 |
ucminf | 1.2.2 | UComp | 5.0.4 |
UCSC.utils | 1.0.0 | udpipe | 0.8.11 |
ufRisk | 1.0.7 | ugatsdb | 0.2.3 |
uGMAR | 3.5.0 | umap | 0.2.10.0 |
uncmbb | 0.2.2 | unglue | 0.1.0 |
UnifiedDoseFinding | 0.1.10 | unifir | 0.2.4 |
units | 0.8-5 | univOutl | 0.4 |
unrepx | 1.0-2 | unrtf | 1.4.5 |
UpSetR | 1.4.0 | uptasticsearch | 0.4.0 |
urca | 1.3-4 | urlchecker | 1.0.1 |
urlshorteneR | 1.5.7 | urltools | 1.7.3 |
uroot | 2.1-3 | usdata | 0.3.1 |
usethis | 3.0.0 | usmap | 0.7.1 |
usmapdata | 0.3.0 | utf8 | 1.2.4 |
utility | 1.4.6 | uuid | 1.2-1 |
uwot | 0.2.2 | V8 | 4.4.2 |
VALERIE | 1.1.0 | validate | 1.1.5 |
validatetools | 0.5.2 | valr | 0.8.1 |
VAM | 1.1.0 | vapour | 0.10.0 |
VAR.etp | 1.1 | varbvs | 2.6-10 |
VARDetect | 0.1.8 | vardiag | 0.2-1 |
vardpoor | 0.20.1 | VaRES | 1.0.2 |
vars | 1.6-1 | VARshrink | 0.3.1 |
varycoef | 0.3.4 | VCA | 1.5.1 |
vcd | 1.4-12 | vcdExtra | 0.8-5 |
vcr | 1.6.0 | vctrs | 0.6.5 |
vdg | 1.2.3 | VedicDateTime | 0.1.9 |
vegan | 2.6-6.1 | vegawidget | 0.5.0 |
vegperiod | 0.4.0 | VennDiagram | 1.7.3 |
venneuler | 1.1-4 | VGAM | 1.1-11 |
VGAMdata | 1.1-9 | vglmer | 1.0.3 |
vhica | 0.2.8 | VIC5 | 0.2.6 |
VIM | 6.2.2 | VineCopula | 2.5.0 |
vines | 1.1.5 | vip | 0.4.1 |
viridis | 0.6.5 | viridisLite | 0.4.2 |
visNetwork | 2.1.2 | visualize | 4.5.0 |
vkR | 0.2 | volatilityTrader | 1.0.1 |
volcano3D | 2.0.9 | volleystat | 0.2.0 |
vpc | 1.2.2 | vroom | 1.6.5 |
vrtest | 1.2 | vsn | 3.72.0 |
W3CMarkupValidator | 0.1-7 | waiter | 0.2.5 |
waldo | 0.5.2 | warp | 0.2.1 |
washdata | 0.1.4 | WASP | 1.4.4 |
waterData | 1.0.8 | waterquality | 1.0.0 |
WaveletComp | 1.1 | wavelets | 0.3-0.2 |
waveslim | 1.8.5 | wavethresh | 4.7.2 |
wavScalogram | 1.1.3 | waywiser | 0.6.0 |
wbstats | 1.0.4 | wCorr | 1.9.8 |
WDI | 2.7.8 | wdm | 0.2.4 |
wdman | 0.2.6 | weatherOz | 1.0.0 |
WebAnalytics | 0.9.12 | webchem | 1.3.0 |
webdriver | 1.0.6 | WebGestaltR | 0.4.6 |
webmockr | 1.0.0 | webreadr | 0.4.0 |
webshot | 0.5.5 | webshot2 | 0.1.1 |
websocket | 1.4.2 | webutils | 1.2.0 |
wehoop | 2.1.0 | WeightedPortTest | 1.1 |
WeightIt | 1.2.0 | weights | 1.0.4 |
welo | 0.1.4 | WeMix | 4.0.3 |
WGCNA | 1.72-5 | WH | 1.1.1 |
whisker | 0.4.1 | whitebox | 2.4.0 |
whitening | 1.4.0 | whoami | 1.3.0 |
widgetframe | 0.3.1 | widgetTools | 1.82.0 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
WikipediR | 1.7.1 | wikitaxa | 0.4.0 |
wildlifeDI | 1.0.0 | wilson | 2.4.2 |
windex | 2.0.8 | wINEQ | 1.2.0 |
withr | 3.0.1 | wk | 0.9.2 |
wktmo | 1.0.5 | wkutils | 0.1.3 |
wnl | 0.8.1 | wooldridge | 1.4-3 |
worcs | 0.1.14 | word2vec | 0.4.0 |
wordcloud | 2.6 | wordnet | 0.1-17 |
workflowr | 1.7.1 | workflows | 1.1.4 |
workflowsets | 1.1.0 | worldfootballR | 0.6.2 |
worldmet | 0.9.8 | worrms | 0.4.3 |
wpp2017 | 1.2-3 | wpp2019 | 1.1-1 |
wql | 1.0.1 | WrightMap | 1.3 |
writexl | 1.5.0 | WriteXLS | 6.7.0 |
wrMisc | 1.15.1 | wrProteo | 1.12.0 |
WRSS | 3.1 | wrswoR | 1.1.1 |
WRTDStidal | 1.1.4 | WufooR | 1.0.1 |
x12 | 1.10.3 | x13binary | 1.1.61 |
xaringan | 0.30 | XBRL | 0.99.19.1 |
xfun | 0.46 | xgboost | 1.7.8.1 |
xgxr | 1.1.2 | XLConnect | 1.0.10 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.17 | xml2 | 1.3.6 |
XML2R | 0.0.8 | xmlrpc2 | 1.1 |
xopen | 1.0.1 | xplain | 0.2.2 |
xpose | 0.4.18 | xpose.nlmixr2 | 0.4.0 |
xpose4 | 4.7.3 | xslt | 1.4.5 |
xtable | 1.8-4 | xts | 0.14.0 |
XVector | 0.44.0 | xxIRT | 2.1.2 |
yaImpute | 1.0-34 | yaml | 2.3.10 |
yardstick | 1.3.1 | yesno | 0.1.3 |
yhatr | 0.15.1 | yorkr | 0.0.42 |
ypssc | 1.1.0 | yuima | 1.15.27 |
yulab.utils | 0.1.5 | zeallot | 0.1.0 |
zen4R | 0.10 | zic | 0.9.1 |
ZIM | 1.1.0 | ZINARp | 0.1.0 |
zip | 2.3.1 | zipfR | 0.6-70 |
zlib | 1.0.3 | zlibbioc | 1.50.0 |
zoo | 1.8-12 | ZRA | 0.2 |
ztable | 0.2.3 | zTree | 1.0.7 |
zyp | 0.11-1 |
RStudio Server
R: 4.4.1
rstudio-server: 2024.04.2-764
Release Notes
Upgraded R to version 4.4.1, rstudio-server to version 2024.04.2-764, and all R packages to their latest versions; removed GPU support that will be integrated into a separate AMI product.
This AMI provides thousands of R packages covering various domains such as data science, machine learning, economitrics, database, finance, official statistics, survey statistics, Bayesian statistics, clinical trials, epidemiology, experimental design, psychometric methodology, analysis of pharmacokinetic data, medical image processing, teaching statistics, time series analysis, analysis of spatial and spatiotemporal data, reproducible research, phylogenetics, web technologies, hydrology, sports analytics, natural language processing, actuarial science, optimization, genomics, proteomics, metabolomics, transcriptomics, and other omics.
R packages (4410)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.1 |
ABCoptim | 0.15.0 | abcrf | 1.9 |
abglasso | 0.1.1 | abind | 1.4-5 |
abtest | 1.0.1 | accrualPlot | 1.0.7 |
acebayes | 1.10 | acepack | 1.4.2 |
ACNE | 0.9.1 | acp | 2.1 |
acs | 2.1.4 | ACSWR | 1.0 |
ActivePathways | 2.0.4 | actuar | 3.3-4 |
actuaRE | 0.1.5 | ActuarialM | 0.1.0 |
actuaryr | 1.1.1 | actxps | 1.5.0 |
ada | 2.0-5 | adagio | 0.9.2 |
adaptivetau | 2.3-1 | adaptMCMC | 1.5 |
adaptr | 1.4.0 | ADAPTS | 1.0.22 |
adaptsmoFMRI | 1.2 | adaptTest | 1.2 |
additivityTests | 1.1-4.2 | ade4 | 1.7-22 |
ade4TkGUI | 0.3-1 | adegenet | 2.1.10 |
adegraphics | 1.0-21 | adehabitatHR | 0.4.21 |
adehabitatHS | 0.3.17 | adehabitatLT | 0.3.27 |
adehabitatMA | 0.3.16 | adephylo | 1.1-16 |
adespatial | 0.3-23 | ADGofTest | 0.3 |
adimpro | 0.9.6 | adiv | 2.2.1 |
adjclust | 0.6.9 | adlift | 1.4-5 |
admisc | 0.35 | AdMit | 2.1.9 |
ads | 1.5-10 | AdvancedBasketballStats | 1.0.1 |
AER | 1.2-12 | affy | 1.82.0 |
affyio | 1.74.0 | africamonitor | 0.2.4 |
agricolae | 1.3-7 | agricolaeplotr | 0.5.0 |
agridat | 1.23 | agriwater | 1.0.2 |
agvgd | 0.1.2 | AhoCorasickTrie | 0.1.2 |
aion | 1.0.2 | airGR | 1.7.6 |
airGRdatasets | 0.2.1 | airGRdatassim | 0.1.3 |
airGRiwrm | 0.6.2 | airGRteaching | 0.3.2 |
airports | 0.1.0 | airr | 1.5.0 |
ajv | 1.0.0 | akima | 0.6-3.4 |
alabama | 2023.1.0 | alakazam | 1.3.0 |
aLFQ | 1.3.6 | AlgDesign | 1.2.1 |
aliases2entrez | 0.1.2 | almanac | 1.0.0 |
alpaca | 0.3.4 | alphavantager | 0.1.3 |
altair | 4.2.3 | ALTopt | 0.1.2 |
Amelia | 1.8.2 | AmericanCallOpt | 0.95 |
ammiBayes | 1.0-2 | ampir | 1.1.0 |
AMR | 2.1.1 | anabel | 3.0.1 |
AnaCoDa | 0.1.4.4 | anacor | 1.1-4 |
analogsea | 1.0.7.2 | analogue | 0.17-6 |
anesrake | 0.80 | animation | 2.7 |
anipaths | 0.10.3 | anMC | 0.2.5 |
annotate | 1.82.0 | AnnotationBustR | 1.3.0 |
AnnotationDbi | 1.66.0 | AnnuityRIR | 1.0-0 |
Anthropometry | 1.19 | anytime | 0.3.9 |
ao | 1.0.0 | aod | 1.3.3 |
aoos | 0.5.0 | AovBay | 0.1.0 |
apc | 2.0.0 | apcluster | 1.4.13 |
ape | 5.8 | apex | 1.0.6 |
APFr | 1.0.2 | aphid | 1.3.5 |
aphylo | 0.3-3 | apisensr | 1.0.0 |
aplot | 0.2.3 | apollo | 0.3.3 |
approximator | 1.2-8 | apt | 3.0 |
ARCensReg | 3.0.1 | arcgislayers | 0.2.0 |
arcgisutils | 0.3.0 | ArchaeoChron | 0.1 |
ArchaeoPhases | 2.0 | archetypes | 2.2-0.1 |
archivist | 2.3.6 | ArDec | 2.1-1 |
ARDL | 0.2.4 | ardl.nardl | 1.3.0 |
areal | 0.1.8 | arfima | 1.8-1 |
argo | 3.0.2 | argparse | 2.2.3 |
arima2 | 3.1.0 | arkhe | 1.6.0 |
arm | 1.14-4 | aroma.affymetrix | 3.2.2 |
aroma.apd | 0.7.0 | aroma.cn | 1.7.1 |
aroma.core | 3.3.1 | aroma.light | 3.34.0 |
arpr | 0.1.2 | arrangements | 1.1.9 |
arrow | 16.1.0 | ars | 0.7 |
arsenal | 3.6.3 | aRxiv | 0.10 |
ascii | 2.6 | asd | 2.2 |
ash | 1.0-15 | ashr | 2.2-63 |
AsioHeaders | 1.22.1-2 | askpass | 1.2.0 |
aspect | 1.0-6 | ASSA | 2.0 |
assertive.base | 0.0-9 | assertive.files | 0.0-2 |
assertive.numbers | 0.0-2 | assertthat | 0.2.1 |
AssetCorr | 1.0.4 | astrochron | 1.3 |
astsa | 2.1 | asymmetry | 2.0.4 |
ata | 1.1.1 | atom4R | 0.3-3 |
atRisk | 0.1.0 | aTSA | 3.1.2.1 |
attempt | 0.3.1 | attention | 0.4.0 |
AUC | 0.3.2 | audio | 0.1-11 |
autoFRK | 1.4.3 | autoimage | 2.2.3 |
automap | 1.1-9 | autostsm | 3.1.5 |
av | 0.9.0 | aweek | 1.0.3 |
aws | 2.5-5 | aws.signature | 0.6.0 |
awsMethods | 1.1-1 | AzureAppInsights | 0.3.1 |
AzureAuth | 1.3.3 | AzureCognitive | 1.0.1 |
AzureContainers | 1.3.2 | AzureCosmosR | 1.0.0 |
AzureGraph | 1.3.4 | AzureKusto | 1.1.3 |
AzureQstor | 1.0.1 | AzureRMR | 2.4.4 |
AzureStor | 3.7.0 | AzureTableStor | 1.0.0 |
AzureVision | 1.0.2 | AzureVM | 2.2.2 |
babelgene | 22.9 | babelwhale | 1.2.0 |
babette | 2.3.4 | BACCO | 2.1-0 |
BACCT | 1.0 | backports | 1.5.0 |
backtest | 0.3-4 | bacondecomp | 0.1.1 |
baggr | 0.7.8 | bain | 0.2.11 |
BalancedSampling | 2.0.6 | BaM | 1.0.3 |
bama | 1.3.0 | bamdit | 3.4.0 |
bamlss | 1.2-4 | BAMMtools | 2.1.11 |
bang | 1.0.3 | BANOVA | 1.2.1 |
BarcodingR | 1.0-3 | BART | 2.9.9 |
bartBMA | 1.0 | bartCause | 1.0-8 |
bartcs | 1.2.2 | bartMachine | 1.3.4.1 |
bartMachineJARs | 1.2.1 | BAS | 1.7.1 |
basad | 0.3.0 | base64 | 2.0.1 |
base64enc | 0.1-3 | base64url | 1.4 |
baseballDBR | 0.1.2 | baseballr | 1.6.0 |
basicMCMCplots | 0.2.7 | BASiNET | 0.0.5 |
BaSkePro | 1.1.1 | BasketballAnalyzeR | 0.5.0 |
BASS | 1.3.1 | BatchExperiments | 1.4.3 |
BatchJobs | 1.9 | batchmeans | 1.0-4 |
BAwiR | 1.3.2 | baycn | 1.2.0 |
bayefdr | 0.2.1 | bayes4psy | 1.2.12 |
bayesAB | 1.1.3 | bayesammi | 0.1.0 |
bayesanova | 1.6 | BayesARIMAX | 0.1.1 |
BayesBinMix | 1.4.1 | bayesbio | 1.0.0 |
bayesboot | 0.2.2 | BayesBP | 1.1 |
bayesbr | 0.0.1.0 | BayesCACE | 1.2.3 |
BayesCombo | 1.0 | BayesComm | 0.1-2 |
bayescopulareg | 0.1.3 | bayescount | 0.9.99-9 |
BayesCR | 2.1 | bayesCT | 0.99.3 |
BayesCTDesign | 0.6.1 | BayesDA | 2012.04-1 |
bayesDccGarch | 3.0.4 | bayesdfa | 1.3.3 |
bayesdistreg | 0.1.0 | bayesDP | 1.3.6 |
BayesFactor | 0.9.12-4.7 | BayesFM | 0.1.7 |
bayesforecast | 1.0.1 | bayesGAM | 0.0.2 |
bayesGARCH | 2.1.10 | BayesGOF | 5.2 |
BayesGPfit | 1.1.0 | BayesGWQS | 0.1.1 |
bayesian | 1.0.1 | bayesianETAS | 1.0.3 |
BayesianFactorZoo | 0.0.0.2 | Bayesiangammareg | 0.1.0 |
BayesianGLasso | 0.2.0 | BayesianLaterality | 0.1.2 |
BayesianNetwork | 0.3 | BayesianTools | 0.1.8 |
bayesianVARs | 0.1.3 | bayesImageS | 0.6-1 |
BayesLCA | 1.9 | bayesLife | 5.2-0 |
bayeslincom | 1.3.0 | BayesLN | 0.2.10 |
BayesLogit | 2.1 | bayesloglin | 1.0.1 |
bayeslongitudinal | 0.1.0 | bayesm | 3.1-6 |
BayesMallows | 2.2.1 | BayesMassBal | 1.1.0 |
bayesmeta | 3.4 | bayesmix | 0.7-6 |
bayesnec | 2.1.2.0 | bayesplot | 1.11.1 |
bayesQR | 2.4 | bayesRecon | 0.3.0 |
BayesSAE | 1.0-2 | bayestestR | 0.13.2 |
bayesTFR | 7.4-2 | BayesTools | 0.2.17 |
BayesTree | 0.3-1.5 | BayesVarSel | 2.2.5 |
BayesX | 0.3-3 | BAYSTAR | 0.2-10 |
baytrends | 2.0.11 | BB | 2019.10-1 |
BBmisc | 1.13 | bbmle | 1.0.25.1 |
bbotk | 1.0.0 | BCBCSF | 1.0-1 |
BCC1997 | 0.1.1 | BCE | 2.2.0 |
Bchron | 4.7.6 | BClustLonG | 0.1.3 |
bcp | 4.0.3 | bcpa | 1.3.2 |
bcrm | 0.5.4 | BDgraph | 2.72 |
bdrc | 1.1.0 | bdsmatrix | 1.3-7 |
BE | 0.2.4 | beachmat | 2.20.0 |
beadarray | 2.54.0 | BeadDataPackR | 1.56.0 |
beakr | 0.4.3 | bearishTrader | 1.0.2 |
beastier | 2.5.1 | beautier | 2.6.12 |
BED | 1.5.2 | beepr | 1.3 |
beeswarm | 0.4.0 | benchmarkme | 1.0.8 |
benchmarkmeData | 1.0.4 | BenfordTests | 1.2.0 |
bentcableAR | 0.3.1 | Bergm | 5.0.7 |
Bernadette | 1.1.5 | berryFunctions | 1.22.5 |
Bessel | 0.6-0 | BEST | 0.5.4 |
BetaBit | 2.2 | betafunctions | 1.9.0 |
betapart | 1.6 | betareg | 3.1-4 |
betategarch | 3.3 | BETS | 0.4.9 |
bets.covid19 | 1.0.0 | beyondWhittle | 1.2.1 |
bezier | 1.1.2 | bfast | 1.6.1 |
BFpack | 1.3.0 | BGGM | 2.1.2 |
BGLR | 1.1.2 | BGVAR | 2.5.5 |
bgw | 0.1.3 | BH | 1.84.0-0 |
BHH2 | 2016.05.31 | BiasCorrector | 0.2.2 |
BiasedUrn | 2.0.12 | bibtex | 0.5.1 |
biclust | 2.0.3.1 | bidask | 2.0.4 |
bife | 0.7.2 | BIFIEsurvey | 3.6-6 |
biganalytics | 1.1.22 | bigchess | 1.9.1 |
bigD | 0.2.0 | bigleaf | 0.8.2 |
biglm | 0.9-3 | bigmemory | 4.6.4 |
bigmemory.sri | 0.1.8 | bigrquery | 1.5.1 |
bigsplines | 1.1-1 | bigtime | 0.2.3 |
BigVAR | 1.1.2 | bimets | 3.0.2 |
bindr | 0.1.1 | bindrcpp | 0.2.3 |
binhf | 1.0-3 | binman | 0.1.3 |
binom | 1.1-1.1 | binomSamSize | 0.1-5 |
binr | 1.1.1 | binseqtest | 1.0.4 |
bio3d | 2.4-4 | Biobase | 2.64.0 |
BiocFileCache | 2.12.0 | BiocGenerics | 0.50.0 |
BiocIO | 1.14.0 | BiocManager | 1.30.23 |
BiocParallel | 1.38.0 | BiocSingular | 1.20.0 |
BiocVersion | 3.19.1 | bioinactivation | 1.2.3 |
BioInsight | 0.3.1 | biomaRt | 2.60.1 |
biomartr | 1.0.7 | biomformat | 1.32.0 |
bioOED | 0.2.1 | bioseq | 0.1.4 |
Biostrings | 2.72.1 | biotic | 0.1.2 |
bipartite | 2.20 | birtr | 1.0.0 |
BisqueRNA | 1.0.5 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
biwavelet | 0.20.21 | bizdays | 1.0.16 |
bkmr | 0.2.2 | blaise | 1.3.11 |
blastula | 0.3.5 | blavaan | 0.5-5 |
blink | 1.1.0 | BLModel | 1.0.2 |
blob | 1.2.4 | blocklength | 0.1.5 |
blockmatrix | 1.0 | blockrand | 1.5 |
blocksdesign | 4.9 | blockTools | 0.6.4 |
blogdown | 1.19 | BLR | 1.6 |
BLRPM | 1.0 | BMA | 3.18.17 |
bmgarch | 2.0.0 | BMisc | 1.4.6 |
bmixture | 1.7 | BMS | 0.3.5 |
BMTAR | 0.1.1 | bnlearn | 4.9.4 |
BNPTSclust | 2.0 | BNSP | 2.2.3 |
bnstruct | 1.0.15 | boa | 1.1.8-2 |
boilerpipeR | 1.3.2 | BOIN | 2.7.2 |
boiwsa | 1.1.1 | bold | 1.3.0 |
Bolstad | 0.2-41 | Bolstad2 | 1.0-29 |
bondAnalyst | 1.0.1 | bookdown | 0.39 |
Boom | 0.9.15 | BoomSpikeSlab | 1.2.6 |
bootnet | 1.6 | BootPR | 1.0 |
bootstrap | 2019.6 | bootUR | 1.0.4 |
BoSSA | 3.7 | boussinesq | 1.0.6 |
boxr | 0.3.6 | bpca | 1.3-6 |
bqtl | 1.0-36 | BradleyTerry2 | 1.1-2 |
brainR | 1.6.0 | brandwatchR | 0.3.0 |
breakfast | 2.4 | brew | 1.0-10 |
brglm | 0.7.2 | brglm2 | 0.9.2 |
bridgesampling | 1.1-2 | BRINDA | 0.1.5 |
brio | 1.1.5 | brms | 2.21.0 |
Brobdingnag | 1.2-9 | broman | 0.84 |
broom | 1.0.6 | broom.helpers | 1.15.0 |
brotli | 1.3.0 | bsam | 1.1.3 |
bsamGP | 1.2.5 | BSgenome | 1.72.0 |
bsicons | 0.1.2 | bslib | 0.7.0 |
BsMD | 2023.920 | bspec | 1.6 |
bspmma | 0.1-2 | bssm | 2.0.2 |
BSSprep | 0.1 | bsts | 0.9.10 |
bsvars | 3.0.1 | BTLLasso | 0.1-13 |
BTM | 0.3.7 | bullishTrader | 1.0.1 |
bundesbank | 0.1-12 | BurStFin | 1.3 |
BurStMisc | 1.1 | BVAR | 1.0.5 |
bvarsv | 1.1 | bvartools | 0.2.4 |
bvls | 1.4 | C50 | 0.1.8 |
ca | 0.71.1 | cabinets | 0.6.0 |
cabootcrs | 2.1.0 | cachem | 1.1.0 |
cacIRT | 1.4 | CADFtest | 0.3-3 |
caffsim | 0.2.2 | Cairo | 1.6-2 |
CALANGO | 1.0.16 | calculus | 1.0.1 |
calibrar | 0.9.0 | calibrate | 1.7.7 |
CalibrateSSB | 1.3.0 | calibrator | 1.2-8 |
callr | 3.7.6 | cancensus | 0.5.7 |
candisc | 0.9.0 | canprot | 2.0.0 |
CANSIM2R | 1.14.1 | caper | 1.0.3 |
captr | 0.3.0 | capushe | 1.1.2 |
car | 3.1-2 | caRamel | 1.3 |
CARBayes | 6.1.1 | CARBayesdata | 3.0 |
CARBayesST | 4.0 | carData | 3.0-5 |
caret | 6.0-94 | carfima | 2.0.2 |
caribou | 1.1-1 | carrier | 0.1.1 |
cartogram | 0.3.0 | Cascade | 2.1 |
CascadeData | 1.4 | CAST | 1.0.2 |
castor | 1.8.0 | CatDataAnalysis | 0.1-5 |
cate | 1.1.1 | caTools | 1.18.2 |
catR | 3.17 | causact | 0.5.5 |
CausalImpact | 1.3.0 | CAvariants | 6.0 |
CB2 | 1.3.4 | cbioportalR | 1.1.0 |
cbsodataR | 1.0.1 | ccaPP | 0.3.3 |
cccp | 0.3-1 | cdlTools | 1.13 |
CDM | 8.2-6 | CDNmoney | 2012.4-2 |
cds | 1.0.3 | CellNOptR | 1.50.0 |
cellranger | 1.1.0 | censReg | 0.5-38 |
censusapi | 0.8.0 | CEoptim | 1.3 |
CePa | 0.8.0 | CeRNASeek | 2.1.3 |
cfbfastR | 1.9.0 | cffr | 1.0.1 |
cfr | 0.1.1 | CFtime | 1.4.0 |
ChainLadder | 0.2.18 | chandwich | 1.1.6 |
changepoint | 2.2.4 | changepoint.geo | 1.0.2 |
changepoint.np | 1.0.5 | checkLuhn | 1.1.0 |
checkmate | 2.3.1 | checkpoint | 1.0.2 |
chem.databases | 1.0.0 | ChemoSpec | 6.1.10 |
ChemoSpecUtils | 1.0.4 | cherryblossom | 0.1.0 |
chess | 1.0.1 | chilemapas | 0.3.0 |
chk | 0.9.1 | CHNOSZ | 2.1.0 |
choiceDes | 0.9-3 | cholera | 0.8.0 |
CholWishart | 1.1.2 | choroplethr | 3.7.3 |
choroplethrMaps | 1.0.1 | chromoMap | 4.1.1 |
chromote | 0.2.0 | chron | 2.3-61 |
cifti | 0.4.5 | cinterpolate | 1.0.1 |
circlize | 0.4.16 | CircSpaceTime | 0.9.0 |
CircStats | 0.2-6 | circular | 0.5-0 |
ciTools | 0.6.1 | Ckmeans.1d.dp | 4.3.5 |
Claddis | 0.6.3 | clarabel | 0.9.0 |
clarifai | 0.4.2 | classInt | 0.4-10 |
cleanepi | 1.0.2 | clevr | 0.1.2 |
cli | 3.6.3 | clifro | 3.2-5 |
climatol | 4.1.0 | clime | 0.5.0 |
clinDR | 2.4.1 | clinfun | 1.1.5 |
clinicalsignificance | 2.0.0 | clinPK | 0.13.0 |
clinsig | 1.2 | clipr | 0.8.0 |
clisymbols | 1.2.0 | clmplus | 1.0.0 |
clock | 0.7.0 | clubSandwich | 0.5.11 |
clue | 0.3-65 | clustDRM | 0.1-0 |
clusterGeneration | 1.3.8 | clustermole | 1.1.1 |
clusterPower | 0.7.0 | clusterProfiler | 4.12.0 |
clusterSEs | 2.6.5 | clustMixType | 0.3-14 |
ClustVarLV | 2.1.1 | clv | 0.3-2.4 |
cmaes | 1.0-12 | cmaesr | 1.0.3 |
CMLS | 1.0-1 | cmm | 1.0 |
cmocean | 0.3-1 | cmprsk | 2.2-12 |
cmrutils | 1.3.1 | CNLTreg | 0.1-2 |
CNLTtsa | 0.1-2 | cNORM | 3.0.4 |
CNORode | 1.46.0 | coalescentMCMC | 0.4-4 |
coalitions | 0.6.24 | coarseDataTools | 0.6-6 |
cobalt | 4.5.5 | cobs | 1.3-8 |
coconots | 1.1.3 | COCONUT | 1.0.2 |
cocor | 1.1-4 | cocorresp | 0.4-4 |
cocron | 1.0-1 | coda | 0.19-4.1 |
cOde | 1.1.1 | coin | 1.4-3 |
cointReg | 0.2.0 | colf | 0.1.3 |
collapse | 2.0.14 | collapsibleTree | 0.1.8 |
collections | 0.3.7 | colorr | 1.0.0 |
colorRamps | 2.3.4 | colorspace | 2.1-0 |
colourpicker | 1.3.0 | colourvalues | 0.3.9 |
combinat | 0.0-8 | combinedevents | 0.1.1 |
CombinS | 1.1-1 | ComICS | 1.0.4 |
CommonJavaJars | 1.1-0 | commonmark | 1.9.1 |
compare | 0.2-6 | compas | 0.1.1 |
complex | 1.0.0 | ComplexHeatmap | 2.20.0 |
CompQuadForm | 1.4.3 | comprehenr | 0.6.10 |
conditionz | 0.1.0 | coneproj | 1.19 |
conf.design | 2.0.0 | config | 0.3.2 |
confintr | 1.0.2 | conflicted | 1.2.0 |
conos | 1.5.2 | conquer | 1.3.3 |
conquestr | 1.3.0 | constrainedKriging | 0.2-7 |
contactdata | 1.0.0 | contfrac | 1.1-12 |
convevol | 2.0.1 | convey | 1.0.0 |
coop | 0.6-3 | cops | 1.11-3 |
copula | 1.1-3 | copulaData | 0.0-2 |
copulaedas | 1.4.3 | cordillera | 1.0-0 |
corHMM | 2.8 | coro | 1.0.4 |
corona | 0.3.0 | coronavirus | 0.4.1 |
corpcor | 1.6.10 | corpora | 0.6 |
corporaexplorer | 0.8.6 | corrgram | 1.14 |
corrplot | 0.92 | cosa | 2.1.0 |
CoSMoS | 2.1.0 | costat | 2.4.1 |
countrycode | 1.6.0 | CovCombR | 1.0 |
COVID19 | 3.0.3 | covid19.analytics | 2.1.3.3 |
covid19br | 0.1.8 | covid19dbcand | 0.1.1 |
covid19france | 0.1.0 | covid19italy | 0.3.1 |
covid19sf | 0.1.2 | covid19swiss | 0.1.0 |
covid19us | 0.1.9 | CovidMutations | 0.1.3 |
cowplot | 1.1.3 | cp4p | 0.3.6 |
CPBayes | 1.1.0 | cpk | 1.3-1 |
cplm | 0.7-12 | cpp11 | 0.4.7 |
CptNonPar | 0.2.1 | CRABS | 1.2.0 |
crawl | 2.3.0 | crayon | 1.5.3 |
crch | 1.1-2 | credentials | 2.0.1 |
credule | 0.1.4 | crfsuite | 0.4.2 |
cricketdata | 0.2.3 | cricketr | 0.0.26 |
CRM | 1.2.4 | crmPack | 1.0.6 |
crossdes | 1.1-2 | crosslag | 0.1.0 |
Crossover | 0.1-22 | crosstalk | 1.2.1 |
crs | 0.15-37 | crseEventStudy | 1.2.2 |
crsmeta | 0.3.0 | crul | 1.4.2 |
crunch | 1.30.4 | crunchy | 0.3.3 |
cryptoQuotes | 1.3.1 | cSEM | 0.5.0 |
CSGo | 0.6.7 | cshapes | 2.0 |
CSHShydRology | 1.4.0 | csodata | 1.5.0 |
cstab | 0.2-2 | csv | 0.6.2 |
ctbi | 2.0.5 | ctmcmove | 1.2.9 |
ctmm | 1.2.0 | ctrdata | 1.18.0 |
ctsem | 3.10.0 | ctsemOMX | 1.0.6 |
CTT | 2.3.3 | CTTShiny | 0.1 |
ctv | 0.9-5 | cubature | 2.1.0 |
cubble | 0.3.0 | cubelyr | 1.0.2 |
cubfits | 0.1-4 | Cubist | 0.4.2.1 |
cumSeg | 1.3 | curl | 5.2.1 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-14 |
D3mirt | 2.0.4 | d3Network | 0.5.2.1 |
DAAG | 1.25.6 | dae | 3.2.28 |
daewr | 1.2-11 | dagitty | 0.3-4 |
DAKS | 2.1-3 | DALEX | 2.4.3 |
DAMOCLES | 2.3 | data.table | 1.15.4 |
data.tree | 1.1.0 | DatabaseConnector | 6.3.2 |
DataExplorer | 0.8.3 | dataone | 2.2.2 |
datapack | 1.4.1 | datapasta | 3.1.0 |
dataRetrieval | 2.7.15 | datarobot | 2.18.6 |
dataseries | 0.2.0 | dataverse | 0.3.14 |
datawizard | 0.11.0 | date | 1.2-42 |
dateback | 1.0.5 | datetimeoffset | 0.3.1 |
datetimeutils | 0.6-4 | dbarts | 0.9-28 |
dbhydroR | 0.2-8 | DBI | 1.2.3 |
DBItest | 1.8.1 | dbmss | 2.9-0 |
dbparser | 2.0.3 | dbplyr | 2.5.0 |
dbscan | 1.2-0 | dbx | 0.3.2 |
DChaos | 0.1-7 | dclone | 2.3-2 |
DCluster | 0.2-10 | DClusterm | 1.0-1 |
dcov | 0.1.1 | dCovTS | 1.4 |
dcurver | 0.9.2 | ddalpha | 1.3.15 |
DDD | 5.2.2 | dde | 1.0.5 |
DDPM | 0.1.0 | deBInfer | 0.4.4 |
debugme | 1.2.0 | decompr | 6.4.0 |
deducorrect | 1.3.7 | deductive | 1.0.0 |
DeductiveR | 1.0.0 | deeptime | 1.1.1 |
Delaporte | 8.4.1 | DelayedArray | 0.30.1 |
DelayedMatrixStats | 1.26.0 | deldir | 2.0-4 |
deltaPlotR | 1.6 | demography | 2.0 |
dendextend | 1.17.1 | dendsort | 0.3.4 |
densEstBayes | 1.0-2.2 | DEoptim | 2.2-8 |
DEoptimR | 1.1-3 | depmix | 0.9.16 |
depmixS4 | 1.5-0 | DepthProc | 2.1.5 |
depthTools | 0.7 | Deriv | 4.1.3 |
derivmkts | 0.2.5 | desc | 1.4.3 |
DescTools | 0.99.54 | deseats | 1.0.0 |
DESeq2 | 1.44.0 | designmatch | 0.5.4 |
desiR | 1.2.2 | desirability | 2.1 |
deSolve | 1.40 | desplot | 1.10 |
devtools | 2.4.5 | dexter | 1.4.2 |
dextergui | 0.2.6 | dexterMST | 0.9.6 |
dfcomb | 3.1-1 | dfcrm | 0.2-2.1 |
dfidx | 0.0-5 | DFIT | 1.1 |
dfms | 0.2.2 | dfmta | 1.7-3 |
dfoptim | 2023.1.0 | dfped | 1.1 |
dfpk | 3.5.1 | DGEobj | 1.1.2 |
DGEobj.utils | 1.0.6 | DHARMa | 0.4.6 |
DHS.rates | 0.9.2 | diagis | 0.2.3 |
diagonals | 6.4.0 | diagram | 1.6.5 |
DiagrammeR | 1.0.11 | dials | 1.2.1 |
DiceDesign | 1.10 | DiceEval | 1.6.1 |
DiceKriging | 1.6.0 | DiceOptim | 2.1.1 |
DiceView | 2.2-0 | dichromat | 2.0-0.1 |
DICOMread | 0.0.0.3 | did | 2.1.2 |
did2s | 1.0.2 | didimputation | 0.3.0 |
DIFboost | 0.3 | DiffCorr | 0.4.3 |
diffEnrich | 0.1.2 | diffobj | 0.3.5 |
diffpriv | 0.4.2 | diffusion | 0.4.0 |
DIFlasso | 1.0-4 | difNLR | 1.4.2-1 |
DIFplus | 1.1 | difR | 5.1 |
DIFtree | 3.1.6 | digest | 0.6.36 |
DIMORA | 0.3.6 | dimRed | 0.2.6 |
dina | 2.0.0 | DiPALM | 1.2 |
dipsaus | 0.2.9 | diptest | 0.77-1 |
Dire | 2.2.0 | DIRECT | 1.1.0 |
directlabels | 2024.1.21 | directPA | 1.5.1 |
dirichletprocess | 0.4.2 | dirmult | 0.1.3-5 |
disaggR | 1.0.5.2 | DIscBIO | 1.2.2 |
DiscreteFDR | 1.3.7 | discretization | 1.0-1.1 |
dispRity | 1.8 | DistatisR | 1.1.1 |
distcrete | 1.0.3 | distfree.cr | 1.5.1 |
distill | 1.6 | distory | 1.4.4 |
distr | 2.9.3 | distrEx | 2.9.2 |
distributional | 0.4.0 | distributions3 | 0.2.1 |
DistributionUtils | 0.6-1 | distrom | 1.0.1 |
distrTeach | 2.9.1 | dittodb | 0.1.8 |
diversitree | 0.10-0 | divest | 1.0.0 |
divseg | 0.0.5 | dLagM | 1.1.13 |
dlm | 1.1-6 | dlmtree | 1.0.0 |
dlnm | 2.4.7 | dlsem | 2.4.6 |
dlstats | 0.1.7 | dm | 1.0.10 |
dmri.tracking | 0.1.0 | DNAcopy | 1.78.0 |
dnapath | 0.7.4 | doBy | 4.6.22 |
doc2vec | 0.2.0 | docopt | 0.7.1 |
docopulae | 0.4.0 | DoE.base | 1.2-4 |
DoE.MIParray | 1.0-1 | DoE.wrapper | 0.12 |
doFuture | 1.0.1 | doMC | 1.3.8 |
doParallel | 1.0.17 | doRNG | 1.8.6 |
DOSE | 3.30.1 | DoseFinding | 1.1-1 |
doSNOW | 1.0.20 | DOSPortfolio | 0.1.0 |
dotCall64 | 1.1-1 | DoubleML | 1.0.1 |
Dowd | 0.12 | downlit | 0.4.4 |
downloader | 0.4 | dparser | 1.3.1-11 |
dplyr | 1.1.4 | dqrng | 0.4.1 |
dr4pl | 2.0.0 | drake | 7.13.10 |
drat | 0.2.4 | DRaWR | 1.0.3 |
DRDID | 1.0.6 | dreamerr | 1.4.0 |
DriftBurstHypothesis | 0.4.0.1 | driveR | 0.4.1 |
DRomics | 2.5-2 | DRR | 0.0.4 |
dsa | 1.0.12 | DSAIDE | 0.9.6 |
dsb | 1.0.4 | dse | 2020.2-1 |
DSI | 1.6.0 | DSL | 0.1-7 |
DT | 0.33 | DTAT | 0.3-7 |
DtD | 0.2.2 | dti | 1.5.4 |
dtplyr | 1.3.1 | DTSg | 1.1.3 |
dtt | 0.1-2 | dtts | 0.1.2 |
dtw | 1.23-1 | dtwclust | 5.5.12 |
duckdb | 1.0.0 | duckduckr | 1.0.0 |
dunn.test | 1.3.6 | dwctaxon | 2.0.3 |
dygraphs | 1.1.1.6 | Dykstra | 1.0-0 |
dyn | 0.2-9.6 | dynamicTreeCut | 1.63-1 |
dynatop | 0.2.3 | dynatopGIS | 0.2.5 |
dynaTree | 1.2-16 | DynDoc | 1.82.0 |
dynlm | 0.3-6 | dynparam | 1.0.2 |
dynutils | 1.0.11 | dynwrap | 1.2.4 |
DysPIA | 1.3 | DysPIAData | 0.1.2 |
e1071 | 1.7-14 | earlyR | 0.0.5 |
earth | 5.3.3 | easypower | 1.0.2 |
easySdcTable | 1.0.7 | eba | 1.10-0 |
ebal | 0.1-8 | EbayesThresh | 1.4-12 |
ebdbNet | 1.2.8 | EBImage | 4.46.0 |
EBMAforecast | 1.0.32 | ecb | 0.4.2 |
Ecdat | 0.4-2 | ecespa | 1.1-17 |
Ecfun | 0.3-2 | echor | 0.1.9 |
ecm | 7.2.0 | ecodist | 2.1.3 |
Ecohydmod | 1.0.0 | ECOSolveR | 0.5.5 |
ecoval | 1.2.9 | ecp | 3.1.5 |
ecr | 2.1.1 | edfReader | 1.2.1 |
edgeR | 4.2.0 | edina | 0.1.1 |
editrules | 2.9.5 | edmdata | 1.2.0 |
edstan | 1.0.6 | EdSurvey | 4.0.7 |
eegkit | 1.0-4 | eegkitdata | 1.1 |
EFAutilities | 2.1.3 | effects | 4.2-2 |
EGAnet | 2.0.6 | egg | 0.4.5 |
egor | 1.24.2 | EGRET | 3.0.9 |
EGRETci | 2.0.4 | eha | 2.11.4 |
eigenmodel | 1.11 | eiopaR | 0.1.1 |
elastic | 1.2.0 | elasticnet | 1.3 |
elevatr | 0.99.0 | ellipse | 0.5.0 |
ellipsis | 0.3.2 | elliptic | 1.4-0 |
elo | 3.0.2 | EloChoice | 0.29.4 |
EloRating | 0.46.11 | ELT | 1.7 |
emayili | 0.9.1 | EMbC | 2.0.4 |
EMD | 1.5.9 | emdi | 2.2.2 |
emg | 1.0.9 | emmeans | 1.10.2 |
EMMIXgene | 0.1.4 | emoa | 0.5-2 |
emulator | 1.2-24 | encode | 0.3.6 |
endtoend | 2.29 | energy | 1.7-11 |
EngrExpt | 0.1-8 | enrichplot | 1.24.0 |
enrichR | 3.2 | enrichwith | 0.3.1 |
ensembleBMA | 5.1.8 | entropart | 1.6-13 |
entropy | 1.3.1 | EntropyEstimation | 1.2 |
EntropyMCMC | 1.0.4 | enveomics.R | 1.9.1 |
enviPat | 2.6 | EnvStats | 2.8.1 |
epanet2toolkit | 1.0.5 | epanetReader | 0.7.3 |
Epi | 2.51 | epibasix | 1.5 |
epicontacts | 1.1.4 | EpiContactTrace | 0.17.0 |
EpiCurve | 2.4-2 | epiDisplay | 3.5.0.2 |
EpiEstim | 2.2-4 | epiflows | 0.2.1 |
EpiILM | 1.5.2 | EpiILMCT | 1.1.7 |
epimdr | 0.6-5 | EpiModel | 2.4.0 |
epinet | 2.1.11 | EpiNow2 | 1.5.2 |
epiR | 2.0.75 | EpiReport | 1.0.2 |
episensr | 1.3.0 | EpiSignalDetection | 0.1.2 |
epitools | 0.5-10.1 | epitrix | 0.4.0 |
epitweetr | 2.2.16 | epm | 1.1.2 |
epo | 0.1.0 | equate | 2.0.8 |
equateIRT | 2.4.0 | equateMultiple | 0.1.2 |
equivalence | 0.7.2 | era | 0.4.1 |
erah | 2.0.1 | erer | 3.1 |
ergm | 4.6.0 | ergm.ego | 1.1.0 |
ergm.multi | 0.2.1 | eRm | 1.0-6 |
errorlocate | 1.1.1 | errum | 0.0.3 |
esaBcv | 1.2.1.1 | esemifar | 2.0.1 |
ESG | 1.3 | EstCRM | 1.6 |
estimability | 1.5.1 | EstimateGroupNetwork | 0.3.1 |
estimatr | 1.0.4 | ETLUtils | 1.5 |
etm | 1.1.1 | etrm | 1.0.1 |
etrunct | 0.1 | etwfe | 0.4.0 |
EUfootball | 0.0.1 | eulerr | 7.0.2 |
europepmc | 0.4.3 | eurostat | 4.0.0 |
evaluate | 0.24.0 | Evapotranspiration | 1.16 |
evd | 2.3-7 | evgam | 1.0.0 |
evir | 1.7-4 | evobiR | 1.1 |
EvoPhylo | 0.3.2 | evtree | 1.0-8 |
ewoc | 0.3.0 | Exact | 3.2 |
exactextractr | 0.10.0 | exactRankTests | 0.8-35 |
exams | 2.4-0 | ExceedanceTools | 1.3.6 |
exdex | 1.2.3 | EXPAR | 0.1.0 |
EXPARMA | 0.1.0 | experiment | 1.2.1 |
expint | 0.1-8 | expm | 0.999-9 |
ExPosition | 2.8.23 | expsmooth | 2.3 |
exreport | 0.4.1 | extraDistr | 1.10.0 |
extrafont | 0.19 | extrafontdb | 1.0 |
extraoperators | 0.3.0 | ExtremeBounds | 0.1.7 |
ExtremeRisks | 0.0.4 | eyelinker | 0.2.1 |
ez | 4.4-0 | fable | 0.3.4 |
fable.prophet | 0.1.0 | fableCount | 0.1.0 |
fabletools | 0.4.2 | FactoClass | 1.2.9 |
factoextra | 1.0.7 | FactoMineR | 2.11 |
factorstochvol | 1.1.0 | FAdist | 2.4 |
fanplot | 4.0.0 | fansi | 1.0.6 |
FAOSTAT | 2.4.0 | faoutlier | 0.7.6 |
faraway | 1.0.8 | farver | 2.1.2 |
fAssets | 4023.85 | fasstr | 0.5.2 |
fastcluster | 1.2.6 | fastcpd | 0.14.3 |
fastDummies | 1.7.3 | fastGHQuad | 1.0.1 |
fastglm | 0.0.3 | fastICA | 1.2-4 |
fastLink | 0.6.1 | fastmap | 1.2.0 |
fastmatch | 1.1-4 | fastRhockey | 0.4.0 |
fastrmodels | 1.0.2 | FastRWeb | 1.2-1 |
fasttime | 1.1-0 | fastTS | 1.0.1 |
FatTailsR | 1.8-5 | fauxpas | 0.5.2 |
FAVAR | 0.1.3 | fbar | 0.6.0 |
fBasics | 4032.96 | fBonds | 3042.78 |
fbRads | 17.0.0 | fCopulae | 4022.85 |
FCVAR | 0.1.4 | FD | 1.0-12.3 |
fda | 6.1.8 | fdaACF | 1.0.0 |
fdapace | 0.5.9 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.3-0 |
feasts | 0.3.2 | feather | 0.3.5 |
fechner | 1.0-3 | FedData | 4.0.1 |
FeedbackTS | 1.5 | feisr | 1.3.0 |
fExtremes | 4032.84 | ff | 4.0.12 |
FFD | 1.0-9 | fflr | 2.2.4 |
ffscrapr | 1.4.8 | ffsimulator | 1.2.3 |
fftwtools | 0.9-11 | fGarch | 4033.92 |
fgsea | 1.30.0 | fHMM | 1.3.1 |
FielDHub | 1.3.7 | fields | 16.2 |
fiery | 1.2.1 | filearray | 0.1.6 |
filehash | 2.4-6 | filehashSQLite | 0.2-6 |
filelock | 1.0.3 | filematrix | 1.3 |
fImport | 4032.87 | finalsize | 0.2.1 |
FinancialMath | 0.1.1 | FinAsym | 1.0 |
findpython | 1.0.8 | FinNet | 0.1.2 |
finnts | 0.4.0 | finreportr | 1.0.4 |
FinTS | 0.4-9 | FiRE | 1.0.1 |
fishMod | 0.29 | fitdistrplus | 1.1-11 |
fitzRoy | 1.4.0 | fixest | 0.12.1 |
FKF | 0.2.5 | FKF.SP | 0.3.1 |
flacco | 1.8 | flap | 0.2.0 |
flashClust | 1.01-2 | flexclust | 1.4-2 |
flexdashboard | 0.6.2 | flexmix | 2.3-19 |
FlexScan | 0.2.2 | flextable | 0.9.6 |
flippant | 1.5.5 | float | 0.3-2 |
flock | 0.7 | flowr | 0.9.11 |
FlowScreen | 1.2.6 | FLSSS | 9.1.3 |
fma | 2.5 | FMC | 1.0.1 |
fmcmc | 0.5-2 | fmdates | 0.1.4 |
FME | 1.3.6.3 | fmesher | 0.1.6 |
fmri | 1.9.12 | fMultivar | 4031.84 |
fnets | 0.1.6 | FNN | 1.1.4 |
fNonlinear | 4021.81 | fontawesome | 0.5.2 |
fontBitstreamVera | 0.1.1 | fontLiberation | 0.1.0 |
fontquiver | 0.2.1 | footballpenaltiesBL | 1.0.0 |
footBayes | 0.2.0 | forcats | 1.0.0 |
foreach | 1.5.2 | ForeCA | 0.2.7 |
forecast | 8.23.0 | ForecastComb | 1.3.1 |
forecastHybrid | 5.0.19 | forecastLSW | 1.0 |
forecastML | 0.9.0 | FoReco | 0.2.6 |
ForeComp | 0.9.0 | forecTheta | 2.6.2 |
forestplot | 3.1.3 | forge | 0.2.0 |
formatR | 1.14 | formattable | 0.2.1 |
formods | 0.1.6 | Formula | 1.2-5 |
formula.tools | 1.7.1 | FossilSim | 2.3.3 |
fourPNO | 1.1.0 | fpc | 2.2-12 |
fpcb | 0.1.0 | fpCompare | 0.2.4 |
FPLdata | 0.1.0 | fPortfolio | 4023.84 |
fpp2 | 2.5 | fpp3 | 1.0.0 |
fracdiff | 1.5-3 | fracdist | 0.1.1 |
Frames2 | 0.2.1 | FRAPO | 0.4-1 |
fredr | 2.1.0 | freecurrencyapi | 0.1.0 |
freesurferformats | 0.1.18 | fRegression | 4021.83 |
frenchdata | 0.2.0 | freqdom | 2.0.5 |
freqdom.fda | 1.0.1 | fresh | 0.2.1 |
FrF2 | 2.3-3 | FrF2.catlg128 | 1.2-3 |
FRK | 2.3.0 | frontier | 1.1-8 |
frostr | 0.2.0 | fs | 1.6.4 |
FSA | 0.9.5 | fslr | 2.25.3 |
fsMTS | 0.1.7 | fst | 0.9.8 |
fstcore | 0.9.18 | fTrading | 3042.79 |
ftrCOOL | 2.0.0 | ftsa | 6.4 |
func2vis | 1.0-3 | functional | 0.6 |
fungible | 2.4.4 | funtimes | 9.1 |
furrr | 0.3.1 | futile.logger | 1.4.3 |
futile.options | 1.0.1 | future | 1.33.2 |
future.apply | 1.11.2 | fuzzyjoin | 0.1.6 |
fwildclusterboot | 0.13.0 | fxregime | 1.0-4 |
GA | 3.2.4 | GAD | 2.0 |
gafit | 0.5.1 | gam | 1.22-3 |
gamlr | 1.13-8 | gamlss | 5.4-22 |
gamlss.data | 6.0-6 | gamlss.dist | 6.1-1 |
gamm4 | 0.2-6 | GANPA | 1.2 |
GANPAdata | 1.0 | gap | 1.5-3 |
gap.datasets | 0.0.6 | gapfill | 0.9.6-1 |
GARCHSK | 0.1.0 | garchx | 1.5 |
gargle | 1.5.2 | garma | 0.9.13 |
GAS | 0.3.4 | gasmodel | 0.6.0 |
gaussquad | 1.0-3 | GaussSuppression | 0.8.8 |
gbm | 2.2.2 | gbutils | 0.5 |
gclus | 1.3.2 | GCPM | 1.2.2 |
gdalcubes | 0.7.0 | gdalraster | 1.10.0 |
gdalUtilities | 1.2.5 | gdata | 3.0.0 |
GDINA | 2.9.4 | gdistance | 1.6.4 |
gdpc | 1.1.4 | gdtools | 0.3.7 |
gear | 0.3.4 | gee | 4.13-27 |
geeM | 0.10.1 | geepack | 1.3.11 |
geigen | 2.3 | geiger | 2.0.11 |
genalg | 0.2.1 | gender | 0.6.0 |
GeneCycle | 1.1.5 | geneExpressionFromGEO | 0.9 |
genefilter | 1.86.0 | GeneNet | 1.2.16 |
GeneralizedHyperbolic | 0.8-6 | GeneralizedUmatrix | 1.2.6 |
generics | 0.1.3 | genetics | 1.3.8.1.3 |
geno2proteo | 0.0.6 | GenomeInfoDb | 1.40.1 |
GenomeInfoDbData | 1.2.12 | GenomicAlignments | 1.40.0 |
GenomicFeatures | 1.56.0 | GenomicRanges | 1.56.1 |
GenomicTools.fileHandler | 0.1.5.9 | genoPlotR | 0.8.11 |
GenSA | 1.1.14 | geobr | 1.9.0 |
geodist | 0.1.0 | geogrid | 0.1.2 |
geojson | 0.3.5 | geojsonio | 0.11.3 |
geojsonsf | 2.0.3 | GEOmap | 2.5-5 |
geomapdata | 2.0-2 | geometa | 0.8-0 |
GEOmetadb | 1.66.0 | geometries | 0.2.4 |
geometry | 0.4.7 | geomorph | 4.0.8 |
geomtextpath | 0.1.4 | geonames | 0.999 |
geonapi | 0.7-2 | GEOquery | 2.72.0 |
geoR | 1.9-4 | georob | 0.3-19 |
geos | 0.2.4 | geosapi | 0.7-1 |
geoscale | 2.0.1 | geosphere | 1.5-18 |
geospt | 1.0-4 | geostan | 0.6.2 |
geotopbricks | 1.5.8.2 | geouy | 0.2.8 |
gert | 2.0.1 | GET | 1.0-2 |
GetoptLong | 1.0.5 | getPass | 0.2-4 |
gets | 0.37 | GetTDData | 1.5.5 |
gfonts | 0.2.0 | ggalluvial | 0.12.5 |
GGally | 2.2.1 | ggalt | 0.4.0 |
gganimate | 1.0.9 | ggcharts | 0.2.1 |
ggdag | 0.2.12 | ggdemetra | 0.2.8 |
ggdendro | 0.2.0 | ggdist | 3.3.2 |
ggExtra | 0.10.1 | ggfittext | 0.10.2 |
ggforce | 0.4.2 | ggformula | 0.12.0 |
ggfortify | 0.4.17 | ggfun | 0.1.5 |
gggenes | 0.5.1 | gghalves | 0.1.4 |
ggimage | 0.3.3 | gginnards | 0.2.0 |
ggkegg | 1.2.1 | gglasso | 1.5.1 |
ggm | 2.5.1 | ggmap | 4.0.0 |
ggmcmc | 1.5.1.1 | ggmuller | 0.5.6 |
ggnetwork | 0.5.13 | ggnewscale | 0.4.10 |
ggokabeito | 0.1.0 | ggpath | 1.0.1 |
ggplot2 | 3.5.1 | ggplotify | 0.1.2 |
ggpmisc | 0.6.0 | ggpp | 0.5.8 |
ggpubr | 0.6.0 | ggquiver | 0.3.3 |
ggraph | 2.2.1 | ggrepel | 0.9.5 |
ggridges | 0.5.6 | ggsci | 3.2.0 |
ggseas | 0.5.4 | ggseqlogo | 0.2 |
ggsignif | 0.6.4 | ggsn | 0.5.0 |
ggsoccer | 0.1.7 | ggspatial | 1.1.9 |
ggstance | 0.3.7 | ggstats | 0.6.0 |
ggtext | 0.1.2 | ggthemes | 5.1.0 |
ggtree | 3.12.0 | ggupset | 0.4.0 |
ggvis | 0.4.9 | gh | 1.4.1 |
ghyp | 1.6.4 | Gifi | 0.4-0 |
gifti | 0.8.0 | GIGrvg | 0.8 |
gimme | 0.7-18 | giscoR | 0.5.0 |
gistr | 0.9.0 | git2r | 0.33.0 |
gitcreds | 0.1.2 | gitlabr | 2.1.0 |
glarma | 1.6-0 | GlarmaVarSel | 1.0 |
glasso | 1.11 | glassoFast | 1.0.1 |
gld | 2.6.6 | glm2 | 1.2.1 |
glmmML | 1.1.6 | GLMMRR | 0.5.0 |
glmmSeq | 0.5.5 | glmmTMB | 1.1.9 |
glmnet | 4.1-8 | glmx | 0.2-0 |
GlobalOptions | 0.1.2 | globalOptTests | 1.1 |
globals | 0.16.3 | globaltest | 5.58.0 |
glpkAPI | 1.3.4 | glue | 1.7.0 |
gmailr | 2.0.0 | GMDH | 1.6 |
Gmedian | 1.2.7 | gmm | 1.8 |
gmnl | 1.1-3.2 | gmodels | 2.19.1 |
gmp | 0.7-4 | gmt | 2.0.3 |
gmvarkit | 2.1.2 | GNAR | 1.1.3 |
gnm | 1.1-5 | GO.db | 3.19.1 |
goftest | 1.2-3 | gogarch | 0.7-5 |
golem | 0.4.1 | gontr | 1.1.0 |
googleAnalyticsR | 1.1.0 | googleAuthR | 2.0.2 |
googleCloudStorageR | 0.7.0 | googleComputeEngineR | 0.3.0 |
googledrive | 2.1.1 | googleLanguageR | 0.3.0 |
googlePolylines | 0.8.4 | googlesheets4 | 1.1.1 |
googleVis | 0.7.3 | googleway | 2.7.8 |
GOSemSim | 2.30.0 | gower | 1.0.1 |
GOxploreR | 1.2.7 | GPareto | 1.1.8 |
GPArotation | 2024.3-1 | GPCMlasso | 0.1-7 |
GPfit | 1.0-8 | gplots | 3.1.3.1 |
GPRMortality | 0.1.0 | gprofiler2 | 0.2.3 |
gradethis | 0.2.12.9004 | graDiEnt | 1.0.1 |
gRain | 1.4.1 | grantham | 0.1.1 |
graph | 1.82.0 | graphicalVAR | 0.3.4 |
graphite | 1.50.0 | graphlayouts | 1.1.1 |
graphsim | 1.0.3 | graphTweets | 0.5.3 |
grates | 1.2.1 | gratis | 1.0.7 |
gravitas | 0.1.3 | gravity | 1.1 |
gRbase | 2.0.2 | greeks | 1.4.2 |
greta | 0.4.5 | greybox | 2.0.1 |
grf | 2.3.2 | gridBase | 0.4-7 |
gridExtra | 2.3 | gridGraphics | 0.5-1 |
gridSVG | 1.7-5 | gridtext | 0.1.5 |
grImport | 0.9-7 | grImport2 | 0.3-1 |
grnn | 0.1.0 | groundhog | 3.2.0 |
GroupSeq | 1.4.3 | grplasso | 0.4-7 |
grwat | 0.0.4 | GSA | 1.03.3 |
gsarima | 0.1-5 | gsDesign | 3.6.2 |
GSEABase | 1.66.0 | gSEM | 0.4.3.4 |
gsheet | 0.4.5 | gsignal | 0.3-5 |
gsisdecoder | 0.0.1 | gsl | 2.1-8 |
gslnls | 1.3.2 | GSODR | 4.0.0 |
gson | 0.1.0 | gss | 2.2-7 |
gstat | 2.1-1 | gsubfn | 0.7 |
GSVA | 1.52.3 | GSVAdata | 1.40.0 |
gsw | 1.1-1 | gsynth | 1.2.1 |
gt | 0.10.1 | gtable | 0.3.5 |
gtheory | 0.1.2 | gtools | 3.9.5 |
gtop | 0.2.0 | gtrendsR | 1.5.1 |
gtsummary | 1.7.2 | GUIDE | 1.2.7 |
gumboot | 1.0.1 | GUniFrac | 1.8 |
gustave | 1.0.0 | gvc | 6.4.0 |
gwavr | 0.3.1 | gWidgets2 | 1.0-9 |
GWmodel | 2.3-2 | gwrr | 0.2-2 |
GWSDAT | 3.2.1 | h2o | 3.44.0.3 |
hackeRnews | 0.1.0 | HandTill2001 | 1.0.1 |
HaploSim | 1.8.4.2 | hardhat | 1.4.0 |
hash | 2.2.6.3 | haven | 2.5.4 |
hbsae | 1.2 | HBV.IANIGLA | 0.2.6 |
HDF5Array | 1.32.0 | hdf5r | 1.3.10 |
hdi | 0.1-9 | HDInterval | 0.2.4 |
hdm | 0.3.2 | HDMT | 1.0.5 |
HDO.db | 0.99.1 | hdrcde | 3.4 |
HDShOP | 0.1.5 | HDTSA | 1.0.3 |
heatmaply | 1.5.0 | hellno | 0.0.1 |
heplots | 1.7.0 | here | 1.0.1 |
hett | 0.3-3 | hexbin | 1.28.3 |
hexSticker | 0.4.9 | hflights | 0.1 |
hglm | 2.2-1 | hglm.data | 1.0-1 |
hgnc | 0.1.4 | HGNChelper | 0.8.14 |
hgu95a.db | 3.13.0 | HH | 3.1-52 |
hht | 2.1.6 | HiClimR | 2.2.1 |
highcharter | 0.9.4 | highfrequency | 1.0.1 |
highlight | 0.5.1 | highr | 0.11 |
highs | 0.1-10 | HIMA | 2.2.1 |
hipread | 0.2.4 | hisse | 2.1.11 |
HistData | 0.9-1 | HKRbook | 0.1.3 |
HLMdiag | 0.5.0 | HMDHFDplus | 2.0.3 |
Hmisc | 5.1-3 | HMMpa | 1.0.1 |
HMP | 2.0.1 | HMPTrees | 1.4 |
hms | 1.1.3 | hoardr | 0.5.4 |
homals | 1.0-10 | hommel | 1.6 |
hoopR | 2.1.0 | hot.deck | 1.2 |
howzatR | 1.0.1 | hpfilter | 1.0.2 |
HRW | 1.0-5 | HSAUR3 | 1.0-14 |
hsstan | 0.8.2 | htm2txt | 2.2.2 |
htmlTable | 2.4.2 | htmltools | 0.5.8.1 |
HTMLUtils | 0.1.9 | htmlwidgets | 1.6.4 |
hts | 6.0.2 | HTSCluster | 2.0.11 |
htsr | 2.1.4 | httpcache | 1.2.0 |
httpcode | 0.3.0 | httping | 0.2.0 |
httpRequest | 0.0.11 | httptest | 4.2.2 |
httpuv | 1.6.15 | httr | 1.4.7 |
httr2 | 1.0.1 | hubeau | 0.5.0 |
humanFormat | 1.2 | humanize | 0.2.0 |
humidity | 0.1.5 | hunspell | 3.0.3 |
hurricaneexposure | 0.1.1 | hutils | 1.8.1 |
huxtable | 5.5.6 | hwriter | 1.3.2.1 |
hwwntest | 1.3.2 | hydraulics | 0.7.0 |
hydroEvents | 0.11 | hydrogeo | 0.6-1 |
hydroGOF | 0.6-0 | hydroloom | 1.0.2 |
HydroMe | 2.1.1 | hydropeak | 0.1.2 |
hydroroute | 0.1.2 | hydrostats | 0.2.9 |
hydrotoolbox | 1.1.2 | hydroTSM | 0.7-0 |
hyfo | 1.4.6 | HyperbolicDist | 0.6-5 |
hypergeo | 1.2-13 | i2extras | 0.2.1 |
iarm | 0.4.3 | ibd | 1.6 |
ibdreg | 0.3.8 | IBMPopSim | 1.0.0 |
iBreakDown | 2.1.2 | IBrokers | 0.10-2 |
ica | 1.0-3 | ICAMS | 2.3.12 |
ICAOD | 1.0.1 | iCARH | 2.0.2.1 |
icarus | 0.3.2 | ICBioMark | 0.1.4 |
ICC | 2.4.0 | iccbeta | 1.2.0 |
ICDS | 0.1.2 | iCellR | 1.6.7 |
Icens | 1.76.0 | ICGE | 0.4.2 |
ichimoku | 1.5.3 | ICS | 1.4-1 |
ICSNP | 1.1-2 | ICtest | 0.3-5 |
idbr | 1.2 | IDE | 0.3.1 |
idefix | 1.0.3 | idendr0 | 1.5.3 |
IDF | 2.1.2 | IDPmisc | 1.1.21 |
ids | 1.0.1 | ie2misc | 0.9.1 |
ie2miscdata | 1.0.4 | iemisc | 1.0.5 |
iemiscdata | 1.0.2 | IETD | 1.0.0 |
ifaTools | 0.23 | igraph | 2.0.3 |
igraphdata | 1.0.1 | illuminaio | 0.46.0 |
imbibe | 0.1.1 | imguR | 1.0.3 |
IMIX | 1.1.5 | immer | 1.5-13 |
immunarch | 0.9.1 | imp4p | 1.2 |
implied | 0.5 | implyr | 0.5.0 |
import | 1.3.2 | impute | 1.78.0 |
imputeLCMD | 2.1 | imputeTestbench | 3.0.3 |
imputeTS | 3.3 | imsig | 1.1.3 |
inca | 0.0.4 | IncDTW | 1.1.4.4 |
incidence | 1.7.5 | incidence2 | 2.3.1 |
inctools | 1.0.15 | inegiR | 3.0.0 |
ineq | 0.2-13 | infer | 1.0.7 |
influence.SEM | 2.3 | influenceR | 0.1.5 |
influxdbr | 0.14.2 | infotheo | 1.2.0.1 |
InfoTrad | 1.2 | ingredients | 2.3.0 |
ini | 0.3.1 | injurytools | 1.0.3 |
inline | 0.3.19 | insee | 1.1.5 |
insight | 0.20.1 | InspectChangepoint | 1.2 |
instaR | 0.2.4 | insuranceData | 1.0 |
insurancerating | 0.7.4 | intamap | 1.5-7 |
integIRTy | 1.0.7 | InteRD | 0.1.1 |
interep | 0.4.1 | interleave | 0.1.2 |
interp | 1.1-6 | InterpretMSSpectrum | 1.4.5 |
intervals | 0.15.4 | inum | 1.0-5 |
investr | 1.4.2 | invgamma | 1.1 |
ioncopy | 2.2.2 | iotables | 0.9.3 |
iotools | 0.3-5 | ipaddress | 1.0.2 |
ipdw | 2.0-0 | ipfp | 1.0.2 |
ipred | 0.9-14 | ips | 0.0.12 |
ipumsr | 0.7.2 | iq | 1.9.12 |
irace | 3.5 | IRanges | 2.38.0 |
IRdisplay | 1.1 | IRkernel | 1.3.2 |
irlba | 2.3.5.1 | irr | 0.84.1 |
irtDemo | 0.1.4 | irtoys | 0.2.2 |
irtrees | 1.0.0 | IRTShiny | 1.2 |
isdparser | 0.4.0 | IsingFit | 0.4 |
IsingSampler | 0.2.3 | ISLR | 1.4 |
ismev | 1.42 | Iso | 0.0-21 |
isoband | 0.2.7 | ISOcodes | 2024.02.12 |
IsoGene | 1.0-24 | isotone | 1.1-1 |
isoWater | 1.1.2 | ISOweek | 0.6-2 |
ISwR | 2.0-8 | iterators | 1.0.14 |
iterLap | 1.1-4 | itertools | 0.1-3 |
itscalledsoccer | 0.2.4 | itsmr | 1.10 |
ivprobit | 1.1 | ivreg | 0.6-3 |
JADE | 2.0-4 | jalcal | 0.1.0 |
janeaustenr | 1.0.0 | janitor | 2.2.0 |
JavaGD | 0.6-5 | JBrowseR | 0.10.2 |
jetset | 3.4.0 | jiebaR | 0.11 |
jiebaRD | 0.1 | jjb | 0.1.1 |
JMdesign | 1.5 | jointCalib | 0.1.0 |
jointDiag | 0.4 | jomo | 2.7-6 |
JoSAE | 0.3.0 | jose | 1.2.0 |
jpeg | 0.1-10 | jqr | 1.3.3 |
jquerylib | 0.1.4 | jrt | 1.1.2 |
js | 1.2 | jsonify | 1.2.2 |
jsonlite | 1.8.8 | jsonvalidate | 1.3.2 |
JSparO | 1.5.0 | jstor | 0.3.11 |
juicyjuice | 0.1.0 | JuliaConnectoR | 1.1.3 |
JWileymisc | 1.4.1 | kableExtra | 1.4.0 |
kalmanfilter | 2.1.1 | kappaSize | 1.2 |
kDGLM | 1.2.0 | KEGGgraph | 1.64.0 |
KEGGREST | 1.44.1 | kelvin | 2.0-2 |
Kendall | 2.2.1 | kequate | 1.6.4 |
keras | 2.15.0 | keras3 | 1.0.0.9001 |
kernelFactory | 0.3.0 | kernlab | 0.9-32 |
keyperm | 0.1.1 | keyring | 1.3.2 |
KFAS | 1.5.1 | kfigr | 1.2.1 |
kinship2 | 1.9.6.1 | kitagawa | 3.1.2 |
kiwisR | 0.2.0 | klaR | 1.7-3 |
klsh | 0.1.0 | km.ci | 0.5-6 |
kmer | 1.1.2 | KMsurv | 0.1-5 |
knitcitations | 1.0.12 | knitLatex | 0.9.0 |
knitr | 1.47 | kofnGA | 1.3 |
koRpus | 0.13-8 | KrigInv | 1.4.2 |
KRIS | 1.1.6 | krm | 2022.10-17 |
ks | 1.14.2 | kst | 0.5-4 |
kutils | 1.73 | kyotil | 2024.5-8 |
kza | 4.1.0.1 | labdsv | 2.1-0 |
label.switching | 1.8 | labeling | 0.4.3 |
labelled | 2.13.0 | labelVector | 0.1.2 |
laeken | 0.5.3 | LaF | 0.8.4 |
lagged | 0.3.2 | laGP | 1.5-9 |
Lahman | 11.0-0 | lakemorpho | 1.3.2 |
LAM | 0.6-19 | lambda.r | 1.2.4 |
lamW | 2.2.4 | landsat | 1.1.2 |
landscapemetrics | 2.1.3 | languagelayeR | 1.2.4 |
languageR | 1.5.0 | LaplacesDemon | 16.1.6 |
LARF | 1.4 | lars | 1.3 |
lassoshooting | 0.1.5-1.1 | latdiag | 0.3 |
later | 1.3.2 | latex2exp | 0.9.6 |
latticeExtra | 0.6-30 | LatticeKrig | 8.4 |
lava | 1.8.0 | lavaan | 0.6-18 |
lavaan.survey | 1.1.3.1 | LAWBL | 1.5.0 |
lazyeval | 0.2.2 | lazyWeave | 3.0.2 |
lbfgs | 1.2.1.2 | lbfgsb3c | 2024-3.4 |
LCAvarsel | 1.1 | lcda | 0.3.2 |
lcmm | 2.1.0 | lctools | 0.2-10 |
lda | 1.5.2 | ldat | 0.3.3 |
ldbounds | 2.0.2 | leafem | 0.2.3 |
leaflet | 2.2.2 | leaflet.extras | 2.0.0 |
leaflet.providers | 2.0.0 | leafpm | 0.1.0 |
leafpop | 0.1.0 | leafsync | 0.1.0 |
leapp | 1.3 | leaps | 3.2 |
LearnBayes | 2.15.1 | learnr | 0.11.5 |
legion | 0.1.2 | leiden | 0.4.3.1 |
leidenAlg | 1.1.3 | lfactors | 1.0.4 |
lfe | 3.0-0 | lfstat | 0.9.12 |
lgarch | 0.6-2 | lgr | 0.4.4 |
lgtdl | 1.1.5 | lhs | 1.1.6 |
libcoin | 1.0-10 | libgeos | 3.11.1-2 |
LiblineaR | 2.10-23 | lidR | 4.1.1 |
lifecontingencies | 1.3.11 | lifecycle | 1.0.4 |
LifeInsuranceContracts | 0.0.6 | LifeInsureR | 1.0.0 |
liftr | 0.9.2 | liger | 2.0.1 |
lilikoi | 2.1.1 | LIM | 1.4.7.1 |
limma | 3.60.3 | limSolve | 1.5.7.1 |
linelist | 1.1.4 | lineup | 0.42 |
lineup2 | 0.6 | link2GI | 0.6-1 |
linpk | 1.1.2 | linprog | 0.9-4 |
LinRegInteractive | 0.3-3 | lintools | 0.1.7 |
lisrelToR | 0.3 | listcomp | 0.4.1 |
listenv | 0.9.1 | liteq | 1.1.0 |
lmds | 0.1.0 | lme4 | 1.1-35.4 |
lmerTest | 3.1-3 | lmForc | 0.1.0 |
lmm | 1.4 | lmodel2 | 1.7-3 |
lmom | 3.0 | lmomco | 2.5.1 |
Lmoments | 1.3-1 | lmomRFA | 3.6 |
lmQCM | 0.2.4 | lmtest | 0.9-40 |
LNIRT | 0.5.1 | lobstr | 1.1.2 |
locfit | 1.5-9.10 | locits | 1.7.7 |
locpol | 0.8.0 | log4r | 0.4.3 |
logger | 0.3.0 | logging | 0.10-108 |
logitnorm | 0.8.39 | logitr | 1.1.1 |
logspline | 2.1.22 | lokern | 1.1-11 |
lomb | 2.5.0 | longCatEDA | 0.31 |
longitudinal | 1.1.13 | longitudinalData | 2.4.5.1 |
longmemo | 1.1-2 | LongMemoryTS | 0.1.0 |
longpower | 1.0.25 | longurl | 0.3.3 |
loo | 2.7.0 | lordif | 0.3-3 |
lotri | 0.4.3 | LowRankQP | 1.0.6 |
lpacf | 1.0.1 | lpdensity | 2.4 |
lpirfs | 0.2.3 | LPM | 3.2 |
LPS | 1.0.16 | lpSolve | 5.6.20 |
lpSolveAPI | 5.5.2.0-17.11 | lsa | 0.73.3 |
lsei | 1.3-0 | lsl | 0.5.6 |
lslx | 0.6.11 | LSMonteCarlo | 1.0 |
LSMRealOptions | 0.2.1 | LSPFP | 1.0.3 |
LSTS | 2.1 | LSWPlib | 0.1.0 |
ltm | 1.2-0 | ltsa | 1.4.6 |
lubridate | 1.9.3 | LUCIDus | 3.0.1 |
lulcc | 1.0.4 | Luminescence | 0.9.24 |
lutz | 0.3.2 | luz | 0.4.0 |
lvec | 0.2.5 | lvnet | 0.3.5 |
lvplot | 0.2.1 | LWFBrook90R | 0.5.3 |
lwgeom | 0.2-14 | M3C | 1.26.0 |
m5 | 0.1.1 | MAAPER | 1.1.1 |
maat | 1.1.0 | madrat | 3.6.4 |
maftools | 2.20.0 | magclass | 6.13.2 |
magic | 1.6-1 | magick | 2.8.3 |
magrittr | 2.0.3 | maGUI | 4.0 |
mailR | 0.8 | makeit | 1.0.1 |
makepipe | 0.2.1 | makeProject | 1.0 |
malariaAtlas | 1.5.1 | MAMS | 2.0.2 |
manhattanly | 0.3.0 | ManifoldOptim | 1.0.1 |
manipulate | 1.0.1 | manipulateWidget | 0.11.1 |
MaOEA | 0.6.2 | Map2NCBI | 1.4 |
MAPA | 2.0.7 | mapdata | 2.3.1 |
mapdeck | 0.3.5 | mapedit | 0.6.0 |
mapiso | 0.3.0 | maplegend | 0.1.0 |
mapme.biodiversity | 0.7.0 | mapmisc | 2.1.0 |
mapproj | 1.2.11 | maps | 3.4.2 |
mapsapi | 0.5.4 | mapsf | 0.10.1 |
mapSpain | 0.9.1 | maptiles | 0.7.0 |
maptools | 1.1-8 | maptpx | 1.9-7 |
maptree | 1.4-8 | mapview | 2.11.2 |
mAr | 1.2-0 | mar1s | 2.1.1 |
marcher | 0.0-2 | marginaleffects | 0.21.0 |
margins | 0.3.27 | markdown | 1.13 |
markerpen | 0.1.1 | markophylo | 1.0.9 |
markovchain | 0.9.5 | MarkowitzR | 1.0.3 |
marmap | 1.0.10 | marqLevAlg | 2.0.8 |
MARSS | 3.11.9 | MassSpecWavelet | 1.70.0 |
Matching | 4.10-14 | matchingMarkets | 1.0-4 |
matchingR | 1.3.3 | MatchIt | 4.5.5 |
matchmaker | 0.1.1 | MatchThem | 1.2.1 |
mathjaxr | 1.6-0 | mathpix | 0.6.0 |
matlab | 1.0.4 | matlab2r | 1.5.0 |
matlabr | 1.5.2 | matrixcalc | 1.0-6 |
MatrixExtra | 0.1.15 | MatrixGenerics | 1.16.0 |
MatrixModels | 0.5-3 | matrixset | 0.3.0 |
matrixStats | 1.3.0 | matrixTests | 0.2.3 |
mauricer | 2.5.4 | maxLik | 1.5-2.1 |
MaxPro | 4.1-2 | maxstat | 0.7-25 |
MBA | 0.1-0 | mbbefd | 0.8.11 |
MBBEFDLite | 0.0.3 | MBC | 0.10-6 |
MBESS | 4.9.3 | MBHdesign | 2.3.15 |
mblm | 0.12.1 | mboost | 2.9-10 |
mbsts | 3.0 | mc2d | 0.2.1 |
MCAvariants | 2.6.1 | mcclust | 1.0.1 |
mcga | 3.0.7 | mclcar | 0.2-0 |
mclust | 6.1.1 | mcmc | 0.9-8 |
MCMC.qpcr | 1.2.4 | mcmcensemble | 3.1.0 |
MCMCglmm | 2.36 | MCMCpack | 1.7-0 |
mcmcse | 1.5-0 | MCMCvis | 0.16.3 |
mco | 1.16 | Mcomp | 2.8 |
mcompanion | 0.6 | MCPMod | 1.0-10.1 |
mdftracks | 0.2.2 | measurementProtocol | 0.1.1 |
measurements | 1.5.1 | meboot | 1.4-9.4 |
medflex | 0.6-10 | Mediana | 1.0.8 |
mediation | 4.5.0 | MEIGOR | 1.38.0 |
mem | 2.18 | memapp | 2.16 |
memisc | 0.99.31.7 | memoise | 2.0.1 |
MEMSS | 0.9-3 | memuse | 4.2-3 |
MESS | 0.5.12 | meta | 7.0-0 |
metaboData | 0.6.3 | MetabolAnalyze | 1.3.1 |
MetabolicSurv | 1.1.2 | MetabolomicsBasics | 1.4.5 |
metacoder | 0.3.7 | metadat | 1.2-0 |
metafor | 4.6-0 | metaheuristicOpt | 2.0.0 |
MetaIntegrator | 2.1.3 | metaMA | 3.1.3 |
metap | 1.10 | metaplot | 0.8.4 |
metaRNASeq | 1.0.7 | metaSEM | 1.4.0 |
metasens | 1.5-2 | meteo | 2.0-3 |
meteoland | 2.2.1 | metR | 0.15.0 |
Metrics | 0.1.4 | metRology | 0.9-28-1 |
MetSizeR | 2.0.0 | mev | 1.16 |
mFilter | 0.1-5 | Mfuzz | 2.64.0 |
mfx | 1.2-2 | mgm | 1.2-14 |
mgsub | 1.7.3 | mhurdle | 1.3-1 |
mi | 1.1 | mi4p | 1.1 |
mice | 3.16.0 | miceadds | 3.17-44 |
micEcon | 0.6-18 | micEconAids | 0.6-20 |
micEconCES | 1.0-2 | micEconIndex | 0.1-8 |
micEconSNQP | 0.6-10 | microbenchmark | 1.4.10 |
micromap | 1.9.8 | microsamplingDesign | 1.0.8 |
Microsoft365R | 2.4.0 | MicSim | 2.0.1 |
midasr | 0.8 | miic | 1.5.3 |
MIIVsem | 0.5.8 | mime | 0.12 |
mind | 1.1.0 | MinEDfind | 0.1.3 |
minerva | 1.5.10 | minet | 3.62.0 |
miniCRAN | 0.3.0 | minimalRSD | 1.0.0 |
minimaxdesign | 0.1.5 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-4 | minqa | 1.2.7 |
MINTplates | 1.0.1 | minty | 0.0.1 |
mipfp | 3.2.1 | mirai | 1.1.0 |
MiRNAQCD | 1.1.3 | mirt | 1.41 |
mirtCAT | 1.13 | misc3d | 0.9-1 |
miscTools | 0.6-28 | missForest | 1.5 |
missMDA | 1.19 | mitml | 0.4-5 |
mitools | 2.4 | mix | 1.0-12 |
mixAR | 0.22.8 | MixedPsy | 1.1.0 |
mixexp | 1.2.7 | mixl | 1.3.4 |
mixOmics | 6.28.0 | mixsqp | 0.3-54 |
mixtools | 2.0.0 | mize | 0.2.4 |
mknapsack | 0.1.0 | mkssd | 1.2 |
mlapi | 0.1.1 | mlbench | 2.1-5 |
mlbstats | 0.1.0 | MLCIRTwithin | 2.1.1 |
MLDS | 0.5.1 | MLmetrics | 1.1.3 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlogitBMA | 0.1-7 | mlr | 2.19.2 |
mlr3 | 0.20.0 | mlr3learners | 0.7.0 |
mlr3measures | 0.5.0 | mlr3misc | 0.15.1 |
mlr3spatiotempcv | 2.3.1 | mlr3tuning | 0.20.0 |
mlrMBO | 1.1.5.1 | mlVAR | 0.5.2 |
mma | 10.7-1 | mmand | 1.6.3 |
mmrm | 0.3.12 | mnormt | 2.1.1 |
MNP | 3.1-5 | modeest | 2.4.0 |
modeldata | 1.4.0 | modelenv | 0.1.1 |
ModelMap | 3.4.0.4 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.11 | modelSSE | 0.1-3 |
modelsummary | 2.1.1 | modeltime | 1.2.8 |
modeltime.ensemble | 1.0.3 | modeltime.resample | 0.2.3 |
modeltools | 0.2-23 | moderndive | 0.5.5 |
MODISTools | 1.1.5 | MODIStsp | 2.1.0 |
modules | 0.13.0 | mokken | 3.1.2 |
mombf | 3.5.4 | moments | 0.14.1 |
momentuHMM | 1.5.5 | mondate | 1.0 |
mongolite | 2.8.0 | mongopipe | 0.1.1 |
monmlp | 1.1.5 | monobin | 0.2.4 |
Morpho | 2.12 | MortalityGaps | 1.0.0 |
MortalityLaws | 2.1.0 | MortalityTables | 2.0.5 |
MortCast | 2.7-0 | mosaic | 1.9.1 |
mosaicCore | 0.9.4.0 | mosaicData | 0.20.4 |
MOSS | 0.2.2 | mosum | 1.2.7 |
motmot | 2.1.3 | mousetrap | 3.2.3 |
move | 4.2.4 | move2 | 0.3.0 |
movecost | 2.1 | moveHMM | 1.9 |
moveWindSpeed | 0.2.4 | movMF | 0.2-8 |
MPDiR | 0.2 | MplusAutomation | 1.1.1 |
mpm | 1.0-23 | mpmi | 0.43.2.1 |
MPSEM | 0.4-1 | mpt | 0.8-0 |
MPTinR | 1.14.1 | MPV | 1.63 |
mratios | 1.4.2 | mrf | 0.1.6 |
mrgsolve | 1.4.1 | mritc | 0.5-3 |
mschart | 0.4.0 | mscstexta4r | 0.1.2 |
mscsweblm4r | 0.1.2 | MSGARCH | 2.51 |
msgps | 1.3.5 | msigdbr | 7.5.1 |
msm | 1.7.1 | msos | 1.2.0 |
mssm | 0.1.6 | MSSQL | 1.0.0 |
mstate | 0.3.2 | MSwM | 1.5 |
mtarm | 0.1.1 | MTS | 1.2.1 |
mtsdi | 0.3.5 | mudfold | 1.1.21 |
multcomp | 1.4-25 | multcompView | 0.1-10 |
multDM | 1.1.4 | multicool | 1.0.1 |
MultiGlarmaVarSel | 1.0 | MultiLCIRT | 2.11 |
multilevLCA | 1.5.1 | MultipleBubbles | 0.2.0 |
multiplex | 3.3-2 | multipol | 1.0-9 |
multitaper | 1.0-17 | multiway | 1.0-6 |
multiwayvcov | 1.2.3 | multtest | 2.60.0 |
MuMIn | 1.48.4 | munfold | 0.3.5 |
munsell | 0.5.1 | musica | 0.1.3 |
mutoss | 0.1-13 | mutSignatures | 2.1.1 |
mvgam | 1.1.1 | mvglmmRank | 1.2-4 |
mvLSW | 1.2.5 | mvLSWimpute | 0.1.1 |
mvMORPH | 1.1.9 | mvnfast | 0.2.8 |
mvnormtest | 0.1-9-3 | mvQuad | 1.0-8 |
mvtnorm | 1.2-5 | mvtsplot | 1.0-4 |
mxkssd | 1.2 | myClim | 1.1.0 |
n1qn1 | 6.0.1-11 | N2R | 1.0.3 |
nabor | 0.5.0 | NACHO | 2.0.6 |
NADA | 1.6-1.1 | NAEPirtparams | 1.0.0 |
NAEPprimer | 1.0.1 | nanoarrow | 0.5.0.1 |
nanonext | 1.1.1 | nanostringr | 0.4.2 |
nanotime | 0.3.9 | nardl | 0.1.6 |
nasapower | 4.2.1 | natserv | 1.0.0 |
naturalsort | 0.1.3 | NBAloveR | 0.1.3.3 |
nbapalettes | 0.1.0 | NBBttest | 1.0.1 |
NbClust | 3.0.1 | NBPSeq | 0.3.1 |
nbTransmission | 1.1.4 | ncappc | 0.3.0 |
ncar | 0.5.0 | ncbit | 2013.03.29.1 |
ncdf4 | 1.22 | ncdfgeom | 1.1.6 |
ncf | 1.3-2 | ncmeta | 0.4.0 |
NCmisc | 1.2.0 | ncvreg | 3.14.2 |
ndjson | 0.9.0 | neighbours | 0.1-3 |
neldermead | 1.0-12 | neo2R | 2.4.2 |
net4pg | 0.1.1 | netgsa | 4.0.5 |
NetIndices | 1.4.4.1 | nets | 0.9.1 |
NetSimR | 0.1.5 | network | 1.18.2 |
networkABC | 0.8-1 | NetworkChange | 0.8 |
NetworkComparisonTest | 2.2.2 | networkD3 | 0.4 |
networkDynamic | 0.11.4 | networkLite | 1.0.5 |
NetworkRiskMeasures | 0.1.4 | NetworkToolbox | 1.4.2 |
networktools | 1.5.2 | networktree | 1.0.1 |
neuralnet | 1.44.2 | NeuralNetTools | 1.5.3 |
neurobase | 1.32.4 | neuroim | 0.0.6 |
neuRosim | 0.2-14 | NewmanOmics | 1.0.11 |
nFactors | 2.4.1.1 | NFCP | 1.2.1 |
nfl4th | 1.0.4 | nflfastR | 4.6.1 |
nflplotR | 1.3.1 | nflreadr | 1.4.0 |
nflseedR | 1.2.0 | NFLSimulatoR | 0.4.0 |
nflverse | 1.0.3 | ngspatial | 1.2-2 |
nhanesA | 1.1 | nhdplusTools | 1.2.1 |
nhdR | 0.6.1 | nhlapi | 0.1.4 |
NHLData | 1.0.0 | nhlscrape | 0.1.3 |
NHPoisson | 3.3 | nifti.io | 1.0.0 |
nilde | 1.1-7 | nimble | 1.2.0 |
NISTnls | 0.9-13 | NlcOptim | 0.6 |
nleqslv | 3.3.5 | NlinTS | 1.4.5 |
nlmeVPC | 2.6 | nlmixr2 | 2.1.2 |
nlmixr2data | 2.0.9 | nlmixr2est | 2.2.2 |
nlmixr2extra | 2.0.10 | nlmixr2plot | 2.0.9 |
nlmixr2rpt | 0.2.0 | nloptr | 2.1.1 |
NLP | 0.2-1 | nls2 | 0.3-3 |
nlsem | 0.8-1 | nlsic | 1.0.4 |
nlsr | 2023.8.31 | nlstools | 2.1-0 |
nlt | 2.2-1 | nlts | 1.0-2 |
nLTT | 1.4.9 | NMF | 0.27 |
NMOF | 2.8-0 | nmw | 0.1.5 |
nnfor | 0.9.9 | nnls | 1.5 |
NNS | 10.8.2 | noaastormevents | 0.2.0 |
nodbi | 0.10.4 | nomisr | 0.4.7 |
nomnoml | 0.3.0 | NonCompart | 0.7.0 |
nonlinearTseries | 0.3.0 | nonmem2R | 0.2.5 |
nonmem2rx | 0.1.4 | nonmemica | 1.0.8 |
nonneg.cg | 0.1.6-1 | nonnest2 | 0.5-7 |
NonProbEst | 0.2.4 | nonprobsvy | 0.1.0 |
nor1mix | 1.3-3 | norm | 1.0-11.1 |
normalp | 0.7.2.1 | nortest | 1.0-4 |
nosoi | 1.1.2 | notifyme | 0.3.0 |
np | 0.60-17 | NPflow | 0.13.5 |
npi | 0.2.0 | nppbib | 1.2-0 |
NPRED | 1.0.7 | nsarfima | 0.2.0.0 |
nse | 1.21 | nsga2R | 1.1 |
nspmix | 1.5-0 | nsprcomp | 0.5.1-2 |
nsRFA | 0.7-17 | NTS | 1.1.3 |
numberize | 1.0.0 | numbers | 0.8-5 |
numDeriv | 2016.8-1.1 | NVAR | 0.1.0 |
nvmix | 0.1-1 | o2geosocial | 1.1.3 |
o2plsda | 0.0.18 | oai | 0.4.0 |
OAIHarvester | 0.3-4 | OasisR | 3.1.0 |
obAnalytics | 0.1.1 | objectProperties | 0.6.8 |
objectSignals | 0.10.3 | OBsMD | 11.1 |
occ | 1.1 | oce | 1.8-2 |
OCNet | 1.2.2 | octopus | 0.4.2 |
od | 0.4.4 | odbc | 1.5.0 |
odds.converter | 1.4.8 | oddsapiR | 0.0.3 |
odin | 1.2.5 | odpc | 2.0.5 |
odr | 1.4.4 | OECD | 0.2.5 |
oeli | 0.5.2 | officer | 0.6.6 |
ohoegdm | 0.1.0 | OmicNavigator | 1.13.13 |
omicwas | 0.8.0 | ompr | 1.0.4 |
omu | 1.1.2 | onbrand | 1.0.5 |
oncoPredict | 1.2 | onlineforecast | 1.0.2 |
onls | 0.1-2 | ontologyIndex | 2.12 |
oompaBase | 3.2.9 | oompaData | 3.1.4 |
OOR | 0.1.4 | opdisDownsampling | 1.0.1 |
OPDOE | 1.0-10 | openair | 2.18-2 |
opencage | 0.2.2 | opencpu | 2.2.12 |
opendotaR | 0.1.4 | openEBGM | 0.9.1 |
openintro | 2.5.0 | OpenML | 1.12 |
OpenMx | 2.21.11 | openNLP | 0.2-7 |
openNLPdata | 1.5.3-5 | openssl | 2.2.0 |
OpenStreetMap | 0.4.0 | openxlsx | 4.2.5.2 |
opera | 1.2.0 | operator.tools | 1.6.3 |
operators | 0.1-8 | optBiomarker | 1.0-28 |
OptCirClust | 0.0.4 | optextras | 2019-12.4 |
OptGS | 1.2 | OptHedging | 1.0 |
OptimalDesign | 1.0.1 | OptimaRegion | 1.2 |
optimbase | 1.0-10 | optimizeR | 1.1.1 |
optimParallel | 1.0-2 | optimsimplex | 1.0-8 |
optimx | 2023-10.21 | OptionPricing | 0.1.2 |
optiscale | 1.2.3 | optmatch | 0.10.7 |
ORCME | 2.0.2 | orderly | 1.4.3 |
ordinal | 2023.12-4 | ore | 1.7.4.1 |
org.Hs.eg.db | 3.19.1 | ORIClust | 1.0-2 |
oro.dicom | 0.5.3 | oro.nifti | 0.11.4 |
oro.pet | 0.2.7 | OrthoPanels | 1.2-4 |
orthopolynom | 1.0-6.1 | osd | 0.1 |
osDesign | 1.8 | osmdata | 0.2.5 |
osmextract | 0.5.1 | osqp | 0.6.3.3 |
osrm | 4.2.0 | otsad | 0.2.0 |
otsfeatures | 1.0.0 | ouch | 2.19 |
outbreaker2 | 1.1.3 | outbreaks | 1.9.0 |
outliers | 0.15 | OUwie | 2.10 |
overlapping | 2.1 | ows4R | 0.4 |
pa | 1.2-4 | packcircles | 0.3.6 |
packMBPLSDA | 0.9.0 | packrat | 0.9.2 |
padr | 0.6.2 | pageviews | 0.6.0 |
pagoda2 | 1.0.12 | PairedData | 1.1.1 |
pairwise | 0.6.1-0 | paleobuddy | 1.0.0 |
paleotree | 3.4.5 | paleoTS | 0.6.1 |
paletteer | 1.6.0 | palinsol | 1.0 |
palmerpenguins | 0.1.1 | pampe | 1.1.2 |
pan | 1.9 | pander | 0.6.5 |
panelaggregation | 0.1.1 | panelvar | 0.5.5 |
papeR | 1.0-5 | paradox | 1.0.0 |
ParallelLogger | 3.3.0 | parallelly | 1.37.1 |
parallelMap | 1.5.1 | parameters | 0.22.0 |
ParamHelpers | 1.14.1 | params | 0.7.3 |
paran | 1.5.3 | Pareto | 2.4.5 |
parma | 1.7 | parmigene | 1.1.0 |
parsedate | 1.3.1 | parsnip | 1.2.1 |
partitions | 1.10-7 | partsm | 1.1-3 |
parttime | 0.1.2 | party | 1.3-15 |
partykit | 1.2-20 | pastecs | 1.4.2 |
patchwork | 1.2.0 | pathfindR | 2.4.1 |
pathfindR.data | 2.1.0 | pathview | 1.44.0 |
pathwayTMB | 0.1.3 | Patterns | 1.5 |
paws | 0.6.0 | paws.analytics | 0.6.0 |
paws.application.integration | 0.6.0 | paws.common | 0.7.3 |
paws.compute | 0.6.1 | paws.cost.management | 0.6.1 |
paws.customer.engagement | 0.6.0 | paws.database | 0.6.0 |
paws.developer.tools | 0.6.0 | paws.end.user.computing | 0.6.0 |
paws.machine.learning | 0.6.0 | paws.management | 0.6.1 |
paws.networking | 0.6.0 | paws.security.identity | 0.6.1 |
paws.storage | 0.6.0 | pbapply | 1.7-2 |
PBD | 1.4 | pbdZMQ | 0.3-11 |
PBIBD | 1.3 | pbivnorm | 0.6.0 |
pbkrtest | 0.5.3 | pbm | 1.2.1 |
pbmcapply | 1.5.1 | pbo | 1.3.5 |
pbs | 1.1 | PBSddesolve | 1.13.4 |
PBSmapping | 2.73.4 | PBSmodelling | 2.69.3 |
pbv | 0.5-47 | PCA4TS | 0.1 |
pcaMethods | 1.96.0 | pcaPP | 2.0-4 |
pcdpca | 0.4 | pcFactorStan | 1.5.4 |
pcIRT | 0.2.4 | PCMRS | 0.1-4 |
pco | 1.0.1 | PCPS | 1.0.7 |
pcse | 1.9.1.1 | pcts | 0.15.7 |
pdc | 1.0.3 | pder | 1.0-2 |
pdfCluster | 1.0-4 | pdfetch | 0.2.9 |
pdftables | 0.1 | pdftools | 3.4.0 |
pdist | 1.2.1 | pdp | 0.8.1 |
pdR | 1.9.2 | pdynmc | 0.9.10 |
peacots | 1.3.2 | PeakError | 2023.9.4 |
PeakSegDisk | 2023.11.27 | PeakSegJoint | 2024.6.27 |
PeakSegOptimal | 2024.1.24 | PearsonDS | 1.3.1 |
pedigree | 1.4.2 | PeerPerformance | 2.2.5 |
penalized | 0.9-52 | penaltyLearning | 2024.1.25 |
penppml | 0.2.3 | Peptides | 2.4.6 |
perARMA | 1.7 | perfectphyloR | 0.2.1 |
performance | 0.12.0 | PerformanceAnalytics | 2.0.4 |
permPATH | 1.3 | permute | 0.9-7 |
pglm | 0.2-3 | PGM2 | 1.0-1 |
ph2bayes | 0.0.2 | ph2bye | 0.1.4 |
phangorn | 2.11.1 | pharmaRTF | 0.1.4 |
pharmr | 1.0.1 | phateR | 1.0.7 |
pheatmap | 1.0.12 | philentropy | 0.8.0 |
phonics | 1.3.10 | phonTools | 0.2-2.2 |
phyclust | 0.1-34 | phyext2 | 0.0.4 |
phylobase | 0.8.12 | phylocanvas | 0.1.3 |
phyloclim | 0.9.5 | PHYLOGR | 1.0.11 |
phylogram | 2.1.0 | phylolm | 2.6.2 |
phyloregion | 1.0.8 | phyloseq | 1.48.0 |
phylosignal | 1.3.1 | phylotate | 1.3 |
phylotools | 0.2.2 | phyloTop | 2.1.2 |
phyreg | 1.0.2 | phytools | 2.3-0 |
picante | 1.8.2 | picasso | 1.3.1 |
pid | 0.50 | piecewiseSEM | 2.3.0.1 |
piggyback | 0.1.5 | pillar | 1.9.0 |
pinfsc50 | 1.3.0 | pingr | 2.0.3 |
pinnacle.data | 0.1.4 | pins | 1.3.0 |
PINSPlus | 2.0.7 | pipe.design | 0.5.1 |
pipeR | 0.6.1.3 | piqp | 0.2.2 |
piratings | 0.1.9 | pitchRx | 1.8.2 |
pixmap | 0.4-13 | PK | 1.3-6 |
PKconverter | 1.5 | pkdata | 0.1.0 |
pkgbuild | 1.4.4 | pkgcache | 2.2.2 |
pkgconfig | 2.0.3 | pkgdepends | 0.7.2 |
pkgdown | 2.0.9 | pkgfilecache | 0.1.5 |
pkgload | 1.4.0 | pkgsearch | 3.1.3 |
PKNCA | 0.11.0 | PKPDsim | 1.3.0 |
pkr | 0.1.3 | pks | 0.6-0 |
PlackettLuce | 0.4.3 | PlayerRatings | 1.1-0 |
plgp | 1.1-12 | plink | 1.5-1 |
plm | 2.6-4 | PLMIX | 2.1.1 |
PLmixed | 0.1.7 | plogr | 0.2.0 |
plot3D | 1.4.1 | plot3Drgl | 1.0.4 |
plotdap | 1.0.3 | plotly | 4.10.4 |
plotMCMC | 2.0.1 | plotmo | 3.6.3 |
plotrix | 3.8-4 | plotROC | 2.3.1 |
plotSEMM | 2.4 | PlotTools | 0.3.0 |
plotwidgets | 0.5.1 | pls | 2.8-3 |
plumber | 1.2.2 | plyr | 1.8.9 |
PMA | 1.2-3 | pmc | 1.0.6 |
pmr | 1.2.5.1 | pmxcode | 0.1.3 |
pmxpartab | 0.5.0 | pmxTools | 1.3 |
png | 0.1-8 | POD | 1.2.0 |
PoiClaClu | 1.0.2.1 | pointblank | 0.12.1 |
poisbinom | 1.0.1 | PoissonBinomial | 1.2.6 |
poLCA | 1.6.0.1 | polspline | 1.1.25 |
polyclip | 1.10-6 | polycor | 0.8-1 |
polyCub | 0.9.1 | polylabelr | 0.2.0 |
polynom | 1.4-1 | PolynomF | 2.0-8 |
polyreg | 0.8.0 | pomp | 5.9 |
pool | 1.0.3 | poorman | 0.2.7 |
PopED | 0.6.0 | popEpi | 0.4.12 |
popPCR | 0.1.1.1 | portes | 6.0 |
PortfolioOptim | 1.1.1 | PortRisk | 1.1.0 |
posologyr | 1.2.4 | PostcodesioR | 0.3.1 |
posterior | 1.5.0 | postlightmercury | 1.2 |
powdist | 0.1.4 | powerbydesign | 1.0.5 |
powerGWASinteraction | 1.1.3 | PowerSDI | 1.0.0 |
powerSurvEpi | 0.1.3 | PowerTOST | 1.5-6 |
PowerUpR | 1.1.0 | PP | 0.6.3-11 |
ppcor | 1.1 | PPRL | 0.3.8 |
pps | 1.0 | PQLseq | 1.2.1 |
prabclus | 2.3-3 | pracma | 2.4.4 |
PracTools | 1.5 | praise | 1.0.0 |
pRecipe | 3.0.1-3 | PreciseSums | 0.6 |
PredCRG | 1.0.2 | prediction | 0.3.18 |
predicts | 0.1-11 | prefmod | 0.8-36 |
PReMiuM | 3.2.13 | preprocessCore | 1.66.0 |
prereg | 0.6.0 | PresenceAbsence | 1.1.11 |
presize | 0.3.7 | prettydoc | 0.4.1 |
prettyGraphs | 2.1.6 | prettymapr | 0.2.5 |
prettyunits | 1.2.0 | prevalence | 0.4.1 |
prevR | 5.0.0 | princurve | 2.1.6 |
prioGene | 1.0.1 | prioritylasso | 0.3.1 |
prism | 0.2.1 | prismatic | 1.1.2 |
ProbitSpatial | 1.1 | pROC | 1.18.5 |
proceduralnames | 0.2.2 | processx | 3.8.4 |
prodigenr | 0.6.2 | prodlim | 2024.06.25 |
ProfessR | 2.4-3 | profileModel | 0.6.1 |
profileR | 0.3-5 | profoc | 1.3.2 |
profvis | 0.3.8 | progress | 1.2.3 |
progressr | 0.14.0 | PROJ | 0.5.0 |
proj4 | 1.0-14 | ProjectionBasedClustering | 1.2.2 |
projects | 2.1.3 | ProjectTemplate | 0.10.4 |
promises | 1.3.0 | prophet | 1.0 |
PROsetta | 0.4.1 | proto | 1.0.0 |
protoclust | 1.6.4 | protolite | 2.3.0 |
protr | 1.7-1 | protti | 0.8.0 |
protViz | 0.7.9 | proxy | 0.4-27 |
proxyC | 0.4.1 | prozor | 0.3.1 |
PRROC | 1.3.1 | pryr | 0.1.6 |
ps | 1.7.6 | PSCBS | 0.67.0 |
pscl | 1.5.9 | psd | 2.1.1 |
PSF | 0.5 | psidR | 2.2 |
pso | 1.0.4 | psoptim | 1.0 |
pspline | 1.0-20 | psqn | 0.3.1 |
PSSMCOOL | 0.2.4 | psy | 1.2 |
psych | 2.4.6.26 | psychomix | 1.1-8 |
psychotools | 0.7-4 | psychotree | 0.16-1 |
psychTools | 2.4.3 | psyphy | 0.3 |
PTAk | 2.0.0 | ptm | 1.0.1 |
PTSR | 0.1.2 | ptw | 1.9-16 |
PTXQC | 1.1.1 | pubmed.mineR | 1.0.20 |
purrr | 1.0.2 | pushoverr | 1.1.0 |
pvca | 1.44.0 | pvclust | 2.2-0 |
pwr | 1.3-0 | PwrGSD | 2.3.6 |
pwrRasch | 0.1-2 | pwt | 7.1-1 |
pwt8 | 8.1-1 | pwt9 | 9.1-0 |
pxweb | 0.17.0 | PxWebApiData | 0.9.0 |
qap | 0.1-2 | Qardl | 0.1.1 |
qcv | 1.0 | qdap | 2.4.6 |
qdapDictionaries | 1.0.7 | qdapRegex | 0.7.8 |
qdapTools | 1.3.7 | qgam | 1.3.4 |
qgisprocess | 0.3.0 | qgraph | 1.9.8 |
qicharts2 | 0.7.5 | qlcal | 0.0.11 |
qmap | 1.0-4 | qMRI | 1.2.7.6 |
qpdf | 1.3.3 | qpgraph | 2.38.0 |
qpmadr | 1.1.0-0 | qpNCA | 1.1.6 |
qqconf | 1.3.2 | qqplotr | 0.0.6 |
QRM | 0.4-31 | qrmdata | 2024-03-04-2 |
qrmtools | 0.0-17 | qrng | 0.0-10 |
qs | 0.26.3 | qtl | 1.66 |
quadprog | 1.5-8 | quadprogXT | 0.0.5 |
qualmap | 0.2.2 | qualtRics | 3.2.0 |
Quandl | 2.11.0 | quanteda | 4.0.2 |
quantification | 0.2.0 | quantmod | 0.4.26 |
quantreg | 5.98 | quantspec | 1.2-3 |
Quartet | 1.2.6 | questionr | 0.7.8 |
QuickJSR | 1.2.2 | quickpsy | 0.1.5.1 |
qvalue | 2.36.0 | qvcalc | 1.0.3 |
R.cache | 0.16.0 | R.devices | 2.17.2 |
R.filesets | 2.15.1 | R.huge | 0.10.1 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.26.0 | R.rsp | 0.46.0 |
R.utils | 2.12.3 | R0 | 1.3-1 |
R2BEAT | 1.0.5 | r2d3 | 0.2.6 |
R2HTML | 2.3.4 | R2jags | 0.8-5 |
R2OpenBUGS | 3.2-3.2.1 | r2rtf | 1.1.1 |
R2WinBUGS | 2.1-22.1 | R4CouchDB | 0.7.5 |
R6 | 2.5.1 | R6P | 0.3.0 |
radarchart | 0.3.1 | radiant | 1.6.6 |
radiant.basics | 1.6.6 | radiant.data | 1.6.6 |
radiant.design | 1.6.6 | radiant.model | 1.6.6 |
radiant.multivariate | 1.6.6 | RAdwords | 0.1.18 |
ragg | 1.3.2 | ragtop | 1.1.1 |
rainbow | 3.8 | rakeR | 0.2.1 |
rAmCharts | 2.1.15 | RAMClustR | 1.3.1 |
ramcmc | 0.1.2 | ramify | 0.3.3 |
ramps | 0.6.18 | randomcoloR | 1.1.0.1 |
randomForest | 4.7-1.1 | randomForestSRC | 3.3.0 |
randomizeR | 3.0.2 | randomizr | 1.0.0 |
randomLCA | 1.1-3 | randtoolbox | 2.0.4 |
rang | 0.3.0 | ranger | 0.16.0 |
rankdist | 1.1.4 | RANN | 2.6.1 |
rapiclient | 0.1.5 | rapidjsonr | 1.2.0 |
RApiSerialize | 0.1.3 | rappdirs | 0.3.3 |
rapport | 1.1 | rapportools | 1.1 |
Raquifer | 0.1.0 | rARPACK | 0.11-0 |
RaschSampler | 0.8-10 | raster | 3.6-26 |
rasterImage | 0.4.0 | rasterVis | 0.51.6 |
ratelimitr | 0.4.1 | RATest | 0.1.10 |
raveio | 0.9.0 | RavenR | 2.2.2 |
ravetools | 0.1.6 | raw | 0.1.8 |
rBayesianOptimization | 1.2.1 | Rbeast | 1.0.0 |
rbedrock | 0.3.2 | rbenchmark | 1.0.0 |
RBGL | 1.80.0 | rBiasCorrection | 0.3.4 |
rbibutils | 2.2.16 | Rblpapi | 0.3.14 |
rbmi | 1.2.6 | RCarb | 0.1.6 |
rcartocolor | 2.1.1 | Rcatch22 | 0.2.1 |
rcdd | 1.6 | RCEIM | 0.3 |
Rcgmin | 2022-4.30 | rchess | 0.1 |
Rchoice | 0.3-6 | RCircos | 1.2.2 |
rclipboard | 0.2.1 | rCMA | 1.1.1 |
rcmdcheck | 1.4.0 | Rcmdr | 2.9-2 |
RcmdrMisc | 2.9-1 | RcmdrPlugin.depthTools | 1.4 |
RcmdrPlugin.DoE | 0.12-5 | RcmdrPlugin.temis | 0.7.10 |
RColorBrewer | 1.1-3 | rcompendium | 1.3 |
Rcpp | 1.0.12 | RcppAnnoy | 0.0.22 |
RcppArmadillo | 0.12.8.4.0 | RcppCCTZ | 0.2.12 |
RcppClock | 1.1 | RcppDate | 0.0.3 |
RcppDE | 0.1.7 | RcppDist | 0.1.1 |
RcppEigen | 0.3.4.0.0 | RcppGSL | 0.3.13 |
RcppHNSW | 0.6.0 | RcppHungarian | 0.3 |
RcppInt64 | 0.0.5 | RcppNumerical | 0.6-0 |
RcppParallel | 5.1.7 | RcppProgress | 0.4.2 |
RcppQuantuccia | 0.1.2 | RcppRedis | 0.2.4 |
RcppRoll | 0.3.0 | RcppSimdJson | 0.1.11 |
RcppSpdlog | 0.0.17 | RcppThread | 2.1.7 |
rcpptimer | 1.1.0 | RcppTN | 0.2-2 |
RcppTOML | 0.2.2 | RcppZiggurat | 0.1.6 |
Rcrawler | 0.1.9-1 | rcrossref | 1.2.0 |
Rcsdp | 0.1.57.5 | RCurl | 1.98-1.14 |
RCy3 | 2.24.0 | RCzechia | 1.12.0 |
rdatacite | 0.5.4 | rdbnomics | 0.6.4 |
rdd | 0.57 | rddensity | 2.5 |
rdflib | 0.2.8 | rdhs | 0.8.1 |
rdlocrand | 1.0 | rdmulti | 1.1 |
RDota2 | 0.1.6 | Rdpack | 2.6 |
rdpower | 2.2 | rdrobust | 2.2 |
Rdsdp | 1.0.5.2.1 | rdwd | 1.8.0 |
re2 | 0.1.3 | reactable | 0.4.4 |
reactR | 0.6.0 | read.gb | 2.2 |
readabs | 0.4.16 | reader | 1.0.6 |
readJDX | 0.6.4 | readODS | 2.3.0 |
readr | 2.1.5 | readsdmx | 0.3.1 |
readstata13 | 0.10.1 | readxl | 1.4.3 |
reasonabletools | 0.1 | REBayes | 2.56 |
recipes | 1.0.10 | reclin | 0.1.2 |
reclin2 | 0.5.0 | recmap | 1.0.17 |
RecordLinkage | 0.4-12.4 | redcapAPI | 2.9.1 |
REDCapR | 1.1.0 | REDCapTidieR | 1.1.1 |
Rediscover | 0.3.2 | redland | 1.0.17-18 |
redux | 1.1.4 | RefManageR | 1.4.0 |
refugees | 2023.12.0 | regions | 0.1.8 |
registry | 0.5-1 | regnet | 1.0.1 |
regress | 1.3-21 | RegSDC | 0.7.0 |
regsem | 1.9.5 | regspec | 2.7 |
regtools | 1.7.0 | ReIns | 1.0.14 |
reinsureR | 0.1.0 | relations | 0.6-13 |
reldist | 1.7-2 | relimp | 1.0-5 |
rematch | 2.0.0 | rematch2 | 2.1.2 |
remotes | 2.5.0 | REndo | 2.4.9 |
rentrez | 1.2.3 | renv | 1.0.7 |
replicateBE | 1.1.3 | repmis | 0.5 |
repo | 2.1.5 | RepoGenerator | 0.0.1 |
reportfactory | 0.4.0 | reportr | 1.3.0 |
reporttools | 1.1.3 | repr | 1.1.7 |
representr | 0.1.5 | represtools | 0.1.3 |
reprex | 2.1.0 | reproducible | 2.1.0 |
reproj | 0.7.0 | reqres | 0.2.5 |
REQS | 0.8-13 | request | 0.1.0 |
Require | 0.3.1 | rerddap | 1.1.0 |
rerddapXtracto | 1.2.0 | resampledata | 0.3.1 |
resde | 1.1 | reservoir | 1.1.5 |
reshape | 0.8.9 | reshape2 | 1.4.4 |
restfulr | 0.0.15 | restimizeapi | 1.0.0 |
reticulate | 1.38.0 | retrosheet | 1.1.6 |
retry | 0.1.1 | revdbayes | 1.5.3 |
RevGadgets | 1.2.1 | Revticulate | 1.0.0 |
rex | 1.2.1 | Rexperigen | 0.2.1 |
Rfacebook | 0.6.15 | Rfast | 2.1.0 |
Rfast2 | 0.1.5.2 | rfigshare | 0.3.8 |
Rfit | 0.27.0 | rflexscan | 1.1.0 |
rgbif | 3.8.0 | RGBM | 1.0-11 |
rgdal | 1.6-7 | rgee | 1.1.7 |
rgen | 0.0.1 | RGENERATE | 1.3.7 |
RGENERATEPREC | 1.2.9 | rgenoud | 5.9-0.10 |
rgeoda | 0.0.10-4 | rgeos | 0.6-4 |
rgl | 1.3.1 | Rglpk | 0.6-5.1 |
RgoogleMaps | 1.5.1 | RGraphics | 3.0-2 |
Rgraphviz | 2.48.0 | rgrass | 0.4-3 |
rgrass7 | 0.2-13 | RGreenplum | 0.1.2 |
rgugik | 0.4.1 | RH2 | 0.2.4 |
rhandsontable | 0.3.8 | RHclust | 2.0.0 |
rhdf5 | 2.48.0 | rhdf5filters | 1.16.0 |
Rhdf5lib | 1.26.0 | RHMS | 1.7 |
rhosa | 0.3.0 | RhpcBLASctl | 0.23-42 |
Rhtslib | 3.0.0 | rhub | 2.0.0 |
rib | 0.20.0 | riceidconverter | 1.1.1 |
RIdeogram | 0.2.2 | ridge | 3.3 |
riingo | 0.3.1 | Rilostat | 2.1.0 |
ring | 1.0.5 | RInside | 0.2.18 |
rintrojs | 0.3.4 | rio | 1.1.1 |
Rirt | 0.0.2 | Risk | 1.0 |
riskCommunicator | 1.0.1 | riskParityPortfolio | 0.2.2 |
RiskPortfolios | 2.1.7 | riskSimul | 0.1.2 |
ritis | 1.0.0 | riverdist | 0.16.3 |
rivernet | 1.2.3 | rivnet | 0.4.2 |
rivr | 1.2-3 | rjags | 4-15 |
rJava | 1.0-11 | RJDBC | 0.2-10 |
RJDemetra | 0.2.6 | rje | 1.12.1 |
rjson | 0.2.21 | RJSONIO | 1.3-1.9 |
rjstat | 0.4.3 | RKEA | 0.0-6 |
RKEAjars | 5.0-4 | RKelly | 1.0 |
rlang | 1.1.4 | rlas | 1.7.0 |
rle | 0.9.2 | rlecuyer | 0.3-8 |
rlemon | 0.2.1 | Rlgt | 0.2-1 |
Rlibeemd | 1.4.3 | rLiDAR | 0.1.5 |
Rlinkedin | 0.2 | rlist | 0.4.6.2 |
rLTP | 0.1.4 | RLumShiny | 0.2.3 |
RM2006 | 0.1.1 | Rmalschains | 0.2-10 |
rmapshaper | 0.5.0 | RMariaDB | 1.3.2 |
rmarkdown | 2.27 | rmatio | 0.19.0 |
RMAWGEN | 1.3.7 | rmcfs | 1.3.5 |
rmeta | 3.0 | rmgarch | 1.3-9 |
rminizinc | 0.0.8 | Rmisc | 1.5.1 |
rmoo | 0.2.0 | Rmosek | 1.3.5 |
Rmpfr | 0.9-5 | rms | 6.8-1 |
RMTstat | 0.3.1 | rmutil | 1.1.10 |
RMySQL | 0.10.27 | rmzqc | 0.5.4 |
Rnanoflann | 0.0.3 | RNAseqNet | 0.1.5 |
RNAsmc | 0.8.0 | rnaturalearth | 1.0.1 |
rnaturalearthdata | 1.0.0 | RNCEP | 1.0.10 |
rncl | 0.8.7 | RND | 1.2 |
RNentropy | 1.2.3 | rneos | 0.4-0 |
RNetCDF | 2.9-2 | RNeXML | 2.4.11 |
rngtools | 1.5.2 | rngWELL | 0.10-9 |
RNifti | 1.7.0 | RNiftyReg | 2.8.3 |
rnn | 1.9.0 | rnoaa | 1.4.0 |
rnrfa | 2.1.0.6 | roadoi | 0.7.2 |
ROAuth | 0.9.6 | robfilter | 4.1.4 |
RobKF | 1.0.2 | RoBMA | 3.1.0 |
robotoolbox | 1.3.2 | robotstxt | 0.7.13 |
robsurvey | 0.6 | robustbase | 0.99-2 |
RobustRankAggreg | 1.2.1 | rockchalk | 1.8.157 |
rocker | 0.3.1 | ROCR | 1.0-11 |
RODBC | 1.3-23 | rodd | 0.2-1 |
Rogue | 2.1.6 | ROI | 1.0-1 |
ROI.plugin.ecos | 1.0-2 | ROI.plugin.neos | 1.0-2 |
ROI.plugin.qpoases | 1.0-3 | roll | 1.1.7 |
Rook | 1.2 | ROOPSD | 0.3.9 |
rootSolve | 1.8.2.4 | ROpenDota | 0.1.2 |
roperators | 1.3.14 | roptim | 0.1.6 |
rorcid | 0.7.0 | rosetteApi | 1.14.4 |
rosm | 0.3.0 | rotl | 3.1.0 |
round | 0.21-0.2 | routr | 0.4.1 |
roxygen2 | 7.3.2 | rpact | 4.0.0 |
RPANDA | 2.3 | rpanel | 1.1-5.2 |
rPanglaoDB | 0.2.1 | rpart.plot | 3.1.2 |
rpdo | 0.3.2 | rpf | 1.0.14 |
Rphylopars | 0.3.10 | rpinterest | 0.3.1 |
RPMG | 2.2-7 | rpms | 0.5.1 |
rpostgis | 1.5.1 | RPostgres | 1.4.7 |
RPostgreSQL | 0.7-6 | RPPairwiseDesign | 1.0 |
RPresto | 1.4.6 | rprintf | 0.2.1 |
RprobitB | 1.1.4 | rprojroot | 2.0.4 |
RPushbullet | 0.3.4 | RPyGeo | 1.0.0 |
rpymat | 0.1.7 | RQuantLib | 0.4.22 |
rrcov | 1.7-5 | rredlist | 0.7.1 |
rrefine | 2.1.0 | RRNA | 1.1 |
RRPP | 2.0.3 | RRreg | 0.7.5 |
RRTCS | 0.0.4 | rrum | 0.2.1 |
rsae | 0.3 | RSAGA | 1.4.0 |
Rsagacmd | 0.4.2 | rsample | 1.2.1 |
Rsamtools | 2.20.0 | RSclient | 0.7-10 |
rscopus | 0.6.6 | rsdmx | 0.6-3 |
rSEA | 2.1.2 | RSEIS | 4.2-0 |
RSelenium | 1.7.9 | rsem | 0.5.1 |
Rserve | 1.8-13 | Rsfar | 0.0.1 |
RSGHB | 1.2.2 | rsi | 0.2.1 |
RSiteCatalyst | 1.4.16 | rsm | 2.10.5 |
RSmartlyIO | 0.1.3 | rsoi | 0.5.6 |
Rsolnp | 1.16 | rspa | 0.2.8 |
rsparse | 0.5.2 | RSpectra | 0.16-1 |
RSQLite | 2.3.7 | Rssa | 1.0.5 |
rstac | 1.0.0 | rstan | 2.32.6 |
rstanarm | 2.32.1 | rstantools | 2.4.0 |
rstatix | 0.7.2 | rstiefel | 1.0.1 |
rStrava | 1.3.1 | rstudioapi | 0.16.0 |
rsurface | 1.1.0 | RSurveillance | 0.2.1 |
rsvd | 1.0.5 | rsvg | 2.6.0 |
Rsymphony | 0.1-33 | rTensor | 1.4.8 |
rtf | 0.4-14.1 | RTFA | 0.1.0 |
rticles | 0.27 | RTL | 1.3.5 |
rtoot | 0.3.4 | rtop | 0.6-9 |
rtracklayer | 1.64.0 | RTransferEntropy | 0.2.21 |
rtrim | 2.3.0 | rts | 1.1-14 |
Rtsne | 0.17 | Rttf2pt1 | 1.3.12 |
rtweet | 2.0.0 | rucrdtw | 0.1.6 |
rugarch | 1.5-1 | ruimtehol | 0.3.2 |
ruin | 0.1.1 | rules | 1.0.2 |
ruminate | 0.2.4 | runexp | 0.2.1 |
RUnit | 0.4.33 | runjags | 2.2.2-4 |
runner | 0.4.4 | runstats | 1.1.0 |
Runuran | 0.38 | rust | 1.4.2 |
ruv | 0.9.7.1 | RVA | 0.0.5 |
Rvcg | 0.23 | rversions | 2.1.2 |
rvest | 1.0.4 | Rvmmin | 2018-4.17.1 |
Rwave | 2.6-5 | RWDataPlyr | 0.6.4 |
RweaveExtra | 1.1-0 | rwebstat | 1.1.1 |
RWeka | 0.4-46 | RWekajars | 3.9.3-2 |
rWikiPathways | 1.24.0 | rworldmap | 1.3-8 |
rworldxtra | 1.01 | rwunderground | 0.1.8 |
rxode2 | 2.1.3 | rxode2et | 2.0.13 |
rxode2ll | 2.0.11 | rxode2parse | 2.0.19 |
rxode2random | 2.1.1 | RYandexTranslate | 1.0 |
s2 | 1.1.6 | S4Arrays | 1.4.1 |
S4Vectors | 0.42.0 | sae | 1.3 |
saeRobust | 0.5.0 | saeSim | 0.11.0 |
SAEval | 1.0.0 | safetensors | 0.1.2 |
samadb | 0.3.0 | sampleSelection | 1.2-12 |
samplesize | 0.2-4 | sampling | 2.10 |
SamplingBigData | 1.0.0 | samplingbook | 1.2.4 |
SamplingStrata | 1.5-4 | samplingVarEst | 1.5 |
samr | 3.0 | sandwich | 3.1-0 |
sarima | 0.9.3 | SAScii | 1.0.2 |
sass | 0.4.9 | satellite | 1.0.5 |
sazedR | 2.0.2 | sbgcop | 0.980 |
SBN | 1.0.0 | scagnostics | 0.2-6 |
ScaledMatrix | 1.12.0 | scales | 1.3.0 |
scalreg | 1.0.1 | scam | 1.2-17 |
scaRabee | 1.1-4 | scatterD3 | 1.0.1 |
scattermore | 1.2 | scatterpie | 0.2.3 |
scatterplot3d | 0.3-44 | scBio | 0.1.6 |
sccore | 1.0.5 | scholar | 0.2.4 |
SCI | 1.0-2 | scINSIGHT | 0.1.4 |
scLink | 1.0.1 | scoper | 1.3.0 |
scoringRules | 1.1.1 | scoringutils | 1.2.2 |
SCORPIUS | 1.0.9 | ScottKnott | 1.3-2 |
scs | 3.2.4 | scSorter | 0.0.2 |
scTenifoldKnk | 1.0.1 | scTenifoldNet | 1.3 |
sctransform | 0.4.1 | SDaA | 0.1-5 |
sdcHierarchies | 0.21.0 | sdcMicro | 5.7.8 |
sdcSpatial | 0.5.2 | sdcTable | 0.32.6 |
sde | 2.0.18 | sdmTMB | 0.6.0 |
sdpt3r | 0.3 | sdrt | 1.0.0 |
sealasso | 0.1-3 | searchConsoleR | 0.4.0 |
seas | 0.6-0 | season | 0.3.15 |
seasonal | 1.9.0 | seasonalview | 0.3 |
seastests | 0.15.4 | secretbase | 1.0.0 |
seer | 1.1.8 | seg | 0.5-7 |
segmented | 2.1-0 | SelectBoost | 2.2.2 |
selectiveInference | 1.2.5 | selectr | 0.4-2 |
seleniumPipes | 0.3.7 | sem | 3.1-15 |
semantic.assets | 1.1.0 | semds | 0.9-6 |
SemiPar | 1.0-4.2 | semmcmc | 0.0.6 |
semPlot | 1.1.6 | SEMsens | 1.5.5 |
semsfa | 1.1 | semTools | 0.5-6 |
semtree | 0.9.20 | semver | 0.2.0 |
sendmailR | 1.4-0 | SensoMineR | 1.27 |
sentencepiece | 0.2.3 | sentiment.ai | 0.1.1 |
sentometrics | 1.0.0 | separationplot | 1.4 |
seqDesign | 1.2 | seqgendiff | 1.2.4 |
seqinr | 4.2-36 | SeqNet | 1.1.3 |
SequenceSpikeSlab | 1.0.1 | seriation | 1.5.5 |
servr | 0.30 | sessioninfo | 1.2.2 |
setartree | 0.2.1 | setRNG | 2024.2-1 |
sets | 1.0-25 | settings | 0.2.7 |
Seurat | 5.1.0 | SeuratObject | 5.0.2 |
sf | 1.0-16 | sFFLHD | 0.1.2 |
sfheaders | 0.4.4 | sfsmisc | 1.1-18 |
sftime | 0.2-0 | sgd | 1.1.2 |
sgeostat | 1.0-27 | shades | 1.4.0 |
shadowtext | 0.1.3 | shape | 1.4.6.1 |
shapefiles | 0.7.2 | shapes | 1.2.7 |
SharpeR | 1.3.0 | shazam | 1.2.0 |
ShiftConvolvePoibin | 1.0.0 | shiny | 1.8.1.1 |
shiny.semantic | 0.5.1 | shinyAce | 0.4.2 |
shinyalert | 3.1.0 | shinybrms | 1.8.0 |
shinyBS | 0.61.1 | shinybusy | 0.3.3 |
shinycssloaders | 1.0.0 | shinydashboard | 0.7.2 |
shinydashboardPlus | 2.0.4 | shinyFiles | 0.9.3 |
ShinyItemAnalysis | 1.5.1 | shinyjqui | 0.4.1 |
shinyjs | 2.1.0 | shinymaterial | 1.2.0 |
shinystan | 2.6.0 | shinytest | 1.6.1 |
shinythemes | 1.2.0 | shinyTree | 0.3.1 |
shinyWidgets | 0.8.6 | showimage | 1.0.0 |
showtext | 0.9-7 | showtextdb | 3.0 |
shrinkTVP | 3.0.1 | SIBERG | 2.0.3 |
sigminer | 2.3.1 | sigmoid | 1.4.0 |
Signac | 1.13.0 | SignacX | 2.2.5 |
signal | 1.8-1 | signs | 0.1.2 |
sigora | 3.1.1 | SigTree | 1.10.6 |
Sim.DiffProc | 4.9 | simcdm | 0.1.2 |
SimComp | 3.3 | simex | 1.8 |
simfinapi | 1.0.0 | simglm | 0.8.9 |
SimilarityMeasures | 1.4 | SimInf | 9.8.1 |
SIMMS | 1.3.2 | simpleboot | 1.1-7 |
simPop | 2.1.3 | simputation | 0.2.8 |
simrel | 2.1.0 | SiMRiv | 1.0.6 |
simsem | 0.5-16 | SimSurvey | 0.1.6 |
SingleCellExperiment | 1.26.0 | singleCellHaystack | 1.0.2 |
singleRcapture | 0.2.1.1 | singscore | 1.24.0 |
siplab | 1.6 | sirt | 4.1-15 |
sitmo | 2.0.2 | sits | 1.5.0 |
sjlabelled | 1.2.0 | sjmisc | 2.8.10 |
SkewHyperbolic | 0.4-2 | skmeans | 0.2-16 |
skpr | 1.7.1 | slackr | 3.3.1 |
slam | 0.1-50 | SlaPMEG | 1.0.1 |
SLBDD | 0.0.4 | slcm | 0.1.0 |
sleekts | 1.0.2 | sleeperapi | 1.1.1 |
Sleuth2 | 2.0-7 | Sleuth3 | 1.0-6 |
slfm | 1.0.2 | SLHD | 2.1-1 |
slider | 0.3.1 | slippymath | 0.3.1 |
sm | 2.2-6.0 | smacof | 2.1-6 |
smacofx | 1.5-3 | smacpod | 2.6 |
SmallCountRounding | 1.0.3 | smam | 0.7.2 |
smapr | 0.2.1 | SMDIC | 0.1.5 |
smerc | 1.8.3 | smoof | 1.6.0.3 |
smooth | 4.0.2 | smoother | 1.3 |
smoothr | 1.0.1 | smoots | 1.1.4 |
smovie | 1.1.6 | SMPracticals | 1.4-3.1 |
sms | 2.3.1 | SMVar | 1.3.4 |
sn | 2.1.1 | sna | 2.7-2 |
snakecase | 0.11.1 | snow | 0.4-4 |
SnowballC | 0.7.1 | snowfall | 1.84-6.3 |
snpStats | 1.54.0 | snvecR | 3.9.4 |
SOAs | 1.4 | soc.ca | 0.8.0 |
socceR | 0.1.1 | socialmixr | 0.3.2 |
sodium | 1.3.1 | sofa | 0.4.0 |
SoilHyP | 0.1.7 | soilhypfit | 0.1-7 |
soilwater | 1.0.5 | solaR | 0.46 |
solartime | 0.0.2 | solrium | 1.2.0 |
solvebio | 2.14.0 | soma | 1.2.0 |
sonicLength | 1.4.7 | sorvi | 0.8.21 |
SoupX | 1.6.2 | sourcetools | 0.1.7-1 |
sp | 2.1-4 | sp23design | 0.9-1 |
spacetime | 1.3-1 | spam | 2.10-0 |
spaMM | 4.5.0 | spant | 2.21.0 |
sparklyr | 1.8.6 | sparktex | 0.1 |
sparr | 2.3-10 | SparseArray | 1.4.8 |
sparseDFM | 1.0 | SparseFactorAnalysis | 1.0 |
sparseinv | 0.1.3 | SparseM | 1.84 |
sparseMatrixStats | 1.16.0 | sparseMVN | 0.2.2 |
sparsevar | 0.1.0 | spatgraphs | 3.4 |
spatialCovariance | 0.6-9 | SpatialEpi | 1.2.8 |
SpatialExperiment | 1.14.0 | SpatialExtremes | 2.1-0 |
SpatialPosition | 2.1.2 | spatialprobit | 1.0.4 |
spatialreg | 1.3-4 | spatialsample | 0.5.1 |
SpatialTools | 1.0.5 | spatialwidget | 0.2.5 |
spatstat | 3.0-8 | spatstat.data | 3.1-2 |
spatstat.explore | 3.2-7 | spatstat.geom | 3.2-9 |
spatstat.linnet | 3.1-5 | spatstat.model | 3.2-11 |
spatstat.random | 3.2-3 | spatstat.sparse | 3.1-0 |
spatstat.utils | 3.0-5 | spBayes | 0.4-7 |
spBayesSurv | 1.1.8 | Spbsampling | 1.3.5 |
spd | 2.0-1 | spData | 2.3.1 |
spdep | 1.3-5 | spec | 0.1.9 |
spectral | 2.0 | speff2trial | 1.0.5 |
SPEI | 1.8.1 | spelling | 2.3.0 |
sperrorest | 3.0.5 | sphet | 2.0 |
spiderbar | 0.2.5 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-19 | spINAR | 0.2.0 |
spind | 2.2.1 | splancs | 2.01-45 |
SPLICE | 1.1.2 | splines2 | 0.5.2 |
splitstackshape | 1.4.8 | splm | 1.6-5 |
spls | 2.2-3 | splus2R | 1.3-5 |
spmodel | 0.6.0 | spmoran | 0.2.3 |
SportsTour | 0.1.0 | sportyR | 2.2.2 |
SPOT | 2.11.14 | SpotSampling | 0.1.0 |
spselect | 0.0.1 | spsur | 1.0.2.5 |
spsurvey | 5.5.1 | spTimer | 3.3.2 |
sptotal | 1.0.1 | sqldf | 0.4-11 |
SqlRender | 1.18.0 | SQRL | 1.0.2 |
SQUAREM | 2021.1 | srvyr | 1.2.0 |
ssanv | 1.1 | SSBtools | 1.5.2 |
ssfa | 1.2.2 | ssgraph | 1.15 |
ssize.fdr | 1.3 | ssizeRNA | 1.3.2 |
ssMousetrack | 1.1.6 | ssmrob | 1.0 |
SSN | 1.1.17 | SSN2 | 0.1.1 |
sstvars | 1.0.1 | stable | 1.1.6 |
stabledist | 0.7-1 | stabs | 0.6-4 |
staggered | 1.1 | stampr | 0.3.1 |
StanHeaders | 2.32.9 | StanMoMo | 1.2.0 |
stargazer | 5.2.3 | starma | 1.3 |
stars | 0.6-5 | starter | 0.1.15 |
STARTS | 1.3-8 | startupmsg | 0.9.6.1 |
statcanR | 0.2.6 | statcodelists | 0.9.2 |
statcomp | 0.1.0 | statebins | 1.4.0 |
statespacer | 0.5.0 | stationaRy | 0.5.1 |
statip | 0.2.3 | StatMatch | 1.4.2 |
statmod | 1.5.0 | statnet.common | 4.9.0 |
StatRank | 0.0.6 | statVisual | 1.2.1 |
steadyICA | 1.0 | SteinIV | 0.1-1 |
STFTS | 0.1.0 | stinepack | 1.5 |
stlplus | 0.5.1 | stm | 1.3.7 |
STMedianPolish | 0.2 | StMoMo | 0.4.1 |
stochprofML | 2.0.3 | stochQN | 0.1.2-1 |
stochvol | 3.2.4 | stockAnalyst | 1.0.1 |
stops | 1.6-2 | stopwords | 2.3 |
storr | 1.2.5 | stplanr | 1.2.1 |
stR | 0.6 | strand | 0.2.0 |
strap | 1.6-1 | stratification | 2.2-7 |
streamDepletr | 0.2.0 | streamR | 0.4.5 |
stringdist | 0.9.12 | stringfish | 0.16.0 |
stringi | 1.8.4 | stringmagic | 1.1.2 |
stringr | 1.5.1 | strucchange | 1.5-3 |
strucchangeRcpp | 1.5-3-1.0.4 | StructuralDecompose | 0.1.1 |
styler | 1.10.3 | subplex | 1.8 |
subscore | 3.3 | sufficientForecasting | 0.1.0 |
sugrrants | 0.2.9 | SummarizedExperiment | 1.34.0 |
summclust | 0.7.2 | SUMMER | 1.4.0 |
suntools | 1.0.0 | supclust | 1.1-1 |
SuperLearner | 2.0-29 | superml | 0.5.7 |
superpc | 1.12 | SuppDists | 1.1-9.7 |
support.CEs | 0.7-0 | surface | 0.5 |
SurrogateRegression | 0.6.0.1 | suRtex | 0.9 |
survcomp | 1.54.0 | surveillance | 1.23.0 |
survey | 4.4-2 | surveybootstrap | 0.0.3 |
surveydata | 0.2.7 | surveyoutliers | 0.1 |
surveyplanning | 4.0 | surveysd | 1.3.1 |
survival666 | 0.5 | survivalROC | 1.0.3.1 |
survminer | 0.4.9 | survMisc | 0.5.6 |
survPresmooth | 1.1-11 | sva | 3.52.0 |
svars | 1.3.11 | svd | 0.5.5 |
svDialogs | 1.1.0 | SVDNF | 0.1.8 |
svglite | 2.1.3 | svGUI | 1.0.1 |
svrep | 0.6.4 | svs | 3.1.1 |
svUnit | 1.0.6 | swagger | 5.17.14.1 |
sweep | 0.2.5 | swephR | 0.3.1 |
SwimmeR | 0.14.2 | swirl | 2.4.5 |
swirlify | 0.5.3 | switchr | 0.14.8 |
SWTools | 1.0.3 | sylly | 0.1-6 |
sym.arma | 1.0 | symengine | 0.2.6 |
symmoments | 1.2.1 | synchronicity | 1.3.10 |
SYNCSA | 1.3.4 | Synth | 1.1-8 |
synthACS | 1.7.1 | synthesis | 1.2.4 |
SynthETIC | 1.1.0 | synthpop | 1.8-0 |
sys | 3.4.2 | sysfonts | 0.8.9 |
systemfit | 1.1-30 | systemfonts | 1.1.0 |
table1 | 1.4.3 | tables | 0.9.28 |
tabnet | 0.6.0 | tabuSearch | 1.1.1 |
TAF | 4.2.0 | tagcloud | 0.6 |
TailRank | 3.2.2 | TAM | 4.2-21 |
tanaka | 0.4.0 | TAQMNGR | 2018.5-1 |
targets | 1.7.1 | tau | 0.0-25 |
taxize | 0.9.100 | tbea | 1.4.2 |
TBRDist | 1.0.2 | tbrf | 0.1.5 |
TCA | 1.2.1 | TCGAbiolinks | 2.32.0 |
TCGAbiolinksGUI.data | 1.24.0 | TcGSA | 0.12.10 |
tcltk2 | 1.2-11 | Tcomp | 1.0.1 |
tdigest | 0.4.2 | TeachingDemos | 2.13 |
teamcolors | 0.0.4 | telegram.bot | 3.0.0 |
telemac | 0.1.1 | tempdisagg | 1.1.1 |
tensor | 1.5 | tensorA | 0.36.2.1 |
tensorflow | 2.16.0 | TensorPreAve | 1.1.0 |
tensorTS | 1.0.2 | TEQR | 6.0-0 |
tergm | 4.2.0 | Ternary | 2.3.1 |
terra | 1.7-78 | terrainr | 0.7.5 |
TESS | 2.1.2 | tesseract | 5.2.1 |
testcorr | 0.2.0 | TestDataImputation | 2.3 |
TestDesign | 1.6.1 | tester | 0.2.0 |
TestFunctions | 0.2.1 | testit | 0.13 |
TestScorer | 1.7.2 | testthat | 3.2.1.1 |
TexExamRandomizer | 1.2.7 | texreg | 1.39.3 |
text2vec | 0.6.4 | textcat | 1.0-8 |
textir | 2.0-5 | textplot | 0.2.2 |
textrank | 0.3.1 | textreuse | 0.1.5 |
textshaping | 0.4.0 | textTinyR | 1.1.8 |
tfarima | 0.3.2 | tfautograph | 0.3.2 |
tfdatasets | 2.9.0 | tfhub | 0.8.1 |
tfio | 0.4.1 | TFisher | 0.2.0 |
tfplot | 2021.6-1 | tframe | 2015.12-1.1 |
tfruns | 1.5.3 | tgp | 2.4-22 |
TGS | 1.0.1 | TH.data | 1.1-2 |
theft | 0.6.1 | thief | 0.3 |
ThreeArmedTrials | 1.0-4 | threeBrain | 1.0.1 |
ThreeGroups | 0.21 | threejs | 0.3.3 |
ThreeWay | 1.1.3 | thurstonianIRT | 0.12.5 |
tibble | 3.2.1 | tibbletime | 0.1.8 |
tictoc | 1.2.1 | Tides | 2.1 |
tidyBdE | 0.3.6 | tidycensus | 1.6.3 |
tidyestimate | 1.1.1 | tidygraph | 1.3.1 |
tidyhydat | 0.6.1 | tidyLPA | 1.1.0 |
tidymodels | 1.2.0 | tidyquant | 1.0.7 |
tidyqwi | 0.1.2 | tidyr | 1.3.1 |
tidyREDCap | 1.1.1 | tidyRSS | 2.0.7 |
tidyselect | 1.2.1 | tidySEM | 0.2.7 |
tidysynth | 0.2.0 | tidytable | 0.11.0 |
tidyterra | 0.6.1 | tidytext | 0.4.2 |
tidytree | 0.4.6 | tidyverse | 2.0.0 |
tidyvpc | 1.5.1 | tiff | 0.1-12 |
tigris | 2.1 | tikzDevice | 0.12.6 |
timechange | 0.3.0 | timeDate | 4032.109 |
timeless | 0.2.1 | timeSeries | 4032.109 |
timeseriesdb | 1.0.0-1.1.2 | timetk | 2.9.0 |
timsac | 1.3.8-4 | tinyarray | 2.4.2 |
tinyProject | 0.6.1 | tinytable | 0.3.0 |
tinytex | 0.51 | tis | 1.39 |
tkrplot | 0.0-27 | tkWidgets | 1.82.0 |
TLMoments | 0.7.5.3 | tm | 0.7-13 |
tm.plugin.alceste | 1.1.1 | tm.plugin.dc | 0.2-10 |
tm.plugin.europresse | 1.4 | tm.plugin.factiva | 1.8 |
tm.plugin.lexisnexis | 1.4.1 | tm.plugin.mail | 0.2-2 |
tmap | 3.3-4 | tmaptools | 3.1-1 |
TMB | 1.9.13 | Tmisc | 1.0.1 |
tmod | 0.50.13 | tmvnsim | 1.0-2 |
tmvtnorm | 1.6 | tnet | 3.0.16 |
tokenizers | 0.3.0 | tokenizers.bpe | 0.1.3 |
toOrdinal | 1.3-0.0 | topicdoc | 0.1.1 |
topicmodels | 0.2-16 | topicmodels.etm | 0.1.0 |
topmodel | 0.7.5 | topologyGSA | 1.5.0 |
toprdata | 1.0.2 | torch | 0.13.0 |
torchaudio | 0.3.1.9000 | torchdatasets | 0.3.1 |
torchvision | 0.6.0 | tpr | 0.3-3 |
tracerer | 2.2.3 | trackdem | 0.7.2 |
trackdf | 0.3.3 | trackdown | 1.1.1 |
trackeR | 1.6.0 | trackeRapp | 1.2 |
TrackReconstruction | 1.3 | tractor.base | 3.4.2 |
traipse | 0.3.0 | trajectories | 0.2-8 |
TrajectoryUtils | 1.12.0 | trajr | 1.5.1 |
transformr | 0.1.5 | transfR | 1.0.11 |
TransPhylo | 1.4.5 | trapezoid | 2.0-2 |
traudem | 1.0.3 | tree | 1.0-43 |
treebalance | 1.2.0 | treebase | 0.1.5 |
TreeBUGS | 1.5.0 | treedater | 0.5.0 |
TreeDist | 2.7.0 | treefit | 1.0.2 |
treeio | 1.28.0 | treemap | 2.4-4 |
TreeSearch | 1.5.1 | TreeSim | 2.4 |
treespace | 1.1.4.3 | TreeTools | 1.11.1 |
trend | 1.1.6 | trendeval | 0.1.0 |
trending | 0.1.0 | TrialSize | 1.4 |
triangle | 1.0 | triebeard | 0.4.1 |
trimcluster | 0.1-5 | trip | 1.10.0 |
tripack | 1.3-9.1 | tripEstimation | 0.0-46 |
TripleR | 1.5.4 | TruncatedNormal | 2.2.2 |
truncdist | 1.0-2 | truncnorm | 1.0-9 |
truncreg | 0.2-5 | trust | 0.1-8 |
trustOptim | 0.8.7.3 | tryCatchLog | 1.3.1 |
TSA | 1.3.1 | TSANN | 0.1.0 |
tsbox | 0.4.1 | tsBSS | 1.0.0 |
TSCAN | 1.42.0 | TSclust | 1.3.1 |
tscount | 1.4.3 | tsdataleaks | 2.1.1 |
tsdb | 1.1-0 | tsdecomp | 0.2 |
TSdeeplearning | 0.1.0 | tsdisagg2 | 0.1.0 |
TSdisaggregation | 2.0.0 | TSdist | 3.7.1 |
tsdistributions | 1.0.1 | tsDyn | 11.0.4.1 |
TSEAL | 0.1.2 | TSEntropies | 0.9 |
tseries | 0.10-56 | tseriesChaos | 0.1-13.1 |
tseriesEntropy | 0.7-2 | tseriesTARMA | 0.3-4 |
tsfeatures | 1.1.1 | tsfknn | 0.6.0 |
tsgarch | 1.0.2 | tsibble | 1.1.5 |
tsibbledata | 0.4.1 | tsibbletalk | 0.1.0 |
tsintermittent | 1.10 | tsiR | 0.4.3 |
TSLSTM | 0.1.0 | TSLSTMplus | 1.0.4 |
tsmethods | 1.0.1 | tsModel | 0.6-2 |
tsne | 0.1-3.1 | tsnet | 0.1.0 |
tsoutliers | 0.6-10 | TSP | 1.2-4 |
tsPI | 1.0.4 | TSrepr | 1.1.0 |
tsrobprep | 0.3.2 | tssim | 0.1.7 |
TSstudio | 0.1.7 | tstests | 1.0.0 |
TSTutorial | 1.2.7 | tsutils | 0.9.4 |
tswge | 2.1.0 | tth | 4.16-0 |
TTR | 0.24.4 | tufterhandout | 1.2.1 |
tune | 1.2.1 | turner | 0.1.9 |
TUWmodel | 1.1-1 | tvm | 0.5.2 |
twdtw | 1.0-1 | tweedie | 2.3.5 |
tweenr | 2.0.3 | twosamples | 2.0.1 |
TxDb.Hsapiens.UCSC.hg19.knownGene | 3.2.2 | TxDb.Hsapiens.UCSC.hg38.knownGene | 3.18.0 |
txtq | 0.2.4 | tzdb | 0.4.0 |
uaparserjs | 0.3.5 | ubiquity | 2.0.3 |
ucminf | 1.2.2 | UComp | 5.0.0 |
UCSC.utils | 1.0.0 | udpipe | 0.8.11 |
ufRisk | 1.0.7 | ugatsdb | 0.2.3 |
uGMAR | 3.4.5 | umap | 0.2.10.0 |
uncmbb | 0.2.2 | unglue | 0.1.0 |
UnifiedDoseFinding | 0.1.10 | unifir | 0.2.4 |
units | 0.8-5 | univOutl | 0.4 |
unrepx | 1.0-2 | unrtf | 1.4.5 |
UpSetR | 1.4.0 | uptasticsearch | 0.4.0 |
urca | 1.3-4 | urlchecker | 1.0.1 |
urlshorteneR | 1.5.7 | urltools | 1.7.3 |
uroot | 2.1-3 | USA.state.boundaries | 1.0.1 |
usdata | 0.3.1 | usethis | 2.2.3 |
usmap | 0.7.1 | usmapdata | 0.3.0 |
utf8 | 1.2.4 | utility | 1.4.6 |
uuid | 1.2-0 | uwot | 0.2.2 |
V8 | 4.4.2 | VALERIE | 1.1.0 |
validate | 1.1.5 | validatetools | 0.5.2 |
valr | 0.8.1 | VAM | 1.1.0 |
vapour | 0.10.0 | VAR.etp | 1.1 |
varbvs | 2.6-10 | VARDetect | 0.1.8 |
vardiag | 0.2-1 | vardpoor | 0.20.1 |
VaRES | 1.0.2 | vars | 1.6-1 |
VARshrink | 0.3.1 | varycoef | 0.3.4 |
VCA | 1.5.1 | vcd | 1.4-12 |
vcdExtra | 0.8-5 | vcr | 1.2.2 |
vctrs | 0.6.5 | vdg | 1.2.3 |
VedicDateTime | 0.1.9 | vegan | 2.6-6.1 |
vegawidget | 0.5.0 | vegperiod | 0.4.0 |
VennDiagram | 1.7.3 | venneuler | 1.1-4 |
VGAM | 1.1-11 | VGAMdata | 1.1-9 |
vglmer | 1.0.3 | vhica | 0.2.8 |
VIC5 | 0.2.6 | VIM | 6.2.2 |
VineCopula | 2.5.0 | vines | 1.1.5 |
vip | 0.4.1 | viridis | 0.6.5 |
viridisLite | 0.4.2 | visNetwork | 2.1.2 |
visualize | 4.5.0 | vkR | 0.2 |
volatilityTrader | 1.0.1 | volcano3D | 2.0.9 |
volleystat | 0.2.0 | vpc | 1.2.2 |
vroom | 1.6.5 | vrtest | 1.2 |
vsn | 3.72.0 | W3CMarkupValidator | 0.1-7 |
waiter | 0.2.5 | waldo | 0.5.2 |
warp | 0.2.1 | washdata | 0.1.4 |
WASP | 1.4.3 | waterData | 1.0.8 |
waterquality | 1.0.0 | Watersheds | 1.1 |
WaveletComp | 1.1 | wavelets | 0.3-0.2 |
WaveSampling | 0.1.3 | waveslim | 1.8.5 |
wavethresh | 4.7.2 | wavScalogram | 1.1.3 |
waywiser | 0.6.0 | wbstats | 1.0.4 |
wCorr | 1.9.8 | WDI | 2.7.8 |
wdm | 0.2.4 | wdman | 0.2.6 |
WebAnalytics | 0.9.12 | webchem | 1.3.0 |
webdriver | 1.0.6 | WebGestaltR | 0.4.6 |
webmockr | 0.9.0 | webreadr | 0.4.0 |
webshot | 0.5.5 | webshot2 | 0.1.1 |
websocket | 1.4.1 | webutils | 1.2.0 |
wehoop | 2.0.0 | WeightedPortTest | 1.1 |
WeightIt | 1.1.0 | weights | 1.0.4 |
welo | 0.1.4 | WeMix | 4.0.3 |
WGCNA | 1.72-5 | WH | 1.1.1 |
whisker | 0.4.1 | whitebox | 2.4.0 |
whitening | 1.4.0 | whoami | 1.3.0 |
widgetframe | 0.3.1 | widgetTools | 1.82.0 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
wikipediatrend | 2.1.6 | WikipediR | 1.7.1 |
wikitaxa | 0.4.0 | wildlifeDI | 1.0.0 |
wilson | 2.4.2 | windex | 2.0.8 |
wINEQ | 1.2.0 | withr | 3.0.0 |
wk | 0.9.1 | wktmo | 1.0.5 |
wkutils | 0.1.3 | wnl | 0.8.1 |
wooldridge | 1.4-3 | worcs | 0.1.14 |
word2vec | 0.4.0 | wordcloud | 2.6 |
wordnet | 0.1-17 | workflowr | 1.7.1 |
workflows | 1.1.4 | workflowsets | 1.1.0 |
worldfootballR | 0.6.2 | worldmet | 0.9.8 |
worrms | 0.4.3 | wpp2017 | 1.2-3 |
wpp2019 | 1.1-1 | wql | 1.0.1 |
WrightMap | 1.3 | writexl | 1.5.0 |
WriteXLS | 6.6.0 | wrMisc | 1.15.0.3 |
wrProteo | 1.11.0.1 | WRSS | 3.1 |
wrswoR | 1.1.1 | WRTDStidal | 1.1.4 |
WufooR | 1.0.1 | x12 | 1.10.3 |
x13binary | 1.1.61 | xaringan | 0.30 |
XBRL | 0.99.19.1 | xfun | 0.45 |
xgboost | 1.7.7.1 | xgxr | 1.1.2 |
XLConnect | 1.0.10 | xlsx | 0.6.5 |
xlsxjars | 0.6.1 | XML | 3.99-0.17 |
xml2 | 1.3.6 | XML2R | 0.0.8 |
xmlrpc2 | 1.1 | xopen | 1.0.1 |
xplain | 0.2.2 | xpose | 0.4.18 |
xpose.nlmixr2 | 0.4.0 | xpose4 | 4.7.3 |
xslt | 1.4.5 | xtable | 1.8-4 |
xts | 0.14.0 | XVector | 0.44.0 |
xxIRT | 2.1.2 | yaImpute | 1.0-34 |
yaml | 2.3.8 | yardstick | 1.3.1 |
yesno | 0.1.2 | yhatr | 0.15.1 |
yorkr | 0.0.42 | ypssc | 1.1.0 |
yuima | 1.15.27 | yulab.utils | 0.1.4 |
zeallot | 0.1.0 | zen4R | 0.10 |
zic | 0.9.1 | ZIM | 1.1.0 |
ZINARp | 0.1.0 | zip | 2.3.1 |
zipfR | 0.6-70 | zlib | 1.0.3 |
zlibbioc | 1.50.0 | zoo | 1.8-12 |
ZRA | 0.2 | ztable | 0.2.3 |
zTree | 1.0.7 | zyp | 0.11-1 |
RStudio Server
R: 4.4.0
rstudio-server: 2023.12.0+369
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
-
Enabled HTTPS to Improve Security: HTTPS has been enabled to ensure that all data between your browser and our servers is encrypted.
-
Automatic Redirect from HTTP to HTTPS: All HTTP traffic is now automatically redirected to HTTPS, ensuring that all communications between your browser and our servers are encrypted and secure.
-
Self-Signed Certificate: Please note that the HTTPS connection uses a self-signed certificate. When accessing the site for the first time, you may need to accept the self-signed certificate in your browser to proceed. This step is necessary to establish a secure connection.
-
IP Address Changes: If the IP address changes, a new self-signed certificate will be generated. You may need to accept the new certificate in your browser to re-establish a secure connection.
R: 4.4.0; rstudio-server: 2023.12.0+369; CUDA Version: 11.7; GPU Driver Version: 515.43.04
This AMI provides thousands of R packages covering various domains such as data science, machine learning, economitrics, database, finance, official statistics, survey statistics, Bayesian statistics, clinical trials, epidemiology, experimental design, psychometric methodology, analysis of pharmacokinetic data, medical image processing, teaching statistics, time series analysis, analysis of spatial and spatiotemporal data, reproducible research, phylogenetics, web technologies, hydrology, sports analytics, natural language processing, actuarial science, optimization, genomics, proteomics, metabolomics, transcriptomics, and other omics.
R packages (4170)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.1 |
ABCoptim | 0.15.0 | abcrf | 1.9 |
abglasso | 0.1.1 | abind | 1.4-5 |
abtest | 1.0.1 | accrualPlot | 1.0.7 |
acebayes | 1.10 | acepack | 1.4.2 |
acp | 2.1 | acs | 2.1.4 |
ACSWR | 1.0 | ActivePathways | 2.0.3 |
actuar | 3.3-4 | actuaRE | 0.1.5 |
ActuarialM | 0.1.0 | actuaryr | 1.1.1 |
actxps | 1.4.0 | ada | 2.0-5 |
adagio | 0.9.2 | adaptivetau | 2.3-1 |
adaptMCMC | 1.5 | adaptr | 1.3.2 |
ADAPTS | 1.0.22 | adaptsmoFMRI | 1.2 |
adaptTest | 1.2 | additivityTests | 1.1-4.1 |
ade4 | 1.7-22 | ade4TkGUI | 0.3-1 |
adegenet | 2.1.10 | adegraphics | 1.0-21 |
adehabitatHR | 0.4.21 | adehabitatHS | 0.3.17 |
adehabitatLT | 0.3.27 | adehabitatMA | 0.3.16 |
adephylo | 1.1-16 | ADGofTest | 0.3 |
adimpro | 0.9.6 | adiv | 2.2.1 |
adjclust | 0.6.9 | admisc | 0.35 |
AdMit | 2.1.9 | ads | 1.5-10 |
AdvancedBasketballStats | 1.0.1 | AER | 1.2-12 |
affy | 1.78.0 | affyio | 1.70.0 |
africamonitor | 0.2.4 | agricolae | 1.3-7 |
agricolaeplotr | 0.5.0 | agridat | 1.23 |
agriwater | 1.0.2 | agvgd | 0.1.2 |
AhoCorasickTrie | 0.1.2 | airGR | 1.7.6 |
airGRdatassim | 0.1.3 | airGRiwrm | 0.6.2 |
airGRteaching | 0.3.2 | airports | 0.1.0 |
airr | 1.5.0 | ajv | 1.0.0 |
akima | 0.6-3.4 | alabama | 2023.1.0 |
alakazam | 1.3.0 | aLFQ | 1.3.6 |
AlgDesign | 1.2.1 | aliases2entrez | 0.1.2 |
almanac | 1.0.0 | alpaca | 0.3.4 |
alphavantager | 0.1.3 | ALTopt | 0.1.2 |
Amelia | 1.8.2 | AmericanCallOpt | 0.95 |
ammiBayes | 1.0-2 | ampir | 1.1.0 |
AMR | 2.1.1 | anabel | 3.0.1 |
AnaCoDa | 0.1.4.4 | anacor | 1.1-4 |
analogsea | 1.0.7.2 | anesrake | 0.80 |
animation | 2.7 | anipaths | 0.10.3 |
anMC | 0.2.5 | annotate | 1.78.0 |
AnnotationBustR | 1.3.0 | AnnotationDbi | 1.62.1 |
AnnuityRIR | 1.0-0 | Anthropometry | 1.19 |
anytime | 0.3.9 | ao | 0.3.3 |
aod | 1.3.3 | aoos | 0.5.0 |
AovBay | 0.1.0 | apc | 2.0.0 |
apcluster | 1.4.12 | ape | 5.8 |
APFr | 1.0.2 | aphid | 1.3.5 |
aphylo | 0.3-3 | aplot | 0.2.2 |
apollo | 0.3.2 | approximator | 1.2-8 |
apt | 3.0 | ARCensReg | 3.0.1 |
arcgislayers | 0.2.0 | arcgisutils | 0.2.0 |
ArchaeoChron | 0.1 | ArchaeoPhases | 1.8 |
archetypes | 2.2-0.1 | archivist | 2.3.6 |
ArDec | 2.1-1 | ARDL | 0.2.4 |
ardl.nardl | 1.3.0 | areal | 0.1.8 |
arfima | 1.8-1 | argparse | 2.2.3 |
arm | 1.14-4 | aroma.apd | 0.7.0 |
arpr | 0.1.2 | arrangements | 1.1.9 |
arrow | 15.0.1 | ars | 0.7 |
aRxiv | 0.10 | ascii | 2.6 |
asd | 2.2 | ash | 1.0-15 |
ashr | 2.2-63 | AsioHeaders | 1.22.1-2 |
askpass | 1.2.0 | aspect | 1.0-6 |
ASSA | 2.0 | assertive.base | 0.0-9 |
assertive.files | 0.0-2 | assertive.numbers | 0.0-2 |
assertthat | 0.2.1 | AssetCorr | 1.0.4 |
astrochron | 1.2 | astsa | 2.1 |
asymmetry | 2.0.4 | ata | 1.1.1 |
atom4R | 0.3-3 | atRisk | 0.1.0 |
aTSA | 3.1.2.1 | attempt | 0.3.1 |
attention | 0.4.0 | AUC | 0.3.2 |
audio | 0.1-11 | autoFRK | 1.4.3 |
autoimage | 2.2.3 | automap | 1.1-9 |
autostsm | 3.1.4 | av | 0.9.0 |
aweek | 1.0.3 | aws | 2.5-5 |
aws.signature | 0.6.0 | awsMethods | 1.1-1 |
AzureAuth | 1.3.3 | AzureCognitive | 1.0.1 |
AzureContainers | 1.3.2 | AzureCosmosR | 1.0.0 |
AzureGraph | 1.3.4 | AzureKusto | 1.1.3 |
AzureQstor | 1.0.1 | AzureRMR | 2.4.4 |
AzureStor | 3.7.0 | AzureTableStor | 1.0.0 |
AzureVision | 1.0.2 | AzureVM | 2.2.2 |
babelgene | 22.9 | babelwhale | 1.2.0 |
BACCO | 2.1-0 | BACCT | 1.0 |
backports | 1.4.1 | backtest | 0.3-4 |
bacondecomp | 0.1.1 | baggr | 0.7.8 |
bain | 0.2.10 | BalancedSampling | 2.0.6 |
BaM | 1.0.3 | bama | 1.3.0 |
bamdit | 3.4.0 | bamlss | 1.2-3 |
BAMMtools | 2.1.11 | bang | 1.0.3 |
BANOVA | 1.2.1 | BarcodingR | 1.0-3 |
BART | 2.9.7 | bartBMA | 1.0 |
bartCause | 1.0-6 | bartMachine | 1.3.4.1 |
bartMachineJARs | 1.2.1 | BAS | 1.7.1 |
basad | 0.3.0 | base64 | 2.0.1 |
base64enc | 0.1-3 | base64url | 1.4 |
baseballDBR | 0.1.2 | basicMCMCplots | 0.2.7 |
BASiNET | 0.0.5 | BaSkePro | 1.1.1 |
BasketballAnalyzeR | 0.5.0 | BASS | 1.3.1 |
BatchExperiments | 1.4.3 | BatchJobs | 1.9 |
batchmeans | 1.0-4 | BAwiR | 1.3.2 |
baycn | 1.2.0 | bayefdr | 0.2.1 |
bayes4psy | 1.2.12 | bayesAB | 1.1.3 |
bayesammi | 0.1.0 | bayesanova | 1.6 |
BayesARIMAX | 0.1.1 | BayesBinMix | 1.4.1 |
bayesbio | 1.0.0 | bayesboot | 0.2.2 |
BayesBP | 1.1 | bayesbr | 0.0.1.0 |
BayesCACE | 1.2.3 | BayesCombo | 1.0 |
BayesComm | 0.1-2 | bayescopulareg | 0.1.3 |
bayescount | 0.9.99-9 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.3.3 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.7 |
BayesFM | 0.1.5 | bayesforecast | 1.0.1 |
bayesGAM | 0.0.2 | bayesGARCH | 2.1.10 |
BayesGOF | 5.2 | BayesGPfit | 1.1.0 |
BayesGWQS | 0.1.1 | bayesian | 0.0.9 |
bayesianETAS | 1.0.3 | Bayesiangammareg | 0.1.0 |
BayesianGLasso | 0.2.0 | BayesianLaterality | 0.1.2 |
BayesianNetwork | 0.3 | BayesianTools | 0.1.8 |
bayesImageS | 0.6-1 | BayesLCA | 1.9 |
bayesLife | 5.2-0 | bayeslincom | 1.3.0 |
BayesLN | 0.2.10 | BayesLogit | 2.1 |
bayesloglin | 1.0.1 | bayeslongitudinal | 0.1.0 |
bayesm | 3.1-6 | BayesMallows | 2.2.1 |
BayesMassBal | 1.1.0 | bayesmeta | 3.4 |
bayesmix | 0.7-6 | bayesnec | 2.1.2.0 |
bayesplot | 1.11.1 | bayesQR | 2.4 |
BayesSAE | 1.0-2 | bayestestR | 0.13.2 |
bayesTFR | 7.4-2 | BayesTools | 0.2.17 |
BayesTree | 0.3-1.5 | BayesVarSel | 2.2.5 |
BayesX | 0.3-3 | BAYSTAR | 0.2-10 |
baytrends | 2.0.11 | BB | 2019.10-1 |
BBmisc | 1.13 | bbmle | 1.0.25.1 |
bbotk | 0.8.0 | BCBCSF | 1.0-1 |
BCC1997 | 0.1.1 | BCE | 2.2.0 |
Bchron | 4.7.6 | BClustLonG | 0.1.3 |
bcp | 4.0.3 | bcpa | 1.3.2 |
bcrm | 0.5.4 | BDgraph | 2.72 |
bdrc | 1.1.0 | bdsmatrix | 1.3-7 |
BE | 0.2.4 | beachmat | 2.16.0 |
beadarray | 2.50.0 | BeadDataPackR | 1.52.0 |
beakr | 0.4.3 | bearishTrader | 1.0.2 |
BED | 1.5.0 | beepr | 1.3 |
beeswarm | 0.4.0 | benchmarkme | 1.0.8 |
benchmarkmeData | 1.0.4 | BenfordTests | 1.2.0 |
bentcableAR | 0.3.1 | Bergm | 5.0.7 |
berryFunctions | 1.22.5 | Bessel | 0.6-0 |
BEST | 0.5.4 | BetaBit | 2.2 |
betafunctions | 1.9.0 | betapart | 1.6 |
betareg | 3.1-4 | betategarch | 3.3 |
BETS | 0.4.9 | bets.covid19 | 1.0.0 |
beyondWhittle | 1.2.1 | bezier | 1.1.2 |
bfast | 1.6.1 | BFpack | 1.2.3 |
BGGM | 2.1.1 | BGLR | 1.1.2 |
BGVAR | 2.5.5 | bgw | 0.1.3 |
BH | 1.84.0-0 | BHH2 | 2016.05.31 |
BiasCorrector | 0.2.2 | BiasedUrn | 2.0.11 |
bibtex | 0.5.1 | biclust | 2.0.3.1 |
bidask | 2.0.2 | bife | 0.7.2 |
BIFIEsurvey | 3.5-19 | biganalytics | 1.1.22 |
bigchess | 1.9.1 | bigD | 0.2.0 |
bigleaf | 0.8.2 | biglm | 0.9-2.1 |
bigmemory | 4.6.4 | bigmemory.sri | 0.1.8 |
bigrquery | 1.5.1 | bigsplines | 1.1-1 |
bigtime | 0.2.3 | BigVAR | 1.1.2 |
bimets | 3.0.2 | bindr | 0.1.1 |
bindrcpp | 0.2.3 | binman | 0.1.3 |
binom | 1.1-1.1 | binomSamSize | 0.1-5 |
binr | 1.1.1 | binseqtest | 1.0.4 |
bio3d | 2.4-4 | Biobase | 2.60.0 |
BiocFileCache | 2.8.0 | BiocGenerics | 0.46.0 |
BiocIO | 1.10.0 | BiocManager | 1.30.22 |
BiocParallel | 1.34.1 | BiocSingular | 1.16.0 |
BiocVersion | 3.17.1 | bioinactivation | 1.2.3 |
BioInsight | 0.3.1 | biomaRt | 2.56.1 |
biomartr | 1.0.7 | biomformat | 1.28.0 |
bioOED | 0.2.1 | bioseq | 0.1.4 |
Biostrings | 2.68.0 | biotic | 0.1.2 |
bipartite | 2.19 | birtr | 1.0.0 |
BisqueRNA | 1.0.5 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
biwavelet | 0.20.21 | bizdays | 1.0.16 |
bkmr | 0.2.2 | blaise | 1.3.11 |
blastula | 0.3.5 | blavaan | 0.5-4 |
BLModel | 1.0.2 | blob | 1.2.4 |
blocklength | 0.1.5 | blockmatrix | 1.0 |
blockrand | 1.5 | blocksdesign | 4.9 |
blockTools | 0.6.4 | blogdown | 1.19 |
BLR | 1.6 | BMA | 3.18.17 |
bmgarch | 2.0.0 | BMisc | 1.4.6 |
bmixture | 1.7 | BMS | 0.3.5 |
BMTAR | 0.1.1 | bnlearn | 4.9.3 |
BNPTSclust | 2.0 | BNSP | 2.2.3 |
bnstruct | 1.0.15 | boa | 1.1.8-2 |
boilerpipeR | 1.3.2 | BOIN | 2.7.2 |
bold | 1.3.0 | Bolstad | 0.2-41 |
Bolstad2 | 1.0-29 | bondAnalyst | 1.0.1 |
bookdown | 0.39 | Boom | 0.9.15 |
BoomSpikeSlab | 1.2.6 | bootnet | 1.6 |
BootPR | 1.0 | bootstrap | 2019.6 |
bootUR | 1.0.3 | BoSSA | 3.7 |
boussinesq | 1.0.6 | boxr | 0.3.6 |
bpca | 1.3-6 | bqtl | 1.0-36 |
BradleyTerry2 | 1.1-2 | brainR | 1.6.0 |
brandwatchR | 0.3.0 | breakfast | 2.3 |
brew | 1.0-10 | brglm | 0.7.2 |
brglm2 | 0.9.2 | bridgesampling | 1.1-2 |
BRINDA | 0.1.5 | brio | 1.1.5 |
brms | 2.21.0 | Brobdingnag | 1.2-9 |
broman | 0.80 | broom | 1.0.5 |
broom.helpers | 1.15.0 | brotli | 1.3.0 |
bsam | 1.1.3 | bsamGP | 1.2.5 |
BSgenome | 1.68.0 | bslib | 0.7.0 |
BsMD | 2023.920 | bspec | 1.6 |
bspmma | 0.1-2 | bssm | 2.0.2 |
BSSprep | 0.1 | bsts | 0.9.10 |
bsvars | 2.1.0 | BTLLasso | 0.1-13 |
BTM | 0.3.7 | bullishTrader | 1.0.1 |
bundesbank | 0.1-12 | BurStFin | 1.3 |
BurStMisc | 1.1 | BVAR | 1.0.5 |
bvartools | 0.2.4 | bvls | 1.4 |
C50 | 0.1.8 | ca | 0.71.1 |
cabinets | 0.6.0 | cabootcrs | 2.1.0 |
cachem | 1.0.8 | cacIRT | 1.4 |
CADFtest | 0.3-3 | caffsim | 0.2.2 |
Cairo | 1.6-2 | CALANGO | 1.0.16 |
calculus | 1.0.1 | calibrate | 1.7.7 |
CalibrateSSB | 1.3.0 | calibrator | 1.2-8 |
callr | 3.7.6 | cancensus | 0.5.7 |
candisc | 0.8-6 | canprot | 2.0.0 |
CANSIM2R | 1.14.1 | caper | 1.0.3 |
captr | 0.3.0 | capushe | 1.1.2 |
car | 3.1-2 | caRamel | 1.3 |
CARBayes | 6.1.1 | CARBayesdata | 3.0 |
CARBayesST | 4.0 | carData | 3.0-5 |
caret | 6.0-94 | carfima | 2.0.2 |
caribou | 1.1-1 | carrier | 0.1.1 |
cartogram | 0.3.0 | Cascade | 2.1 |
CascadeData | 1.4 | CAST | 1.0.0 |
castor | 1.8.0 | cate | 1.1.1 |
caTools | 1.18.2 | catR | 3.17 |
causact | 0.5.5 | CausalImpact | 1.3.0 |
CAvariants | 6.0 | CB2 | 1.3.4 |
cbioportalR | 1.1.0 | cbsodataR | 1.0.1 |
ccaPP | 0.3.3 | cccp | 0.3-1 |
cdlTools | 1.13 | CDM | 8.2-6 |
CDNmoney | 2012.4-2 | cds | 1.0.3 |
CellNOptR | 1.46.0 | cellranger | 1.1.0 |
censReg | 0.5-36 | censusapi | 0.8.0 |
CEoptim | 1.3 | CePa | 0.8.0 |
CeRNASeek | 2.1.3 | cfbfastR | 1.9.0 |
CFtime | 1.3.0 | ChainLadder | 0.2.18 |
chandwich | 1.1.6 | changepoint | 2.2.4 |
changepoint.geo | 1.0.2 | changepoint.np | 1.0.5 |
checkLuhn | 1.1.0 | checkmate | 2.3.1 |
checkpoint | 1.0.2 | chem.databases | 1.0.0 |
ChemoSpec | 6.1.10 | ChemoSpecUtils | 1.0.4 |
cherryblossom | 0.1.0 | chess | 1.0.1 |
chilemapas | 0.3.0 | chk | 0.9.1 |
CHNOSZ | 2.1.0 | choiceDes | 0.9-3 |
CholWishart | 1.1.2 | choroplethr | 3.7.3 |
choroplethrMaps | 1.0.1 | chromoMap | 4.1.1 |
chromote | 0.2.0 | chron | 2.3-61 |
cifti | 0.4.5 | cinterpolate | 1.0.1 |
circlize | 0.4.16 | CircSpaceTime | 0.9.0 |
CircStats | 0.2-6 | circular | 0.5-0 |
ciTools | 0.6.1 | Ckmeans.1d.dp | 4.3.5 |
Claddis | 0.6.3 | clarabel | 0.5.1 |
clarifai | 0.4.2 | classInt | 0.4-10 |
cli | 3.6.2 | clifro | 3.2-5 |
climatol | 4.1.0 | clime | 0.5.0 |
clinDR | 2.4.1 | clinfun | 1.1.5 |
clinicalsignificance | 2.0.0 | clinPK | 0.13.0 |
clinsig | 1.2 | clipr | 0.8.0 |
clisymbols | 1.2.0 | clmplus | 0.1.0 |
clock | 0.7.0 | clubSandwich | 0.5.10 |
clue | 0.3-65 | clustDRM | 0.1-0 |
clusterGeneration | 1.3.8 | clusterPower | 0.7.0 |
clusterSEs | 2.6.5 | clustMixType | 0.3-14 |
ClustVarLV | 2.1.1 | clv | 0.3-2.4 |
cmaes | 1.0-12 | cmaesr | 1.0.3 |
CMLS | 1.0-1 | cmm | 1.0 |
cmocean | 0.3-1 | cmprsk | 2.2-11 |
cmrutils | 1.3.1 | cNORM | 3.0.4 |
CNORode | 1.42.0 | coalescentMCMC | 0.4-4 |
coalitions | 0.6.24 | coarseDataTools | 0.6-6 |
cobalt | 4.5.5 | cobs | 1.3-8 |
coconots | 1.1.3 | COCONUT | 1.0.2 |
cocor | 1.1-4 | cocorresp | 0.4-4 |
cocron | 1.0-1 | coda | 0.19-4.1 |
cOde | 1.1.1 | coin | 1.4-3 |
cointReg | 0.2.0 | colf | 0.1.3 |
collapse | 2.0.13 | collapsibleTree | 0.1.8 |
collections | 0.3.7 | colorr | 1.0.0 |
colorRamps | 2.3.4 | colorspace | 2.1-0 |
colourpicker | 1.3.0 | colourvalues | 0.3.9 |
combinat | 0.0-8 | combinedevents | 0.1.1 |
CombinS | 1.1-1 | ComICS | 1.0.4 |
CommonJavaJars | 1.1-0 | commonmark | 1.9.1 |
compare | 0.2-6 | compas | 0.1.1 |
CompQuadForm | 1.4.3 | comprehenr | 0.6.10 |
conditionz | 0.1.0 | coneproj | 1.17 |
conf.design | 2.0.0 | config | 0.3.2 |
confintr | 1.0.2 | conflicted | 1.2.0 |
conquer | 1.3.3 | conquestr | 1.3.0 |
contactdata | 1.0.0 | contfrac | 1.1-12 |
convevol | 2.0.1 | convey | 1.0.0 |
coop | 0.6-3 | cops | 1.3-1 |
copula | 1.1-3 | copulaData | 0.0-2 |
copulaedas | 1.4.3 | cordillera | 1.0-0 |
corHMM | 2.8 | coro | 1.0.4 |
corona | 0.3.0 | coronavirus | 0.4.1 |
corpcor | 1.6.10 | corpora | 0.6 |
corporaexplorer | 0.8.6 | corrgram | 1.14 |
corrplot | 0.92 | cosa | 2.1.0 |
CoSMoS | 2.1.0 | costat | 2.4.1 |
countrycode | 1.6.0 | CovCombR | 1.0 |
COVID19 | 3.0.3 | covid19.analytics | 2.1.3.3 |
covid19br | 0.1.8 | covid19dbcand | 0.1.1 |
covid19france | 0.1.0 | covid19italy | 0.3.1 |
covid19sf | 0.1.2 | covid19swiss | 0.1.0 |
covid19us | 0.1.9 | CovidMutations | 0.1.3 |
cowplot | 1.1.3 | cp4p | 0.3.6 |
CPBayes | 1.1.0 | cpk | 1.3-1 |
cplm | 0.7-12 | cpp11 | 0.4.7 |
CRABS | 1.2.0 | crawl | 2.3.0 |
crayon | 1.5.2 | crch | 1.1-2 |
credentials | 2.0.1 | credule | 0.1.4 |
crfsuite | 0.4.2 | cricketdata | 0.2.3 |
cricketr | 0.0.26 | CRM | 1.2.4 |
crmPack | 1.0.5 | crossdes | 1.1-2 |
Crossover | 0.1-22 | crosstalk | 1.2.1 |
crs | 0.15-37 | crseEventStudy | 1.2.2 |
crsmeta | 0.3.0 | crul | 1.4.2 |
crunch | 1.30.4 | crunchy | 0.3.3 |
cSEM | 0.5.0 | CSGo | 0.6.7 |
cshapes | 2.0 | csodata | 1.4.2 |
cstab | 0.2-2 | csv | 0.6.2 |
ctbi | 2.0.5 | ctmcmove | 1.2.9 |
ctmm | 1.2.0 | ctrdata | 1.17.2 |
ctsem | 3.9.1 | ctsemOMX | 1.0.6 |
CTT | 2.3.3 | CTTShiny | 0.1 |
ctv | 0.9-5 | cubature | 2.1.0 |
cubble | 0.3.0 | cubelyr | 1.0.2 |
cubfits | 0.1-4 | Cubist | 0.4.2.1 |
cumSeg | 1.3 | curl | 5.2.1 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-12 |
d3Network | 0.5.2.1 | DAAG | 1.25.4 |
dae | 3.2.25 | daewr | 1.2-11 |
dagitty | 0.3-4 | DAKS | 2.1-3 |
DALEX | 2.4.3 | DAMOCLES | 2.3 |
data.table | 1.15.4 | data.tree | 1.1.0 |
DatabaseConnector | 6.3.2 | DataExplorer | 0.8.3 |
dataone | 2.2.2 | datapack | 1.4.1 |
datapasta | 3.1.0 | dataRetrieval | 2.7.15 |
datarobot | 2.18.6 | dataseries | 0.2.0 |
dataverse | 0.3.13 | datawizard | 0.10.0 |
date | 1.2-42 | dateback | 1.0.4 |
datetimeutils | 0.6-4 | dbarts | 0.9-26 |
dbhydroR | 0.2-8 | DBI | 1.2.2 |
DBItest | 1.8.1 | dbmss | 2.9-0 |
dbparser | 2.0.3 | dbplyr | 2.5.0 |
dbscan | 1.1-12 | dbx | 0.3.1 |
DChaos | 0.1-7 | dclone | 2.3-2 |
DCluster | 0.2-10 | DClusterm | 1.0-1 |
dcov | 0.1.1 | dCovTS | 1.4 |
dcurver | 0.9.2 | ddalpha | 1.3.15 |
DDD | 5.2.2 | dde | 1.0.5 |
DDPM | 0.1.0 | deBInfer | 0.4.4 |
debugme | 1.1.0 | decompr | 6.4.0 |
deducorrect | 1.3.7 | deductive | 1.0.0 |
DeductiveR | 1.0.0 | deeptime | 1.1.1 |
Delaporte | 8.4.0 | DelayedArray | 0.26.7 |
DelayedMatrixStats | 1.22.6 | deldir | 2.0-4 |
deltaPlotR | 1.6 | demography | 2.0 |
dendextend | 1.17.1 | dendsort | 0.3.4 |
densEstBayes | 1.0-2.2 | DEoptim | 2.2-8 |
DEoptimR | 1.1-3 | depmix | 0.9.16 |
depmixS4 | 1.5-0 | DepthProc | 2.1.5 |
depthTools | 0.7 | Deriv | 4.1.3 |
derivmkts | 0.2.5 | desc | 1.4.3 |
DescTools | 0.99.54 | DESeq2 | 1.40.2 |
designmatch | 0.5.4 | desiR | 1.2.2 |
desirability | 2.1 | deSolve | 1.40 |
desplot | 1.10 | devtools | 2.4.5 |
dexter | 1.4.2 | dextergui | 0.2.6 |
dexterMST | 0.9.6 | dfcomb | 3.1-1 |
dfcrm | 0.2-2.1 | dfidx | 0.0-5 |
DFIT | 1.1 | dfms | 0.2.1 |
dfmta | 1.7-3 | dfoptim | 2023.1.0 |
dfped | 1.1 | dfpk | 3.5.1 |
DGEobj | 1.1.2 | DGEobj.utils | 1.0.6 |
DHARMa | 0.4.6 | DHS.rates | 0.9.2 |
diagis | 0.2.3 | diagonals | 6.4.0 |
diagram | 1.6.5 | DiagrammeR | 1.0.11 |
dials | 1.2.1 | DiceDesign | 1.10 |
DiceEval | 1.6.1 | DiceKriging | 1.6.0 |
DiceView | 2.2-0 | dichromat | 2.0-0.1 |
DICOMread | 0.0.0.3 | did | 2.1.2 |
did2s | 1.0.2 | didimputation | 0.3.0 |
DIFboost | 0.3 | DiffCorr | 0.4.3 |
diffEnrich | 0.1.2 | diffobj | 0.3.5 |
diffpriv | 0.4.2 | diffusion | 0.4.0 |
DIFlasso | 1.0-4 | difNLR | 1.4.2-1 |
DIFplus | 1.1 | difR | 5.1 |
DIFtree | 3.1.6 | digest | 0.6.35 |
DIMORA | 0.3.6 | dimRed | 0.2.6 |
dina | 2.0.0 | DiPALM | 1.2 |
dipsaus | 0.2.8 | diptest | 0.77-1 |
Dire | 2.2.0 | DIRECT | 1.1.0 |
directlabels | 2024.1.21 | directPA | 1.5.1 |
dirichletprocess | 0.4.2 | dirmult | 0.1.3-5 |
disaggR | 1.0.5.2 | DIscBIO | 1.2.2 |
DiscreteFDR | 1.3.7 | discretization | 1.0-1.1 |
dispRity | 1.8 | DistatisR | 1.1.1 |
distcrete | 1.0.3 | distfree.cr | 1.5.1 |
distill | 1.6 | distory | 1.4.4 |
distr | 2.9.3 | distrEx | 2.9.2 |
distributional | 0.4.0 | distributions3 | 0.2.1 |
DistributionUtils | 0.6-1 | distrom | 1.0.1 |
distrTeach | 2.9.1 | dittodb | 0.1.8 |
diversitree | 0.10-0 | divest | 1.0.0 |
divseg | 0.0.5 | dLagM | 1.1.13 |
dlm | 1.1-6 | dlnm | 2.4.7 |
dlsem | 2.4.6 | dlstats | 0.1.7 |
dm | 1.0.10 | dmri.tracking | 0.1.0 |
dnapath | 0.7.4 | doBy | 4.6.20 |
doc2vec | 0.2.0 | docopt | 0.7.1 |
docopulae | 0.4.0 | DoE.base | 1.2-4 |
DoE.MIParray | 1.0-1 | DoE.wrapper | 0.12 |
doFuture | 1.0.1 | doMC | 1.3.8 |
doParallel | 1.0.17 | doRNG | 1.8.6 |
DoseFinding | 1.1-1 | doSNOW | 1.0.20 |
DOSPortfolio | 0.1.0 | dotCall64 | 1.1-1 |
DoubleML | 1.0.0 | Dowd | 0.12 |
downlit | 0.4.3 | downloader | 0.4 |
dparser | 1.3.1-11 | dplyr | 1.1.4 |
dqrng | 0.3.2 | dr4pl | 2.0.0 |
drake | 7.13.9 | drat | 0.2.4 |
DRaWR | 1.0.3 | DRDID | 1.0.6 |
dreamerr | 1.4.0 | DriftBurstHypothesis | 0.4.0.1 |
driveR | 0.4.1 | DRomics | 2.5-2 |
DRR | 0.0.4 | dsa | 1.0.12 |
DSAIDE | 0.9.6 | dsb | 1.0.3 |
dse | 2020.2-1 | DSI | 1.5.0 |
DSL | 0.1-7 | DT | 0.33 |
DTAT | 0.3-6 | DtD | 0.2.2 |
dti | 1.5.4 | dtplyr | 1.3.1 |
DTSg | 1.1.3 | dtt | 0.1-2 |
dtts | 0.1.2 | dtw | 1.23-1 |
dtwclust | 5.5.12 | duckdb | 0.10.1 |
duckduckr | 1.0.0 | dunn.test | 1.3.6 |
dwctaxon | 2.0.3 | dygraphs | 1.1.1.6 |
Dykstra | 1.0-0 | dyn | 0.2-9.6 |
dynamicTreeCut | 1.63-1 | dynatop | 0.2.3 |
dynatopGIS | 0.2.5 | dynaTree | 1.2-16 |
dynlm | 0.3-6 | dynparam | 1.0.2 |
dynutils | 1.0.11 | dynwrap | 1.2.4 |
DysPIA | 1.3 | DysPIAData | 0.1.2 |
e1071 | 1.7-14 | earlyR | 0.0.5 |
earth | 5.3.3 | easypower | 1.0.2 |
easySdcTable | 1.0.7 | eba | 1.10-0 |
EbayesThresh | 1.4-12 | ebdbNet | 1.2.8 |
EBImage | 4.42.0 | EBMAforecast | 1.0.32 |
ecb | 0.4.2 | Ecdat | 0.4-2 |
ecespa | 1.1-17 | Ecfun | 0.3-2 |
echor | 0.1.9 | ecm | 7.2.0 |
ecodist | 2.1.3 | Ecohydmod | 1.0.0 |
ECOSolveR | 0.5.5 | ecoval | 1.2.9 |
ecp | 3.1.5 | ecr | 2.1.1 |
edfReader | 1.2.1 | edgeR | 3.42.2 |
edina | 0.1.1 | editrules | 2.9.3 |
edmdata | 1.2.0 | edstan | 1.0.6 |
EdSurvey | 4.0.4 | eegkit | 1.0-4 |
eegkitdata | 1.1 | EFAutilities | 2.1.3 |
effects | 4.2-2 | EGAnet | 2.0.6 |
egg | 0.4.5 | egor | 1.24.2 |
EGRET | 3.0.9 | EGRETci | 2.0.4 |
eha | 2.11.4 | eigenmodel | 1.11 |
eiopaR | 0.1.1 | elastic | 1.2.0 |
elasticnet | 1.3 | elevatr | 0.99.0 |
ellipse | 0.5.0 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | elo | 3.0.2 |
EloChoice | 0.29.4 | EloRating | 0.46.11 |
ELT | 1.7 | EMbC | 2.0.4 |
EMD | 1.5.9 | emdi | 2.2.1 |
emg | 1.0.9 | emmeans | 1.10.1 |
EMMIXgene | 0.1.4 | emoa | 0.5-2 |
emulator | 1.2-24 | encode | 0.3.6 |
endtoend | 2.29 | energy | 1.7-11 |
EngrExpt | 0.1-8 | enrichR | 3.2 |
enrichwith | 0.3.1 | ensembleBMA | 5.1.8 |
entropart | 1.6-13 | entropy | 1.3.1 |
EntropyEstimation | 1.2 | EntropyMCMC | 1.0.4 |
enveomics.R | 1.9.1 | enviPat | 2.6 |
EnvStats | 2.8.1 | epanet2toolkit | 1.0.4 |
epanetReader | 0.7.3 | Epi | 2.48 |
epibasix | 1.5 | epicontacts | 1.1.3 |
EpiContactTrace | 0.17.0 | EpiCurve | 2.4-2 |
epiDisplay | 3.5.0.2 | EpiEstim | 2.2-4 |
epiflows | 0.2.1 | EpiILM | 1.5.2 |
EpiILMCT | 1.1.7 | epimdr | 0.6-5 |
EpiModel | 2.4.0 | epinet | 2.1.11 |
epiR | 2.0.73 | EpiReport | 1.0.2 |
episensr | 1.3.0 | epitools | 0.5-10.1 |
epitrix | 0.4.0 | epm | 1.1.2 |
equate | 2.0.8 | equateIRT | 2.4.0 |
equateMultiple | 0.1.2 | equivalence | 0.7.2 |
era | 0.4.1 | erah | 2.0.1 |
erer | 3.1 | ergm | 4.6.0 |
ergm.ego | 1.1.0 | ergm.multi | 0.2.1 |
eRm | 1.0-6 | errorlocate | 1.1.1 |
errum | 0.0.3 | esaBcv | 1.2.1.1 |
esemifar | 1.0.2 | ESG | 1.3 |
EstCRM | 1.6 | estimability | 1.5 |
EstimateGroupNetwork | 0.3.1 | estimatr | 1.0.4 |
ETLUtils | 1.5 | etm | 1.1.1 |
etrm | 1.0.1 | etrunct | 0.1 |
etwfe | 0.4.0 | EUfootball | 0.0.1 |
eulerr | 7.0.2 | europepmc | 0.4.3 |
eurostat | 4.0.0 | evaluate | 0.23 |
Evapotranspiration | 1.16 | evd | 2.3-7 |
evgam | 1.0.0 | evir | 1.7-4 |
evobiR | 1.1 | EvoPhylo | 0.3.2 |
evtree | 1.0-8 | ewoc | 0.3.0 |
Exact | 3.2 | exactextractr | 0.10.0 |
exactRankTests | 0.8-35 | exams | 2.4-0 |
ExceedanceTools | 1.3.6 | exdex | 1.2.3 |
experiment | 1.2.1 | expint | 0.1-8 |
expm | 0.999-9 | ExPosition | 2.8.23 |
expsmooth | 2.3 | exreport | 0.4.1 |
extraDistr | 1.10.0 | extrafont | 0.19 |
extrafontdb | 1.0 | extraoperators | 0.3.0 |
ExtremeBounds | 0.1.7 | ExtremeRisks | 0.0.4 |
eyelinker | 0.2.1 | ez | 4.4-0 |
fable | 0.3.4 | fable.prophet | 0.1.0 |
fabletools | 0.4.2 | FactoClass | 1.2.9 |
factoextra | 1.0.7 | FactoMineR | 2.11 |
factorstochvol | 1.1.0 | FAdist | 2.4 |
fanplot | 4.0.0 | fansi | 1.0.6 |
FAOSTAT | 2.3.0 | faoutlier | 0.7.6 |
faraway | 1.0.8 | farver | 2.1.1 |
fAssets | 4023.85 | fasstr | 0.5.2 |
fastcluster | 1.2.6 | fastDummies | 1.7.3 |
fastGHQuad | 1.0.1 | fastICA | 1.2-4 |
fastLink | 0.6.1 | fastmap | 1.1.1 |
fastmatch | 1.1-4 | fastRhockey | 0.4.0 |
fastrmodels | 1.0.2 | FastRWeb | 1.2-1 |
fasttime | 1.1-0 | FatTailsR | 1.8-5 |
fauxpas | 0.5.2 | FAVAR | 0.1.3 |
fbar | 0.6.0 | fBasics | 4032.96 |
fBonds | 3042.78 | fbRads | 17.0.0 |
fCopulae | 4022.85 | FD | 1.0-12.3 |
fda | 6.1.8 | fdaACF | 1.0.0 |
fdapace | 0.5.9 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.3-0 |
feasts | 0.3.2 | feather | 0.3.5 |
fechner | 1.0-3 | FedData | 4.0.1 |
FeedbackTS | 1.5 | feisr | 1.3.0 |
fExtremes | 4032.84 | ff | 4.0.12 |
FFD | 1.0-9 | fflr | 2.2.4 |
ffscrapr | 1.4.8 | ffsimulator | 1.2.3 |
fftwtools | 0.9-11 | fGarch | 4033.92 |
fHMM | 1.2.2 | FielDHub | 1.3.7 |
fields | 15.2 | fiery | 1.2.1 |
filearray | 0.1.6 | filehash | 2.4-5 |
filehashSQLite | 0.2-6 | filelock | 1.0.3 |
filematrix | 1.3 | fImport | 4032.87 |
FinancialMath | 0.1.1 | FinAsym | 1.0 |
findpython | 1.0.8 | FinNet | 0.1.2 |
finnts | 0.4.0 | finreportr | 1.0.4 |
FinTS | 0.4-9 | FiRE | 1.0.1 |
fishMod | 0.29 | fitdistrplus | 1.1-11 |
fitzRoy | 1.3.0 | fixest | 0.12.0 |
FKF | 0.2.5 | FKF.SP | 0.3.1 |
flacco | 1.8 | flashClust | 1.01-2 |
flexclust | 1.4-1 | flexdashboard | 0.6.2 |
flexmix | 2.3-19 | FlexScan | 0.2.2 |
flextable | 0.9.5 | flippant | 1.5.5 |
float | 0.3-2 | flock | 0.7 |
flowr | 0.9.11 | FlowScreen | 1.2.6 |
FLSSS | 9.1.3 | fma | 2.5 |
FMC | 1.0.1 | fmcmc | 0.5-2 |
fmdates | 0.1.4 | FME | 1.3.6.3 |
fmesher | 0.1.5 | fmri | 1.9.12 |
fMultivar | 4031.84 | fnets | 0.1.6 |
FNN | 1.1.4 | fNonlinear | 4021.81 |
fontawesome | 0.5.2 | fontBitstreamVera | 0.1.1 |
fontLiberation | 0.1.0 | fontquiver | 0.2.1 |
footballpenaltiesBL | 1.0.0 | footBayes | 0.2.0 |
forcats | 1.0.0 | foreach | 1.5.2 |
ForeCA | 0.2.7 | forecast | 8.22.0 |
ForecastComb | 1.3.1 | forecastHybrid | 5.0.19 |
forecastLSW | 1.0 | forecastML | 0.9.0 |
FoReco | 0.2.6 | forecTheta | 2.6.2 |
forestplot | 3.1.3 | forge | 0.2.0 |
formatR | 1.14 | formattable | 0.2.1 |
Formula | 1.2-5 | formula.tools | 1.7.1 |
FossilSim | 2.3.2 | fourPNO | 1.1.0 |
fpc | 2.2-11 | fpcb | 0.1.0 |
fpCompare | 0.2.4 | FPLdata | 0.1.0 |
fPortfolio | 4023.84 | fpp2 | 2.5 |
fpp3 | 0.5 | fracdiff | 1.5-3 |
Frames2 | 0.2.1 | FRAPO | 0.4-1 |
fredr | 2.1.0 | freecurrencyapi | 0.1.0 |
freesurferformats | 0.1.18 | fRegression | 4021.83 |
frenchdata | 0.2.0 | freqdom | 2.0.5 |
freqdom.fda | 1.0.1 | fresh | 0.2.0 |
FrF2 | 2.3-3 | FrF2.catlg128 | 1.2-3 |
FRK | 2.2.3 | frontier | 1.1-8 |
frostr | 0.2.0 | fs | 1.6.3 |
FSA | 0.9.5 | fslr | 2.25.2 |
fsMTS | 0.1.7 | fst | 0.9.8 |
fstcore | 0.9.18 | fTrading | 3042.79 |
ftrCOOL | 2.0.0 | ftsa | 6.4 |
func2vis | 1.0-3 | functional | 0.6 |
fungible | 2.4.4 | funtimes | 9.1 |
furrr | 0.3.1 | futile.logger | 1.4.3 |
futile.options | 1.0.1 | future | 1.33.2 |
future.apply | 1.11.2 | fuzzyjoin | 0.1.6 |
fwildclusterboot | 0.13.0 | fxregime | 1.0-4 |
GA | 3.2.4 | GAD | 1.1.1 |
gafit | 0.5.1 | gam | 1.22-3 |
gamlr | 1.13-8 | gamlss | 5.4-22 |
gamlss.data | 6.0-6 | gamlss.dist | 6.1-1 |
GANPA | 1.2 | GANPAdata | 1.0 |
gap | 1.5-3 | gap.datasets | 0.0.6 |
gapfill | 0.9.6-1 | GARCHSK | 0.1.0 |
garchx | 1.5 | gargle | 1.5.2 |
garma | 0.9.13 | GAS | 0.3.4 |
gasmodel | 0.6.0 | gaussquad | 1.0-3 |
GaussSuppression | 0.8.3 | gbm | 2.1.9 |
gbutils | 0.5 | gclus | 1.3.2 |
GCPM | 1.2.2 | gdalcubes | 0.7.0 |
gdalraster | 1.10.0 | gdalUtilities | 1.2.5 |
gdata | 3.0.0 | GDINA | 2.9.4 |
gdistance | 1.6.4 | gdpc | 1.1.4 |
gdtools | 0.3.7 | gear | 0.3.4 |
gee | 4.13-26 | geeM | 0.10.1 |
geepack | 1.3.10 | geiger | 2.0.11 |
genalg | 0.2.1 | gender | 0.6.0 |
GeneCycle | 1.1.5 | geneExpressionFromGEO | 0.9 |
genefilter | 1.82.1 | GeneNet | 1.2.16 |
GeneralizedHyperbolic | 0.8-6 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | geno2proteo | 0.0.6 |
GenomeInfoDb | 1.36.0 | GenomeInfoDbData | 1.2.10 |
GenomicAlignments | 1.36.0 | GenomicFeatures | 1.52.2 |
GenomicRanges | 1.52.0 | genoPlotR | 0.8.11 |
GenSA | 1.1.14 | geodist | 0.0.8 |
geogrid | 0.1.2 | geojson | 0.3.5 |
geojsonio | 0.11.3 | geojsonsf | 2.0.3 |
GEOmap | 2.5-5 | geomapdata | 2.0-2 |
geometa | 0.8-0 | geometries | 0.2.4 |
geometry | 0.4.7 | geomorph | 4.0.7 |
geomtextpath | 0.1.3 | geonames | 0.999 |
geonapi | 0.7-2 | GEOquery | 2.68.0 |
geoR | 1.9-4 | geos | 0.2.4 |
geosapi | 0.7-1 | geoscale | 2.0.1 |
geosphere | 1.5-18 | geospt | 1.0-4 |
geostan | 0.6.0 | geotopbricks | 1.5.8.2 |
geouy | 0.2.8 | gert | 2.0.1 |
GET | 1.0 | getPass | 0.2-4 |
gets | 0.37 | GetTDData | 1.5.5 |
gfonts | 0.2.0 | GGally | 2.2.1 |
ggalt | 0.4.0 | gganimate | 1.0.9 |
ggdag | 0.2.12 | ggdemetra | 0.2.8 |
ggdendro | 0.2.0 | ggdist | 3.3.2 |
ggExtra | 0.10.1 | ggfittext | 0.10.2 |
ggforce | 0.4.2 | ggformula | 0.12.0 |
ggfortify | 0.4.17 | ggfun | 0.1.4 |
gggenes | 0.5.1 | gghalves | 0.1.4 |
ggimage | 0.3.3 | gginnards | 0.1.2 |
gglasso | 1.5.1 | ggm | 2.5.1 |
ggmap | 4.0.0 | ggmcmc | 1.5.1.1 |
ggmuller | 0.5.6 | ggnetwork | 0.5.13 |
ggnewscale | 0.4.10 | ggpath | 1.0.1 |
ggplot2 | 3.5.1 | ggplotify | 0.1.2 |
ggpmisc | 0.5.5 | ggpp | 0.5.6 |
ggpubr | 0.6.0 | ggquiver | 0.3.3 |
ggraph | 2.2.1 | ggrepel | 0.9.5 |
ggridges | 0.5.6 | ggsci | 3.0.3 |
ggseas | 0.5.4 | ggsignif | 0.6.4 |
ggsn | 0.5.0 | ggsoccer | 0.1.7 |
ggspatial | 1.1.9 | ggstance | 0.3.7 |
ggstats | 0.6.0 | ggtext | 0.1.2 |
ggthemes | 5.1.0 | ggtree | 3.8.0 |
ggupset | 0.3.0 | ggvis | 0.4.9 |
gh | 1.4.1 | ghyp | 1.6.4 |
Gifi | 0.4-0 | gifti | 0.8.0 |
GIGrvg | 0.8 | gimme | 0.7-16 |
giscoR | 0.4.2 | gistr | 0.9.0 |
git2r | 0.33.0 | gitcreds | 0.1.2 |
gitlabr | 2.0.1 | glarma | 1.6-0 |
GlarmaVarSel | 1.0 | glasso | 1.11 |
glassoFast | 1.0.1 | gld | 2.6.6 |
glm2 | 1.2.1 | glmmML | 1.1.6 |
GLMMRR | 0.5.0 | glmmSeq | 0.5.5 |
glmmTMB | 1.1.9 | glmnet | 4.1-8 |
glmx | 0.2-0 | GlobalOptions | 0.1.2 |
globalOptTests | 1.1 | globals | 0.16.3 |
glpkAPI | 1.3.4 | glue | 1.7.0 |
gmailr | 2.0.0 | GMDH | 1.6 |
Gmedian | 1.2.7 | gmm | 1.8 |
gmnl | 1.1-3.2 | gmodels | 2.19.1 |
gmp | 0.7-4 | gmt | 2.0.3 |
gmvarkit | 2.1.2 | GNAR | 1.1.3 |
gnm | 1.1-5 | GO.db | 3.17.0 |
goftest | 1.2-3 | gogarch | 0.7-5 |
golem | 0.4.1 | gontr | 1.1.0 |
googleAnalyticsR | 1.1.0 | googleAuthR | 2.0.1 |
googleCloudStorageR | 0.7.0 | googleComputeEngineR | 0.3.0 |
googledrive | 2.1.1 | googleLanguageR | 0.3.0 |
googlePolylines | 0.8.4 | googlesheets4 | 1.1.1 |
googleVis | 0.7.1 | googleway | 2.7.8 |
gower | 1.0.1 | GOxploreR | 1.2.7 |
GPareto | 1.1.8 | GPArotation | 2024.3-1 |
GPCMlasso | 0.1-7 | GPfit | 1.0-8 |
gplots | 3.1.3.1 | GPRMortality | 0.1.0 |
gprofiler2 | 0.2.3 | gradethis | 0.2.12.9004 |
graDiEnt | 1.0.1 | gRain | 1.4.1 |
grantham | 0.1.1 | graph | 1.78.0 |
graphicalVAR | 0.3.4 | graphite | 1.46.0 |
graphlayouts | 1.1.1 | graphsim | 1.0.3 |
graphTweets | 0.5.3 | grates | 1.2.0 |
gratis | 1.0.7 | gravitas | 0.1.3 |
gravity | 1.1 | gRbase | 2.0.1 |
greeks | 1.4.2 | greta | 0.4.5 |
greybox | 2.0.0 | grf | 2.3.2 |
gridBase | 0.4-7 | gridExtra | 2.3 |
gridGraphics | 0.5-1 | gridSVG | 1.7-5 |
gridtext | 0.1.5 | grImport | 0.9-7 |
grImport2 | 0.3-1 | grnn | 0.1.0 |
groundhog | 3.2.0 | GroupSeq | 1.4.3 |
grplasso | 0.4-7 | grwat | 0.0.4 |
GSA | 1.03.3 | gsarima | 0.1-5 |
gsDesign | 3.6.2 | GSEABase | 1.62.0 |
gSEM | 0.4.3.4 | gsheet | 0.4.5 |
gsignal | 0.3-5 | gsisdecoder | 0.0.1 |
gsl | 2.1-8 | gslnls | 1.3.0 |
GSODR | 4.0.0 | gss | 2.2-7 |
gstat | 2.1-1 | gsubfn | 0.7 |
GSVA | 1.48.3 | gsw | 1.1-1 |
gsynth | 1.2.1 | gt | 0.10.1 |
gtable | 0.3.5 | gtheory | 0.1.2 |
gtools | 3.9.5 | gtop | 0.2.0 |
gtrendsR | 1.5.1 | gtsummary | 1.7.2 |
GUIDE | 1.2.7 | GUniFrac | 1.8 |
gustave | 1.0.0 | gvc | 6.4.0 |
gwavr | 0.2.0 | gWidgets2 | 1.0-9 |
GWmodel | 2.3-2 | gwrr | 0.2-2 |
GWSDAT | 3.2.1 | h2o | 3.44.0.3 |
hackeRnews | 0.1.0 | HandTill2001 | 1.0.1 |
HaploSim | 1.8.4.2 | hardhat | 1.3.1 |
hash | 2.2.6.3 | haven | 2.5.4 |
hbsae | 1.2 | HBV.IANIGLA | 0.2.6 |
HDF5Array | 1.28.1 | hdf5r | 1.3.10 |
hdi | 0.1-9 | HDInterval | 0.2.4 |
hdm | 0.3.2 | HDMT | 1.0.5 |
hdrcde | 3.4 | HDShOP | 0.1.5 |
HDTSA | 1.0.2 | heatmaply | 1.5.0 |
hellno | 0.0.1 | heplots | 1.6.2 |
here | 1.0.1 | hett | 0.3-3 |
hexbin | 1.28.3 | hexSticker | 0.4.9 |
hflights | 0.1 | hglm | 2.2-1 |
hglm.data | 1.0-1 | hgnc | 0.1.4 |
HGNChelper | 0.8.1 | HH | 3.1-52 |
hht | 2.1.6 | HiClimR | 2.2.1 |
highcharter | 0.9.4 | highfrequency | 1.0.1 |
highlight | 0.5.1 | highr | 0.10 |
highs | 0.1-10 | HIMA | 2.2.1 |
hipread | 0.2.4 | hisse | 2.1.11 |
HKRbook | 0.1.3 | HLMdiag | 0.5.0 |
HMDHFDplus | 2.0.3 | Hmisc | 5.1-2 |
HMMpa | 1.0.1 | HMP | 2.0.1 |
HMPTrees | 1.4 | hms | 1.1.3 |
hoardr | 0.5.4 | homals | 1.0-10 |
hommel | 1.6 | hoopR | 2.1.0 |
hot.deck | 1.2 | howzatR | 1.0.1 |
hpfilter | 1.0.2 | HSAUR3 | 1.0-14 |
hsstan | 0.8.2 | htm2txt | 2.2.2 |
htmlTable | 2.4.2 | htmltools | 0.5.8.1 |
HTMLUtils | 0.1.9 | htmlwidgets | 1.6.4 |
hts | 6.0.2 | HTSCluster | 2.0.11 |
htsr | 2.1.4 | httpcache | 1.2.0 |
httpcode | 0.3.0 | httping | 0.2.0 |
httpRequest | 0.0.11 | httptest | 4.2.2 |
httpuv | 1.6.15 | httr | 1.4.7 |
httr2 | 1.0.1 | humanFormat | 1.2 |
humanize | 0.2.0 | humidity | 0.1.5 |
hunspell | 3.0.3 | hurricaneexposure | 0.1.1 |
hutils | 1.8.1 | huxtable | 5.5.6 |
hwriter | 1.3.2.1 | hwwntest | 1.3.2 |
hydraulics | 0.7.0 | hydroEvents | 0.11 |
hydrogeo | 0.6-1 | hydroloom | 1.0.2 |
HydroMe | 2.0-1 | hydropeak | 0.1.2 |
hydroroute | 0.1.2 | hydrostats | 0.2.9 |
hydrotoolbox | 1.1.2 | hyfo | 1.4.6 |
HyperbolicDist | 0.6-5 | hypergeo | 1.2-13 |
i2extras | 0.2.1 | iarm | 0.4.3 |
ibd | 1.6 | ibdreg | 0.3.8 |
IBMPopSim | 1.0.0 | iBreakDown | 2.1.2 |
IBrokers | 0.10-2 | ica | 1.0-3 |
ICAMS | 2.3.12 | ICAOD | 1.0.1 |
iCARH | 2.0.2.1 | icarus | 0.3.2 |
ICBioMark | 0.1.4 | ICC | 2.4.0 |
iccbeta | 1.2.0 | ICDS | 0.1.2 |
iCellR | 1.6.7 | Icens | 1.72.0 |
ICGE | 0.4.2 | ichimoku | 1.5.1 |
ICS | 1.4-1 | ICSNP | 1.1-2 |
ICtest | 0.3-5 | idbr | 1.2 |
IDE | 0.3.1 | idefix | 1.0.3 |
idendr0 | 1.5.3 | IDF | 2.1.2 |
IDPmisc | 1.1.21 | ids | 1.0.1 |
ie2misc | 0.9.1 | ie2miscdata | 1.0.4 |
iemisc | 1.0.4 | iemiscdata | 1.0.1 |
IETD | 1.0.0 | ifaTools | 0.23 |
igraph | 2.0.3 | igraphdata | 1.0.1 |
illuminaio | 0.42.0 | imbibe | 0.1.1 |
imguR | 1.0.3 | IMIX | 1.1.5 |
immer | 1.5-13 | imp4p | 1.2 |
implied | 0.5 | implyr | 0.5.0 |
import | 1.3.2 | impute | 1.74.1 |
imputeLCMD | 2.1 | imputeTestbench | 3.0.3 |
imputeTS | 3.3 | imsig | 1.1.3 |
inca | 0.0.4 | IncDTW | 1.1.4.4 |
incidence | 1.7.3 | incidence2 | 2.2.3 |
inegiR | 3.0.0 | ineq | 0.2-13 |
infer | 1.0.7 | influence.SEM | 2.3 |
influenceR | 0.1.5 | influxdbr | 0.14.2 |
infotheo | 1.2.0.1 | InfoTrad | 1.2 |
ingredients | 2.3.0 | ini | 0.3.1 |
injurytools | 1.0.3 | inline | 0.3.19 |
insee | 1.1.5 | insight | 0.19.10 |
InspectChangepoint | 1.2 | instaR | 0.2.4 |
insuranceData | 1.0 | insurancerating | 0.7.2 |
intamap | 1.5-7 | integIRTy | 1.0.7 |
InteRD | 0.1.1 | interep | 0.4.1 |
interleave | 0.1.2 | interp | 1.1-6 |
InterpretMSSpectrum | 1.4.5 | intervals | 0.15.4 |
inum | 1.0-5 | investr | 1.4.2 |
invgamma | 1.1 | ioncopy | 2.2.2 |
iotables | 0.9.3 | iotools | 0.3-5 |
ipaddress | 1.0.2 | ipdw | 2.0-0 |
ipfp | 1.0.2 | ipred | 0.9-14 |
ips | 0.0.12 | ipumsr | 0.7.2 |
iq | 1.9.12 | irace | 3.5 |
IRanges | 2.34.0 | IRdisplay | 1.1 |
IRkernel | 1.3.2 | irlba | 2.3.5.1 |
irr | 0.84.1 | irtDemo | 0.1.4 |
irtoys | 0.2.2 | irtrees | 1.0.0 |
IRTShiny | 1.2 | isdparser | 0.4.0 |
IsingFit | 0.4 | IsingSampler | 0.2.3 |
ISLR | 1.4 | ismev | 1.42 |
Iso | 0.0-21 | isoband | 0.2.7 |
ISOcodes | 2024.02.12 | IsoGene | 1.0-24 |
isotone | 1.1-1 | isoWater | 1.1.2 |
ISOweek | 0.6-2 | ISwR | 2.0-8 |
iterators | 1.0.14 | iterLap | 1.1-4 |
itertools | 0.1-3 | itscalledsoccer | 0.2.4 |
itsmr | 1.10 | ivprobit | 1.1 |
ivreg | 0.6-3 | JADE | 2.0-4 |
jalcal | 0.1.0 | janeaustenr | 1.0.0 |
janitor | 2.2.0 | JavaGD | 0.6-5 |
JBrowseR | 0.10.2 | jetset | 3.4.0 |
jiebaR | 0.11 | jiebaRD | 0.1 |
jjb | 0.1.1 | JMdesign | 1.5 |
jomo | 2.7-6 | JoSAE | 0.3.0 |
jose | 1.2.0 | jpeg | 0.1-10 |
jqr | 1.3.3 | jquerylib | 0.1.4 |
jrt | 1.1.2 | js | 1.2 |
jsonify | 1.2.2 | jsonlite | 1.8.8 |
jsonvalidate | 1.3.2 | JSparO | 1.5.0 |
jstor | 0.3.11 | juicyjuice | 0.1.0 |
JuliaConnectoR | 1.1.3 | JWileymisc | 1.4.1 |
kableExtra | 1.4.0 | kalmanfilter | 2.1.1 |
kappaSize | 1.2 | KEGGgraph | 1.60.0 |
KEGGREST | 1.40.0 | kelvin | 2.0-2 |
Kendall | 2.2.1 | kequate | 1.6.4 |
keras | 2.15.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-32 | keyring | 1.3.2 |
KFAS | 1.5.1 | kfigr | 1.2.1 |
kinship2 | 1.9.6.1 | kitagawa | 3.1.2 |
kiwisR | 0.2.0 | klaR | 1.7-3 |
km.ci | 0.5-6 | kmer | 1.1.2 |
KMsurv | 0.1-5 | knitcitations | 1.0.12 |
knitLatex | 0.9.0 | knitr | 1.46 |
kofnGA | 1.3 | koRpus | 0.13-8 |
KrigInv | 1.4.2 | KRIS | 1.1.6 |
krm | 2022.10-17 | ks | 1.14.2 |
kst | 0.5-4 | kutils | 1.73 |
kyotil | 2024.1-30 | kza | 4.1.0.1 |
labdsv | 2.1-0 | label.switching | 1.8 |
labeling | 0.4.3 | labelled | 2.13.0 |
labelVector | 0.1.2 | laeken | 0.5.3 |
LaF | 0.8.4 | lagged | 0.3.2 |
laGP | 1.5-9 | Lahman | 11.0-0 |
lakemorpho | 1.3.2 | LAM | 0.6-19 |
lambda.r | 1.2.4 | lamW | 2.2.3 |
landsat | 1.1.2 | landscapemetrics | 2.1.1 |
languagelayeR | 1.2.4 | languageR | 1.5.0 |
LaplacesDemon | 16.1.6 | LARF | 1.4 |
lars | 1.3 | lassoshooting | 0.1.5-1.1 |
latdiag | 0.3 | later | 1.3.2 |
latex2exp | 0.9.6 | latticeExtra | 0.6-30 |
LatticeKrig | 8.4 | lava | 1.8.0 |
lavaan | 0.6-17 | lavaan.survey | 1.1.3.1 |
LAWBL | 1.5.0 | lazyeval | 0.2.2 |
lazyWeave | 3.0.2 | lbfgs | 1.2.1.2 |
lbfgsb3c | 2024-3.4 | LCAvarsel | 1.1 |
lcda | 0.3.2 | lcmm | 2.1.0 |
lctools | 0.2-10 | lda | 1.4.2 |
ldat | 0.3.3 | ldbounds | 2.0.2 |
leafem | 0.2.3 | leaflet | 2.2.2 |
leaflet.extras | 1.0.0 | leaflet.providers | 2.0.0 |
leafpm | 0.1.0 | leafpop | 0.1.0 |
leafsync | 0.1.0 | leapp | 1.3 |
leaps | 3.1 | LearnBayes | 2.15.1 |
learnr | 0.11.5 | legion | 0.1.2 |
leiden | 0.4.3.1 | leidenAlg | 1.1.3 |
lfactors | 1.0.4 | lfe | 3.0-0 |
lfstat | 0.9.12 | lgarch | 0.6-2 |
lgr | 0.4.4 | lgtdl | 1.1.5 |
lhs | 1.1.6 | libcoin | 1.0-10 |
libgeos | 3.11.1-2 | LiblineaR | 2.10-23 |
lidR | 4.1.1 | lifecontingencies | 1.3.11 |
lifecycle | 1.0.4 | LifeInsuranceContracts | 0.0.6 |
LifeInsureR | 1.0.0 | liftr | 0.9.2 |
liger | 2.0.1 | LIM | 1.4.7.1 |
limma | 3.56.1 | limSolve | 1.5.7.1 |
linelist | 1.1.3 | lineup | 0.42 |
lineup2 | 0.6 | link2GI | 0.5-3 |
linpk | 1.1.2 | linprog | 0.9-4 |
LinRegInteractive | 0.3-3 | lintools | 0.1.7 |
lisrelToR | 0.3 | listcomp | 0.4.1 |
listenv | 0.9.1 | liteq | 1.1.0 |
lmds | 0.1.0 | lme4 | 1.1-35.3 |
lmerTest | 3.1-3 | lmForc | 0.1.0 |
lmm | 1.4 | lmodel2 | 1.7-3 |
lmom | 3.0 | lmomco | 2.4.14 |
Lmoments | 1.3-1 | lmomRFA | 3.6 |
lmQCM | 0.2.4 | lmtest | 0.9-40 |
LNIRT | 0.5.1 | lobstr | 1.1.2 |
locfit | 1.5-9.9 | locits | 1.7.7 |
locpol | 0.8.0 | log4r | 0.4.3 |
logger | 0.3.0 | logging | 0.10-108 |
logitnorm | 0.8.39 | logitr | 1.1.1 |
logspline | 2.1.21 | lokern | 1.1-11 |
lomb | 2.5.0 | longCatEDA | 0.31 |
longitudinal | 1.1.13 | longitudinalData | 2.4.5.1 |
longmemo | 1.1-2 | LongMemoryTS | 0.1.0 |
longpower | 1.0.25 | longurl | 0.3.3 |
loo | 2.7.0 | lordif | 0.3-3 |
lotri | 0.4.3 | LowRankQP | 1.0.6 |
lpacf | 1.0.1 | lpdensity | 2.4 |
lpirfs | 0.2.3 | LPM | 3.1 |
LPS | 1.0.16 | lpSolve | 5.6.20 |
lpSolveAPI | 5.5.2.0-17.11 | lsa | 0.73.3 |
lsei | 1.3-0 | lsl | 0.5.6 |
lslx | 0.6.11 | LSMonteCarlo | 1.0 |
LSMRealOptions | 0.2.1 | LSPFP | 1.0.3 |
LSTS | 2.1 | LSWPlib | 0.1.0 |
ltm | 1.2-0 | ltsa | 1.4.6 |
lubridate | 1.9.3 | LUCIDus | 3.0.1 |
lulcc | 1.0.4 | Luminescence | 0.9.23 |
lutz | 0.3.2 | luz | 0.4.0 |
lvec | 0.2.5 | lvnet | 0.3.5 |
lvplot | 0.2.1 | LWFBrook90R | 0.5.3 |
lwgeom | 0.2-14 | M3C | 1.22.0 |
m5 | 0.1.1 | MAAPER | 1.1.1 |
maat | 1.1.0 | madrat | 3.6.4 |
magclass | 6.13.2 | magic | 1.6-1 |
magick | 2.8.3 | magrittr | 2.0.3 |
maGUI | 4.0 | mailR | 0.8 |
makeit | 1.0.1 | makepipe | 0.2.1 |
makeProject | 1.0 | MAMS | 2.0.2 |
manhattanly | 0.3.0 | ManifoldOptim | 1.0.1 |
manipulate | 1.0.1 | manipulateWidget | 0.11.1 |
MaOEA | 0.6.2 | Map2NCBI | 1.4 |
MAPA | 2.0.7 | mapdata | 2.3.1 |
mapdeck | 0.3.5 | mapedit | 0.6.0 |
mapiso | 0.3.0 | maplegend | 0.1.0 |
mapme.biodiversity | 0.5.0 | mapmisc | 2.1.0 |
mapproj | 1.2.11 | maps | 3.4.2 |
mapsapi | 0.5.4 | mapsf | 0.9.0 |
mapSpain | 0.9.0 | maptiles | 0.7.0 |
maptools | 1.1-8 | maptpx | 1.9-7 |
maptree | 1.4-8 | mapview | 2.11.2 |
mAr | 1.2-0 | mar1s | 2.1.1 |
marcher | 0.0-2 | marginaleffects | 0.19.0 |
margins | 0.3.26 | markdown | 1.12 |
markerpen | 0.1.1 | markophylo | 1.0.9 |
markovchain | 0.9.5 | MarkowitzR | 1.0.3 |
marmap | 1.0.10 | marqLevAlg | 2.0.8 |
MARSS | 3.11.9 | MassSpecWavelet | 1.66.0 |
Matching | 4.10-14 | matchingMarkets | 1.0-4 |
matchingR | 1.3.3 | MatchIt | 4.5.5 |
MatchThem | 1.2.1 | mathjaxr | 1.6-0 |
matlab | 1.0.4 | matlab2r | 1.5.0 |
matlabr | 1.5.2 | matrixcalc | 1.0-6 |
MatrixExtra | 0.1.15 | MatrixGenerics | 1.12.3 |
MatrixModels | 0.5-3 | matrixset | 0.3.0 |
matrixStats | 1.3.0 | matrixTests | 0.2.3 |
maxLik | 1.5-2.1 | MaxPro | 4.1-2 |
maxstat | 0.7-25 | MBA | 0.1-0 |
mbbefd | 0.8.11 | MBC | 0.10-6 |
MBESS | 4.9.3 | MBHdesign | 2.3.15 |
mblm | 0.12.1 | mboost | 2.9-9 |
mbsts | 3.0 | mc2d | 0.2.0 |
MCAvariants | 2.6.1 | mcclust | 1.0.1 |
mcga | 3.0.7 | mclcar | 0.2-0 |
mclust | 6.1 | mcmc | 0.9-8 |
MCMC.qpcr | 1.2.4 | mcmcensemble | 3.1.0 |
MCMCglmm | 2.35 | MCMCpack | 1.7-0 |
mcmcse | 1.5-0 | MCMCvis | 0.16.3 |
mco | 1.16 | Mcomp | 2.8 |
mcompanion | 0.6 | MCPMod | 1.0-10.1 |
mdftracks | 0.2.2 | measurementProtocol | 0.1.1 |
measurements | 1.5.1 | meboot | 1.4-9.4 |
Mediana | 1.0.8 | mediation | 4.5.0 |
MEIGOR | 1.33.0 | mem | 2.18 |
memapp | 2.16 | memisc | 0.99.31.7 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
memuse | 4.2-3 | MESS | 0.5.12 |
meta | 7.0-0 | metaboData | 0.6.3 |
MetabolAnalyze | 1.3.1 | MetabolicSurv | 1.1.2 |
MetabolomicsBasics | 1.4.5 | metacoder | 0.3.7 |
metadat | 1.2-0 | metafor | 4.6-0 |
metaheuristicOpt | 2.0.0 | metaMA | 3.1.3 |
metap | 1.10 | metaplot | 0.8.4 |
metaRNASeq | 1.0.7 | metaSEM | 1.3.1 |
metasens | 1.5-2 | meteo | 2.0-3 |
meteoland | 2.2.1 | metR | 0.15.0 |
Metrics | 0.1.4 | metRology | 0.9-28-1 |
MetSizeR | 2.0.0 | mFilter | 0.1-5 |
mfx | 1.2-2 | mgm | 1.2-14 |
mgsub | 1.7.3 | mhurdle | 1.3-0 |
mi | 1.1 | mi4p | 1.1 |
mice | 3.16.0 | miceadds | 3.17-44 |
micEcon | 0.6-18 | micEconAids | 0.6-20 |
micEconCES | 1.0-2 | micEconIndex | 0.1-8 |
micEconSNQP | 0.6-10 | microbenchmark | 1.4.10 |
micromap | 1.9.8 | microsamplingDesign | 1.0.8 |
Microsoft365R | 2.4.0 | MicSim | 2.0.1 |
midasr | 0.8 | miic | 1.5.3 |
MIIVsem | 0.5.8 | mime | 0.12 |
mind | 1.1.0 | MinEDfind | 0.1.3 |
miniCRAN | 0.3.0 | minimalRSD | 1.0.0 |
minimaxdesign | 0.1.5 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-4 | minqa | 1.2.6 |
MINTplates | 1.0.1 | mipfp | 3.2.1 |
mirai | 0.13.2 | MiRNAQCD | 1.1.3 |
mirt | 1.41 | mirtCAT | 1.13 |
misc3d | 0.9-1 | miscTools | 0.6-28 |
missForest | 1.5 | missMDA | 1.19 |
mitml | 0.4-5 | mitools | 2.4 |
mix | 1.0-11 | mixAR | 0.22.8 |
MixedPsy | 1.1.0 | mixexp | 1.2.7 |
mixl | 1.3.4 | mixOmics | 6.24.0 |
mixsqp | 0.3-54 | mixtools | 2.0.0 |
mize | 0.2.4 | mknapsack | 0.1.0 |
mkssd | 1.2 | mlapi | 0.1.1 |
mlbench | 2.1-3.1 | mlbstats | 0.1.0 |
MLCIRTwithin | 2.1.1 | MLDS | 0.5.1 |
MLmetrics | 1.1.3 | mlmRev | 1.0-8 |
mlogit | 1.1-1 | mlogitBMA | 0.1-7 |
mlr | 2.19.1 | mlr3 | 0.19.0 |
mlr3learners | 0.6.0 | mlr3measures | 0.5.0 |
mlr3misc | 0.15.0 | mlr3spatiotempcv | 2.3.1 |
mlr3tuning | 0.20.0 | mlrMBO | 1.1.5.1 |
mlVAR | 0.5.2 | mma | 10.7-1 |
mmand | 1.6.3 | mmrm | 0.3.11 |
mnormt | 2.1.1 | MNP | 3.1-4 |
modeest | 2.4.0 | modeldata | 1.3.0 |
modelenv | 0.1.1 | ModelMap | 3.4.0.4 |
ModelMetrics | 1.2.2.2 | modelr | 0.1.11 |
modelsummary | 2.0.0 | modeltime | 1.2.8 |
modeltime.ensemble | 1.0.3 | modeltime.resample | 0.2.3 |
modeltools | 0.2-23 | moderndive | 0.5.5 |
MODISTools | 1.1.5 | MODIStsp | 2.1.0 |
modules | 0.13.0 | mokken | 3.1.0 |
mombf | 3.5.4 | moments | 0.14.1 |
momentuHMM | 1.5.5 | mondate | 1.0 |
mongolite | 2.8.0 | mongopipe | 0.1.1 |
monmlp | 1.1.5 | monobin | 0.2.4 |
Morpho | 2.12 | MortalityGaps | 1.0.0 |
MortalityLaws | 2.1.0 | MortalityTables | 2.0.5 |
MortCast | 2.7-0 | mosaic | 1.9.1 |
mosaicCore | 0.9.4.0 | mosaicData | 0.20.4 |
MOSS | 0.2.2 | motmot | 2.1.3 |
mousetrap | 3.2.3 | move | 4.2.4 |
move2 | 0.2.7 | movecost | 2.1 |
moveHMM | 1.9 | moveWindSpeed | 0.2.4 |
movMF | 0.2-8 | MPDiR | 0.2 |
MplusAutomation | 1.1.1 | mpm | 1.0-23 |
mpmi | 0.43.2.1 | MPSEM | 0.4-1 |
mpt | 0.8-0 | MPTinR | 1.14.1 |
MPV | 1.63 | mratios | 1.4.2 |
mrf | 0.1.6 | mrgsolve | 1.4.1 |
mritc | 0.5-3 | mschart | 0.4.0 |
mscstexta4r | 0.1.2 | mscsweblm4r | 0.1.2 |
MSGARCH | 2.51 | msgps | 1.3.5 |
msigdbr | 7.5.1 | msm | 1.7.1 |
msos | 1.2.0 | mssm | 0.1.6 |
MSSQL | 1.0.0 | mstate | 0.3.2 |
MSwM | 1.5 | MTS | 1.2.1 |
mtsdi | 0.3.5 | mudfold | 1.1.21 |
multcomp | 1.4-25 | multcompView | 0.1-10 |
multDM | 1.1.4 | multicool | 1.0.1 |
MultiGlarmaVarSel | 1.0 | MultiLCIRT | 2.11 |
MultipleBubbles | 0.2.0 | multiplex | 3.1.1 |
multipol | 1.0-9 | multitaper | 1.0-17 |
multiway | 1.0-6 | multiwayvcov | 1.2.3 |
multtest | 2.56.0 | MuMIn | 1.47.5 |
munfold | 0.3.5 | munsell | 0.5.1 |
musica | 0.1.3 | mutoss | 0.1-13 |
mutSignatures | 2.1.1 | mvglmmRank | 1.2-4 |
mvLSW | 1.2.5 | mvMORPH | 1.1.9 |
mvnfast | 0.2.8 | mvnormtest | 0.1-9-3 |
mvQuad | 1.0-8 | mvtnorm | 1.2-4 |
mvtsplot | 1.0-4 | mxkssd | 1.2 |
myClim | 1.1.0 | n1qn1 | 6.0.1-11 |
N2R | 1.0.3 | nabor | 0.5.0 |
NACHO | 2.0.6 | NADA | 1.6-1.1 |
NAEPirtparams | 1.0.0 | NAEPprimer | 1.0.1 |
nanoarrow | 0.4.0.1 | nanonext | 0.13.5.2 |
nanostringr | 0.4.1 | nanotime | 0.3.7 |
nardl | 0.1.6 | nasapower | 4.2.0 |
natserv | 1.0.0 | naturalsort | 0.1.3 |
NBAloveR | 0.1.3.3 | nbapalettes | 0.1.0 |
NBBttest | 1.0.1 | NbClust | 3.0.1 |
NBPSeq | 0.3.1 | nbTransmission | 1.1.4 |
ncappc | 0.3.0 | ncar | 0.5.0 |
ncbit | 2013.03.29.1 | ncdf4 | 1.22 |
ncdfgeom | 1.1.6 | ncf | 1.3-2 |
ncmeta | 0.4.0 | NCmisc | 1.2.0 |
ncvreg | 3.14.2 | ndjson | 0.9.0 |
neighbours | 0.1-3 | neldermead | 1.0-12 |
neo2R | 2.4.2 | net4pg | 0.1.1 |
NetIndices | 1.4.4.1 | nets | 0.9.1 |
NetSimR | 0.1.5 | network | 1.18.2 |
networkABC | 0.8-1 | NetworkChange | 0.8 |
NetworkComparisonTest | 2.2.2 | networkD3 | 0.4 |
networkDynamic | 0.11.4 | networkLite | 1.0.5 |
NetworkRiskMeasures | 0.1.4 | NetworkToolbox | 1.4.2 |
networktools | 1.5.2 | networktree | 1.0.1 |
neuralnet | 1.44.2 | NeuralNetTools | 1.5.3 |
neurobase | 1.32.3 | neuroim | 0.0.6 |
neuRosim | 0.2-14 | NewmanOmics | 1.0.10 |
nFactors | 2.4.1.1 | NFCP | 1.2.1 |
nfl4th | 1.0.4 | nflfastR | 4.6.1 |
nflplotR | 1.3.1 | nflreadr | 1.4.0 |
nflseedR | 1.2.0 | NFLSimulatoR | 0.4.0 |
nflverse | 1.0.3 | ngspatial | 1.2-2 |
nhanesA | 1.1 | nhdplusTools | 1.0.0 |
nhdR | 0.6.1 | nhlapi | 0.1.4 |
NHLData | 1.0.0 | nhlscrape | 0.1.3 |
NHPoisson | 3.3 | nifti.io | 1.0.0 |
nilde | 1.1-7 | nimble | 1.1.0 |
NISTnls | 0.9-13 | NlcOptim | 0.6 |
nleqslv | 3.3.5 | NlinTS | 1.4.5 |
nlmeVPC | 2.6 | nlmixr2 | 2.1.1 |
nlmixr2data | 2.0.9 | nlmixr2est | 2.2.1 |
nlmixr2extra | 2.0.9 | nlmixr2plot | 2.0.8 |
nlmixr2rpt | 0.2.0 | nloptr | 2.0.3 |
NLP | 0.2-1 | nls2 | 0.3-3 |
nlsem | 0.8-1 | nlsic | 1.0.4 |
nlsr | 2023.8.31 | nlstools | 2.1-0 |
nlts | 1.0-2 | NMF | 0.27 |
NMOF | 2.8-0 | nmw | 0.1.5 |
nnfor | 0.9.9 | nnls | 1.5 |
NNS | 10.8 | noaastormevents | 0.2.0 |
nodbi | 0.10.4 | nomisr | 0.4.7 |
nomnoml | 0.3.0 | NonCompart | 0.7.0 |
nonlinearTseries | 0.3.0 | nonmemica | 1.0.8 |
nonneg.cg | 0.1.6-1 | nonnest2 | 0.5-6 |
nor1mix | 1.3-3 | norm | 1.0-11.1 |
normalp | 0.7.2.1 | nortest | 1.0-4 |
nosoi | 1.1.2 | notifyme | 0.3.0 |
np | 0.60-17 | NPflow | 0.13.5 |
npi | 0.2.0 | nppbib | 1.2-0 |
NPRED | 1.0.7 | nsarfima | 0.2.0.0 |
nse | 1.21 | nsga2R | 1.1 |
nspmix | 1.5-0 | nsprcomp | 0.5.1-2 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
nvmix | 0.1-1 | o2geosocial | 1.1.2 |
o2plsda | 0.0.18 | oai | 0.4.0 |
OAIHarvester | 0.3-4 | OasisR | 3.1.0 |
obAnalytics | 0.1.1 | objectProperties | 0.6.8 |
objectSignals | 0.10.3 | OBsMD | 11.1 |
occ | 1.1 | oce | 1.8-2 |
octopus | 0.4.2 | od | 0.4.4 |
odbc | 1.4.2 | odds.converter | 1.4.8 |
oddsapiR | 0.0.3 | odin | 1.2.5 |
odpc | 2.0.5 | odr | 1.4.4 |
OECD | 0.2.5 | oeli | 0.4.1 |
officer | 0.6.5 | ohoegdm | 0.1.0 |
OmicNavigator | 1.13.13 | omicwas | 0.8.0 |
ompr | 1.0.4 | omu | 1.1.2 |
onbrand | 1.0.5 | onlineforecast | 1.0.2 |
onls | 0.1-2 | ontologyIndex | 2.12 |
oompaBase | 3.2.9 | oompaData | 3.1.3 |
OOR | 0.1.4 | opdisDownsampling | 1.0.1 |
OPDOE | 1.0-10 | openair | 2.18-2 |
opencage | 0.2.2 | opencpu | 2.2.11 |
opendotaR | 0.1.4 | openEBGM | 0.9.1 |
openintro | 2.4.0 | OpenML | 1.12 |
OpenMx | 2.21.11 | openNLP | 0.2-7 |
openNLPdata | 1.5.3-5 | openssl | 2.1.2 |
OpenStreetMap | 0.4.0 | openxlsx | 4.2.5.2 |
opera | 1.2.0 | operator.tools | 1.6.3 |
operators | 0.1-8 | optBiomarker | 1.0-28 |
OptCirClust | 0.0.4 | optextras | 2019-12.4 |
OptGS | 1.2 | OptHedging | 1.0 |
OptimalDesign | 1.0.1 | OptimaRegion | 1.2 |
optimbase | 1.0-10 | optimizeR | 1.0.5 |
optimParallel | 1.0-2 | optimsimplex | 1.0-8 |
optimx | 2023-10.21 | OptionPricing | 0.1.2 |
optiscale | 1.2.2 | optmatch | 0.10.7 |
ORCME | 2.0.2 | orderly | 1.4.3 |
ordinal | 2023.12-4 | ore | 1.7.4.1 |
org.Hs.eg.db | 3.17.0 | ORIClust | 1.0-2 |
oro.dicom | 0.5.3 | oro.nifti | 0.11.4 |
oro.pet | 0.2.7 | OrthoPanels | 1.2-4 |
orthopolynom | 1.0-6.1 | osd | 0.1 |
osDesign | 1.8 | osmdata | 0.2.5 |
osmextract | 0.5.0 | osqp | 0.6.3.2 |
osrm | 4.1.1 | otsad | 0.2.0 |
otsfeatures | 1.0.0 | ouch | 2.19 |
outbreaker2 | 1.1.3 | outbreaks | 1.9.0 |
outliers | 0.15 | OUwie | 2.10 |
overlapping | 2.1 | ows4R | 0.3-6 |
pa | 1.2-4 | packcircles | 0.3.6 |
packMBPLSDA | 0.9.0 | packrat | 0.9.2 |
padr | 0.6.2 | pageviews | 0.6.0 |
pagoda2 | 1.0.12 | PairedData | 1.1.1 |
pairwise | 0.6.1-0 | paleobuddy | 1.0.0 |
paleotree | 3.4.5 | paleoTS | 0.5.3 |
paletteer | 1.6.0 | palinsol | 1.0 |
palmerpenguins | 0.1.1 | pampe | 1.1.2 |
pan | 1.9 | pander | 0.6.5 |
panelaggregation | 0.1.1 | panelvar | 0.5.5 |
papeR | 1.0-5 | paradox | 0.11.1 |
ParallelLogger | 3.3.0 | parallelly | 1.37.1 |
parallelMap | 1.5.1 | parameters | 0.21.6 |
ParamHelpers | 1.14.1 | params | 0.7.3 |
paran | 1.5.3 | Pareto | 2.4.5 |
parma | 1.7 | parmigene | 1.1.0 |
parsedate | 1.3.1 | parsnip | 1.2.1 |
partitions | 1.10-7 | partsm | 1.1-3 |
party | 1.3-14 | partykit | 1.2-20 |
pastecs | 1.4.2 | patchwork | 1.2.0 |
pathfindR | 2.3.1 | pathfindR.data | 2.0.0 |
pathview | 1.40.0 | paws | 0.5.0 |
paws.analytics | 0.5.0 | paws.application.integration | 0.5.0 |
paws.common | 0.7.2 | paws.compute | 0.5.0 |
paws.cost.management | 0.5.0 | paws.customer.engagement | 0.5.0 |
paws.database | 0.5.0 | paws.developer.tools | 0.5.0 |
paws.end.user.computing | 0.5.0 | paws.machine.learning | 0.5.0 |
paws.management | 0.5.0 | paws.networking | 0.5.0 |
paws.security.identity | 0.5.0 | paws.storage | 0.5.0 |
pbapply | 1.7-2 | PBD | 1.4 |
pbdZMQ | 0.3-11 | PBIBD | 1.3 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
pbm | 1.2.1 | pbmcapply | 1.5.1 |
pbo | 1.3.5 | pbs | 1.1 |
PBSddesolve | 1.13.4 | PBSmapping | 2.73.4 |
PBSmodelling | 2.69.3 | pbv | 0.5-47 |
PCA4TS | 0.1 | pcaMethods | 1.92.0 |
pcaPP | 2.0-4 | pcdpca | 0.4 |
pcFactorStan | 1.5.4 | pcIRT | 0.2.4 |
PCMRS | 0.1-4 | pco | 1.0.1 |
PCPS | 1.0.7 | pcse | 1.9.1.1 |
pcts | 0.15.7 | pdc | 1.0.3 |
pder | 1.0-2 | pdfCluster | 1.0-4 |
pdfetch | 0.2.9 | pdftables | 0.1 |
pdftools | 3.4.0 | pdist | 1.2.1 |
pdp | 0.8.1 | pdR | 1.9.1 |
pdynmc | 0.9.10 | PeakError | 2023.9.4 |
PeakSegDisk | 2023.11.27 | PeakSegJoint | 2024.1.24 |
PeakSegOptimal | 2024.1.24 | PearsonDS | 1.3.1 |
pedigree | 1.4.2 | PeerPerformance | 2.2.5 |
penalized | 0.9-52 | penaltyLearning | 2024.1.25 |
penppml | 0.2.3 | Peptides | 2.4.6 |
perfectphyloR | 0.2.1 | performance | 0.11.0 |
PerformanceAnalytics | 2.0.4 | permPATH | 1.3 |
permute | 0.9-7 | pglm | 0.2-3 |
PGM2 | 1.0-1 | ph2bayes | 0.0.2 |
ph2bye | 0.1.4 | phangorn | 2.11.1 |
pharmaRTF | 0.1.4 | phateR | 1.0.7 |
pheatmap | 1.0.12 | philentropy | 0.8.0 |
phonics | 1.3.10 | phonTools | 0.2-2.2 |
phyclust | 0.1-34 | phyext2 | 0.0.4 |
phylobase | 0.8.12 | phylocanvas | 0.1.3 |
phyloclim | 0.9.5 | PHYLOGR | 1.0.11 |
phylogram | 2.1.0 | phylolm | 2.6.2 |
phyloregion | 1.0.8 | phyloseq | 1.44.0 |
phylosignal | 1.3.1 | phylotate | 1.3 |
phylotools | 0.2.2 | phyloTop | 2.1.2 |
phyreg | 1.0.2 | phytools | 2.1-1 |
picante | 1.8.2 | picasso | 1.3.1 |
pid | 0.50 | piecewiseSEM | 2.3.0 |
piggyback | 0.1.5 | pillar | 1.9.0 |
pinfsc50 | 1.3.0 | pingr | 2.0.3 |
pinnacle.data | 0.1.4 | pins | 1.3.0 |
PINSPlus | 2.0.7 | pipe.design | 0.5.1 |
pipeR | 0.6.1.3 | piqp | 0.2.2 |
piratings | 0.1.9 | pitchRx | 1.8.2 |
pixmap | 0.4-12 | PK | 1.3-6 |
PKconverter | 1.5 | pkdata | 0.1.0 |
pkgbuild | 1.4.4 | pkgcache | 2.2.2 |
pkgconfig | 2.0.3 | pkgdepends | 0.7.2 |
pkgdown | 2.0.9 | pkgfilecache | 0.1.5 |
pkgload | 1.3.4 | pkgsearch | 3.1.3 |
PKNCA | 0.10.2 | pkr | 0.1.3 |
pks | 0.6-0 | PlackettLuce | 0.4.3 |
PlayerRatings | 1.1-0 | plgp | 1.1-12 |
plink | 1.5-1 | plm | 2.6-4 |
PLMIX | 2.1.1 | PLmixed | 0.1.7 |
plogr | 0.2.0 | plot3D | 1.4.1 |
plot3Drgl | 1.0.4 | plotdap | 1.0.3 |
plotly | 4.10.4 | plotMCMC | 2.0.1 |
plotmo | 3.6.3 | plotrix | 3.8-4 |
plotROC | 2.3.1 | plotSEMM | 2.4 |
PlotTools | 0.3.0 | plotwidgets | 0.5.1 |
pls | 2.8-3 | plumber | 1.2.2 |
plyr | 1.8.9 | PMA | 1.2-3 |
pmc | 1.0.6 | pmr | 1.2.5.1 |
pmxTools | 1.3 | png | 0.1-8 |
POD | 1.2.0 | PoiClaClu | 1.0.2.1 |
pointblank | 0.12.1 | poisbinom | 1.0.1 |
PoissonBinomial | 1.2.6 | poLCA | 1.6.0.1 |
polspline | 1.1.24 | polyclip | 1.10-6 |
polycor | 0.8-1 | polyCub | 0.9.0 |
polylabelr | 0.2.0 | polynom | 1.4-1 |
PolynomF | 2.0-8 | polyreg | 0.8.0 |
pomp | 5.7 | pool | 1.0.3 |
poorman | 0.2.7 | PopED | 0.6.0 |
popEpi | 0.4.11 | popPCR | 0.1.1.1 |
PortfolioOptim | 1.1.1 | PortRisk | 1.1.0 |
PostcodesioR | 0.3.1 | posterior | 1.5.0 |
postlightmercury | 1.2 | powdist | 0.1.4 |
powerbydesign | 1.0.5 | powerGWASinteraction | 1.1.3 |
powerSurvEpi | 0.1.3 | PowerTOST | 1.5-6 |
PowerUpR | 1.1.0 | PP | 0.6.3-11 |
ppcor | 1.1 | PPRL | 0.3.8 |
pps | 1.0 | PQLseq | 1.2.1 |
prabclus | 2.3-3 | pracma | 2.4.4 |
PracTools | 1.4.3 | praise | 1.0.0 |
pRecipe | 3.0.1-3 | PreciseSums | 0.6 |
PredCRG | 1.0.2 | prediction | 0.3.17 |
predicts | 0.1-11 | prefmod | 0.8-36 |
PReMiuM | 3.2.13 | preprocessCore | 1.62.1 |
prereg | 0.6.0 | PresenceAbsence | 1.1.11 |
presize | 0.3.7 | prettydoc | 0.4.1 |
prettyGraphs | 2.1.6 | prettymapr | 0.2.5 |
prettyunits | 1.2.0 | prevalence | 0.4.1 |
prevR | 5.0.0 | princurve | 2.1.6 |
prioGene | 1.0.1 | prioritylasso | 0.3.1 |
prism | 0.2.1 | prismatic | 1.1.2 |
ProbitSpatial | 1.1 | pROC | 1.18.5 |
processx | 3.8.4 | prodigenr | 0.6.2 |
prodlim | 2023.08.28 | ProfessR | 2.4-3 |
profileModel | 0.6.1 | profileR | 0.3-5 |
profoc | 1.3.2 | profvis | 0.3.8 |
progress | 1.2.3 | progressr | 0.14.0 |
PROJ | 0.4.5 | proj4 | 1.0-14 |
projects | 2.1.3 | ProjectTemplate | 0.10.4 |
promises | 1.3.0 | prophet | 1.0 |
PROsetta | 0.4.1 | proto | 1.0.0 |
protoclust | 1.6.4 | protolite | 2.3.0 |
protr | 1.7-1 | protti | 0.8.0 |
protViz | 0.7.9 | proxy | 0.4-27 |
proxyC | 0.4.1 | prozor | 0.3.1 |
PRROC | 1.3.1 | pryr | 0.1.6 |
ps | 1.7.6 | pscl | 1.5.9 |
psd | 2.1.1 | PSF | 0.5 |
psidR | 2.1 | pso | 1.0.4 |
psoptim | 1.0 | pspline | 1.0-19 |
psqn | 0.3.1 | PSSMCOOL | 0.2.4 |
psy | 1.2 | psych | 2.4.3 |
psychomix | 1.1-8 | psychotools | 0.7-3 |
psychotree | 0.16-1 | psychTools | 2.4.3 |
psyphy | 0.3 | PTAk | 2.0.0 |
PTSR | 0.1.2 | ptw | 1.9-16 |
PTXQC | 1.1.1 | pubmed.mineR | 1.0.20 |
purrr | 1.0.2 | pushoverr | 1.1.0 |
pvclust | 2.2-0 | pwr | 1.3-0 |
PwrGSD | 2.3.6 | pwrRasch | 0.1-2 |
pwt | 7.1-1 | pwt8 | 8.1-1 |
pwt9 | 9.1-0 | pxweb | 0.17.0 |
PxWebApiData | 0.9.0 | qap | 0.1-2 |
Qardl | 0.1.1 | qcv | 1.0 |
qdap | 2.4.6 | qdapDictionaries | 1.0.7 |
qdapRegex | 0.7.8 | qdapTools | 1.3.7 |
qgam | 1.3.4 | qgisprocess | 0.3.0 |
qgraph | 1.9.8 | qicharts2 | 0.7.4 |
qlcal | 0.0.10 | qmap | 1.0-4 |
qMRI | 1.2.7 | qpdf | 1.3.3 |
qpmadr | 1.1.0-0 | qpNCA | 1.1.6 |
qqconf | 1.3.2 | qqplotr | 0.0.6 |
QRM | 0.4-31 | qrmdata | 2024-03-04-2 |
qrmtools | 0.0-17 | qrng | 0.0-10 |
qs | 0.26.1 | qtl | 1.66 |
quadprog | 1.5-8 | quadprogXT | 0.0.5 |
qualmap | 0.2.2 | qualtRics | 3.2.0 |
Quandl | 2.11.0 | quanteda | 4.0.2 |
quantification | 0.2.0 | quantmod | 0.4.26 |
quantreg | 5.97 | quantspec | 1.2-3 |
Quartet | 1.2.6 | questionr | 0.7.8 |
QuickJSR | 1.1.3 | quickpsy | 0.1.5.1 |
qvalue | 2.32.0 | qvcalc | 1.0.3 |
R.cache | 0.16.0 | R.devices | 2.17.2 |
R.filesets | 2.15.1 | R.huge | 0.10.1 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.26.0 | R.rsp | 0.46.0 |
R.utils | 2.12.3 | R0 | 1.3-1 |
R2BEAT | 1.0.5 | r2d3 | 0.2.6 |
R2HTML | 2.3.3 | R2jags | 0.7-1.1 |
R2OpenBUGS | 3.2-3.2.1 | r2rtf | 1.1.1 |
R2WinBUGS | 2.1-22.1 | R4CouchDB | 0.7.5 |
R6 | 2.5.1 | R6P | 0.3.0 |
radarchart | 0.3.1 | radiant | 1.6.1 |
radiant.basics | 1.6.0 | radiant.data | 1.6.3 |
radiant.design | 1.6.1 | radiant.model | 1.6.3 |
radiant.multivariate | 1.6.1 | RAdwords | 0.1.18 |
ragg | 1.3.0 | ragtop | 1.1.1 |
rainbow | 3.8 | rakeR | 0.2.1 |
rAmCharts | 2.1.15 | RAMClustR | 1.3.1 |
ramcmc | 0.1.2 | ramify | 0.3.3 |
ramps | 0.6.18 | randomcoloR | 1.1.0.1 |
randomForest | 4.7-1.1 | randomForestSRC | 3.2.3 |
randomizeR | 3.0.2 | randomizr | 1.0.0 |
randomLCA | 1.1-3 | randtoolbox | 2.0.4 |
rang | 0.3.0 | ranger | 0.16.0 |
rankdist | 1.1.4 | RANN | 2.6.1 |
rapiclient | 0.1.4 | rapidjsonr | 1.2.0 |
RApiSerialize | 0.1.2 | rappdirs | 0.3.3 |
rapport | 1.1 | rapportools | 1.1 |
Raquifer | 0.1.0 | rARPACK | 0.11-0 |
RaschSampler | 0.8-10 | raster | 3.6-26 |
rasterImage | 0.4.0 | rasterVis | 0.51.6 |
ratelimitr | 0.4.1 | RATest | 0.1.10 |
raveio | 0.9.0 | RavenR | 2.2.0 |
ravetools | 0.1.3 | raw | 0.1.8 |
rBayesianOptimization | 1.2.1 | Rbeast | 1.0.0 |
rbedrock | 0.3.2 | rbenchmark | 1.0.0 |
RBGL | 1.76.0 | rBiasCorrection | 0.3.4 |
rbibutils | 2.2.16 | Rblpapi | 0.3.14 |
rbmi | 1.2.6 | RCarb | 0.1.6 |
rcartocolor | 2.1.1 | Rcatch22 | 0.2.1 |
rcdd | 1.6 | RCEIM | 0.3 |
Rcgmin | 2022-4.30 | rchess | 0.1 |
Rchoice | 0.3-6 | RCircos | 1.2.2 |
rCMA | 1.1.1 | rcmdcheck | 1.4.0 |
Rcmdr | 2.9-2 | RcmdrMisc | 2.9-1 |
RcmdrPlugin.depthTools | 1.4 | RcmdrPlugin.DoE | 0.12-5 |
RcmdrPlugin.temis | 0.7.10 | RColorBrewer | 1.1-3 |
Rcpp | 1.0.12 | RcppAnnoy | 0.0.22 |
RcppArmadillo | 0.12.8.2.1 | RcppCCTZ | 0.2.12 |
RcppDate | 0.0.3 | RcppDE | 0.1.7 |
RcppDist | 0.1.1 | RcppEigen | 0.3.4.0.0 |
RcppGSL | 0.3.13 | RcppHNSW | 0.6.0 |
RcppHungarian | 0.3 | RcppNumerical | 0.6-0 |
RcppParallel | 5.1.7 | RcppProgress | 0.4.2 |
RcppQuantuccia | 0.1.2 | RcppRedis | 0.2.4 |
RcppRoll | 0.3.0 | RcppSimdJson | 0.1.11 |
RcppSpdlog | 0.0.16 | RcppThread | 2.1.7 |
rcpptimer | 1.1.0 | RcppTN | 0.2-2 |
RcppTOML | 0.2.2 | RcppZiggurat | 0.1.6 |
Rcrawler | 0.1.9-1 | rcrossref | 1.2.0 |
Rcsdp | 0.1.57.5 | RCurl | 1.98-1.14 |
RCzechia | 1.12.0 | rdatacite | 0.5.4 |
rdbnomics | 0.6.4 | rdd | 0.57 |
rddensity | 2.5 | rdflib | 0.2.8 |
rdhs | 0.8.1 | rdlocrand | 1.0 |
rdmulti | 1.1 | RDota2 | 0.1.6 |
Rdpack | 2.6 | rdpower | 2.2 |
rdrobust | 2.2 | Rdsdp | 1.0.5.2.1 |
rdwd | 1.8.0 | re2 | 0.1.3 |
reactable | 0.4.4 | reactR | 0.5.0 |
read.gb | 2.2 | readabs | 0.4.14 |
reader | 1.0.6 | readJDX | 0.6.4 |
readODS | 2.2.0 | readr | 2.1.5 |
readsdmx | 0.3.1 | readstata13 | 0.10.1 |
readxl | 1.4.3 | reasonabletools | 0.1 |
REBayes | 2.54 | recipes | 1.0.10 |
reclin | 0.1.2 | recmap | 1.0.17 |
RecordLinkage | 0.4-12.4 | redcapAPI | 2.9.0 |
REDCapR | 1.1.0 | REDCapTidieR | 1.1.1 |
redland | 1.0.17-18 | redux | 1.1.4 |
RefManageR | 1.4.0 | refugees | 2023.6.0 |
regions | 0.1.8 | registry | 0.5-1 |
regnet | 1.0.1 | regress | 1.3-21 |
RegSDC | 0.7.0 | regsem | 1.9.5 |
regspec | 2.7 | regtools | 1.7.0 |
ReIns | 1.0.14 | reinsureR | 0.1.0 |
relations | 0.6-13 | reldist | 1.7-2 |
relimp | 1.0-5 | rematch | 2.0.0 |
rematch2 | 2.1.2 | remotes | 2.5.0 |
REndo | 2.4.9 | rentrez | 1.2.3 |
renv | 1.0.7 | replicateBE | 1.1.3 |
repmis | 0.5 | repo | 2.1.5 |
RepoGenerator | 0.0.1 | reportfactory | 0.4.0 |
reportr | 1.3.0 | reporttools | 1.1.3 |
repr | 1.1.7 | represtools | 0.1.3 |
reprex | 2.1.0 | reproducible | 2.0.12 |
reproj | 0.4.3 | reqres | 0.2.5 |
REQS | 0.8-13 | request | 0.1.0 |
Require | 0.3.1 | rerddap | 1.1.0 |
rerddapXtracto | 1.2.0 | resampledata | 0.3.1 |
resde | 1.1 | reservoir | 1.1.5 |
reshape | 0.8.9 | reshape2 | 1.4.4 |
restfulr | 0.0.15 | restimizeapi | 1.0.0 |
reticulate | 1.36.1 | retrosheet | 1.1.6 |
retry | 0.1.1 | revdbayes | 1.5.3 |
RevGadgets | 1.2.1 | Revticulate | 1.0.0 |
rex | 1.2.1 | Rexperigen | 0.2.1 |
Rfacebook | 0.6.15 | Rfast | 2.1.0 |
Rfast2 | 0.1.5.2 | rfigshare | 0.3.8 |
rflexscan | 1.1.0 | rgbif | 3.7.9 |
RGBM | 1.0-11 | rgdal | 1.6-7 |
rgee | 1.1.7 | rgen | 0.0.1 |
RGENERATE | 1.3.7 | RGENERATEPREC | 1.2.9 |
rgenoud | 5.9-0.10 | rgeoda | 0.0.10-4 |
rgeos | 0.6-4 | rgl | 1.3.1 |
Rglpk | 0.6-5.1 | RgoogleMaps | 1.5.1 |
RGraphics | 3.0-2 | Rgraphviz | 2.44.0 |
rgrass | 0.4-2 | rgrass7 | 0.2-13 |
RGreenplum | 0.1.2 | rgugik | 0.4.0 |
RH2 | 0.2.4 | rhandsontable | 0.3.8 |
RHclust | 2.0.0 | rhdf5 | 2.44.0 |
rhdf5filters | 1.12.1 | Rhdf5lib | 1.22.0 |
RHMS | 1.7 | rhosa | 0.2.0 |
RhpcBLASctl | 0.23-42 | Rhtslib | 2.2.0 |
rhub | 2.0.0 | rib | 0.20.0 |
riceidconverter | 1.1.1 | RIdeogram | 0.2.2 |
ridge | 3.3 | riingo | 0.3.1 |
Rilostat | 2.0.0 | ring | 1.0.5 |
RInside | 0.2.18 | rintrojs | 0.3.4 |
rio | 1.0.1 | Rirt | 0.0.2 |
Risk | 1.0 | riskCommunicator | 1.0.1 |
riskParityPortfolio | 0.2.2 | RiskPortfolios | 2.1.7 |
riskSimul | 0.1.2 | ritis | 1.0.0 |
riverdist | 0.16.3 | rivernet | 1.2.3 |
rivr | 1.2-3 | rjags | 4-15 |
rJava | 1.0-11 | RJDBC | 0.2-10 |
RJDemetra | 0.2.6 | rje | 1.12.1 |
rjson | 0.2.21 | RJSONIO | 1.3-1.9 |
rjstat | 0.4.3 | RKEA | 0.0-6 |
RKEAjars | 5.0-4 | RKelly | 1.0 |
rlang | 1.1.3 | rlas | 1.7.0 |
rle | 0.9.2 | rlecuyer | 0.3-8 |
rlemon | 0.2.1 | Rlgt | 0.2-1 |
Rlibeemd | 1.4.3 | rLiDAR | 0.1.5 |
Rlinkedin | 0.2 | rlist | 0.4.6.2 |
rLTP | 0.1.4 | RLumShiny | 0.2.3 |
RM2006 | 0.1.1 | Rmalschains | 0.2-10 |
rmapshaper | 0.5.0 | RMariaDB | 1.3.1 |
rmarkdown | 2.26 | rmatio | 0.19.0 |
RMAWGEN | 1.3.7 | rmcfs | 1.3.5 |
rmeta | 3.0 | rmgarch | 1.3-9 |
rminizinc | 0.0.8 | Rmisc | 1.5.1 |
rmoo | 0.2.0 | Rmosek | 1.3.5 |
Rmpfr | 0.9-5 | rms | 6.8-0 |
RMTstat | 0.3.1 | rmutil | 1.1.10 |
RMySQL | 0.10.27 | rmzqc | 0.5.4 |
Rnanoflann | 0.0.2 | RNAseqNet | 0.1.5 |
RNAsmc | 0.8.0 | rnaturalearth | 1.0.1 |
rnaturalearthdata | 1.0.0 | RNCEP | 1.0.10 |
rncl | 0.8.7 | RND | 1.2 |
RNentropy | 1.2.3 | rneos | 0.4-0 |
RNetCDF | 2.9-2 | RNeXML | 2.4.11 |
rngtools | 1.5.2 | rngWELL | 0.10-9 |
RNifti | 1.6.1 | RNiftyReg | 2.8.1 |
rnn | 1.9.0 | rnoaa | 1.4.0 |
rnrfa | 2.1.0.5 | roadoi | 0.7.2 |
ROAuth | 0.9.6 | robfilter | 4.1.4 |
RobKF | 1.0.2 | RoBMA | 3.1.0 |
robotoolbox | 1.3.2 | robotstxt | 0.7.13 |
robsurvey | 0.6 | robustbase | 0.99-2 |
RobustRankAggreg | 1.2.1 | rockchalk | 1.8.157 |
rocker | 0.3.1 | ROCR | 1.0-11 |
RODBC | 1.3-23 | rodd | 0.2-1 |
Rogue | 2.1.6 | ROI | 1.0-1 |
ROI.plugin.ecos | 1.0-2 | ROI.plugin.neos | 1.0-2 |
ROI.plugin.qpoases | 1.0-3 | roll | 1.1.7 |
Rook | 1.2 | ROOPSD | 0.3.9 |
rootSolve | 1.8.2.4 | ROpenDota | 0.1.2 |
roperators | 1.3.14 | roptim | 0.1.6 |
rorcid | 0.7.0 | rosetteApi | 1.14.4 |
rosm | 0.3.0 | rotl | 3.1.0 |
round | 0.21-0.2 | routr | 0.4.1 |
roxygen2 | 7.3.1 | rpact | 3.5.1 |
RPANDA | 2.3 | rpanel | 1.1-5.2 |
rPanglaoDB | 0.2.1 | rpart.plot | 3.1.2 |
rpdo | 0.3.2 | rpf | 1.0.14 |
Rphylopars | 0.3.10 | rpinterest | 0.3.1 |
RPMG | 2.2-7 | rpms | 0.5.1 |
rpostgis | 1.5.1 | RPostgres | 1.4.6 |
RPostgreSQL | 0.7-6 | RPPairwiseDesign | 1.0 |
RPresto | 1.4.6 | rprintf | 0.2.1 |
RprobitB | 1.1.4 | rprojroot | 2.0.4 |
RPushbullet | 0.3.4 | RPyGeo | 1.0.0 |
rpymat | 0.1.7 | RQuantLib | 0.4.17 |
rrcov | 1.7-5 | rredlist | 0.7.1 |
rrefine | 2.1.0 | RRNA | 1.0 |
RRPP | 2.0.0 | RRreg | 0.7.5 |
RRTCS | 0.0.4 | rrum | 0.2.1 |
rsae | 0.3 | RSAGA | 1.4.0 |
Rsagacmd | 0.4.2 | rsample | 1.2.1 |
Rsamtools | 2.16.0 | RSclient | 0.7-10 |
rscopus | 0.6.6 | rsdmx | 0.6-3 |
rSEA | 2.1.1 | RSEIS | 4.2-0 |
RSelenium | 1.7.9 | rsem | 0.5.1 |
Rserve | 1.8-13 | Rsfar | 0.0.1 |
RSGHB | 1.2.2 | RSiteCatalyst | 1.4.16 |
rsm | 2.10.4 | RSmartlyIO | 0.1.3 |
rsoi | 0.5.6 | Rsolnp | 1.16 |
rspa | 0.2.8 | rsparse | 0.5.1 |
RSpectra | 0.16-1 | RSQLite | 2.3.6 |
Rssa | 1.0.5 | rstac | 1.0.0 |
rstan | 2.32.6 | rstanarm | 2.32.1 |
rstantools | 2.4.0 | rstatix | 0.7.2 |
rstiefel | 1.0.1 | rStrava | 1.3.1 |
rstudioapi | 0.16.0 | rsurface | 1.1.0 |
RSurveillance | 0.2.1 | rsvd | 1.0.5 |
rsvg | 2.6.0 | Rsymphony | 0.1-33 |
rTensor | 1.4.8 | rtf | 0.4-14.1 |
RTFA | 0.1.0 | rticles | 0.27 |
RTL | 1.3.5 | rtoot | 0.3.4 |
rtop | 0.6-9 | rtracklayer | 1.60.1 |
RTransferEntropy | 0.2.21 | rtrim | 2.1.1 |
rts | 1.1-14 | Rtsne | 0.17 |
Rttf2pt1 | 1.3.12 | rtweet | 2.0.0 |
rucrdtw | 0.1.6 | rugarch | 1.5-1 |
ruimtehol | 0.3.2 | ruin | 0.1.1 |
rules | 1.0.2 | runexp | 0.2.1 |
RUnit | 0.4.33 | runjags | 2.2.2-4 |
runner | 0.4.4 | runstats | 1.1.0 |
Runuran | 0.38 | rust | 1.4.2 |
ruv | 0.9.7.1 | Rvcg | 0.22.2 |
rversions | 2.1.2 | rvest | 1.0.4 |
Rvmmin | 2018-4.17.1 | Rwave | 2.6-5 |
RWDataPlyr | 0.6.4 | RWeka | 0.4-46 |
RWekajars | 3.9.3-2 | rworldmap | 1.3-8 |
rworldxtra | 1.01 | rwunderground | 0.1.8 |
rxode2 | 2.1.2 | rxode2et | 2.0.12 |
rxode2ll | 2.0.11 | rxode2parse | 2.0.18 |
rxode2random | 2.0.13 | RYandexTranslate | 1.0 |
s2 | 1.1.6 | S4Arrays | 1.0.6 |
S4Vectors | 0.38.1 | sae | 1.3 |
saeRobust | 0.5.0 | saeSim | 0.11.0 |
SAEval | 1.0.0 | safetensors | 0.1.2 |
samadb | 0.2.6 | sampleSelection | 1.2-12 |
samplesize | 0.2-4 | sampling | 2.10 |
SamplingBigData | 1.0.0 | samplingbook | 1.2.4 |
SamplingStrata | 1.5-4 | samplingVarEst | 1.5 |
samr | 3.0 | sandwich | 3.1-0 |
sarima | 0.9.3 | SAScii | 1.0.2 |
sass | 0.4.9 | satellite | 1.0.5 |
sazedR | 2.0.2 | sbgcop | 0.980 |
SBN | 1.0.0 | ScaledMatrix | 1.8.1 |
scales | 1.3.0 | scalreg | 1.0.1 |
scam | 1.2-16 | scatterD3 | 1.0.1 |
scattermore | 1.2 | scatterplot3d | 0.3-44 |
scBio | 0.1.6 | sccore | 1.0.5 |
scholar | 0.2.4 | SCI | 1.0-2 |
scINSIGHT | 0.1.4 | scLink | 1.0.1 |
scoper | 1.3.0 | scoringRules | 1.1.1 |
scoringutils | 1.2.2 | SCORPIUS | 1.0.9 |
ScottKnott | 1.3-2 | scs | 3.2.4 |
scSorter | 0.0.2 | scTenifoldKnk | 1.0.1 |
scTenifoldNet | 1.3 | sctransform | 0.4.1 |
SDaA | 0.1-5 | sdcHierarchies | 0.21.0 |
sdcMicro | 5.7.8 | sdcSpatial | 0.5.2 |
sdcTable | 0.32.6 | sde | 2.0.18 |
sdmTMB | 0.5.0 | sdpt3r | 0.3 |
sealasso | 0.1-3 | searchConsoleR | 0.4.0 |
seas | 0.6-0 | season | 0.3.15 |
seasonal | 1.9.0 | seasonalview | 0.3 |
seastests | 0.15.4 | secretbase | 0.4.0 |
secsse | 3.0.2 | seer | 1.1.8 |
seg | 0.5-7 | segmented | 2.0-4 |
SelectBoost | 2.2.2 | selectr | 0.4-2 |
seleniumPipes | 0.3.7 | sem | 3.1-15 |
semantic.assets | 1.1.0 | semds | 0.9-6 |
SemiPar | 1.0-4.2 | semmcmc | 0.0.6 |
semPlot | 1.1.6 | SEMsens | 1.5.5 |
semsfa | 1.1 | semTools | 0.5-6 |
semtree | 0.9.20 | semver | 0.2.0 |
sendmailR | 1.4-0 | SensoMineR | 1.27 |
sentencepiece | 0.2.3 | separationplot | 1.4 |
seqDesign | 1.2 | seqgendiff | 1.2.3 |
seqinr | 4.2-36 | SeqNet | 1.1.3 |
seriation | 1.5.5 | servr | 0.30 |
sessioninfo | 1.2.2 | setartree | 0.2.1 |
setRNG | 2024.2-1 | sets | 1.0-25 |
settings | 0.2.7 | Seurat | 5.0.3 |
SeuratObject | 5.0.1 | sf | 1.0-16 |
sFFLHD | 0.1.2 | sfheaders | 0.4.4 |
sfsmisc | 1.1-17 | sftime | 0.2-0 |
sgd | 1.1.2 | sgeostat | 1.0-27 |
shades | 1.4.0 | shape | 1.4.6.1 |
shapefiles | 0.7.2 | shapes | 1.2.7 |
SharpeR | 1.3.0 | shazam | 1.2.0 |
ShiftConvolvePoibin | 1.0.0 | shiny | 1.8.1.1 |
shiny.semantic | 0.5.1 | shinyAce | 0.4.2 |
shinyalert | 3.0.0 | shinybrms | 1.8.0 |
shinyBS | 0.61.1 | shinybusy | 0.3.3 |
shinycssloaders | 1.0.0 | shinydashboard | 0.7.2 |
shinydashboardPlus | 2.0.4 | shinyFiles | 0.9.3 |
ShinyItemAnalysis | 1.5.1 | shinyjqui | 0.4.1 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinytest | 1.5.4 | shinythemes | 1.2.0 |
shinyTree | 0.3.1 | shinyWidgets | 0.8.6 |
showimage | 1.0.0 | showtext | 0.9-7 |
showtextdb | 3.0 | SIBERG | 2.0.3 |
sigmoid | 1.4.0 | Signac | 1.13.0 |
SignacX | 2.2.5 | signal | 1.8-0 |
signs | 0.1.2 | sigora | 3.1.1 |
SigTree | 1.10.6 | Sim.DiffProc | 4.9 |
simcdm | 0.1.2 | SimComp | 3.3 |
simex | 1.8 | simfinapi | 1.0.0 |
simglm | 0.8.9 | SimilarityMeasures | 1.4 |
SimInf | 9.7.0 | SIMMS | 1.3.2 |
simpleboot | 1.1-7 | simPop | 2.1.3 |
simputation | 0.2.8 | simrel | 2.1.0 |
SiMRiv | 1.0.6 | simsem | 0.5-16 |
SimSurvey | 0.1.6 | SingleCellExperiment | 1.22.0 |
singleCellHaystack | 1.0.2 | singleRcapture | 0.2.1.1 |
singscore | 1.20.0 | siplab | 1.6 |
sirt | 4.1-15 | sitmo | 2.0.2 |
sits | 1.4.2-1 | sjlabelled | 1.2.0 |
sjmisc | 2.8.9 | SkewHyperbolic | 0.4-2 |
skmeans | 0.2-16 | skpr | 1.7.1 |
slackr | 3.3.1 | slam | 0.1-50 |
SLBDD | 0.0.4 | sleekts | 1.0.2 |
sleeperapi | 1.0.4 | Sleuth2 | 2.0-7 |
Sleuth3 | 1.0-6 | slfm | 1.0.2 |
SLHD | 2.1-1 | slider | 0.3.1 |
slippymath | 0.3.1 | sm | 2.2-6.0 |
smacof | 2.1-6 | smacpod | 2.6 |
SmallCountRounding | 1.0.3 | smam | 0.7.2 |
smapr | 0.2.1 | smerc | 1.8.3 |
smoof | 1.6.0.3 | smooth | 4.0.1 |
smoother | 1.3 | smoothr | 1.0.1 |
smoots | 1.1.4 | smovie | 1.1.6 |
SMPracticals | 1.4-3.1 | sms | 2.3.1 |
SMVar | 1.3.4 | sn | 2.1.1 |
sna | 2.7-2 | snakecase | 0.11.1 |
snow | 0.4-4 | SnowballC | 0.7.1 |
snowfall | 1.84-6.3 | snvecR | 3.9.3 |
SOAs | 1.4 | soc.ca | 0.8.0 |
socceR | 0.1.1 | socialmixr | 0.3.2 |
sodium | 1.3.1 | sofa | 0.4.0 |
SoilHyP | 0.1.7 | soilhypfit | 0.1-7 |
soilwater | 1.0.5 | solaR | 0.46 |
solartime | 0.0.2 | solrium | 1.2.0 |
solvebio | 2.14.0 | soma | 1.2.0 |
sonicLength | 1.4.7 | sorvi | 0.8.21 |
SoupX | 1.6.2 | sourcetools | 0.1.7-1 |
sp | 2.1-3 | sp23design | 0.9-1 |
spacetime | 1.3-1 | spam | 2.10-0 |
spaMM | 4.4.16 | spant | 2.19.0 |
sparklyr | 1.8.5 | sparktex | 0.1 |
sparr | 2.3-10 | sparseDFM | 1.0 |
SparseFactorAnalysis | 1.0 | sparseinv | 0.1.3 |
SparseM | 1.81 | sparseMatrixStats | 1.12.2 |
sparseMVN | 0.2.2 | sparsevar | 0.1.0 |
spatgraphs | 3.4 | spatialCovariance | 0.6-9 |
SpatialEpi | 1.2.8 | SpatialExtremes | 2.1-0 |
SpatialPosition | 2.1.2 | spatialprobit | 1.0.4 |
spatialreg | 1.3-2 | spatialsample | 0.5.1 |
SpatialTools | 1.0.5 | spatialwidget | 0.2.5 |
spatstat | 3.0-8 | spatstat.data | 3.0-4 |
spatstat.explore | 3.2-7 | spatstat.geom | 3.2-9 |
spatstat.linnet | 3.1-5 | spatstat.model | 3.2-11 |
spatstat.random | 3.2-3 | spatstat.sparse | 3.0-3 |
spatstat.utils | 3.0-4 | spBayes | 0.4-7 |
spBayesSurv | 1.1.8 | Spbsampling | 1.3.5 |
spd | 2.0-1 | spData | 2.3.0 |
spdep | 1.3-3 | spec | 0.1.9 |
spectral | 2.0 | speff2trial | 1.0.5 |
SPEI | 1.8.1 | spelling | 2.3.0 |
sperrorest | 3.0.5 | sphet | 2.0 |
spiderbar | 0.2.5 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-19 | spINAR | 0.2.0 |
spind | 2.2.1 | splancs | 2.01-44 |
SPLICE | 1.1.2 | splines2 | 0.5.1 |
splm | 1.6-5 | spls | 2.2-3 |
splus2R | 1.3-5 | spmodel | 0.6.0 |
spmoran | 0.2.3 | SportsTour | 0.1.0 |
sportyR | 2.2.2 | SPOT | 2.11.14 |
SpotSampling | 0.1.0 | spselect | 0.0.1 |
spsur | 1.0.2.5 | spsurvey | 5.5.1 |
spTimer | 3.3.2 | sptotal | 1.0.1 |
sqldf | 0.4-11 | SqlRender | 1.17.0 |
SQRL | 1.0.2 | SQUAREM | 2021.1 |
srvyr | 1.2.0 | ssanv | 1.1 |
SSBtools | 1.5.0 | ssfa | 1.2.2 |
ssgraph | 1.15 | ssize.fdr | 1.3 |
ssizeRNA | 1.3.2 | ssMousetrack | 1.1.6 |
ssmrob | 1.0 | SSN | 1.1.17 |
stable | 1.1.6 | stabledist | 0.7-1 |
stabs | 0.6-4 | staggered | 1.1 |
stampr | 0.3.1 | StanHeaders | 2.32.6 |
StanMoMo | 1.2.0 | stargazer | 5.2.3 |
starma | 1.3 | stars | 0.6-5 |
starter | 0.1.15 | STARTS | 1.3-8 |
startupmsg | 0.9.6.1 | statcanR | 0.2.6 |
statcodelists | 0.9.2 | statebins | 1.4.0 |
statespacer | 0.5.0 | stationaRy | 0.5.1 |
statip | 0.2.3 | StatMatch | 1.4.1 |
statmod | 1.5.0 | statnet.common | 4.9.0 |
StatRank | 0.0.6 | steadyICA | 1.0 |
SteinIV | 0.1-1 | STFTS | 0.1.0 |
stinepack | 1.5 | stlplus | 0.5.1 |
stm | 1.3.7 | STMedianPolish | 0.2 |
StMoMo | 0.4.1 | stochprofML | 2.0.3 |
stochQN | 0.1.2-1 | stochvol | 3.2.4 |
stockAnalyst | 1.0.1 | stopwords | 2.3 |
storr | 1.2.5 | stplanr | 1.1.2 |
stR | 0.6 | strand | 0.2.0 |
strap | 1.6-0 | stratification | 2.2-7 |
streamDepletr | 0.2.0 | streamR | 0.4.5 |
stringdist | 0.9.12 | stringfish | 0.16.0 |
stringi | 1.8.3 | stringmagic | 1.1.0 |
stringr | 1.5.1 | strucchange | 1.5-3 |
strucchangeRcpp | 1.5-3-1.0.4 | StructuralDecompose | 0.1.1 |
styler | 1.10.3 | subplex | 1.8 |
subscore | 3.3 | sufficientForecasting | 0.1.0 |
sugrrants | 0.2.9 | SummarizedExperiment | 1.30.2 |
summclust | 0.7.2 | suntools | 1.0.0 |
supclust | 1.1-1 | SuperLearner | 2.0-29 |
superml | 0.5.7 | superpc | 1.12 |
SuppDists | 1.1-9.7 | support.CEs | 0.7-0 |
surface | 0.5 | SurrogateRegression | 0.6.0.1 |
suRtex | 0.9 | survcomp | 1.50.0 |
surveillance | 1.22.1 | survey | 4.4-2 |
surveybootstrap | 0.0.3 | surveydata | 0.2.7 |
surveyoutliers | 0.1 | surveyplanning | 4.0 |
surveysd | 1.3.1 | survival666 | 0.5 |
survivalROC | 1.0.3.1 | survminer | 0.4.9 |
survMisc | 0.5.6 | survPresmooth | 1.1-11 |
sva | 3.48.0 | svars | 1.3.11 |
svd | 0.5.5 | svDialogs | 1.1.0 |
SVDNF | 0.1.8 | svglite | 2.1.3 |
svGUI | 1.0.1 | svrep | 0.6.3 |
svs | 3.0.0 | svUnit | 1.0.6 |
swagger | 3.33.1 | swephR | 0.3.1 |
SwimmeR | 0.14.2 | swirl | 2.4.5 |
swirlify | 0.5.3 | switchr | 0.14.8 |
sylly | 0.1-6 | sym.arma | 1.0 |
symengine | 0.2.6 | symmoments | 1.2.1 |
SYNCSA | 1.3.4 | Synth | 1.1-8 |
synthACS | 1.7.1 | synthesis | 1.2.4 |
SynthETIC | 1.1.0 | synthpop | 1.8-0 |
sys | 3.4.2 | sysfonts | 0.8.9 |
systemfit | 1.1-30 | systemfonts | 1.0.6 |
table1 | 1.4.3 | tables | 0.9.25 |
tabnet | 0.5.0 | tabuSearch | 1.1.1 |
TAF | 4.2.0 | tagcloud | 0.6 |
TailRank | 3.2.2 | TAM | 4.2-21 |
TAQMNGR | 2018.5-1 | targets | 1.7.0 |
tau | 0.0-25 | taxize | 0.9.100 |
TBRDist | 1.0.2 | tbrf | 0.1.5 |
TCA | 1.2.1 | TcGSA | 0.12.10 |
tcltk2 | 1.2-11 | Tcomp | 1.0.1 |
tdigest | 0.4.1 | TeachingDemos | 2.13 |
teamcolors | 0.0.4 | telegram.bot | 3.0.0 |
telemac | 0.1.1 | tempdisagg | 1.1.1 |
tensor | 1.5 | tensorA | 0.36.2.1 |
tensorflow | 2.16.0 | TensorPreAve | 1.1.0 |
tensorTS | 1.0.1 | TEQR | 6.0-0 |
tergm | 4.2.0 | Ternary | 2.3.1 |
terra | 1.7-71 | TESS | 2.1.2 |
tesseract | 5.2.1 | testcorr | 0.2.0 |
TestDataImputation | 2.3 | TestDesign | 1.6.1 |
tester | 0.2.0 | TestFunctions | 0.2.1 |
testit | 0.13 | TestScorer | 1.7.2 |
testthat | 3.2.1.1 | TexExamRandomizer | 1.2.7 |
texreg | 1.39.3 | text2vec | 0.6.4 |
textcat | 1.0-8 | textir | 2.0-5 |
textplot | 0.2.2 | textrank | 0.3.1 |
textreuse | 0.1.5 | textshaping | 0.3.7 |
textTinyR | 1.1.8 | tfarima | 0.3.2 |
tfautograph | 0.3.2 | tfdatasets | 2.9.0 |
tfio | 0.4.1 | TFisher | 0.2.0 |
tfplot | 2021.6-1 | tframe | 2015.12-1.1 |
tfruns | 1.5.3 | tgp | 2.4-22 |
TH.data | 1.1-2 | theft | 0.6.1 |
thief | 0.3 | ThreeArmedTrials | 1.0-4 |
threeBrain | 1.0.1 | ThreeGroups | 0.21 |
threejs | 0.3.3 | ThreeWay | 1.1.3 |
thurstonianIRT | 0.12.5 | tibble | 3.2.1 |
tibbletime | 0.1.8 | tictoc | 1.2.1 |
Tides | 2.1 | tidyBdE | 0.3.6 |
tidycensus | 1.6.3 | tidyestimate | 1.1.1 |
tidygraph | 1.3.1 | tidyhydat | 0.6.1 |
tidyLPA | 1.1.0 | tidymodels | 1.2.0 |
tidyquant | 1.0.7 | tidyqwi | 0.1.2 |
tidyr | 1.3.1 | tidyREDCap | 1.1.1 |
tidyRSS | 2.0.7 | tidyselect | 1.2.1 |
tidysynth | 0.2.0 | tidytable | 0.11.0 |
tidyterra | 0.6.0 | tidytext | 0.4.2 |
tidytree | 0.4.6 | tidyverse | 2.0.0 |
tiff | 0.1-12 | tigris | 2.1 |
tikzDevice | 0.12.6 | timechange | 0.3.0 |
timeDate | 4032.109 | timeSeries | 4032.109 |
timeseriesdb | 1.0.0-1.1.2 | timetk | 2.9.0 |
timsac | 1.3.8-4 | tinyProject | 0.6.1 |
tinytable | 0.2.1 | tinytex | 0.50 |
tis | 1.39 | tkrplot | 0.0-27 |
TLMoments | 0.7.5.3 | tm | 0.7-13 |
tm.plugin.alceste | 1.1.1 | tm.plugin.dc | 0.2-10 |
tm.plugin.europresse | 1.4 | tm.plugin.factiva | 1.8 |
tm.plugin.lexisnexis | 1.4.1 | tm.plugin.mail | 0.2-2 |
tmap | 3.3-4 | tmaptools | 3.1-1 |
TMB | 1.9.11 | Tmisc | 1.0.1 |
tmod | 0.50.13 | tmvnsim | 1.0-2 |
tmvtnorm | 1.6 | tnet | 3.0.16 |
tokenizers | 0.3.0 | tokenizers.bpe | 0.1.3 |
toOrdinal | 1.3-0.0 | topicdoc | 0.1.1 |
topicmodels | 0.2-16 | topicmodels.etm | 0.1.0 |
topmodel | 0.7.5 | toprdata | 1.0.2 |
torch | 0.12.0 | torchaudio | 0.3.1.9000 |
torchdatasets | 0.3.0 | torchvision | 0.5.1 |
tpr | 0.3-3 | tracerer | 2.2.3 |
trackdem | 0.6 | trackdf | 0.3.3 |
trackdown | 1.1.1 | trackeR | 1.6.0 |
trackeRapp | 1.2 | TrackReconstruction | 1.3 |
tractor.base | 3.4.2 | traipse | 0.3.0 |
trajectories | 0.2-8 | TrajectoryUtils | 1.8.0 |
trajr | 1.5.1 | transformr | 0.1.5 |
transfR | 1.0.11 | TransPhylo | 1.4.5 |
trapezoid | 2.0-2 | traudem | 1.0.3 |
tree | 1.0-43 | treebase | 0.1.5 |
TreeBUGS | 1.5.0 | treedater | 0.5.0 |
TreeDist | 2.7.0 | treefit | 1.0.2 |
treeio | 1.24.0 | treemap | 2.4-4 |
TreeSearch | 1.5.0 | TreeSim | 2.4 |
treespace | 1.1.4.3 | TreeTools | 1.10.0 |
trend | 1.1.6 | trendeval | 0.1.0 |
trending | 0.1.0 | TrialSize | 1.4 |
triangle | 1.0 | triebeard | 0.4.1 |
trimcluster | 0.1-5 | trip | 1.10.0 |
tripack | 1.3-9.1 | tripEstimation | 0.0-46 |
TripleR | 1.5.4 | TruncatedNormal | 2.2.2 |
truncdist | 1.0-2 | truncnorm | 1.0-9 |
truncreg | 0.2-5 | trust | 0.1-8 |
trustOptim | 0.8.7.3 | tryCatchLog | 1.3.1 |
TSA | 1.3.1 | TSANN | 0.1.0 |
tsbox | 0.4.1 | tsBSS | 1.0.0 |
TSCAN | 1.38.0 | TSclust | 1.3.1 |
tscount | 1.4.3 | tsdb | 1.1-0 |
tsdecomp | 0.2 | TSdeeplearning | 0.1.0 |
tsdisagg2 | 0.1.0 | TSdisaggregation | 2.0.0 |
TSdist | 3.7.1 | tsDyn | 11.0.4.1 |
TSEntropies | 0.9 | tseries | 0.10-55 |
tseriesChaos | 0.1-13.1 | tseriesEntropy | 0.7-2 |
tseriesTARMA | 0.3-4 | tsfeatures | 1.1.1 |
tsfknn | 0.6.0 | tsibble | 1.1.4 |
tsibbledata | 0.4.1 | tsibbletalk | 0.1.0 |
tsintermittent | 1.10 | tsiR | 0.4.3 |
TSLSTM | 0.1.0 | tsModel | 0.6-1 |
tsne | 0.1-3.1 | tsoutliers | 0.6-10 |
TSP | 1.2-4 | tsPI | 1.0.4 |
TSrepr | 1.1.0 | tsrobprep | 0.3.2 |
tssim | 0.1.7 | TSstudio | 0.1.7 |
TSTutorial | 1.2.7 | tsutils | 0.9.4 |
tswge | 2.1.0 | tth | 4.12-0-1 |
TTR | 0.24.4 | tufterhandout | 1.2.1 |
tune | 1.2.1 | turner | 0.1.9 |
TUWmodel | 1.1-1 | tvm | 0.5.2 |
tweedie | 2.3.5 | tweenr | 2.0.3 |
twosamples | 2.0.1 | TxDb.Hsapiens.UCSC.hg19.knownGene | 3.2.2 |
TxDb.Hsapiens.UCSC.hg38.knownGene | 3.17.0 | txtq | 0.2.4 |
tzdb | 0.4.0 | uaparserjs | 0.3.5 |
ubiquity | 2.0.3 | ucminf | 1.2.1 |
UComp | 4.0.2 | udpipe | 0.8.11 |
ufRisk | 1.0.7 | ugatsdb | 0.2.3 |
uGMAR | 3.4.5 | umap | 0.2.10.0 |
uncmbb | 0.2.2 | unglue | 0.1.0 |
UnifiedDoseFinding | 0.1.10 | units | 0.8-5 |
univOutl | 0.4 | unrepx | 1.0-2 |
unrtf | 1.4.5 | UpSetR | 1.4.0 |
uptasticsearch | 0.4.0 | urca | 1.3-3 |
urlchecker | 1.0.1 | urlshorteneR | 1.5.7 |
urltools | 1.7.3 | uroot | 2.1-3 |
USA.state.boundaries | 1.0.1 | usdata | 0.2.0 |
usethis | 2.2.3 | usmap | 0.7.1 |
usmapdata | 0.2.2 | utf8 | 1.2.4 |
utility | 1.4.6 | uuid | 1.2-0 |
uwot | 0.2.2 | V8 | 4.4.2 |
VALERIE | 1.1.0 | validate | 1.1.5 |
validatetools | 0.5.2 | valr | 0.8.1 |
VAM | 1.1.0 | vapour | 0.9.5 |
VAR.etp | 1.1 | varbvs | 2.6-10 |
VARDetect | 0.1.6 | vardiag | 0.2-1 |
vardpoor | 0.20.1 | VaRES | 1.0.2 |
vars | 1.6-1 | VARshrink | 0.3.1 |
varycoef | 0.3.4 | VCA | 1.5.1 |
vcd | 1.4-12 | vcdExtra | 0.8-5 |
vcr | 1.2.2 | vctrs | 0.6.5 |
vdg | 1.2.3 | VedicDateTime | 0.1.9 |
vegan | 2.6-4 | vegperiod | 0.4.0 |
VennDiagram | 1.7.3 | venneuler | 1.1-4 |
VGAM | 1.1-10 | VGAMdata | 1.1-9 |
vglmer | 1.0.3 | vhica | 0.2.8 |
VIC5 | 0.2.6 | VIM | 6.2.2 |
VineCopula | 2.5.0 | vines | 1.1.5 |
vip | 0.4.1 | viridis | 0.6.5 |
viridisLite | 0.4.2 | visNetwork | 2.1.2 |
visualize | 4.5.0 | vkR | 0.2 |
volatilityTrader | 1.0.1 | volcano3D | 2.0.9 |
volleystat | 0.2.0 | vpc | 1.2.2 |
vroom | 1.6.5 | vrtest | 1.2 |
W3CMarkupValidator | 0.1-7 | waiter | 0.2.5 |
waldo | 0.5.2 | warp | 0.2.1 |
washdata | 0.1.4 | WASP | 1.4.3 |
waterData | 1.0.8 | waterquality | 1.0.0 |
Watersheds | 1.1 | WaveletComp | 1.1 |
wavelets | 0.3-0.2 | WaveSampling | 0.1.3 |
waveslim | 1.8.4 | wavethresh | 4.7.2 |
wavScalogram | 1.1.3 | wbstats | 1.0.4 |
wCorr | 1.9.8 | WDI | 2.7.8 |
wdman | 0.2.6 | WebAnalytics | 0.9.12 |
webchem | 1.3.0 | webdriver | 1.0.6 |
WebGestaltR | 0.4.6 | webmockr | 0.9.0 |
webreadr | 0.4.0 | webshot | 0.5.5 |
webshot2 | 0.1.1 | websocket | 1.4.1 |
webutils | 1.2.0 | wehoop | 2.0.0 |
WeightIt | 1.0.0 | weights | 1.0.4 |
welo | 0.1.4 | WeMix | 4.0.3 |
WGCNA | 1.72-5 | WH | 1.1.1 |
whisker | 0.4.1 | whitebox | 2.3.4 |
whitening | 1.4.0 | whoami | 1.3.0 |
widgetframe | 0.3.1 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | wikipediatrend | 2.1.6 |
WikipediR | 1.7.1 | wikitaxa | 0.4.0 |
wildlifeDI | 1.0.0 | windex | 2.0.7 |
wINEQ | 1.2.0 | withr | 3.0.0 |
wk | 0.9.1 | wktmo | 1.0.5 |
wkutils | 0.1.3 | wnl | 0.8.0 |
wooldridge | 1.4-3 | worcs | 0.1.14 |
word2vec | 0.4.0 | wordcloud | 2.6 |
wordnet | 0.1-16 | workflowr | 1.7.1 |
workflows | 1.1.4 | workflowsets | 1.1.0 |
worldfootballR | 0.6.2 | worldmet | 0.9.8 |
worrms | 0.4.3 | wpp2017 | 1.2-3 |
wpp2019 | 1.1-1 | wql | 1.0.0 |
WrightMap | 1.3 | writexl | 1.5.0 |
WriteXLS | 6.5.0 | wrMisc | 1.14.2 |
wrProteo | 1.11.0.1 | WRSS | 3.1 |
wrswoR | 1.1.1 | WRTDStidal | 1.1.4 |
WufooR | 1.0.1 | x12 | 1.10.3 |
x13binary | 1.1.60 | xaringan | 0.30 |
XBRL | 0.99.19.1 | xfun | 0.43 |
xgboost | 1.7.7.1 | xgxr | 1.1.2 |
XLConnect | 1.0.9 | xlsx | 0.6.5 |
xlsxjars | 0.6.1 | XML | 3.99-0.16.1 |
xml2 | 1.3.6 | XML2R | 0.0.6 |
xmlrpc2 | 1.1 | xopen | 1.0.0 |
xplain | 0.2.2 | xpose | 0.4.18 |
xpose.nlmixr2 | 0.4.0 | xpose4 | 4.7.3 |
xslt | 1.4.5 | xtable | 1.8-4 |
xts | 0.13.2 | XVector | 0.40.0 |
xxIRT | 2.1.2 | yaImpute | 1.0-34 |
yaml | 2.3.8 | yardstick | 1.3.1 |
yesno | 0.1.2 | yhatr | 0.15.1 |
yorkr | 0.0.42 | ypssc | 1.1.0 |
yuima | 1.15.27 | yulab.utils | 0.1.4 |
zeallot | 0.1.0 | zen4R | 0.9 |
zic | 0.9.1 | ZIM | 1.1.0 |
ZINARp | 0.1.0 | zip | 2.3.1 |
zipfR | 0.6-70 | zlib | 1.0.3 |
zlibbioc | 1.46.0 | zoo | 1.8-12 |
ZRA | 0.2 | ztable | 0.2.3 |
zTree | 1.0.7 | zyp | 0.11-1 |
RStudio Server
R: 4.4.0
rstudio-server: 2023.12.0+369
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
Upgraded R to version 4.4.0 and all R packages to their latest versions.
R: 4.4.0; rstudio-server: 2023.12.0+369; CUDA Version: 11.7; GPU Driver Version: 515.43.04
This AMI provides thousands of R packages covering various domains such as data science, machine learning, economitrics, database, finance, official statistics, survey statistics, Bayesian statistics, clinical trials, epidemiology, experimental design, psychometric methodology, analysis of pharmacokinetic data, medical image processing, teaching statistics, time series analysis, analysis of spatial and spatiotemporal data, reproducible research, phylogenetics, web technologies, hydrology, sports analytics, natural language processing, actuarial science, optimization, genomics, proteomics, metabolomics, transcriptomics, and other omics.
R packages (4170)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.1 |
ABCoptim | 0.15.0 | abcrf | 1.9 |
abglasso | 0.1.1 | abind | 1.4-5 |
abtest | 1.0.1 | accrualPlot | 1.0.7 |
acebayes | 1.10 | acepack | 1.4.2 |
acp | 2.1 | acs | 2.1.4 |
ACSWR | 1.0 | ActivePathways | 2.0.3 |
actuar | 3.3-4 | actuaRE | 0.1.5 |
ActuarialM | 0.1.0 | actuaryr | 1.1.1 |
actxps | 1.4.0 | ada | 2.0-5 |
adagio | 0.9.2 | adaptivetau | 2.3-1 |
adaptMCMC | 1.5 | adaptr | 1.3.2 |
ADAPTS | 1.0.22 | adaptsmoFMRI | 1.2 |
adaptTest | 1.2 | additivityTests | 1.1-4.1 |
ade4 | 1.7-22 | ade4TkGUI | 0.3-1 |
adegenet | 2.1.10 | adegraphics | 1.0-21 |
adehabitatHR | 0.4.21 | adehabitatHS | 0.3.17 |
adehabitatLT | 0.3.27 | adehabitatMA | 0.3.16 |
adephylo | 1.1-16 | ADGofTest | 0.3 |
adimpro | 0.9.6 | adiv | 2.2.1 |
adjclust | 0.6.9 | admisc | 0.35 |
AdMit | 2.1.9 | ads | 1.5-10 |
AdvancedBasketballStats | 1.0.1 | AER | 1.2-12 |
affy | 1.78.0 | affyio | 1.70.0 |
africamonitor | 0.2.4 | agricolae | 1.3-7 |
agricolaeplotr | 0.5.0 | agridat | 1.23 |
agriwater | 1.0.2 | agvgd | 0.1.2 |
AhoCorasickTrie | 0.1.2 | airGR | 1.7.6 |
airGRdatassim | 0.1.3 | airGRiwrm | 0.6.2 |
airGRteaching | 0.3.2 | airports | 0.1.0 |
airr | 1.5.0 | ajv | 1.0.0 |
akima | 0.6-3.4 | alabama | 2023.1.0 |
alakazam | 1.3.0 | aLFQ | 1.3.6 |
AlgDesign | 1.2.1 | aliases2entrez | 0.1.2 |
almanac | 1.0.0 | alpaca | 0.3.4 |
alphavantager | 0.1.3 | ALTopt | 0.1.2 |
Amelia | 1.8.2 | AmericanCallOpt | 0.95 |
ammiBayes | 1.0-2 | ampir | 1.1.0 |
AMR | 2.1.1 | anabel | 3.0.1 |
AnaCoDa | 0.1.4.4 | anacor | 1.1-4 |
analogsea | 1.0.7.2 | anesrake | 0.80 |
animation | 2.7 | anipaths | 0.10.3 |
anMC | 0.2.5 | annotate | 1.78.0 |
AnnotationBustR | 1.3.0 | AnnotationDbi | 1.62.1 |
AnnuityRIR | 1.0-0 | Anthropometry | 1.19 |
anytime | 0.3.9 | ao | 0.3.3 |
aod | 1.3.3 | aoos | 0.5.0 |
AovBay | 0.1.0 | apc | 2.0.0 |
apcluster | 1.4.12 | ape | 5.8 |
APFr | 1.0.2 | aphid | 1.3.5 |
aphylo | 0.3-3 | aplot | 0.2.2 |
apollo | 0.3.2 | approximator | 1.2-8 |
apt | 3.0 | ARCensReg | 3.0.1 |
arcgislayers | 0.2.0 | arcgisutils | 0.2.0 |
ArchaeoChron | 0.1 | ArchaeoPhases | 1.8 |
archetypes | 2.2-0.1 | archivist | 2.3.6 |
ArDec | 2.1-1 | ARDL | 0.2.4 |
ardl.nardl | 1.3.0 | areal | 0.1.8 |
arfima | 1.8-1 | argparse | 2.2.3 |
arm | 1.14-4 | aroma.apd | 0.7.0 |
arpr | 0.1.2 | arrangements | 1.1.9 |
arrow | 15.0.1 | ars | 0.7 |
aRxiv | 0.10 | ascii | 2.6 |
asd | 2.2 | ash | 1.0-15 |
ashr | 2.2-63 | AsioHeaders | 1.22.1-2 |
askpass | 1.2.0 | aspect | 1.0-6 |
ASSA | 2.0 | assertive.base | 0.0-9 |
assertive.files | 0.0-2 | assertive.numbers | 0.0-2 |
assertthat | 0.2.1 | AssetCorr | 1.0.4 |
astrochron | 1.2 | astsa | 2.1 |
asymmetry | 2.0.4 | ata | 1.1.1 |
atom4R | 0.3-3 | atRisk | 0.1.0 |
aTSA | 3.1.2.1 | attempt | 0.3.1 |
attention | 0.4.0 | AUC | 0.3.2 |
audio | 0.1-11 | autoFRK | 1.4.3 |
autoimage | 2.2.3 | automap | 1.1-9 |
autostsm | 3.1.4 | av | 0.9.0 |
aweek | 1.0.3 | aws | 2.5-5 |
aws.signature | 0.6.0 | awsMethods | 1.1-1 |
AzureAuth | 1.3.3 | AzureCognitive | 1.0.1 |
AzureContainers | 1.3.2 | AzureCosmosR | 1.0.0 |
AzureGraph | 1.3.4 | AzureKusto | 1.1.3 |
AzureQstor | 1.0.1 | AzureRMR | 2.4.4 |
AzureStor | 3.7.0 | AzureTableStor | 1.0.0 |
AzureVision | 1.0.2 | AzureVM | 2.2.2 |
babelgene | 22.9 | babelwhale | 1.2.0 |
BACCO | 2.1-0 | BACCT | 1.0 |
backports | 1.4.1 | backtest | 0.3-4 |
bacondecomp | 0.1.1 | baggr | 0.7.8 |
bain | 0.2.10 | BalancedSampling | 2.0.6 |
BaM | 1.0.3 | bama | 1.3.0 |
bamdit | 3.4.0 | bamlss | 1.2-3 |
BAMMtools | 2.1.11 | bang | 1.0.3 |
BANOVA | 1.2.1 | BarcodingR | 1.0-3 |
BART | 2.9.7 | bartBMA | 1.0 |
bartCause | 1.0-6 | bartMachine | 1.3.4.1 |
bartMachineJARs | 1.2.1 | BAS | 1.7.1 |
basad | 0.3.0 | base64 | 2.0.1 |
base64enc | 0.1-3 | base64url | 1.4 |
baseballDBR | 0.1.2 | basicMCMCplots | 0.2.7 |
BASiNET | 0.0.5 | BaSkePro | 1.1.1 |
BasketballAnalyzeR | 0.5.0 | BASS | 1.3.1 |
BatchExperiments | 1.4.3 | BatchJobs | 1.9 |
batchmeans | 1.0-4 | BAwiR | 1.3.2 |
baycn | 1.2.0 | bayefdr | 0.2.1 |
bayes4psy | 1.2.12 | bayesAB | 1.1.3 |
bayesammi | 0.1.0 | bayesanova | 1.6 |
BayesARIMAX | 0.1.1 | BayesBinMix | 1.4.1 |
bayesbio | 1.0.0 | bayesboot | 0.2.2 |
BayesBP | 1.1 | bayesbr | 0.0.1.0 |
BayesCACE | 1.2.3 | BayesCombo | 1.0 |
BayesComm | 0.1-2 | bayescopulareg | 0.1.3 |
bayescount | 0.9.99-9 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.3.3 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.7 |
BayesFM | 0.1.5 | bayesforecast | 1.0.1 |
bayesGAM | 0.0.2 | bayesGARCH | 2.1.10 |
BayesGOF | 5.2 | BayesGPfit | 1.1.0 |
BayesGWQS | 0.1.1 | bayesian | 0.0.9 |
bayesianETAS | 1.0.3 | Bayesiangammareg | 0.1.0 |
BayesianGLasso | 0.2.0 | BayesianLaterality | 0.1.2 |
BayesianNetwork | 0.3 | BayesianTools | 0.1.8 |
bayesImageS | 0.6-1 | BayesLCA | 1.9 |
bayesLife | 5.2-0 | bayeslincom | 1.3.0 |
BayesLN | 0.2.10 | BayesLogit | 2.1 |
bayesloglin | 1.0.1 | bayeslongitudinal | 0.1.0 |
bayesm | 3.1-6 | BayesMallows | 2.2.1 |
BayesMassBal | 1.1.0 | bayesmeta | 3.4 |
bayesmix | 0.7-6 | bayesnec | 2.1.2.0 |
bayesplot | 1.11.1 | bayesQR | 2.4 |
BayesSAE | 1.0-2 | bayestestR | 0.13.2 |
bayesTFR | 7.4-2 | BayesTools | 0.2.17 |
BayesTree | 0.3-1.5 | BayesVarSel | 2.2.5 |
BayesX | 0.3-3 | BAYSTAR | 0.2-10 |
baytrends | 2.0.11 | BB | 2019.10-1 |
BBmisc | 1.13 | bbmle | 1.0.25.1 |
bbotk | 0.8.0 | BCBCSF | 1.0-1 |
BCC1997 | 0.1.1 | BCE | 2.2.0 |
Bchron | 4.7.6 | BClustLonG | 0.1.3 |
bcp | 4.0.3 | bcpa | 1.3.2 |
bcrm | 0.5.4 | BDgraph | 2.72 |
bdrc | 1.1.0 | bdsmatrix | 1.3-7 |
BE | 0.2.4 | beachmat | 2.16.0 |
beadarray | 2.50.0 | BeadDataPackR | 1.52.0 |
beakr | 0.4.3 | bearishTrader | 1.0.2 |
BED | 1.5.0 | beepr | 1.3 |
beeswarm | 0.4.0 | benchmarkme | 1.0.8 |
benchmarkmeData | 1.0.4 | BenfordTests | 1.2.0 |
bentcableAR | 0.3.1 | Bergm | 5.0.7 |
berryFunctions | 1.22.5 | Bessel | 0.6-0 |
BEST | 0.5.4 | BetaBit | 2.2 |
betafunctions | 1.9.0 | betapart | 1.6 |
betareg | 3.1-4 | betategarch | 3.3 |
BETS | 0.4.9 | bets.covid19 | 1.0.0 |
beyondWhittle | 1.2.1 | bezier | 1.1.2 |
bfast | 1.6.1 | BFpack | 1.2.3 |
BGGM | 2.1.1 | BGLR | 1.1.2 |
BGVAR | 2.5.5 | bgw | 0.1.3 |
BH | 1.84.0-0 | BHH2 | 2016.05.31 |
BiasCorrector | 0.2.2 | BiasedUrn | 2.0.11 |
bibtex | 0.5.1 | biclust | 2.0.3.1 |
bidask | 2.0.2 | bife | 0.7.2 |
BIFIEsurvey | 3.5-19 | biganalytics | 1.1.22 |
bigchess | 1.9.1 | bigD | 0.2.0 |
bigleaf | 0.8.2 | biglm | 0.9-2.1 |
bigmemory | 4.6.4 | bigmemory.sri | 0.1.8 |
bigrquery | 1.5.1 | bigsplines | 1.1-1 |
bigtime | 0.2.3 | BigVAR | 1.1.2 |
bimets | 3.0.2 | bindr | 0.1.1 |
bindrcpp | 0.2.3 | binman | 0.1.3 |
binom | 1.1-1.1 | binomSamSize | 0.1-5 |
binr | 1.1.1 | binseqtest | 1.0.4 |
bio3d | 2.4-4 | Biobase | 2.60.0 |
BiocFileCache | 2.8.0 | BiocGenerics | 0.46.0 |
BiocIO | 1.10.0 | BiocManager | 1.30.22 |
BiocParallel | 1.34.1 | BiocSingular | 1.16.0 |
BiocVersion | 3.17.1 | bioinactivation | 1.2.3 |
BioInsight | 0.3.1 | biomaRt | 2.56.1 |
biomartr | 1.0.7 | biomformat | 1.28.0 |
bioOED | 0.2.1 | bioseq | 0.1.4 |
Biostrings | 2.68.0 | biotic | 0.1.2 |
bipartite | 2.19 | birtr | 1.0.0 |
BisqueRNA | 1.0.5 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
biwavelet | 0.20.21 | bizdays | 1.0.16 |
bkmr | 0.2.2 | blaise | 1.3.11 |
blastula | 0.3.5 | blavaan | 0.5-4 |
BLModel | 1.0.2 | blob | 1.2.4 |
blocklength | 0.1.5 | blockmatrix | 1.0 |
blockrand | 1.5 | blocksdesign | 4.9 |
blockTools | 0.6.4 | blogdown | 1.19 |
BLR | 1.6 | BMA | 3.18.17 |
bmgarch | 2.0.0 | BMisc | 1.4.6 |
bmixture | 1.7 | BMS | 0.3.5 |
BMTAR | 0.1.1 | bnlearn | 4.9.3 |
BNPTSclust | 2.0 | BNSP | 2.2.3 |
bnstruct | 1.0.15 | boa | 1.1.8-2 |
boilerpipeR | 1.3.2 | BOIN | 2.7.2 |
bold | 1.3.0 | Bolstad | 0.2-41 |
Bolstad2 | 1.0-29 | bondAnalyst | 1.0.1 |
bookdown | 0.39 | Boom | 0.9.15 |
BoomSpikeSlab | 1.2.6 | bootnet | 1.6 |
BootPR | 1.0 | bootstrap | 2019.6 |
bootUR | 1.0.3 | BoSSA | 3.7 |
boussinesq | 1.0.6 | boxr | 0.3.6 |
bpca | 1.3-6 | bqtl | 1.0-36 |
BradleyTerry2 | 1.1-2 | brainR | 1.6.0 |
brandwatchR | 0.3.0 | breakfast | 2.3 |
brew | 1.0-10 | brglm | 0.7.2 |
brglm2 | 0.9.2 | bridgesampling | 1.1-2 |
BRINDA | 0.1.5 | brio | 1.1.5 |
brms | 2.21.0 | Brobdingnag | 1.2-9 |
broman | 0.80 | broom | 1.0.5 |
broom.helpers | 1.15.0 | brotli | 1.3.0 |
bsam | 1.1.3 | bsamGP | 1.2.5 |
BSgenome | 1.68.0 | bslib | 0.7.0 |
BsMD | 2023.920 | bspec | 1.6 |
bspmma | 0.1-2 | bssm | 2.0.2 |
BSSprep | 0.1 | bsts | 0.9.10 |
bsvars | 2.1.0 | BTLLasso | 0.1-13 |
BTM | 0.3.7 | bullishTrader | 1.0.1 |
bundesbank | 0.1-12 | BurStFin | 1.3 |
BurStMisc | 1.1 | BVAR | 1.0.5 |
bvartools | 0.2.4 | bvls | 1.4 |
C50 | 0.1.8 | ca | 0.71.1 |
cabinets | 0.6.0 | cabootcrs | 2.1.0 |
cachem | 1.0.8 | cacIRT | 1.4 |
CADFtest | 0.3-3 | caffsim | 0.2.2 |
Cairo | 1.6-2 | CALANGO | 1.0.16 |
calculus | 1.0.1 | calibrate | 1.7.7 |
CalibrateSSB | 1.3.0 | calibrator | 1.2-8 |
callr | 3.7.6 | cancensus | 0.5.7 |
candisc | 0.8-6 | canprot | 2.0.0 |
CANSIM2R | 1.14.1 | caper | 1.0.3 |
captr | 0.3.0 | capushe | 1.1.2 |
car | 3.1-2 | caRamel | 1.3 |
CARBayes | 6.1.1 | CARBayesdata | 3.0 |
CARBayesST | 4.0 | carData | 3.0-5 |
caret | 6.0-94 | carfima | 2.0.2 |
caribou | 1.1-1 | carrier | 0.1.1 |
cartogram | 0.3.0 | Cascade | 2.1 |
CascadeData | 1.4 | CAST | 1.0.0 |
castor | 1.8.0 | cate | 1.1.1 |
caTools | 1.18.2 | catR | 3.17 |
causact | 0.5.5 | CausalImpact | 1.3.0 |
CAvariants | 6.0 | CB2 | 1.3.4 |
cbioportalR | 1.1.0 | cbsodataR | 1.0.1 |
ccaPP | 0.3.3 | cccp | 0.3-1 |
cdlTools | 1.13 | CDM | 8.2-6 |
CDNmoney | 2012.4-2 | cds | 1.0.3 |
CellNOptR | 1.46.0 | cellranger | 1.1.0 |
censReg | 0.5-36 | censusapi | 0.8.0 |
CEoptim | 1.3 | CePa | 0.8.0 |
CeRNASeek | 2.1.3 | cfbfastR | 1.9.0 |
CFtime | 1.3.0 | ChainLadder | 0.2.18 |
chandwich | 1.1.6 | changepoint | 2.2.4 |
changepoint.geo | 1.0.2 | changepoint.np | 1.0.5 |
checkLuhn | 1.1.0 | checkmate | 2.3.1 |
checkpoint | 1.0.2 | chem.databases | 1.0.0 |
ChemoSpec | 6.1.10 | ChemoSpecUtils | 1.0.4 |
cherryblossom | 0.1.0 | chess | 1.0.1 |
chilemapas | 0.3.0 | chk | 0.9.1 |
CHNOSZ | 2.1.0 | choiceDes | 0.9-3 |
CholWishart | 1.1.2 | choroplethr | 3.7.3 |
choroplethrMaps | 1.0.1 | chromoMap | 4.1.1 |
chromote | 0.2.0 | chron | 2.3-61 |
cifti | 0.4.5 | cinterpolate | 1.0.1 |
circlize | 0.4.16 | CircSpaceTime | 0.9.0 |
CircStats | 0.2-6 | circular | 0.5-0 |
ciTools | 0.6.1 | Ckmeans.1d.dp | 4.3.5 |
Claddis | 0.6.3 | clarabel | 0.5.1 |
clarifai | 0.4.2 | classInt | 0.4-10 |
cli | 3.6.2 | clifro | 3.2-5 |
climatol | 4.1.0 | clime | 0.5.0 |
clinDR | 2.4.1 | clinfun | 1.1.5 |
clinicalsignificance | 2.0.0 | clinPK | 0.13.0 |
clinsig | 1.2 | clipr | 0.8.0 |
clisymbols | 1.2.0 | clmplus | 0.1.0 |
clock | 0.7.0 | clubSandwich | 0.5.10 |
clue | 0.3-65 | clustDRM | 0.1-0 |
clusterGeneration | 1.3.8 | clusterPower | 0.7.0 |
clusterSEs | 2.6.5 | clustMixType | 0.3-14 |
ClustVarLV | 2.1.1 | clv | 0.3-2.4 |
cmaes | 1.0-12 | cmaesr | 1.0.3 |
CMLS | 1.0-1 | cmm | 1.0 |
cmocean | 0.3-1 | cmprsk | 2.2-11 |
cmrutils | 1.3.1 | cNORM | 3.0.4 |
CNORode | 1.42.0 | coalescentMCMC | 0.4-4 |
coalitions | 0.6.24 | coarseDataTools | 0.6-6 |
cobalt | 4.5.5 | cobs | 1.3-8 |
coconots | 1.1.3 | COCONUT | 1.0.2 |
cocor | 1.1-4 | cocorresp | 0.4-4 |
cocron | 1.0-1 | coda | 0.19-4.1 |
cOde | 1.1.1 | coin | 1.4-3 |
cointReg | 0.2.0 | colf | 0.1.3 |
collapse | 2.0.13 | collapsibleTree | 0.1.8 |
collections | 0.3.7 | colorr | 1.0.0 |
colorRamps | 2.3.4 | colorspace | 2.1-0 |
colourpicker | 1.3.0 | colourvalues | 0.3.9 |
combinat | 0.0-8 | combinedevents | 0.1.1 |
CombinS | 1.1-1 | ComICS | 1.0.4 |
CommonJavaJars | 1.1-0 | commonmark | 1.9.1 |
compare | 0.2-6 | compas | 0.1.1 |
CompQuadForm | 1.4.3 | comprehenr | 0.6.10 |
conditionz | 0.1.0 | coneproj | 1.17 |
conf.design | 2.0.0 | config | 0.3.2 |
confintr | 1.0.2 | conflicted | 1.2.0 |
conquer | 1.3.3 | conquestr | 1.3.0 |
contactdata | 1.0.0 | contfrac | 1.1-12 |
convevol | 2.0.1 | convey | 1.0.0 |
coop | 0.6-3 | cops | 1.3-1 |
copula | 1.1-3 | copulaData | 0.0-2 |
copulaedas | 1.4.3 | cordillera | 1.0-0 |
corHMM | 2.8 | coro | 1.0.4 |
corona | 0.3.0 | coronavirus | 0.4.1 |
corpcor | 1.6.10 | corpora | 0.6 |
corporaexplorer | 0.8.6 | corrgram | 1.14 |
corrplot | 0.92 | cosa | 2.1.0 |
CoSMoS | 2.1.0 | costat | 2.4.1 |
countrycode | 1.6.0 | CovCombR | 1.0 |
COVID19 | 3.0.3 | covid19.analytics | 2.1.3.3 |
covid19br | 0.1.8 | covid19dbcand | 0.1.1 |
covid19france | 0.1.0 | covid19italy | 0.3.1 |
covid19sf | 0.1.2 | covid19swiss | 0.1.0 |
covid19us | 0.1.9 | CovidMutations | 0.1.3 |
cowplot | 1.1.3 | cp4p | 0.3.6 |
CPBayes | 1.1.0 | cpk | 1.3-1 |
cplm | 0.7-12 | cpp11 | 0.4.7 |
CRABS | 1.2.0 | crawl | 2.3.0 |
crayon | 1.5.2 | crch | 1.1-2 |
credentials | 2.0.1 | credule | 0.1.4 |
crfsuite | 0.4.2 | cricketdata | 0.2.3 |
cricketr | 0.0.26 | CRM | 1.2.4 |
crmPack | 1.0.5 | crossdes | 1.1-2 |
Crossover | 0.1-22 | crosstalk | 1.2.1 |
crs | 0.15-37 | crseEventStudy | 1.2.2 |
crsmeta | 0.3.0 | crul | 1.4.2 |
crunch | 1.30.4 | crunchy | 0.3.3 |
cSEM | 0.5.0 | CSGo | 0.6.7 |
cshapes | 2.0 | csodata | 1.4.2 |
cstab | 0.2-2 | csv | 0.6.2 |
ctbi | 2.0.5 | ctmcmove | 1.2.9 |
ctmm | 1.2.0 | ctrdata | 1.17.2 |
ctsem | 3.9.1 | ctsemOMX | 1.0.6 |
CTT | 2.3.3 | CTTShiny | 0.1 |
ctv | 0.9-5 | cubature | 2.1.0 |
cubble | 0.3.0 | cubelyr | 1.0.2 |
cubfits | 0.1-4 | Cubist | 0.4.2.1 |
cumSeg | 1.3 | curl | 5.2.1 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-12 |
d3Network | 0.5.2.1 | DAAG | 1.25.4 |
dae | 3.2.25 | daewr | 1.2-11 |
dagitty | 0.3-4 | DAKS | 2.1-3 |
DALEX | 2.4.3 | DAMOCLES | 2.3 |
data.table | 1.15.4 | data.tree | 1.1.0 |
DatabaseConnector | 6.3.2 | DataExplorer | 0.8.3 |
dataone | 2.2.2 | datapack | 1.4.1 |
datapasta | 3.1.0 | dataRetrieval | 2.7.15 |
datarobot | 2.18.6 | dataseries | 0.2.0 |
dataverse | 0.3.13 | datawizard | 0.10.0 |
date | 1.2-42 | dateback | 1.0.4 |
datetimeutils | 0.6-4 | dbarts | 0.9-26 |
dbhydroR | 0.2-8 | DBI | 1.2.2 |
DBItest | 1.8.1 | dbmss | 2.9-0 |
dbparser | 2.0.3 | dbplyr | 2.5.0 |
dbscan | 1.1-12 | dbx | 0.3.1 |
DChaos | 0.1-7 | dclone | 2.3-2 |
DCluster | 0.2-10 | DClusterm | 1.0-1 |
dcov | 0.1.1 | dCovTS | 1.4 |
dcurver | 0.9.2 | ddalpha | 1.3.15 |
DDD | 5.2.2 | dde | 1.0.5 |
DDPM | 0.1.0 | deBInfer | 0.4.4 |
debugme | 1.1.0 | decompr | 6.4.0 |
deducorrect | 1.3.7 | deductive | 1.0.0 |
DeductiveR | 1.0.0 | deeptime | 1.1.1 |
Delaporte | 8.4.0 | DelayedArray | 0.26.7 |
DelayedMatrixStats | 1.22.6 | deldir | 2.0-4 |
deltaPlotR | 1.6 | demography | 2.0 |
dendextend | 1.17.1 | dendsort | 0.3.4 |
densEstBayes | 1.0-2.2 | DEoptim | 2.2-8 |
DEoptimR | 1.1-3 | depmix | 0.9.16 |
depmixS4 | 1.5-0 | DepthProc | 2.1.5 |
depthTools | 0.7 | Deriv | 4.1.3 |
derivmkts | 0.2.5 | desc | 1.4.3 |
DescTools | 0.99.54 | DESeq2 | 1.40.2 |
designmatch | 0.5.4 | desiR | 1.2.2 |
desirability | 2.1 | deSolve | 1.40 |
desplot | 1.10 | devtools | 2.4.5 |
dexter | 1.4.2 | dextergui | 0.2.6 |
dexterMST | 0.9.6 | dfcomb | 3.1-1 |
dfcrm | 0.2-2.1 | dfidx | 0.0-5 |
DFIT | 1.1 | dfms | 0.2.1 |
dfmta | 1.7-3 | dfoptim | 2023.1.0 |
dfped | 1.1 | dfpk | 3.5.1 |
DGEobj | 1.1.2 | DGEobj.utils | 1.0.6 |
DHARMa | 0.4.6 | DHS.rates | 0.9.2 |
diagis | 0.2.3 | diagonals | 6.4.0 |
diagram | 1.6.5 | DiagrammeR | 1.0.11 |
dials | 1.2.1 | DiceDesign | 1.10 |
DiceEval | 1.6.1 | DiceKriging | 1.6.0 |
DiceView | 2.2-0 | dichromat | 2.0-0.1 |
DICOMread | 0.0.0.3 | did | 2.1.2 |
did2s | 1.0.2 | didimputation | 0.3.0 |
DIFboost | 0.3 | DiffCorr | 0.4.3 |
diffEnrich | 0.1.2 | diffobj | 0.3.5 |
diffpriv | 0.4.2 | diffusion | 0.4.0 |
DIFlasso | 1.0-4 | difNLR | 1.4.2-1 |
DIFplus | 1.1 | difR | 5.1 |
DIFtree | 3.1.6 | digest | 0.6.35 |
DIMORA | 0.3.6 | dimRed | 0.2.6 |
dina | 2.0.0 | DiPALM | 1.2 |
dipsaus | 0.2.8 | diptest | 0.77-1 |
Dire | 2.2.0 | DIRECT | 1.1.0 |
directlabels | 2024.1.21 | directPA | 1.5.1 |
dirichletprocess | 0.4.2 | dirmult | 0.1.3-5 |
disaggR | 1.0.5.2 | DIscBIO | 1.2.2 |
DiscreteFDR | 1.3.7 | discretization | 1.0-1.1 |
dispRity | 1.8 | DistatisR | 1.1.1 |
distcrete | 1.0.3 | distfree.cr | 1.5.1 |
distill | 1.6 | distory | 1.4.4 |
distr | 2.9.3 | distrEx | 2.9.2 |
distributional | 0.4.0 | distributions3 | 0.2.1 |
DistributionUtils | 0.6-1 | distrom | 1.0.1 |
distrTeach | 2.9.1 | dittodb | 0.1.8 |
diversitree | 0.10-0 | divest | 1.0.0 |
divseg | 0.0.5 | dLagM | 1.1.13 |
dlm | 1.1-6 | dlnm | 2.4.7 |
dlsem | 2.4.6 | dlstats | 0.1.7 |
dm | 1.0.10 | dmri.tracking | 0.1.0 |
dnapath | 0.7.4 | doBy | 4.6.20 |
doc2vec | 0.2.0 | docopt | 0.7.1 |
docopulae | 0.4.0 | DoE.base | 1.2-4 |
DoE.MIParray | 1.0-1 | DoE.wrapper | 0.12 |
doFuture | 1.0.1 | doMC | 1.3.8 |
doParallel | 1.0.17 | doRNG | 1.8.6 |
DoseFinding | 1.1-1 | doSNOW | 1.0.20 |
DOSPortfolio | 0.1.0 | dotCall64 | 1.1-1 |
DoubleML | 1.0.0 | Dowd | 0.12 |
downlit | 0.4.3 | downloader | 0.4 |
dparser | 1.3.1-11 | dplyr | 1.1.4 |
dqrng | 0.3.2 | dr4pl | 2.0.0 |
drake | 7.13.9 | drat | 0.2.4 |
DRaWR | 1.0.3 | DRDID | 1.0.6 |
dreamerr | 1.4.0 | DriftBurstHypothesis | 0.4.0.1 |
driveR | 0.4.1 | DRomics | 2.5-2 |
DRR | 0.0.4 | dsa | 1.0.12 |
DSAIDE | 0.9.6 | dsb | 1.0.3 |
dse | 2020.2-1 | DSI | 1.5.0 |
DSL | 0.1-7 | DT | 0.33 |
DTAT | 0.3-6 | DtD | 0.2.2 |
dti | 1.5.4 | dtplyr | 1.3.1 |
DTSg | 1.1.3 | dtt | 0.1-2 |
dtts | 0.1.2 | dtw | 1.23-1 |
dtwclust | 5.5.12 | duckdb | 0.10.1 |
duckduckr | 1.0.0 | dunn.test | 1.3.6 |
dwctaxon | 2.0.3 | dygraphs | 1.1.1.6 |
Dykstra | 1.0-0 | dyn | 0.2-9.6 |
dynamicTreeCut | 1.63-1 | dynatop | 0.2.3 |
dynatopGIS | 0.2.5 | dynaTree | 1.2-16 |
dynlm | 0.3-6 | dynparam | 1.0.2 |
dynutils | 1.0.11 | dynwrap | 1.2.4 |
DysPIA | 1.3 | DysPIAData | 0.1.2 |
e1071 | 1.7-14 | earlyR | 0.0.5 |
earth | 5.3.3 | easypower | 1.0.2 |
easySdcTable | 1.0.7 | eba | 1.10-0 |
EbayesThresh | 1.4-12 | ebdbNet | 1.2.8 |
EBImage | 4.42.0 | EBMAforecast | 1.0.32 |
ecb | 0.4.2 | Ecdat | 0.4-2 |
ecespa | 1.1-17 | Ecfun | 0.3-2 |
echor | 0.1.9 | ecm | 7.2.0 |
ecodist | 2.1.3 | Ecohydmod | 1.0.0 |
ECOSolveR | 0.5.5 | ecoval | 1.2.9 |
ecp | 3.1.5 | ecr | 2.1.1 |
edfReader | 1.2.1 | edgeR | 3.42.2 |
edina | 0.1.1 | editrules | 2.9.3 |
edmdata | 1.2.0 | edstan | 1.0.6 |
EdSurvey | 4.0.4 | eegkit | 1.0-4 |
eegkitdata | 1.1 | EFAutilities | 2.1.3 |
effects | 4.2-2 | EGAnet | 2.0.6 |
egg | 0.4.5 | egor | 1.24.2 |
EGRET | 3.0.9 | EGRETci | 2.0.4 |
eha | 2.11.4 | eigenmodel | 1.11 |
eiopaR | 0.1.1 | elastic | 1.2.0 |
elasticnet | 1.3 | elevatr | 0.99.0 |
ellipse | 0.5.0 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | elo | 3.0.2 |
EloChoice | 0.29.4 | EloRating | 0.46.11 |
ELT | 1.7 | EMbC | 2.0.4 |
EMD | 1.5.9 | emdi | 2.2.1 |
emg | 1.0.9 | emmeans | 1.10.1 |
EMMIXgene | 0.1.4 | emoa | 0.5-2 |
emulator | 1.2-24 | encode | 0.3.6 |
endtoend | 2.29 | energy | 1.7-11 |
EngrExpt | 0.1-8 | enrichR | 3.2 |
enrichwith | 0.3.1 | ensembleBMA | 5.1.8 |
entropart | 1.6-13 | entropy | 1.3.1 |
EntropyEstimation | 1.2 | EntropyMCMC | 1.0.4 |
enveomics.R | 1.9.1 | enviPat | 2.6 |
EnvStats | 2.8.1 | epanet2toolkit | 1.0.4 |
epanetReader | 0.7.3 | Epi | 2.48 |
epibasix | 1.5 | epicontacts | 1.1.3 |
EpiContactTrace | 0.17.0 | EpiCurve | 2.4-2 |
epiDisplay | 3.5.0.2 | EpiEstim | 2.2-4 |
epiflows | 0.2.1 | EpiILM | 1.5.2 |
EpiILMCT | 1.1.7 | epimdr | 0.6-5 |
EpiModel | 2.4.0 | epinet | 2.1.11 |
epiR | 2.0.73 | EpiReport | 1.0.2 |
episensr | 1.3.0 | epitools | 0.5-10.1 |
epitrix | 0.4.0 | epm | 1.1.2 |
equate | 2.0.8 | equateIRT | 2.4.0 |
equateMultiple | 0.1.2 | equivalence | 0.7.2 |
era | 0.4.1 | erah | 2.0.1 |
erer | 3.1 | ergm | 4.6.0 |
ergm.ego | 1.1.0 | ergm.multi | 0.2.1 |
eRm | 1.0-6 | errorlocate | 1.1.1 |
errum | 0.0.3 | esaBcv | 1.2.1.1 |
esemifar | 1.0.2 | ESG | 1.3 |
EstCRM | 1.6 | estimability | 1.5 |
EstimateGroupNetwork | 0.3.1 | estimatr | 1.0.4 |
ETLUtils | 1.5 | etm | 1.1.1 |
etrm | 1.0.1 | etrunct | 0.1 |
etwfe | 0.4.0 | EUfootball | 0.0.1 |
eulerr | 7.0.2 | europepmc | 0.4.3 |
eurostat | 4.0.0 | evaluate | 0.23 |
Evapotranspiration | 1.16 | evd | 2.3-7 |
evgam | 1.0.0 | evir | 1.7-4 |
evobiR | 1.1 | EvoPhylo | 0.3.2 |
evtree | 1.0-8 | ewoc | 0.3.0 |
Exact | 3.2 | exactextractr | 0.10.0 |
exactRankTests | 0.8-35 | exams | 2.4-0 |
ExceedanceTools | 1.3.6 | exdex | 1.2.3 |
experiment | 1.2.1 | expint | 0.1-8 |
expm | 0.999-9 | ExPosition | 2.8.23 |
expsmooth | 2.3 | exreport | 0.4.1 |
extraDistr | 1.10.0 | extrafont | 0.19 |
extrafontdb | 1.0 | extraoperators | 0.3.0 |
ExtremeBounds | 0.1.7 | ExtremeRisks | 0.0.4 |
eyelinker | 0.2.1 | ez | 4.4-0 |
fable | 0.3.4 | fable.prophet | 0.1.0 |
fabletools | 0.4.2 | FactoClass | 1.2.9 |
factoextra | 1.0.7 | FactoMineR | 2.11 |
factorstochvol | 1.1.0 | FAdist | 2.4 |
fanplot | 4.0.0 | fansi | 1.0.6 |
FAOSTAT | 2.3.0 | faoutlier | 0.7.6 |
faraway | 1.0.8 | farver | 2.1.1 |
fAssets | 4023.85 | fasstr | 0.5.2 |
fastcluster | 1.2.6 | fastDummies | 1.7.3 |
fastGHQuad | 1.0.1 | fastICA | 1.2-4 |
fastLink | 0.6.1 | fastmap | 1.1.1 |
fastmatch | 1.1-4 | fastRhockey | 0.4.0 |
fastrmodels | 1.0.2 | FastRWeb | 1.2-1 |
fasttime | 1.1-0 | FatTailsR | 1.8-5 |
fauxpas | 0.5.2 | FAVAR | 0.1.3 |
fbar | 0.6.0 | fBasics | 4032.96 |
fBonds | 3042.78 | fbRads | 17.0.0 |
fCopulae | 4022.85 | FD | 1.0-12.3 |
fda | 6.1.8 | fdaACF | 1.0.0 |
fdapace | 0.5.9 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.3-0 |
feasts | 0.3.2 | feather | 0.3.5 |
fechner | 1.0-3 | FedData | 4.0.1 |
FeedbackTS | 1.5 | feisr | 1.3.0 |
fExtremes | 4032.84 | ff | 4.0.12 |
FFD | 1.0-9 | fflr | 2.2.4 |
ffscrapr | 1.4.8 | ffsimulator | 1.2.3 |
fftwtools | 0.9-11 | fGarch | 4033.92 |
fHMM | 1.2.2 | FielDHub | 1.3.7 |
fields | 15.2 | fiery | 1.2.1 |
filearray | 0.1.6 | filehash | 2.4-5 |
filehashSQLite | 0.2-6 | filelock | 1.0.3 |
filematrix | 1.3 | fImport | 4032.87 |
FinancialMath | 0.1.1 | FinAsym | 1.0 |
findpython | 1.0.8 | FinNet | 0.1.2 |
finnts | 0.4.0 | finreportr | 1.0.4 |
FinTS | 0.4-9 | FiRE | 1.0.1 |
fishMod | 0.29 | fitdistrplus | 1.1-11 |
fitzRoy | 1.3.0 | fixest | 0.12.0 |
FKF | 0.2.5 | FKF.SP | 0.3.1 |
flacco | 1.8 | flashClust | 1.01-2 |
flexclust | 1.4-1 | flexdashboard | 0.6.2 |
flexmix | 2.3-19 | FlexScan | 0.2.2 |
flextable | 0.9.5 | flippant | 1.5.5 |
float | 0.3-2 | flock | 0.7 |
flowr | 0.9.11 | FlowScreen | 1.2.6 |
FLSSS | 9.1.3 | fma | 2.5 |
FMC | 1.0.1 | fmcmc | 0.5-2 |
fmdates | 0.1.4 | FME | 1.3.6.3 |
fmesher | 0.1.5 | fmri | 1.9.12 |
fMultivar | 4031.84 | fnets | 0.1.6 |
FNN | 1.1.4 | fNonlinear | 4021.81 |
fontawesome | 0.5.2 | fontBitstreamVera | 0.1.1 |
fontLiberation | 0.1.0 | fontquiver | 0.2.1 |
footballpenaltiesBL | 1.0.0 | footBayes | 0.2.0 |
forcats | 1.0.0 | foreach | 1.5.2 |
ForeCA | 0.2.7 | forecast | 8.22.0 |
ForecastComb | 1.3.1 | forecastHybrid | 5.0.19 |
forecastLSW | 1.0 | forecastML | 0.9.0 |
FoReco | 0.2.6 | forecTheta | 2.6.2 |
forestplot | 3.1.3 | forge | 0.2.0 |
formatR | 1.14 | formattable | 0.2.1 |
Formula | 1.2-5 | formula.tools | 1.7.1 |
FossilSim | 2.3.2 | fourPNO | 1.1.0 |
fpc | 2.2-11 | fpcb | 0.1.0 |
fpCompare | 0.2.4 | FPLdata | 0.1.0 |
fPortfolio | 4023.84 | fpp2 | 2.5 |
fpp3 | 0.5 | fracdiff | 1.5-3 |
Frames2 | 0.2.1 | FRAPO | 0.4-1 |
fredr | 2.1.0 | freecurrencyapi | 0.1.0 |
freesurferformats | 0.1.18 | fRegression | 4021.83 |
frenchdata | 0.2.0 | freqdom | 2.0.5 |
freqdom.fda | 1.0.1 | fresh | 0.2.0 |
FrF2 | 2.3-3 | FrF2.catlg128 | 1.2-3 |
FRK | 2.2.3 | frontier | 1.1-8 |
frostr | 0.2.0 | fs | 1.6.3 |
FSA | 0.9.5 | fslr | 2.25.2 |
fsMTS | 0.1.7 | fst | 0.9.8 |
fstcore | 0.9.18 | fTrading | 3042.79 |
ftrCOOL | 2.0.0 | ftsa | 6.4 |
func2vis | 1.0-3 | functional | 0.6 |
fungible | 2.4.4 | funtimes | 9.1 |
furrr | 0.3.1 | futile.logger | 1.4.3 |
futile.options | 1.0.1 | future | 1.33.2 |
future.apply | 1.11.2 | fuzzyjoin | 0.1.6 |
fwildclusterboot | 0.13.0 | fxregime | 1.0-4 |
GA | 3.2.4 | GAD | 1.1.1 |
gafit | 0.5.1 | gam | 1.22-3 |
gamlr | 1.13-8 | gamlss | 5.4-22 |
gamlss.data | 6.0-6 | gamlss.dist | 6.1-1 |
GANPA | 1.2 | GANPAdata | 1.0 |
gap | 1.5-3 | gap.datasets | 0.0.6 |
gapfill | 0.9.6-1 | GARCHSK | 0.1.0 |
garchx | 1.5 | gargle | 1.5.2 |
garma | 0.9.13 | GAS | 0.3.4 |
gasmodel | 0.6.0 | gaussquad | 1.0-3 |
GaussSuppression | 0.8.3 | gbm | 2.1.9 |
gbutils | 0.5 | gclus | 1.3.2 |
GCPM | 1.2.2 | gdalcubes | 0.7.0 |
gdalraster | 1.10.0 | gdalUtilities | 1.2.5 |
gdata | 3.0.0 | GDINA | 2.9.4 |
gdistance | 1.6.4 | gdpc | 1.1.4 |
gdtools | 0.3.7 | gear | 0.3.4 |
gee | 4.13-26 | geeM | 0.10.1 |
geepack | 1.3.10 | geiger | 2.0.11 |
genalg | 0.2.1 | gender | 0.6.0 |
GeneCycle | 1.1.5 | geneExpressionFromGEO | 0.9 |
genefilter | 1.82.1 | GeneNet | 1.2.16 |
GeneralizedHyperbolic | 0.8-6 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | geno2proteo | 0.0.6 |
GenomeInfoDb | 1.36.0 | GenomeInfoDbData | 1.2.10 |
GenomicAlignments | 1.36.0 | GenomicFeatures | 1.52.2 |
GenomicRanges | 1.52.0 | genoPlotR | 0.8.11 |
GenSA | 1.1.14 | geodist | 0.0.8 |
geogrid | 0.1.2 | geojson | 0.3.5 |
geojsonio | 0.11.3 | geojsonsf | 2.0.3 |
GEOmap | 2.5-5 | geomapdata | 2.0-2 |
geometa | 0.8-0 | geometries | 0.2.4 |
geometry | 0.4.7 | geomorph | 4.0.7 |
geomtextpath | 0.1.3 | geonames | 0.999 |
geonapi | 0.7-2 | GEOquery | 2.68.0 |
geoR | 1.9-4 | geos | 0.2.4 |
geosapi | 0.7-1 | geoscale | 2.0.1 |
geosphere | 1.5-18 | geospt | 1.0-4 |
geostan | 0.6.0 | geotopbricks | 1.5.8.2 |
geouy | 0.2.8 | gert | 2.0.1 |
GET | 1.0 | getPass | 0.2-4 |
gets | 0.37 | GetTDData | 1.5.5 |
gfonts | 0.2.0 | GGally | 2.2.1 |
ggalt | 0.4.0 | gganimate | 1.0.9 |
ggdag | 0.2.12 | ggdemetra | 0.2.8 |
ggdendro | 0.2.0 | ggdist | 3.3.2 |
ggExtra | 0.10.1 | ggfittext | 0.10.2 |
ggforce | 0.4.2 | ggformula | 0.12.0 |
ggfortify | 0.4.17 | ggfun | 0.1.4 |
gggenes | 0.5.1 | gghalves | 0.1.4 |
ggimage | 0.3.3 | gginnards | 0.1.2 |
gglasso | 1.5.1 | ggm | 2.5.1 |
ggmap | 4.0.0 | ggmcmc | 1.5.1.1 |
ggmuller | 0.5.6 | ggnetwork | 0.5.13 |
ggnewscale | 0.4.10 | ggpath | 1.0.1 |
ggplot2 | 3.5.1 | ggplotify | 0.1.2 |
ggpmisc | 0.5.5 | ggpp | 0.5.6 |
ggpubr | 0.6.0 | ggquiver | 0.3.3 |
ggraph | 2.2.1 | ggrepel | 0.9.5 |
ggridges | 0.5.6 | ggsci | 3.0.3 |
ggseas | 0.5.4 | ggsignif | 0.6.4 |
ggsn | 0.5.0 | ggsoccer | 0.1.7 |
ggspatial | 1.1.9 | ggstance | 0.3.7 |
ggstats | 0.6.0 | ggtext | 0.1.2 |
ggthemes | 5.1.0 | ggtree | 3.8.0 |
ggupset | 0.3.0 | ggvis | 0.4.9 |
gh | 1.4.1 | ghyp | 1.6.4 |
Gifi | 0.4-0 | gifti | 0.8.0 |
GIGrvg | 0.8 | gimme | 0.7-16 |
giscoR | 0.4.2 | gistr | 0.9.0 |
git2r | 0.33.0 | gitcreds | 0.1.2 |
gitlabr | 2.0.1 | glarma | 1.6-0 |
GlarmaVarSel | 1.0 | glasso | 1.11 |
glassoFast | 1.0.1 | gld | 2.6.6 |
glm2 | 1.2.1 | glmmML | 1.1.6 |
GLMMRR | 0.5.0 | glmmSeq | 0.5.5 |
glmmTMB | 1.1.9 | glmnet | 4.1-8 |
glmx | 0.2-0 | GlobalOptions | 0.1.2 |
globalOptTests | 1.1 | globals | 0.16.3 |
glpkAPI | 1.3.4 | glue | 1.7.0 |
gmailr | 2.0.0 | GMDH | 1.6 |
Gmedian | 1.2.7 | gmm | 1.8 |
gmnl | 1.1-3.2 | gmodels | 2.19.1 |
gmp | 0.7-4 | gmt | 2.0.3 |
gmvarkit | 2.1.2 | GNAR | 1.1.3 |
gnm | 1.1-5 | GO.db | 3.17.0 |
goftest | 1.2-3 | gogarch | 0.7-5 |
golem | 0.4.1 | gontr | 1.1.0 |
googleAnalyticsR | 1.1.0 | googleAuthR | 2.0.1 |
googleCloudStorageR | 0.7.0 | googleComputeEngineR | 0.3.0 |
googledrive | 2.1.1 | googleLanguageR | 0.3.0 |
googlePolylines | 0.8.4 | googlesheets4 | 1.1.1 |
googleVis | 0.7.1 | googleway | 2.7.8 |
gower | 1.0.1 | GOxploreR | 1.2.7 |
GPareto | 1.1.8 | GPArotation | 2024.3-1 |
GPCMlasso | 0.1-7 | GPfit | 1.0-8 |
gplots | 3.1.3.1 | GPRMortality | 0.1.0 |
gprofiler2 | 0.2.3 | gradethis | 0.2.12.9004 |
graDiEnt | 1.0.1 | gRain | 1.4.1 |
grantham | 0.1.1 | graph | 1.78.0 |
graphicalVAR | 0.3.4 | graphite | 1.46.0 |
graphlayouts | 1.1.1 | graphsim | 1.0.3 |
graphTweets | 0.5.3 | grates | 1.2.0 |
gratis | 1.0.7 | gravitas | 0.1.3 |
gravity | 1.1 | gRbase | 2.0.1 |
greeks | 1.4.2 | greta | 0.4.5 |
greybox | 2.0.0 | grf | 2.3.2 |
gridBase | 0.4-7 | gridExtra | 2.3 |
gridGraphics | 0.5-1 | gridSVG | 1.7-5 |
gridtext | 0.1.5 | grImport | 0.9-7 |
grImport2 | 0.3-1 | grnn | 0.1.0 |
groundhog | 3.2.0 | GroupSeq | 1.4.3 |
grplasso | 0.4-7 | grwat | 0.0.4 |
GSA | 1.03.3 | gsarima | 0.1-5 |
gsDesign | 3.6.2 | GSEABase | 1.62.0 |
gSEM | 0.4.3.4 | gsheet | 0.4.5 |
gsignal | 0.3-5 | gsisdecoder | 0.0.1 |
gsl | 2.1-8 | gslnls | 1.3.0 |
GSODR | 4.0.0 | gss | 2.2-7 |
gstat | 2.1-1 | gsubfn | 0.7 |
GSVA | 1.48.3 | gsw | 1.1-1 |
gsynth | 1.2.1 | gt | 0.10.1 |
gtable | 0.3.5 | gtheory | 0.1.2 |
gtools | 3.9.5 | gtop | 0.2.0 |
gtrendsR | 1.5.1 | gtsummary | 1.7.2 |
GUIDE | 1.2.7 | GUniFrac | 1.8 |
gustave | 1.0.0 | gvc | 6.4.0 |
gwavr | 0.2.0 | gWidgets2 | 1.0-9 |
GWmodel | 2.3-2 | gwrr | 0.2-2 |
GWSDAT | 3.2.1 | h2o | 3.44.0.3 |
hackeRnews | 0.1.0 | HandTill2001 | 1.0.1 |
HaploSim | 1.8.4.2 | hardhat | 1.3.1 |
hash | 2.2.6.3 | haven | 2.5.4 |
hbsae | 1.2 | HBV.IANIGLA | 0.2.6 |
HDF5Array | 1.28.1 | hdf5r | 1.3.10 |
hdi | 0.1-9 | HDInterval | 0.2.4 |
hdm | 0.3.2 | HDMT | 1.0.5 |
hdrcde | 3.4 | HDShOP | 0.1.5 |
HDTSA | 1.0.2 | heatmaply | 1.5.0 |
hellno | 0.0.1 | heplots | 1.6.2 |
here | 1.0.1 | hett | 0.3-3 |
hexbin | 1.28.3 | hexSticker | 0.4.9 |
hflights | 0.1 | hglm | 2.2-1 |
hglm.data | 1.0-1 | hgnc | 0.1.4 |
HGNChelper | 0.8.1 | HH | 3.1-52 |
hht | 2.1.6 | HiClimR | 2.2.1 |
highcharter | 0.9.4 | highfrequency | 1.0.1 |
highlight | 0.5.1 | highr | 0.10 |
highs | 0.1-10 | HIMA | 2.2.1 |
hipread | 0.2.4 | hisse | 2.1.11 |
HKRbook | 0.1.3 | HLMdiag | 0.5.0 |
HMDHFDplus | 2.0.3 | Hmisc | 5.1-2 |
HMMpa | 1.0.1 | HMP | 2.0.1 |
HMPTrees | 1.4 | hms | 1.1.3 |
hoardr | 0.5.4 | homals | 1.0-10 |
hommel | 1.6 | hoopR | 2.1.0 |
hot.deck | 1.2 | howzatR | 1.0.1 |
hpfilter | 1.0.2 | HSAUR3 | 1.0-14 |
hsstan | 0.8.2 | htm2txt | 2.2.2 |
htmlTable | 2.4.2 | htmltools | 0.5.8.1 |
HTMLUtils | 0.1.9 | htmlwidgets | 1.6.4 |
hts | 6.0.2 | HTSCluster | 2.0.11 |
htsr | 2.1.4 | httpcache | 1.2.0 |
httpcode | 0.3.0 | httping | 0.2.0 |
httpRequest | 0.0.11 | httptest | 4.2.2 |
httpuv | 1.6.15 | httr | 1.4.7 |
httr2 | 1.0.1 | humanFormat | 1.2 |
humanize | 0.2.0 | humidity | 0.1.5 |
hunspell | 3.0.3 | hurricaneexposure | 0.1.1 |
hutils | 1.8.1 | huxtable | 5.5.6 |
hwriter | 1.3.2.1 | hwwntest | 1.3.2 |
hydraulics | 0.7.0 | hydroEvents | 0.11 |
hydrogeo | 0.6-1 | hydroloom | 1.0.2 |
HydroMe | 2.0-1 | hydropeak | 0.1.2 |
hydroroute | 0.1.2 | hydrostats | 0.2.9 |
hydrotoolbox | 1.1.2 | hyfo | 1.4.6 |
HyperbolicDist | 0.6-5 | hypergeo | 1.2-13 |
i2extras | 0.2.1 | iarm | 0.4.3 |
ibd | 1.6 | ibdreg | 0.3.8 |
IBMPopSim | 1.0.0 | iBreakDown | 2.1.2 |
IBrokers | 0.10-2 | ica | 1.0-3 |
ICAMS | 2.3.12 | ICAOD | 1.0.1 |
iCARH | 2.0.2.1 | icarus | 0.3.2 |
ICBioMark | 0.1.4 | ICC | 2.4.0 |
iccbeta | 1.2.0 | ICDS | 0.1.2 |
iCellR | 1.6.7 | Icens | 1.72.0 |
ICGE | 0.4.2 | ichimoku | 1.5.1 |
ICS | 1.4-1 | ICSNP | 1.1-2 |
ICtest | 0.3-5 | idbr | 1.2 |
IDE | 0.3.1 | idefix | 1.0.3 |
idendr0 | 1.5.3 | IDF | 2.1.2 |
IDPmisc | 1.1.21 | ids | 1.0.1 |
ie2misc | 0.9.1 | ie2miscdata | 1.0.4 |
iemisc | 1.0.4 | iemiscdata | 1.0.1 |
IETD | 1.0.0 | ifaTools | 0.23 |
igraph | 2.0.3 | igraphdata | 1.0.1 |
illuminaio | 0.42.0 | imbibe | 0.1.1 |
imguR | 1.0.3 | IMIX | 1.1.5 |
immer | 1.5-13 | imp4p | 1.2 |
implied | 0.5 | implyr | 0.5.0 |
import | 1.3.2 | impute | 1.74.1 |
imputeLCMD | 2.1 | imputeTestbench | 3.0.3 |
imputeTS | 3.3 | imsig | 1.1.3 |
inca | 0.0.4 | IncDTW | 1.1.4.4 |
incidence | 1.7.3 | incidence2 | 2.2.3 |
inegiR | 3.0.0 | ineq | 0.2-13 |
infer | 1.0.7 | influence.SEM | 2.3 |
influenceR | 0.1.5 | influxdbr | 0.14.2 |
infotheo | 1.2.0.1 | InfoTrad | 1.2 |
ingredients | 2.3.0 | ini | 0.3.1 |
injurytools | 1.0.3 | inline | 0.3.19 |
insee | 1.1.5 | insight | 0.19.10 |
InspectChangepoint | 1.2 | instaR | 0.2.4 |
insuranceData | 1.0 | insurancerating | 0.7.2 |
intamap | 1.5-7 | integIRTy | 1.0.7 |
InteRD | 0.1.1 | interep | 0.4.1 |
interleave | 0.1.2 | interp | 1.1-6 |
InterpretMSSpectrum | 1.4.5 | intervals | 0.15.4 |
inum | 1.0-5 | investr | 1.4.2 |
invgamma | 1.1 | ioncopy | 2.2.2 |
iotables | 0.9.3 | iotools | 0.3-5 |
ipaddress | 1.0.2 | ipdw | 2.0-0 |
ipfp | 1.0.2 | ipred | 0.9-14 |
ips | 0.0.12 | ipumsr | 0.7.2 |
iq | 1.9.12 | irace | 3.5 |
IRanges | 2.34.0 | IRdisplay | 1.1 |
IRkernel | 1.3.2 | irlba | 2.3.5.1 |
irr | 0.84.1 | irtDemo | 0.1.4 |
irtoys | 0.2.2 | irtrees | 1.0.0 |
IRTShiny | 1.2 | isdparser | 0.4.0 |
IsingFit | 0.4 | IsingSampler | 0.2.3 |
ISLR | 1.4 | ismev | 1.42 |
Iso | 0.0-21 | isoband | 0.2.7 |
ISOcodes | 2024.02.12 | IsoGene | 1.0-24 |
isotone | 1.1-1 | isoWater | 1.1.2 |
ISOweek | 0.6-2 | ISwR | 2.0-8 |
iterators | 1.0.14 | iterLap | 1.1-4 |
itertools | 0.1-3 | itscalledsoccer | 0.2.4 |
itsmr | 1.10 | ivprobit | 1.1 |
ivreg | 0.6-3 | JADE | 2.0-4 |
jalcal | 0.1.0 | janeaustenr | 1.0.0 |
janitor | 2.2.0 | JavaGD | 0.6-5 |
JBrowseR | 0.10.2 | jetset | 3.4.0 |
jiebaR | 0.11 | jiebaRD | 0.1 |
jjb | 0.1.1 | JMdesign | 1.5 |
jomo | 2.7-6 | JoSAE | 0.3.0 |
jose | 1.2.0 | jpeg | 0.1-10 |
jqr | 1.3.3 | jquerylib | 0.1.4 |
jrt | 1.1.2 | js | 1.2 |
jsonify | 1.2.2 | jsonlite | 1.8.8 |
jsonvalidate | 1.3.2 | JSparO | 1.5.0 |
jstor | 0.3.11 | juicyjuice | 0.1.0 |
JuliaConnectoR | 1.1.3 | JWileymisc | 1.4.1 |
kableExtra | 1.4.0 | kalmanfilter | 2.1.1 |
kappaSize | 1.2 | KEGGgraph | 1.60.0 |
KEGGREST | 1.40.0 | kelvin | 2.0-2 |
Kendall | 2.2.1 | kequate | 1.6.4 |
keras | 2.15.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-32 | keyring | 1.3.2 |
KFAS | 1.5.1 | kfigr | 1.2.1 |
kinship2 | 1.9.6.1 | kitagawa | 3.1.2 |
kiwisR | 0.2.0 | klaR | 1.7-3 |
km.ci | 0.5-6 | kmer | 1.1.2 |
KMsurv | 0.1-5 | knitcitations | 1.0.12 |
knitLatex | 0.9.0 | knitr | 1.46 |
kofnGA | 1.3 | koRpus | 0.13-8 |
KrigInv | 1.4.2 | KRIS | 1.1.6 |
krm | 2022.10-17 | ks | 1.14.2 |
kst | 0.5-4 | kutils | 1.73 |
kyotil | 2024.1-30 | kza | 4.1.0.1 |
labdsv | 2.1-0 | label.switching | 1.8 |
labeling | 0.4.3 | labelled | 2.13.0 |
labelVector | 0.1.2 | laeken | 0.5.3 |
LaF | 0.8.4 | lagged | 0.3.2 |
laGP | 1.5-9 | Lahman | 11.0-0 |
lakemorpho | 1.3.2 | LAM | 0.6-19 |
lambda.r | 1.2.4 | lamW | 2.2.3 |
landsat | 1.1.2 | landscapemetrics | 2.1.1 |
languagelayeR | 1.2.4 | languageR | 1.5.0 |
LaplacesDemon | 16.1.6 | LARF | 1.4 |
lars | 1.3 | lassoshooting | 0.1.5-1.1 |
latdiag | 0.3 | later | 1.3.2 |
latex2exp | 0.9.6 | latticeExtra | 0.6-30 |
LatticeKrig | 8.4 | lava | 1.8.0 |
lavaan | 0.6-17 | lavaan.survey | 1.1.3.1 |
LAWBL | 1.5.0 | lazyeval | 0.2.2 |
lazyWeave | 3.0.2 | lbfgs | 1.2.1.2 |
lbfgsb3c | 2024-3.4 | LCAvarsel | 1.1 |
lcda | 0.3.2 | lcmm | 2.1.0 |
lctools | 0.2-10 | lda | 1.4.2 |
ldat | 0.3.3 | ldbounds | 2.0.2 |
leafem | 0.2.3 | leaflet | 2.2.2 |
leaflet.extras | 1.0.0 | leaflet.providers | 2.0.0 |
leafpm | 0.1.0 | leafpop | 0.1.0 |
leafsync | 0.1.0 | leapp | 1.3 |
leaps | 3.1 | LearnBayes | 2.15.1 |
learnr | 0.11.5 | legion | 0.1.2 |
leiden | 0.4.3.1 | leidenAlg | 1.1.3 |
lfactors | 1.0.4 | lfe | 3.0-0 |
lfstat | 0.9.12 | lgarch | 0.6-2 |
lgr | 0.4.4 | lgtdl | 1.1.5 |
lhs | 1.1.6 | libcoin | 1.0-10 |
libgeos | 3.11.1-2 | LiblineaR | 2.10-23 |
lidR | 4.1.1 | lifecontingencies | 1.3.11 |
lifecycle | 1.0.4 | LifeInsuranceContracts | 0.0.6 |
LifeInsureR | 1.0.0 | liftr | 0.9.2 |
liger | 2.0.1 | LIM | 1.4.7.1 |
limma | 3.56.1 | limSolve | 1.5.7.1 |
linelist | 1.1.3 | lineup | 0.42 |
lineup2 | 0.6 | link2GI | 0.5-3 |
linpk | 1.1.2 | linprog | 0.9-4 |
LinRegInteractive | 0.3-3 | lintools | 0.1.7 |
lisrelToR | 0.3 | listcomp | 0.4.1 |
listenv | 0.9.1 | liteq | 1.1.0 |
lmds | 0.1.0 | lme4 | 1.1-35.3 |
lmerTest | 3.1-3 | lmForc | 0.1.0 |
lmm | 1.4 | lmodel2 | 1.7-3 |
lmom | 3.0 | lmomco | 2.4.14 |
Lmoments | 1.3-1 | lmomRFA | 3.6 |
lmQCM | 0.2.4 | lmtest | 0.9-40 |
LNIRT | 0.5.1 | lobstr | 1.1.2 |
locfit | 1.5-9.9 | locits | 1.7.7 |
locpol | 0.8.0 | log4r | 0.4.3 |
logger | 0.3.0 | logging | 0.10-108 |
logitnorm | 0.8.39 | logitr | 1.1.1 |
logspline | 2.1.21 | lokern | 1.1-11 |
lomb | 2.5.0 | longCatEDA | 0.31 |
longitudinal | 1.1.13 | longitudinalData | 2.4.5.1 |
longmemo | 1.1-2 | LongMemoryTS | 0.1.0 |
longpower | 1.0.25 | longurl | 0.3.3 |
loo | 2.7.0 | lordif | 0.3-3 |
lotri | 0.4.3 | LowRankQP | 1.0.6 |
lpacf | 1.0.1 | lpdensity | 2.4 |
lpirfs | 0.2.3 | LPM | 3.1 |
LPS | 1.0.16 | lpSolve | 5.6.20 |
lpSolveAPI | 5.5.2.0-17.11 | lsa | 0.73.3 |
lsei | 1.3-0 | lsl | 0.5.6 |
lslx | 0.6.11 | LSMonteCarlo | 1.0 |
LSMRealOptions | 0.2.1 | LSPFP | 1.0.3 |
LSTS | 2.1 | LSWPlib | 0.1.0 |
ltm | 1.2-0 | ltsa | 1.4.6 |
lubridate | 1.9.3 | LUCIDus | 3.0.1 |
lulcc | 1.0.4 | Luminescence | 0.9.23 |
lutz | 0.3.2 | luz | 0.4.0 |
lvec | 0.2.5 | lvnet | 0.3.5 |
lvplot | 0.2.1 | LWFBrook90R | 0.5.3 |
lwgeom | 0.2-14 | M3C | 1.22.0 |
m5 | 0.1.1 | MAAPER | 1.1.1 |
maat | 1.1.0 | madrat | 3.6.4 |
magclass | 6.13.2 | magic | 1.6-1 |
magick | 2.8.3 | magrittr | 2.0.3 |
maGUI | 4.0 | mailR | 0.8 |
makeit | 1.0.1 | makepipe | 0.2.1 |
makeProject | 1.0 | MAMS | 2.0.2 |
manhattanly | 0.3.0 | ManifoldOptim | 1.0.1 |
manipulate | 1.0.1 | manipulateWidget | 0.11.1 |
MaOEA | 0.6.2 | Map2NCBI | 1.4 |
MAPA | 2.0.7 | mapdata | 2.3.1 |
mapdeck | 0.3.5 | mapedit | 0.6.0 |
mapiso | 0.3.0 | maplegend | 0.1.0 |
mapme.biodiversity | 0.5.0 | mapmisc | 2.1.0 |
mapproj | 1.2.11 | maps | 3.4.2 |
mapsapi | 0.5.4 | mapsf | 0.9.0 |
mapSpain | 0.9.0 | maptiles | 0.7.0 |
maptools | 1.1-8 | maptpx | 1.9-7 |
maptree | 1.4-8 | mapview | 2.11.2 |
mAr | 1.2-0 | mar1s | 2.1.1 |
marcher | 0.0-2 | marginaleffects | 0.19.0 |
margins | 0.3.26 | markdown | 1.12 |
markerpen | 0.1.1 | markophylo | 1.0.9 |
markovchain | 0.9.5 | MarkowitzR | 1.0.3 |
marmap | 1.0.10 | marqLevAlg | 2.0.8 |
MARSS | 3.11.9 | MassSpecWavelet | 1.66.0 |
Matching | 4.10-14 | matchingMarkets | 1.0-4 |
matchingR | 1.3.3 | MatchIt | 4.5.5 |
MatchThem | 1.2.1 | mathjaxr | 1.6-0 |
matlab | 1.0.4 | matlab2r | 1.5.0 |
matlabr | 1.5.2 | matrixcalc | 1.0-6 |
MatrixExtra | 0.1.15 | MatrixGenerics | 1.12.3 |
MatrixModels | 0.5-3 | matrixset | 0.3.0 |
matrixStats | 1.3.0 | matrixTests | 0.2.3 |
maxLik | 1.5-2.1 | MaxPro | 4.1-2 |
maxstat | 0.7-25 | MBA | 0.1-0 |
mbbefd | 0.8.11 | MBC | 0.10-6 |
MBESS | 4.9.3 | MBHdesign | 2.3.15 |
mblm | 0.12.1 | mboost | 2.9-9 |
mbsts | 3.0 | mc2d | 0.2.0 |
MCAvariants | 2.6.1 | mcclust | 1.0.1 |
mcga | 3.0.7 | mclcar | 0.2-0 |
mclust | 6.1 | mcmc | 0.9-8 |
MCMC.qpcr | 1.2.4 | mcmcensemble | 3.1.0 |
MCMCglmm | 2.35 | MCMCpack | 1.7-0 |
mcmcse | 1.5-0 | MCMCvis | 0.16.3 |
mco | 1.16 | Mcomp | 2.8 |
mcompanion | 0.6 | MCPMod | 1.0-10.1 |
mdftracks | 0.2.2 | measurementProtocol | 0.1.1 |
measurements | 1.5.1 | meboot | 1.4-9.4 |
Mediana | 1.0.8 | mediation | 4.5.0 |
MEIGOR | 1.33.0 | mem | 2.18 |
memapp | 2.16 | memisc | 0.99.31.7 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
memuse | 4.2-3 | MESS | 0.5.12 |
meta | 7.0-0 | metaboData | 0.6.3 |
MetabolAnalyze | 1.3.1 | MetabolicSurv | 1.1.2 |
MetabolomicsBasics | 1.4.5 | metacoder | 0.3.7 |
metadat | 1.2-0 | metafor | 4.6-0 |
metaheuristicOpt | 2.0.0 | metaMA | 3.1.3 |
metap | 1.10 | metaplot | 0.8.4 |
metaRNASeq | 1.0.7 | metaSEM | 1.3.1 |
metasens | 1.5-2 | meteo | 2.0-3 |
meteoland | 2.2.1 | metR | 0.15.0 |
Metrics | 0.1.4 | metRology | 0.9-28-1 |
MetSizeR | 2.0.0 | mFilter | 0.1-5 |
mfx | 1.2-2 | mgm | 1.2-14 |
mgsub | 1.7.3 | mhurdle | 1.3-0 |
mi | 1.1 | mi4p | 1.1 |
mice | 3.16.0 | miceadds | 3.17-44 |
micEcon | 0.6-18 | micEconAids | 0.6-20 |
micEconCES | 1.0-2 | micEconIndex | 0.1-8 |
micEconSNQP | 0.6-10 | microbenchmark | 1.4.10 |
micromap | 1.9.8 | microsamplingDesign | 1.0.8 |
Microsoft365R | 2.4.0 | MicSim | 2.0.1 |
midasr | 0.8 | miic | 1.5.3 |
MIIVsem | 0.5.8 | mime | 0.12 |
mind | 1.1.0 | MinEDfind | 0.1.3 |
miniCRAN | 0.3.0 | minimalRSD | 1.0.0 |
minimaxdesign | 0.1.5 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-4 | minqa | 1.2.6 |
MINTplates | 1.0.1 | mipfp | 3.2.1 |
mirai | 0.13.2 | MiRNAQCD | 1.1.3 |
mirt | 1.41 | mirtCAT | 1.13 |
misc3d | 0.9-1 | miscTools | 0.6-28 |
missForest | 1.5 | missMDA | 1.19 |
mitml | 0.4-5 | mitools | 2.4 |
mix | 1.0-11 | mixAR | 0.22.8 |
MixedPsy | 1.1.0 | mixexp | 1.2.7 |
mixl | 1.3.4 | mixOmics | 6.24.0 |
mixsqp | 0.3-54 | mixtools | 2.0.0 |
mize | 0.2.4 | mknapsack | 0.1.0 |
mkssd | 1.2 | mlapi | 0.1.1 |
mlbench | 2.1-3.1 | mlbstats | 0.1.0 |
MLCIRTwithin | 2.1.1 | MLDS | 0.5.1 |
MLmetrics | 1.1.3 | mlmRev | 1.0-8 |
mlogit | 1.1-1 | mlogitBMA | 0.1-7 |
mlr | 2.19.1 | mlr3 | 0.19.0 |
mlr3learners | 0.6.0 | mlr3measures | 0.5.0 |
mlr3misc | 0.15.0 | mlr3spatiotempcv | 2.3.1 |
mlr3tuning | 0.20.0 | mlrMBO | 1.1.5.1 |
mlVAR | 0.5.2 | mma | 10.7-1 |
mmand | 1.6.3 | mmrm | 0.3.11 |
mnormt | 2.1.1 | MNP | 3.1-4 |
modeest | 2.4.0 | modeldata | 1.3.0 |
modelenv | 0.1.1 | ModelMap | 3.4.0.4 |
ModelMetrics | 1.2.2.2 | modelr | 0.1.11 |
modelsummary | 2.0.0 | modeltime | 1.2.8 |
modeltime.ensemble | 1.0.3 | modeltime.resample | 0.2.3 |
modeltools | 0.2-23 | moderndive | 0.5.5 |
MODISTools | 1.1.5 | MODIStsp | 2.1.0 |
modules | 0.13.0 | mokken | 3.1.0 |
mombf | 3.5.4 | moments | 0.14.1 |
momentuHMM | 1.5.5 | mondate | 1.0 |
mongolite | 2.8.0 | mongopipe | 0.1.1 |
monmlp | 1.1.5 | monobin | 0.2.4 |
Morpho | 2.12 | MortalityGaps | 1.0.0 |
MortalityLaws | 2.1.0 | MortalityTables | 2.0.5 |
MortCast | 2.7-0 | mosaic | 1.9.1 |
mosaicCore | 0.9.4.0 | mosaicData | 0.20.4 |
MOSS | 0.2.2 | motmot | 2.1.3 |
mousetrap | 3.2.3 | move | 4.2.4 |
move2 | 0.2.7 | movecost | 2.1 |
moveHMM | 1.9 | moveWindSpeed | 0.2.4 |
movMF | 0.2-8 | MPDiR | 0.2 |
MplusAutomation | 1.1.1 | mpm | 1.0-23 |
mpmi | 0.43.2.1 | MPSEM | 0.4-1 |
mpt | 0.8-0 | MPTinR | 1.14.1 |
MPV | 1.63 | mratios | 1.4.2 |
mrf | 0.1.6 | mrgsolve | 1.4.1 |
mritc | 0.5-3 | mschart | 0.4.0 |
mscstexta4r | 0.1.2 | mscsweblm4r | 0.1.2 |
MSGARCH | 2.51 | msgps | 1.3.5 |
msigdbr | 7.5.1 | msm | 1.7.1 |
msos | 1.2.0 | mssm | 0.1.6 |
MSSQL | 1.0.0 | mstate | 0.3.2 |
MSwM | 1.5 | MTS | 1.2.1 |
mtsdi | 0.3.5 | mudfold | 1.1.21 |
multcomp | 1.4-25 | multcompView | 0.1-10 |
multDM | 1.1.4 | multicool | 1.0.1 |
MultiGlarmaVarSel | 1.0 | MultiLCIRT | 2.11 |
MultipleBubbles | 0.2.0 | multiplex | 3.1.1 |
multipol | 1.0-9 | multitaper | 1.0-17 |
multiway | 1.0-6 | multiwayvcov | 1.2.3 |
multtest | 2.56.0 | MuMIn | 1.47.5 |
munfold | 0.3.5 | munsell | 0.5.1 |
musica | 0.1.3 | mutoss | 0.1-13 |
mutSignatures | 2.1.1 | mvglmmRank | 1.2-4 |
mvLSW | 1.2.5 | mvMORPH | 1.1.9 |
mvnfast | 0.2.8 | mvnormtest | 0.1-9-3 |
mvQuad | 1.0-8 | mvtnorm | 1.2-4 |
mvtsplot | 1.0-4 | mxkssd | 1.2 |
myClim | 1.1.0 | n1qn1 | 6.0.1-11 |
N2R | 1.0.3 | nabor | 0.5.0 |
NACHO | 2.0.6 | NADA | 1.6-1.1 |
NAEPirtparams | 1.0.0 | NAEPprimer | 1.0.1 |
nanoarrow | 0.4.0.1 | nanonext | 0.13.5.2 |
nanostringr | 0.4.1 | nanotime | 0.3.7 |
nardl | 0.1.6 | nasapower | 4.2.0 |
natserv | 1.0.0 | naturalsort | 0.1.3 |
NBAloveR | 0.1.3.3 | nbapalettes | 0.1.0 |
NBBttest | 1.0.1 | NbClust | 3.0.1 |
NBPSeq | 0.3.1 | nbTransmission | 1.1.4 |
ncappc | 0.3.0 | ncar | 0.5.0 |
ncbit | 2013.03.29.1 | ncdf4 | 1.22 |
ncdfgeom | 1.1.6 | ncf | 1.3-2 |
ncmeta | 0.4.0 | NCmisc | 1.2.0 |
ncvreg | 3.14.2 | ndjson | 0.9.0 |
neighbours | 0.1-3 | neldermead | 1.0-12 |
neo2R | 2.4.2 | net4pg | 0.1.1 |
NetIndices | 1.4.4.1 | nets | 0.9.1 |
NetSimR | 0.1.5 | network | 1.18.2 |
networkABC | 0.8-1 | NetworkChange | 0.8 |
NetworkComparisonTest | 2.2.2 | networkD3 | 0.4 |
networkDynamic | 0.11.4 | networkLite | 1.0.5 |
NetworkRiskMeasures | 0.1.4 | NetworkToolbox | 1.4.2 |
networktools | 1.5.2 | networktree | 1.0.1 |
neuralnet | 1.44.2 | NeuralNetTools | 1.5.3 |
neurobase | 1.32.3 | neuroim | 0.0.6 |
neuRosim | 0.2-14 | NewmanOmics | 1.0.10 |
nFactors | 2.4.1.1 | NFCP | 1.2.1 |
nfl4th | 1.0.4 | nflfastR | 4.6.1 |
nflplotR | 1.3.1 | nflreadr | 1.4.0 |
nflseedR | 1.2.0 | NFLSimulatoR | 0.4.0 |
nflverse | 1.0.3 | ngspatial | 1.2-2 |
nhanesA | 1.1 | nhdplusTools | 1.0.0 |
nhdR | 0.6.1 | nhlapi | 0.1.4 |
NHLData | 1.0.0 | nhlscrape | 0.1.3 |
NHPoisson | 3.3 | nifti.io | 1.0.0 |
nilde | 1.1-7 | nimble | 1.1.0 |
NISTnls | 0.9-13 | NlcOptim | 0.6 |
nleqslv | 3.3.5 | NlinTS | 1.4.5 |
nlmeVPC | 2.6 | nlmixr2 | 2.1.1 |
nlmixr2data | 2.0.9 | nlmixr2est | 2.2.1 |
nlmixr2extra | 2.0.9 | nlmixr2plot | 2.0.8 |
nlmixr2rpt | 0.2.0 | nloptr | 2.0.3 |
NLP | 0.2-1 | nls2 | 0.3-3 |
nlsem | 0.8-1 | nlsic | 1.0.4 |
nlsr | 2023.8.31 | nlstools | 2.1-0 |
nlts | 1.0-2 | NMF | 0.27 |
NMOF | 2.8-0 | nmw | 0.1.5 |
nnfor | 0.9.9 | nnls | 1.5 |
NNS | 10.8 | noaastormevents | 0.2.0 |
nodbi | 0.10.4 | nomisr | 0.4.7 |
nomnoml | 0.3.0 | NonCompart | 0.7.0 |
nonlinearTseries | 0.3.0 | nonmemica | 1.0.8 |
nonneg.cg | 0.1.6-1 | nonnest2 | 0.5-6 |
nor1mix | 1.3-3 | norm | 1.0-11.1 |
normalp | 0.7.2.1 | nortest | 1.0-4 |
nosoi | 1.1.2 | notifyme | 0.3.0 |
np | 0.60-17 | NPflow | 0.13.5 |
npi | 0.2.0 | nppbib | 1.2-0 |
NPRED | 1.0.7 | nsarfima | 0.2.0.0 |
nse | 1.21 | nsga2R | 1.1 |
nspmix | 1.5-0 | nsprcomp | 0.5.1-2 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
nvmix | 0.1-1 | o2geosocial | 1.1.2 |
o2plsda | 0.0.18 | oai | 0.4.0 |
OAIHarvester | 0.3-4 | OasisR | 3.1.0 |
obAnalytics | 0.1.1 | objectProperties | 0.6.8 |
objectSignals | 0.10.3 | OBsMD | 11.1 |
occ | 1.1 | oce | 1.8-2 |
octopus | 0.4.2 | od | 0.4.4 |
odbc | 1.4.2 | odds.converter | 1.4.8 |
oddsapiR | 0.0.3 | odin | 1.2.5 |
odpc | 2.0.5 | odr | 1.4.4 |
OECD | 0.2.5 | oeli | 0.4.1 |
officer | 0.6.5 | ohoegdm | 0.1.0 |
OmicNavigator | 1.13.13 | omicwas | 0.8.0 |
ompr | 1.0.4 | omu | 1.1.2 |
onbrand | 1.0.5 | onlineforecast | 1.0.2 |
onls | 0.1-2 | ontologyIndex | 2.12 |
oompaBase | 3.2.9 | oompaData | 3.1.3 |
OOR | 0.1.4 | opdisDownsampling | 1.0.1 |
OPDOE | 1.0-10 | openair | 2.18-2 |
opencage | 0.2.2 | opencpu | 2.2.11 |
opendotaR | 0.1.4 | openEBGM | 0.9.1 |
openintro | 2.4.0 | OpenML | 1.12 |
OpenMx | 2.21.11 | openNLP | 0.2-7 |
openNLPdata | 1.5.3-5 | openssl | 2.1.2 |
OpenStreetMap | 0.4.0 | openxlsx | 4.2.5.2 |
opera | 1.2.0 | operator.tools | 1.6.3 |
operators | 0.1-8 | optBiomarker | 1.0-28 |
OptCirClust | 0.0.4 | optextras | 2019-12.4 |
OptGS | 1.2 | OptHedging | 1.0 |
OptimalDesign | 1.0.1 | OptimaRegion | 1.2 |
optimbase | 1.0-10 | optimizeR | 1.0.5 |
optimParallel | 1.0-2 | optimsimplex | 1.0-8 |
optimx | 2023-10.21 | OptionPricing | 0.1.2 |
optiscale | 1.2.2 | optmatch | 0.10.7 |
ORCME | 2.0.2 | orderly | 1.4.3 |
ordinal | 2023.12-4 | ore | 1.7.4.1 |
org.Hs.eg.db | 3.17.0 | ORIClust | 1.0-2 |
oro.dicom | 0.5.3 | oro.nifti | 0.11.4 |
oro.pet | 0.2.7 | OrthoPanels | 1.2-4 |
orthopolynom | 1.0-6.1 | osd | 0.1 |
osDesign | 1.8 | osmdata | 0.2.5 |
osmextract | 0.5.0 | osqp | 0.6.3.2 |
osrm | 4.1.1 | otsad | 0.2.0 |
otsfeatures | 1.0.0 | ouch | 2.19 |
outbreaker2 | 1.1.3 | outbreaks | 1.9.0 |
outliers | 0.15 | OUwie | 2.10 |
overlapping | 2.1 | ows4R | 0.3-6 |
pa | 1.2-4 | packcircles | 0.3.6 |
packMBPLSDA | 0.9.0 | packrat | 0.9.2 |
padr | 0.6.2 | pageviews | 0.6.0 |
pagoda2 | 1.0.12 | PairedData | 1.1.1 |
pairwise | 0.6.1-0 | paleobuddy | 1.0.0 |
paleotree | 3.4.5 | paleoTS | 0.5.3 |
paletteer | 1.6.0 | palinsol | 1.0 |
palmerpenguins | 0.1.1 | pampe | 1.1.2 |
pan | 1.9 | pander | 0.6.5 |
panelaggregation | 0.1.1 | panelvar | 0.5.5 |
papeR | 1.0-5 | paradox | 0.11.1 |
ParallelLogger | 3.3.0 | parallelly | 1.37.1 |
parallelMap | 1.5.1 | parameters | 0.21.6 |
ParamHelpers | 1.14.1 | params | 0.7.3 |
paran | 1.5.3 | Pareto | 2.4.5 |
parma | 1.7 | parmigene | 1.1.0 |
parsedate | 1.3.1 | parsnip | 1.2.1 |
partitions | 1.10-7 | partsm | 1.1-3 |
party | 1.3-14 | partykit | 1.2-20 |
pastecs | 1.4.2 | patchwork | 1.2.0 |
pathfindR | 2.3.1 | pathfindR.data | 2.0.0 |
pathview | 1.40.0 | paws | 0.5.0 |
paws.analytics | 0.5.0 | paws.application.integration | 0.5.0 |
paws.common | 0.7.2 | paws.compute | 0.5.0 |
paws.cost.management | 0.5.0 | paws.customer.engagement | 0.5.0 |
paws.database | 0.5.0 | paws.developer.tools | 0.5.0 |
paws.end.user.computing | 0.5.0 | paws.machine.learning | 0.5.0 |
paws.management | 0.5.0 | paws.networking | 0.5.0 |
paws.security.identity | 0.5.0 | paws.storage | 0.5.0 |
pbapply | 1.7-2 | PBD | 1.4 |
pbdZMQ | 0.3-11 | PBIBD | 1.3 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
pbm | 1.2.1 | pbmcapply | 1.5.1 |
pbo | 1.3.5 | pbs | 1.1 |
PBSddesolve | 1.13.4 | PBSmapping | 2.73.4 |
PBSmodelling | 2.69.3 | pbv | 0.5-47 |
PCA4TS | 0.1 | pcaMethods | 1.92.0 |
pcaPP | 2.0-4 | pcdpca | 0.4 |
pcFactorStan | 1.5.4 | pcIRT | 0.2.4 |
PCMRS | 0.1-4 | pco | 1.0.1 |
PCPS | 1.0.7 | pcse | 1.9.1.1 |
pcts | 0.15.7 | pdc | 1.0.3 |
pder | 1.0-2 | pdfCluster | 1.0-4 |
pdfetch | 0.2.9 | pdftables | 0.1 |
pdftools | 3.4.0 | pdist | 1.2.1 |
pdp | 0.8.1 | pdR | 1.9.1 |
pdynmc | 0.9.10 | PeakError | 2023.9.4 |
PeakSegDisk | 2023.11.27 | PeakSegJoint | 2024.1.24 |
PeakSegOptimal | 2024.1.24 | PearsonDS | 1.3.1 |
pedigree | 1.4.2 | PeerPerformance | 2.2.5 |
penalized | 0.9-52 | penaltyLearning | 2024.1.25 |
penppml | 0.2.3 | Peptides | 2.4.6 |
perfectphyloR | 0.2.1 | performance | 0.11.0 |
PerformanceAnalytics | 2.0.4 | permPATH | 1.3 |
permute | 0.9-7 | pglm | 0.2-3 |
PGM2 | 1.0-1 | ph2bayes | 0.0.2 |
ph2bye | 0.1.4 | phangorn | 2.11.1 |
pharmaRTF | 0.1.4 | phateR | 1.0.7 |
pheatmap | 1.0.12 | philentropy | 0.8.0 |
phonics | 1.3.10 | phonTools | 0.2-2.2 |
phyclust | 0.1-34 | phyext2 | 0.0.4 |
phylobase | 0.8.12 | phylocanvas | 0.1.3 |
phyloclim | 0.9.5 | PHYLOGR | 1.0.11 |
phylogram | 2.1.0 | phylolm | 2.6.2 |
phyloregion | 1.0.8 | phyloseq | 1.44.0 |
phylosignal | 1.3.1 | phylotate | 1.3 |
phylotools | 0.2.2 | phyloTop | 2.1.2 |
phyreg | 1.0.2 | phytools | 2.1-1 |
picante | 1.8.2 | picasso | 1.3.1 |
pid | 0.50 | piecewiseSEM | 2.3.0 |
piggyback | 0.1.5 | pillar | 1.9.0 |
pinfsc50 | 1.3.0 | pingr | 2.0.3 |
pinnacle.data | 0.1.4 | pins | 1.3.0 |
PINSPlus | 2.0.7 | pipe.design | 0.5.1 |
pipeR | 0.6.1.3 | piqp | 0.2.2 |
piratings | 0.1.9 | pitchRx | 1.8.2 |
pixmap | 0.4-12 | PK | 1.3-6 |
PKconverter | 1.5 | pkdata | 0.1.0 |
pkgbuild | 1.4.4 | pkgcache | 2.2.2 |
pkgconfig | 2.0.3 | pkgdepends | 0.7.2 |
pkgdown | 2.0.9 | pkgfilecache | 0.1.5 |
pkgload | 1.3.4 | pkgsearch | 3.1.3 |
PKNCA | 0.10.2 | pkr | 0.1.3 |
pks | 0.6-0 | PlackettLuce | 0.4.3 |
PlayerRatings | 1.1-0 | plgp | 1.1-12 |
plink | 1.5-1 | plm | 2.6-4 |
PLMIX | 2.1.1 | PLmixed | 0.1.7 |
plogr | 0.2.0 | plot3D | 1.4.1 |
plot3Drgl | 1.0.4 | plotdap | 1.0.3 |
plotly | 4.10.4 | plotMCMC | 2.0.1 |
plotmo | 3.6.3 | plotrix | 3.8-4 |
plotROC | 2.3.1 | plotSEMM | 2.4 |
PlotTools | 0.3.0 | plotwidgets | 0.5.1 |
pls | 2.8-3 | plumber | 1.2.2 |
plyr | 1.8.9 | PMA | 1.2-3 |
pmc | 1.0.6 | pmr | 1.2.5.1 |
pmxTools | 1.3 | png | 0.1-8 |
POD | 1.2.0 | PoiClaClu | 1.0.2.1 |
pointblank | 0.12.1 | poisbinom | 1.0.1 |
PoissonBinomial | 1.2.6 | poLCA | 1.6.0.1 |
polspline | 1.1.24 | polyclip | 1.10-6 |
polycor | 0.8-1 | polyCub | 0.9.0 |
polylabelr | 0.2.0 | polynom | 1.4-1 |
PolynomF | 2.0-8 | polyreg | 0.8.0 |
pomp | 5.7 | pool | 1.0.3 |
poorman | 0.2.7 | PopED | 0.6.0 |
popEpi | 0.4.11 | popPCR | 0.1.1.1 |
PortfolioOptim | 1.1.1 | PortRisk | 1.1.0 |
PostcodesioR | 0.3.1 | posterior | 1.5.0 |
postlightmercury | 1.2 | powdist | 0.1.4 |
powerbydesign | 1.0.5 | powerGWASinteraction | 1.1.3 |
powerSurvEpi | 0.1.3 | PowerTOST | 1.5-6 |
PowerUpR | 1.1.0 | PP | 0.6.3-11 |
ppcor | 1.1 | PPRL | 0.3.8 |
pps | 1.0 | PQLseq | 1.2.1 |
prabclus | 2.3-3 | pracma | 2.4.4 |
PracTools | 1.4.3 | praise | 1.0.0 |
pRecipe | 3.0.1-3 | PreciseSums | 0.6 |
PredCRG | 1.0.2 | prediction | 0.3.17 |
predicts | 0.1-11 | prefmod | 0.8-36 |
PReMiuM | 3.2.13 | preprocessCore | 1.62.1 |
prereg | 0.6.0 | PresenceAbsence | 1.1.11 |
presize | 0.3.7 | prettydoc | 0.4.1 |
prettyGraphs | 2.1.6 | prettymapr | 0.2.5 |
prettyunits | 1.2.0 | prevalence | 0.4.1 |
prevR | 5.0.0 | princurve | 2.1.6 |
prioGene | 1.0.1 | prioritylasso | 0.3.1 |
prism | 0.2.1 | prismatic | 1.1.2 |
ProbitSpatial | 1.1 | pROC | 1.18.5 |
processx | 3.8.4 | prodigenr | 0.6.2 |
prodlim | 2023.08.28 | ProfessR | 2.4-3 |
profileModel | 0.6.1 | profileR | 0.3-5 |
profoc | 1.3.2 | profvis | 0.3.8 |
progress | 1.2.3 | progressr | 0.14.0 |
PROJ | 0.4.5 | proj4 | 1.0-14 |
projects | 2.1.3 | ProjectTemplate | 0.10.4 |
promises | 1.3.0 | prophet | 1.0 |
PROsetta | 0.4.1 | proto | 1.0.0 |
protoclust | 1.6.4 | protolite | 2.3.0 |
protr | 1.7-1 | protti | 0.8.0 |
protViz | 0.7.9 | proxy | 0.4-27 |
proxyC | 0.4.1 | prozor | 0.3.1 |
PRROC | 1.3.1 | pryr | 0.1.6 |
ps | 1.7.6 | pscl | 1.5.9 |
psd | 2.1.1 | PSF | 0.5 |
psidR | 2.1 | pso | 1.0.4 |
psoptim | 1.0 | pspline | 1.0-19 |
psqn | 0.3.1 | PSSMCOOL | 0.2.4 |
psy | 1.2 | psych | 2.4.3 |
psychomix | 1.1-8 | psychotools | 0.7-3 |
psychotree | 0.16-1 | psychTools | 2.4.3 |
psyphy | 0.3 | PTAk | 2.0.0 |
PTSR | 0.1.2 | ptw | 1.9-16 |
PTXQC | 1.1.1 | pubmed.mineR | 1.0.20 |
purrr | 1.0.2 | pushoverr | 1.1.0 |
pvclust | 2.2-0 | pwr | 1.3-0 |
PwrGSD | 2.3.6 | pwrRasch | 0.1-2 |
pwt | 7.1-1 | pwt8 | 8.1-1 |
pwt9 | 9.1-0 | pxweb | 0.17.0 |
PxWebApiData | 0.9.0 | qap | 0.1-2 |
Qardl | 0.1.1 | qcv | 1.0 |
qdap | 2.4.6 | qdapDictionaries | 1.0.7 |
qdapRegex | 0.7.8 | qdapTools | 1.3.7 |
qgam | 1.3.4 | qgisprocess | 0.3.0 |
qgraph | 1.9.8 | qicharts2 | 0.7.4 |
qlcal | 0.0.10 | qmap | 1.0-4 |
qMRI | 1.2.7 | qpdf | 1.3.3 |
qpmadr | 1.1.0-0 | qpNCA | 1.1.6 |
qqconf | 1.3.2 | qqplotr | 0.0.6 |
QRM | 0.4-31 | qrmdata | 2024-03-04-2 |
qrmtools | 0.0-17 | qrng | 0.0-10 |
qs | 0.26.1 | qtl | 1.66 |
quadprog | 1.5-8 | quadprogXT | 0.0.5 |
qualmap | 0.2.2 | qualtRics | 3.2.0 |
Quandl | 2.11.0 | quanteda | 4.0.2 |
quantification | 0.2.0 | quantmod | 0.4.26 |
quantreg | 5.97 | quantspec | 1.2-3 |
Quartet | 1.2.6 | questionr | 0.7.8 |
QuickJSR | 1.1.3 | quickpsy | 0.1.5.1 |
qvalue | 2.32.0 | qvcalc | 1.0.3 |
R.cache | 0.16.0 | R.devices | 2.17.2 |
R.filesets | 2.15.1 | R.huge | 0.10.1 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.26.0 | R.rsp | 0.46.0 |
R.utils | 2.12.3 | R0 | 1.3-1 |
R2BEAT | 1.0.5 | r2d3 | 0.2.6 |
R2HTML | 2.3.3 | R2jags | 0.7-1.1 |
R2OpenBUGS | 3.2-3.2.1 | r2rtf | 1.1.1 |
R2WinBUGS | 2.1-22.1 | R4CouchDB | 0.7.5 |
R6 | 2.5.1 | R6P | 0.3.0 |
radarchart | 0.3.1 | radiant | 1.6.1 |
radiant.basics | 1.6.0 | radiant.data | 1.6.3 |
radiant.design | 1.6.1 | radiant.model | 1.6.3 |
radiant.multivariate | 1.6.1 | RAdwords | 0.1.18 |
ragg | 1.3.0 | ragtop | 1.1.1 |
rainbow | 3.8 | rakeR | 0.2.1 |
rAmCharts | 2.1.15 | RAMClustR | 1.3.1 |
ramcmc | 0.1.2 | ramify | 0.3.3 |
ramps | 0.6.18 | randomcoloR | 1.1.0.1 |
randomForest | 4.7-1.1 | randomForestSRC | 3.2.3 |
randomizeR | 3.0.2 | randomizr | 1.0.0 |
randomLCA | 1.1-3 | randtoolbox | 2.0.4 |
rang | 0.3.0 | ranger | 0.16.0 |
rankdist | 1.1.4 | RANN | 2.6.1 |
rapiclient | 0.1.4 | rapidjsonr | 1.2.0 |
RApiSerialize | 0.1.2 | rappdirs | 0.3.3 |
rapport | 1.1 | rapportools | 1.1 |
Raquifer | 0.1.0 | rARPACK | 0.11-0 |
RaschSampler | 0.8-10 | raster | 3.6-26 |
rasterImage | 0.4.0 | rasterVis | 0.51.6 |
ratelimitr | 0.4.1 | RATest | 0.1.10 |
raveio | 0.9.0 | RavenR | 2.2.0 |
ravetools | 0.1.3 | raw | 0.1.8 |
rBayesianOptimization | 1.2.1 | Rbeast | 1.0.0 |
rbedrock | 0.3.2 | rbenchmark | 1.0.0 |
RBGL | 1.76.0 | rBiasCorrection | 0.3.4 |
rbibutils | 2.2.16 | Rblpapi | 0.3.14 |
rbmi | 1.2.6 | RCarb | 0.1.6 |
rcartocolor | 2.1.1 | Rcatch22 | 0.2.1 |
rcdd | 1.6 | RCEIM | 0.3 |
Rcgmin | 2022-4.30 | rchess | 0.1 |
Rchoice | 0.3-6 | RCircos | 1.2.2 |
rCMA | 1.1.1 | rcmdcheck | 1.4.0 |
Rcmdr | 2.9-2 | RcmdrMisc | 2.9-1 |
RcmdrPlugin.depthTools | 1.4 | RcmdrPlugin.DoE | 0.12-5 |
RcmdrPlugin.temis | 0.7.10 | RColorBrewer | 1.1-3 |
Rcpp | 1.0.12 | RcppAnnoy | 0.0.22 |
RcppArmadillo | 0.12.8.2.1 | RcppCCTZ | 0.2.12 |
RcppDate | 0.0.3 | RcppDE | 0.1.7 |
RcppDist | 0.1.1 | RcppEigen | 0.3.4.0.0 |
RcppGSL | 0.3.13 | RcppHNSW | 0.6.0 |
RcppHungarian | 0.3 | RcppNumerical | 0.6-0 |
RcppParallel | 5.1.7 | RcppProgress | 0.4.2 |
RcppQuantuccia | 0.1.2 | RcppRedis | 0.2.4 |
RcppRoll | 0.3.0 | RcppSimdJson | 0.1.11 |
RcppSpdlog | 0.0.16 | RcppThread | 2.1.7 |
rcpptimer | 1.1.0 | RcppTN | 0.2-2 |
RcppTOML | 0.2.2 | RcppZiggurat | 0.1.6 |
Rcrawler | 0.1.9-1 | rcrossref | 1.2.0 |
Rcsdp | 0.1.57.5 | RCurl | 1.98-1.14 |
RCzechia | 1.12.0 | rdatacite | 0.5.4 |
rdbnomics | 0.6.4 | rdd | 0.57 |
rddensity | 2.5 | rdflib | 0.2.8 |
rdhs | 0.8.1 | rdlocrand | 1.0 |
rdmulti | 1.1 | RDota2 | 0.1.6 |
Rdpack | 2.6 | rdpower | 2.2 |
rdrobust | 2.2 | Rdsdp | 1.0.5.2.1 |
rdwd | 1.8.0 | re2 | 0.1.3 |
reactable | 0.4.4 | reactR | 0.5.0 |
read.gb | 2.2 | readabs | 0.4.14 |
reader | 1.0.6 | readJDX | 0.6.4 |
readODS | 2.2.0 | readr | 2.1.5 |
readsdmx | 0.3.1 | readstata13 | 0.10.1 |
readxl | 1.4.3 | reasonabletools | 0.1 |
REBayes | 2.54 | recipes | 1.0.10 |
reclin | 0.1.2 | recmap | 1.0.17 |
RecordLinkage | 0.4-12.4 | redcapAPI | 2.9.0 |
REDCapR | 1.1.0 | REDCapTidieR | 1.1.1 |
redland | 1.0.17-18 | redux | 1.1.4 |
RefManageR | 1.4.0 | refugees | 2023.6.0 |
regions | 0.1.8 | registry | 0.5-1 |
regnet | 1.0.1 | regress | 1.3-21 |
RegSDC | 0.7.0 | regsem | 1.9.5 |
regspec | 2.7 | regtools | 1.7.0 |
ReIns | 1.0.14 | reinsureR | 0.1.0 |
relations | 0.6-13 | reldist | 1.7-2 |
relimp | 1.0-5 | rematch | 2.0.0 |
rematch2 | 2.1.2 | remotes | 2.5.0 |
REndo | 2.4.9 | rentrez | 1.2.3 |
renv | 1.0.7 | replicateBE | 1.1.3 |
repmis | 0.5 | repo | 2.1.5 |
RepoGenerator | 0.0.1 | reportfactory | 0.4.0 |
reportr | 1.3.0 | reporttools | 1.1.3 |
repr | 1.1.7 | represtools | 0.1.3 |
reprex | 2.1.0 | reproducible | 2.0.12 |
reproj | 0.4.3 | reqres | 0.2.5 |
REQS | 0.8-13 | request | 0.1.0 |
Require | 0.3.1 | rerddap | 1.1.0 |
rerddapXtracto | 1.2.0 | resampledata | 0.3.1 |
resde | 1.1 | reservoir | 1.1.5 |
reshape | 0.8.9 | reshape2 | 1.4.4 |
restfulr | 0.0.15 | restimizeapi | 1.0.0 |
reticulate | 1.36.1 | retrosheet | 1.1.6 |
retry | 0.1.1 | revdbayes | 1.5.3 |
RevGadgets | 1.2.1 | Revticulate | 1.0.0 |
rex | 1.2.1 | Rexperigen | 0.2.1 |
Rfacebook | 0.6.15 | Rfast | 2.1.0 |
Rfast2 | 0.1.5.2 | rfigshare | 0.3.8 |
rflexscan | 1.1.0 | rgbif | 3.7.9 |
RGBM | 1.0-11 | rgdal | 1.6-7 |
rgee | 1.1.7 | rgen | 0.0.1 |
RGENERATE | 1.3.7 | RGENERATEPREC | 1.2.9 |
rgenoud | 5.9-0.10 | rgeoda | 0.0.10-4 |
rgeos | 0.6-4 | rgl | 1.3.1 |
Rglpk | 0.6-5.1 | RgoogleMaps | 1.5.1 |
RGraphics | 3.0-2 | Rgraphviz | 2.44.0 |
rgrass | 0.4-2 | rgrass7 | 0.2-13 |
RGreenplum | 0.1.2 | rgugik | 0.4.0 |
RH2 | 0.2.4 | rhandsontable | 0.3.8 |
RHclust | 2.0.0 | rhdf5 | 2.44.0 |
rhdf5filters | 1.12.1 | Rhdf5lib | 1.22.0 |
RHMS | 1.7 | rhosa | 0.2.0 |
RhpcBLASctl | 0.23-42 | Rhtslib | 2.2.0 |
rhub | 2.0.0 | rib | 0.20.0 |
riceidconverter | 1.1.1 | RIdeogram | 0.2.2 |
ridge | 3.3 | riingo | 0.3.1 |
Rilostat | 2.0.0 | ring | 1.0.5 |
RInside | 0.2.18 | rintrojs | 0.3.4 |
rio | 1.0.1 | Rirt | 0.0.2 |
Risk | 1.0 | riskCommunicator | 1.0.1 |
riskParityPortfolio | 0.2.2 | RiskPortfolios | 2.1.7 |
riskSimul | 0.1.2 | ritis | 1.0.0 |
riverdist | 0.16.3 | rivernet | 1.2.3 |
rivr | 1.2-3 | rjags | 4-15 |
rJava | 1.0-11 | RJDBC | 0.2-10 |
RJDemetra | 0.2.6 | rje | 1.12.1 |
rjson | 0.2.21 | RJSONIO | 1.3-1.9 |
rjstat | 0.4.3 | RKEA | 0.0-6 |
RKEAjars | 5.0-4 | RKelly | 1.0 |
rlang | 1.1.3 | rlas | 1.7.0 |
rle | 0.9.2 | rlecuyer | 0.3-8 |
rlemon | 0.2.1 | Rlgt | 0.2-1 |
Rlibeemd | 1.4.3 | rLiDAR | 0.1.5 |
Rlinkedin | 0.2 | rlist | 0.4.6.2 |
rLTP | 0.1.4 | RLumShiny | 0.2.3 |
RM2006 | 0.1.1 | Rmalschains | 0.2-10 |
rmapshaper | 0.5.0 | RMariaDB | 1.3.1 |
rmarkdown | 2.26 | rmatio | 0.19.0 |
RMAWGEN | 1.3.7 | rmcfs | 1.3.5 |
rmeta | 3.0 | rmgarch | 1.3-9 |
rminizinc | 0.0.8 | Rmisc | 1.5.1 |
rmoo | 0.2.0 | Rmosek | 1.3.5 |
Rmpfr | 0.9-5 | rms | 6.8-0 |
RMTstat | 0.3.1 | rmutil | 1.1.10 |
RMySQL | 0.10.27 | rmzqc | 0.5.4 |
Rnanoflann | 0.0.2 | RNAseqNet | 0.1.5 |
RNAsmc | 0.8.0 | rnaturalearth | 1.0.1 |
rnaturalearthdata | 1.0.0 | RNCEP | 1.0.10 |
rncl | 0.8.7 | RND | 1.2 |
RNentropy | 1.2.3 | rneos | 0.4-0 |
RNetCDF | 2.9-2 | RNeXML | 2.4.11 |
rngtools | 1.5.2 | rngWELL | 0.10-9 |
RNifti | 1.6.1 | RNiftyReg | 2.8.1 |
rnn | 1.9.0 | rnoaa | 1.4.0 |
rnrfa | 2.1.0.5 | roadoi | 0.7.2 |
ROAuth | 0.9.6 | robfilter | 4.1.4 |
RobKF | 1.0.2 | RoBMA | 3.1.0 |
robotoolbox | 1.3.2 | robotstxt | 0.7.13 |
robsurvey | 0.6 | robustbase | 0.99-2 |
RobustRankAggreg | 1.2.1 | rockchalk | 1.8.157 |
rocker | 0.3.1 | ROCR | 1.0-11 |
RODBC | 1.3-23 | rodd | 0.2-1 |
Rogue | 2.1.6 | ROI | 1.0-1 |
ROI.plugin.ecos | 1.0-2 | ROI.plugin.neos | 1.0-2 |
ROI.plugin.qpoases | 1.0-3 | roll | 1.1.7 |
Rook | 1.2 | ROOPSD | 0.3.9 |
rootSolve | 1.8.2.4 | ROpenDota | 0.1.2 |
roperators | 1.3.14 | roptim | 0.1.6 |
rorcid | 0.7.0 | rosetteApi | 1.14.4 |
rosm | 0.3.0 | rotl | 3.1.0 |
round | 0.21-0.2 | routr | 0.4.1 |
roxygen2 | 7.3.1 | rpact | 3.5.1 |
RPANDA | 2.3 | rpanel | 1.1-5.2 |
rPanglaoDB | 0.2.1 | rpart.plot | 3.1.2 |
rpdo | 0.3.2 | rpf | 1.0.14 |
Rphylopars | 0.3.10 | rpinterest | 0.3.1 |
RPMG | 2.2-7 | rpms | 0.5.1 |
rpostgis | 1.5.1 | RPostgres | 1.4.6 |
RPostgreSQL | 0.7-6 | RPPairwiseDesign | 1.0 |
RPresto | 1.4.6 | rprintf | 0.2.1 |
RprobitB | 1.1.4 | rprojroot | 2.0.4 |
RPushbullet | 0.3.4 | RPyGeo | 1.0.0 |
rpymat | 0.1.7 | RQuantLib | 0.4.17 |
rrcov | 1.7-5 | rredlist | 0.7.1 |
rrefine | 2.1.0 | RRNA | 1.0 |
RRPP | 2.0.0 | RRreg | 0.7.5 |
RRTCS | 0.0.4 | rrum | 0.2.1 |
rsae | 0.3 | RSAGA | 1.4.0 |
Rsagacmd | 0.4.2 | rsample | 1.2.1 |
Rsamtools | 2.16.0 | RSclient | 0.7-10 |
rscopus | 0.6.6 | rsdmx | 0.6-3 |
rSEA | 2.1.1 | RSEIS | 4.2-0 |
RSelenium | 1.7.9 | rsem | 0.5.1 |
Rserve | 1.8-13 | Rsfar | 0.0.1 |
RSGHB | 1.2.2 | RSiteCatalyst | 1.4.16 |
rsm | 2.10.4 | RSmartlyIO | 0.1.3 |
rsoi | 0.5.6 | Rsolnp | 1.16 |
rspa | 0.2.8 | rsparse | 0.5.1 |
RSpectra | 0.16-1 | RSQLite | 2.3.6 |
Rssa | 1.0.5 | rstac | 1.0.0 |
rstan | 2.32.6 | rstanarm | 2.32.1 |
rstantools | 2.4.0 | rstatix | 0.7.2 |
rstiefel | 1.0.1 | rStrava | 1.3.1 |
rstudioapi | 0.16.0 | rsurface | 1.1.0 |
RSurveillance | 0.2.1 | rsvd | 1.0.5 |
rsvg | 2.6.0 | Rsymphony | 0.1-33 |
rTensor | 1.4.8 | rtf | 0.4-14.1 |
RTFA | 0.1.0 | rticles | 0.27 |
RTL | 1.3.5 | rtoot | 0.3.4 |
rtop | 0.6-9 | rtracklayer | 1.60.1 |
RTransferEntropy | 0.2.21 | rtrim | 2.1.1 |
rts | 1.1-14 | Rtsne | 0.17 |
Rttf2pt1 | 1.3.12 | rtweet | 2.0.0 |
rucrdtw | 0.1.6 | rugarch | 1.5-1 |
ruimtehol | 0.3.2 | ruin | 0.1.1 |
rules | 1.0.2 | runexp | 0.2.1 |
RUnit | 0.4.33 | runjags | 2.2.2-4 |
runner | 0.4.4 | runstats | 1.1.0 |
Runuran | 0.38 | rust | 1.4.2 |
ruv | 0.9.7.1 | Rvcg | 0.22.2 |
rversions | 2.1.2 | rvest | 1.0.4 |
Rvmmin | 2018-4.17.1 | Rwave | 2.6-5 |
RWDataPlyr | 0.6.4 | RWeka | 0.4-46 |
RWekajars | 3.9.3-2 | rworldmap | 1.3-8 |
rworldxtra | 1.01 | rwunderground | 0.1.8 |
rxode2 | 2.1.2 | rxode2et | 2.0.12 |
rxode2ll | 2.0.11 | rxode2parse | 2.0.18 |
rxode2random | 2.0.13 | RYandexTranslate | 1.0 |
s2 | 1.1.6 | S4Arrays | 1.0.6 |
S4Vectors | 0.38.1 | sae | 1.3 |
saeRobust | 0.5.0 | saeSim | 0.11.0 |
SAEval | 1.0.0 | safetensors | 0.1.2 |
samadb | 0.2.6 | sampleSelection | 1.2-12 |
samplesize | 0.2-4 | sampling | 2.10 |
SamplingBigData | 1.0.0 | samplingbook | 1.2.4 |
SamplingStrata | 1.5-4 | samplingVarEst | 1.5 |
samr | 3.0 | sandwich | 3.1-0 |
sarima | 0.9.3 | SAScii | 1.0.2 |
sass | 0.4.9 | satellite | 1.0.5 |
sazedR | 2.0.2 | sbgcop | 0.980 |
SBN | 1.0.0 | ScaledMatrix | 1.8.1 |
scales | 1.3.0 | scalreg | 1.0.1 |
scam | 1.2-16 | scatterD3 | 1.0.1 |
scattermore | 1.2 | scatterplot3d | 0.3-44 |
scBio | 0.1.6 | sccore | 1.0.5 |
scholar | 0.2.4 | SCI | 1.0-2 |
scINSIGHT | 0.1.4 | scLink | 1.0.1 |
scoper | 1.3.0 | scoringRules | 1.1.1 |
scoringutils | 1.2.2 | SCORPIUS | 1.0.9 |
ScottKnott | 1.3-2 | scs | 3.2.4 |
scSorter | 0.0.2 | scTenifoldKnk | 1.0.1 |
scTenifoldNet | 1.3 | sctransform | 0.4.1 |
SDaA | 0.1-5 | sdcHierarchies | 0.21.0 |
sdcMicro | 5.7.8 | sdcSpatial | 0.5.2 |
sdcTable | 0.32.6 | sde | 2.0.18 |
sdmTMB | 0.5.0 | sdpt3r | 0.3 |
sealasso | 0.1-3 | searchConsoleR | 0.4.0 |
seas | 0.6-0 | season | 0.3.15 |
seasonal | 1.9.0 | seasonalview | 0.3 |
seastests | 0.15.4 | secretbase | 0.4.0 |
secsse | 3.0.2 | seer | 1.1.8 |
seg | 0.5-7 | segmented | 2.0-4 |
SelectBoost | 2.2.2 | selectr | 0.4-2 |
seleniumPipes | 0.3.7 | sem | 3.1-15 |
semantic.assets | 1.1.0 | semds | 0.9-6 |
SemiPar | 1.0-4.2 | semmcmc | 0.0.6 |
semPlot | 1.1.6 | SEMsens | 1.5.5 |
semsfa | 1.1 | semTools | 0.5-6 |
semtree | 0.9.20 | semver | 0.2.0 |
sendmailR | 1.4-0 | SensoMineR | 1.27 |
sentencepiece | 0.2.3 | separationplot | 1.4 |
seqDesign | 1.2 | seqgendiff | 1.2.3 |
seqinr | 4.2-36 | SeqNet | 1.1.3 |
seriation | 1.5.5 | servr | 0.30 |
sessioninfo | 1.2.2 | setartree | 0.2.1 |
setRNG | 2024.2-1 | sets | 1.0-25 |
settings | 0.2.7 | Seurat | 5.0.3 |
SeuratObject | 5.0.1 | sf | 1.0-16 |
sFFLHD | 0.1.2 | sfheaders | 0.4.4 |
sfsmisc | 1.1-17 | sftime | 0.2-0 |
sgd | 1.1.2 | sgeostat | 1.0-27 |
shades | 1.4.0 | shape | 1.4.6.1 |
shapefiles | 0.7.2 | shapes | 1.2.7 |
SharpeR | 1.3.0 | shazam | 1.2.0 |
ShiftConvolvePoibin | 1.0.0 | shiny | 1.8.1.1 |
shiny.semantic | 0.5.1 | shinyAce | 0.4.2 |
shinyalert | 3.0.0 | shinybrms | 1.8.0 |
shinyBS | 0.61.1 | shinybusy | 0.3.3 |
shinycssloaders | 1.0.0 | shinydashboard | 0.7.2 |
shinydashboardPlus | 2.0.4 | shinyFiles | 0.9.3 |
ShinyItemAnalysis | 1.5.1 | shinyjqui | 0.4.1 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinytest | 1.5.4 | shinythemes | 1.2.0 |
shinyTree | 0.3.1 | shinyWidgets | 0.8.6 |
showimage | 1.0.0 | showtext | 0.9-7 |
showtextdb | 3.0 | SIBERG | 2.0.3 |
sigmoid | 1.4.0 | Signac | 1.13.0 |
SignacX | 2.2.5 | signal | 1.8-0 |
signs | 0.1.2 | sigora | 3.1.1 |
SigTree | 1.10.6 | Sim.DiffProc | 4.9 |
simcdm | 0.1.2 | SimComp | 3.3 |
simex | 1.8 | simfinapi | 1.0.0 |
simglm | 0.8.9 | SimilarityMeasures | 1.4 |
SimInf | 9.7.0 | SIMMS | 1.3.2 |
simpleboot | 1.1-7 | simPop | 2.1.3 |
simputation | 0.2.8 | simrel | 2.1.0 |
SiMRiv | 1.0.6 | simsem | 0.5-16 |
SimSurvey | 0.1.6 | SingleCellExperiment | 1.22.0 |
singleCellHaystack | 1.0.2 | singleRcapture | 0.2.1.1 |
singscore | 1.20.0 | siplab | 1.6 |
sirt | 4.1-15 | sitmo | 2.0.2 |
sits | 1.4.2-1 | sjlabelled | 1.2.0 |
sjmisc | 2.8.9 | SkewHyperbolic | 0.4-2 |
skmeans | 0.2-16 | skpr | 1.7.1 |
slackr | 3.3.1 | slam | 0.1-50 |
SLBDD | 0.0.4 | sleekts | 1.0.2 |
sleeperapi | 1.0.4 | Sleuth2 | 2.0-7 |
Sleuth3 | 1.0-6 | slfm | 1.0.2 |
SLHD | 2.1-1 | slider | 0.3.1 |
slippymath | 0.3.1 | sm | 2.2-6.0 |
smacof | 2.1-6 | smacpod | 2.6 |
SmallCountRounding | 1.0.3 | smam | 0.7.2 |
smapr | 0.2.1 | smerc | 1.8.3 |
smoof | 1.6.0.3 | smooth | 4.0.1 |
smoother | 1.3 | smoothr | 1.0.1 |
smoots | 1.1.4 | smovie | 1.1.6 |
SMPracticals | 1.4-3.1 | sms | 2.3.1 |
SMVar | 1.3.4 | sn | 2.1.1 |
sna | 2.7-2 | snakecase | 0.11.1 |
snow | 0.4-4 | SnowballC | 0.7.1 |
snowfall | 1.84-6.3 | snvecR | 3.9.3 |
SOAs | 1.4 | soc.ca | 0.8.0 |
socceR | 0.1.1 | socialmixr | 0.3.2 |
sodium | 1.3.1 | sofa | 0.4.0 |
SoilHyP | 0.1.7 | soilhypfit | 0.1-7 |
soilwater | 1.0.5 | solaR | 0.46 |
solartime | 0.0.2 | solrium | 1.2.0 |
solvebio | 2.14.0 | soma | 1.2.0 |
sonicLength | 1.4.7 | sorvi | 0.8.21 |
SoupX | 1.6.2 | sourcetools | 0.1.7-1 |
sp | 2.1-3 | sp23design | 0.9-1 |
spacetime | 1.3-1 | spam | 2.10-0 |
spaMM | 4.4.16 | spant | 2.19.0 |
sparklyr | 1.8.5 | sparktex | 0.1 |
sparr | 2.3-10 | sparseDFM | 1.0 |
SparseFactorAnalysis | 1.0 | sparseinv | 0.1.3 |
SparseM | 1.81 | sparseMatrixStats | 1.12.2 |
sparseMVN | 0.2.2 | sparsevar | 0.1.0 |
spatgraphs | 3.4 | spatialCovariance | 0.6-9 |
SpatialEpi | 1.2.8 | SpatialExtremes | 2.1-0 |
SpatialPosition | 2.1.2 | spatialprobit | 1.0.4 |
spatialreg | 1.3-2 | spatialsample | 0.5.1 |
SpatialTools | 1.0.5 | spatialwidget | 0.2.5 |
spatstat | 3.0-8 | spatstat.data | 3.0-4 |
spatstat.explore | 3.2-7 | spatstat.geom | 3.2-9 |
spatstat.linnet | 3.1-5 | spatstat.model | 3.2-11 |
spatstat.random | 3.2-3 | spatstat.sparse | 3.0-3 |
spatstat.utils | 3.0-4 | spBayes | 0.4-7 |
spBayesSurv | 1.1.8 | Spbsampling | 1.3.5 |
spd | 2.0-1 | spData | 2.3.0 |
spdep | 1.3-3 | spec | 0.1.9 |
spectral | 2.0 | speff2trial | 1.0.5 |
SPEI | 1.8.1 | spelling | 2.3.0 |
sperrorest | 3.0.5 | sphet | 2.0 |
spiderbar | 0.2.5 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-19 | spINAR | 0.2.0 |
spind | 2.2.1 | splancs | 2.01-44 |
SPLICE | 1.1.2 | splines2 | 0.5.1 |
splm | 1.6-5 | spls | 2.2-3 |
splus2R | 1.3-5 | spmodel | 0.6.0 |
spmoran | 0.2.3 | SportsTour | 0.1.0 |
sportyR | 2.2.2 | SPOT | 2.11.14 |
SpotSampling | 0.1.0 | spselect | 0.0.1 |
spsur | 1.0.2.5 | spsurvey | 5.5.1 |
spTimer | 3.3.2 | sptotal | 1.0.1 |
sqldf | 0.4-11 | SqlRender | 1.17.0 |
SQRL | 1.0.2 | SQUAREM | 2021.1 |
srvyr | 1.2.0 | ssanv | 1.1 |
SSBtools | 1.5.0 | ssfa | 1.2.2 |
ssgraph | 1.15 | ssize.fdr | 1.3 |
ssizeRNA | 1.3.2 | ssMousetrack | 1.1.6 |
ssmrob | 1.0 | SSN | 1.1.17 |
stable | 1.1.6 | stabledist | 0.7-1 |
stabs | 0.6-4 | staggered | 1.1 |
stampr | 0.3.1 | StanHeaders | 2.32.6 |
StanMoMo | 1.2.0 | stargazer | 5.2.3 |
starma | 1.3 | stars | 0.6-5 |
starter | 0.1.15 | STARTS | 1.3-8 |
startupmsg | 0.9.6.1 | statcanR | 0.2.6 |
statcodelists | 0.9.2 | statebins | 1.4.0 |
statespacer | 0.5.0 | stationaRy | 0.5.1 |
statip | 0.2.3 | StatMatch | 1.4.1 |
statmod | 1.5.0 | statnet.common | 4.9.0 |
StatRank | 0.0.6 | steadyICA | 1.0 |
SteinIV | 0.1-1 | STFTS | 0.1.0 |
stinepack | 1.5 | stlplus | 0.5.1 |
stm | 1.3.7 | STMedianPolish | 0.2 |
StMoMo | 0.4.1 | stochprofML | 2.0.3 |
stochQN | 0.1.2-1 | stochvol | 3.2.4 |
stockAnalyst | 1.0.1 | stopwords | 2.3 |
storr | 1.2.5 | stplanr | 1.1.2 |
stR | 0.6 | strand | 0.2.0 |
strap | 1.6-0 | stratification | 2.2-7 |
streamDepletr | 0.2.0 | streamR | 0.4.5 |
stringdist | 0.9.12 | stringfish | 0.16.0 |
stringi | 1.8.3 | stringmagic | 1.1.0 |
stringr | 1.5.1 | strucchange | 1.5-3 |
strucchangeRcpp | 1.5-3-1.0.4 | StructuralDecompose | 0.1.1 |
styler | 1.10.3 | subplex | 1.8 |
subscore | 3.3 | sufficientForecasting | 0.1.0 |
sugrrants | 0.2.9 | SummarizedExperiment | 1.30.2 |
summclust | 0.7.2 | suntools | 1.0.0 |
supclust | 1.1-1 | SuperLearner | 2.0-29 |
superml | 0.5.7 | superpc | 1.12 |
SuppDists | 1.1-9.7 | support.CEs | 0.7-0 |
surface | 0.5 | SurrogateRegression | 0.6.0.1 |
suRtex | 0.9 | survcomp | 1.50.0 |
surveillance | 1.22.1 | survey | 4.4-2 |
surveybootstrap | 0.0.3 | surveydata | 0.2.7 |
surveyoutliers | 0.1 | surveyplanning | 4.0 |
surveysd | 1.3.1 | survival666 | 0.5 |
survivalROC | 1.0.3.1 | survminer | 0.4.9 |
survMisc | 0.5.6 | survPresmooth | 1.1-11 |
sva | 3.48.0 | svars | 1.3.11 |
svd | 0.5.5 | svDialogs | 1.1.0 |
SVDNF | 0.1.8 | svglite | 2.1.3 |
svGUI | 1.0.1 | svrep | 0.6.3 |
svs | 3.0.0 | svUnit | 1.0.6 |
swagger | 3.33.1 | swephR | 0.3.1 |
SwimmeR | 0.14.2 | swirl | 2.4.5 |
swirlify | 0.5.3 | switchr | 0.14.8 |
sylly | 0.1-6 | sym.arma | 1.0 |
symengine | 0.2.6 | symmoments | 1.2.1 |
SYNCSA | 1.3.4 | Synth | 1.1-8 |
synthACS | 1.7.1 | synthesis | 1.2.4 |
SynthETIC | 1.1.0 | synthpop | 1.8-0 |
sys | 3.4.2 | sysfonts | 0.8.9 |
systemfit | 1.1-30 | systemfonts | 1.0.6 |
table1 | 1.4.3 | tables | 0.9.25 |
tabnet | 0.5.0 | tabuSearch | 1.1.1 |
TAF | 4.2.0 | tagcloud | 0.6 |
TailRank | 3.2.2 | TAM | 4.2-21 |
TAQMNGR | 2018.5-1 | targets | 1.7.0 |
tau | 0.0-25 | taxize | 0.9.100 |
TBRDist | 1.0.2 | tbrf | 0.1.5 |
TCA | 1.2.1 | TcGSA | 0.12.10 |
tcltk2 | 1.2-11 | Tcomp | 1.0.1 |
tdigest | 0.4.1 | TeachingDemos | 2.13 |
teamcolors | 0.0.4 | telegram.bot | 3.0.0 |
telemac | 0.1.1 | tempdisagg | 1.1.1 |
tensor | 1.5 | tensorA | 0.36.2.1 |
tensorflow | 2.16.0 | TensorPreAve | 1.1.0 |
tensorTS | 1.0.1 | TEQR | 6.0-0 |
tergm | 4.2.0 | Ternary | 2.3.1 |
terra | 1.7-71 | TESS | 2.1.2 |
tesseract | 5.2.1 | testcorr | 0.2.0 |
TestDataImputation | 2.3 | TestDesign | 1.6.1 |
tester | 0.2.0 | TestFunctions | 0.2.1 |
testit | 0.13 | TestScorer | 1.7.2 |
testthat | 3.2.1.1 | TexExamRandomizer | 1.2.7 |
texreg | 1.39.3 | text2vec | 0.6.4 |
textcat | 1.0-8 | textir | 2.0-5 |
textplot | 0.2.2 | textrank | 0.3.1 |
textreuse | 0.1.5 | textshaping | 0.3.7 |
textTinyR | 1.1.8 | tfarima | 0.3.2 |
tfautograph | 0.3.2 | tfdatasets | 2.9.0 |
tfio | 0.4.1 | TFisher | 0.2.0 |
tfplot | 2021.6-1 | tframe | 2015.12-1.1 |
tfruns | 1.5.3 | tgp | 2.4-22 |
TH.data | 1.1-2 | theft | 0.6.1 |
thief | 0.3 | ThreeArmedTrials | 1.0-4 |
threeBrain | 1.0.1 | ThreeGroups | 0.21 |
threejs | 0.3.3 | ThreeWay | 1.1.3 |
thurstonianIRT | 0.12.5 | tibble | 3.2.1 |
tibbletime | 0.1.8 | tictoc | 1.2.1 |
Tides | 2.1 | tidyBdE | 0.3.6 |
tidycensus | 1.6.3 | tidyestimate | 1.1.1 |
tidygraph | 1.3.1 | tidyhydat | 0.6.1 |
tidyLPA | 1.1.0 | tidymodels | 1.2.0 |
tidyquant | 1.0.7 | tidyqwi | 0.1.2 |
tidyr | 1.3.1 | tidyREDCap | 1.1.1 |
tidyRSS | 2.0.7 | tidyselect | 1.2.1 |
tidysynth | 0.2.0 | tidytable | 0.11.0 |
tidyterra | 0.6.0 | tidytext | 0.4.2 |
tidytree | 0.4.6 | tidyverse | 2.0.0 |
tiff | 0.1-12 | tigris | 2.1 |
tikzDevice | 0.12.6 | timechange | 0.3.0 |
timeDate | 4032.109 | timeSeries | 4032.109 |
timeseriesdb | 1.0.0-1.1.2 | timetk | 2.9.0 |
timsac | 1.3.8-4 | tinyProject | 0.6.1 |
tinytable | 0.2.1 | tinytex | 0.50 |
tis | 1.39 | tkrplot | 0.0-27 |
TLMoments | 0.7.5.3 | tm | 0.7-13 |
tm.plugin.alceste | 1.1.1 | tm.plugin.dc | 0.2-10 |
tm.plugin.europresse | 1.4 | tm.plugin.factiva | 1.8 |
tm.plugin.lexisnexis | 1.4.1 | tm.plugin.mail | 0.2-2 |
tmap | 3.3-4 | tmaptools | 3.1-1 |
TMB | 1.9.11 | Tmisc | 1.0.1 |
tmod | 0.50.13 | tmvnsim | 1.0-2 |
tmvtnorm | 1.6 | tnet | 3.0.16 |
tokenizers | 0.3.0 | tokenizers.bpe | 0.1.3 |
toOrdinal | 1.3-0.0 | topicdoc | 0.1.1 |
topicmodels | 0.2-16 | topicmodels.etm | 0.1.0 |
topmodel | 0.7.5 | toprdata | 1.0.2 |
torch | 0.12.0 | torchaudio | 0.3.1.9000 |
torchdatasets | 0.3.0 | torchvision | 0.5.1 |
tpr | 0.3-3 | tracerer | 2.2.3 |
trackdem | 0.6 | trackdf | 0.3.3 |
trackdown | 1.1.1 | trackeR | 1.6.0 |
trackeRapp | 1.2 | TrackReconstruction | 1.3 |
tractor.base | 3.4.2 | traipse | 0.3.0 |
trajectories | 0.2-8 | TrajectoryUtils | 1.8.0 |
trajr | 1.5.1 | transformr | 0.1.5 |
transfR | 1.0.11 | TransPhylo | 1.4.5 |
trapezoid | 2.0-2 | traudem | 1.0.3 |
tree | 1.0-43 | treebase | 0.1.5 |
TreeBUGS | 1.5.0 | treedater | 0.5.0 |
TreeDist | 2.7.0 | treefit | 1.0.2 |
treeio | 1.24.0 | treemap | 2.4-4 |
TreeSearch | 1.5.0 | TreeSim | 2.4 |
treespace | 1.1.4.3 | TreeTools | 1.10.0 |
trend | 1.1.6 | trendeval | 0.1.0 |
trending | 0.1.0 | TrialSize | 1.4 |
triangle | 1.0 | triebeard | 0.4.1 |
trimcluster | 0.1-5 | trip | 1.10.0 |
tripack | 1.3-9.1 | tripEstimation | 0.0-46 |
TripleR | 1.5.4 | TruncatedNormal | 2.2.2 |
truncdist | 1.0-2 | truncnorm | 1.0-9 |
truncreg | 0.2-5 | trust | 0.1-8 |
trustOptim | 0.8.7.3 | tryCatchLog | 1.3.1 |
TSA | 1.3.1 | TSANN | 0.1.0 |
tsbox | 0.4.1 | tsBSS | 1.0.0 |
TSCAN | 1.38.0 | TSclust | 1.3.1 |
tscount | 1.4.3 | tsdb | 1.1-0 |
tsdecomp | 0.2 | TSdeeplearning | 0.1.0 |
tsdisagg2 | 0.1.0 | TSdisaggregation | 2.0.0 |
TSdist | 3.7.1 | tsDyn | 11.0.4.1 |
TSEntropies | 0.9 | tseries | 0.10-55 |
tseriesChaos | 0.1-13.1 | tseriesEntropy | 0.7-2 |
tseriesTARMA | 0.3-4 | tsfeatures | 1.1.1 |
tsfknn | 0.6.0 | tsibble | 1.1.4 |
tsibbledata | 0.4.1 | tsibbletalk | 0.1.0 |
tsintermittent | 1.10 | tsiR | 0.4.3 |
TSLSTM | 0.1.0 | tsModel | 0.6-1 |
tsne | 0.1-3.1 | tsoutliers | 0.6-10 |
TSP | 1.2-4 | tsPI | 1.0.4 |
TSrepr | 1.1.0 | tsrobprep | 0.3.2 |
tssim | 0.1.7 | TSstudio | 0.1.7 |
TSTutorial | 1.2.7 | tsutils | 0.9.4 |
tswge | 2.1.0 | tth | 4.12-0-1 |
TTR | 0.24.4 | tufterhandout | 1.2.1 |
tune | 1.2.1 | turner | 0.1.9 |
TUWmodel | 1.1-1 | tvm | 0.5.2 |
tweedie | 2.3.5 | tweenr | 2.0.3 |
twosamples | 2.0.1 | TxDb.Hsapiens.UCSC.hg19.knownGene | 3.2.2 |
TxDb.Hsapiens.UCSC.hg38.knownGene | 3.17.0 | txtq | 0.2.4 |
tzdb | 0.4.0 | uaparserjs | 0.3.5 |
ubiquity | 2.0.3 | ucminf | 1.2.1 |
UComp | 4.0.2 | udpipe | 0.8.11 |
ufRisk | 1.0.7 | ugatsdb | 0.2.3 |
uGMAR | 3.4.5 | umap | 0.2.10.0 |
uncmbb | 0.2.2 | unglue | 0.1.0 |
UnifiedDoseFinding | 0.1.10 | units | 0.8-5 |
univOutl | 0.4 | unrepx | 1.0-2 |
unrtf | 1.4.5 | UpSetR | 1.4.0 |
uptasticsearch | 0.4.0 | urca | 1.3-3 |
urlchecker | 1.0.1 | urlshorteneR | 1.5.7 |
urltools | 1.7.3 | uroot | 2.1-3 |
USA.state.boundaries | 1.0.1 | usdata | 0.2.0 |
usethis | 2.2.3 | usmap | 0.7.1 |
usmapdata | 0.2.2 | utf8 | 1.2.4 |
utility | 1.4.6 | uuid | 1.2-0 |
uwot | 0.2.2 | V8 | 4.4.2 |
VALERIE | 1.1.0 | validate | 1.1.5 |
validatetools | 0.5.2 | valr | 0.8.1 |
VAM | 1.1.0 | vapour | 0.9.5 |
VAR.etp | 1.1 | varbvs | 2.6-10 |
VARDetect | 0.1.6 | vardiag | 0.2-1 |
vardpoor | 0.20.1 | VaRES | 1.0.2 |
vars | 1.6-1 | VARshrink | 0.3.1 |
varycoef | 0.3.4 | VCA | 1.5.1 |
vcd | 1.4-12 | vcdExtra | 0.8-5 |
vcr | 1.2.2 | vctrs | 0.6.5 |
vdg | 1.2.3 | VedicDateTime | 0.1.9 |
vegan | 2.6-4 | vegperiod | 0.4.0 |
VennDiagram | 1.7.3 | venneuler | 1.1-4 |
VGAM | 1.1-10 | VGAMdata | 1.1-9 |
vglmer | 1.0.3 | vhica | 0.2.8 |
VIC5 | 0.2.6 | VIM | 6.2.2 |
VineCopula | 2.5.0 | vines | 1.1.5 |
vip | 0.4.1 | viridis | 0.6.5 |
viridisLite | 0.4.2 | visNetwork | 2.1.2 |
visualize | 4.5.0 | vkR | 0.2 |
volatilityTrader | 1.0.1 | volcano3D | 2.0.9 |
volleystat | 0.2.0 | vpc | 1.2.2 |
vroom | 1.6.5 | vrtest | 1.2 |
W3CMarkupValidator | 0.1-7 | waiter | 0.2.5 |
waldo | 0.5.2 | warp | 0.2.1 |
washdata | 0.1.4 | WASP | 1.4.3 |
waterData | 1.0.8 | waterquality | 1.0.0 |
Watersheds | 1.1 | WaveletComp | 1.1 |
wavelets | 0.3-0.2 | WaveSampling | 0.1.3 |
waveslim | 1.8.4 | wavethresh | 4.7.2 |
wavScalogram | 1.1.3 | wbstats | 1.0.4 |
wCorr | 1.9.8 | WDI | 2.7.8 |
wdman | 0.2.6 | WebAnalytics | 0.9.12 |
webchem | 1.3.0 | webdriver | 1.0.6 |
WebGestaltR | 0.4.6 | webmockr | 0.9.0 |
webreadr | 0.4.0 | webshot | 0.5.5 |
webshot2 | 0.1.1 | websocket | 1.4.1 |
webutils | 1.2.0 | wehoop | 2.0.0 |
WeightIt | 1.0.0 | weights | 1.0.4 |
welo | 0.1.4 | WeMix | 4.0.3 |
WGCNA | 1.72-5 | WH | 1.1.1 |
whisker | 0.4.1 | whitebox | 2.3.4 |
whitening | 1.4.0 | whoami | 1.3.0 |
widgetframe | 0.3.1 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | wikipediatrend | 2.1.6 |
WikipediR | 1.7.1 | wikitaxa | 0.4.0 |
wildlifeDI | 1.0.0 | windex | 2.0.7 |
wINEQ | 1.2.0 | withr | 3.0.0 |
wk | 0.9.1 | wktmo | 1.0.5 |
wkutils | 0.1.3 | wnl | 0.8.0 |
wooldridge | 1.4-3 | worcs | 0.1.14 |
word2vec | 0.4.0 | wordcloud | 2.6 |
wordnet | 0.1-16 | workflowr | 1.7.1 |
workflows | 1.1.4 | workflowsets | 1.1.0 |
worldfootballR | 0.6.2 | worldmet | 0.9.8 |
worrms | 0.4.3 | wpp2017 | 1.2-3 |
wpp2019 | 1.1-1 | wql | 1.0.0 |
WrightMap | 1.3 | writexl | 1.5.0 |
WriteXLS | 6.5.0 | wrMisc | 1.14.2 |
wrProteo | 1.11.0.1 | WRSS | 3.1 |
wrswoR | 1.1.1 | WRTDStidal | 1.1.4 |
WufooR | 1.0.1 | x12 | 1.10.3 |
x13binary | 1.1.60 | xaringan | 0.30 |
XBRL | 0.99.19.1 | xfun | 0.43 |
xgboost | 1.7.7.1 | xgxr | 1.1.2 |
XLConnect | 1.0.9 | xlsx | 0.6.5 |
xlsxjars | 0.6.1 | XML | 3.99-0.16.1 |
xml2 | 1.3.6 | XML2R | 0.0.6 |
xmlrpc2 | 1.1 | xopen | 1.0.0 |
xplain | 0.2.2 | xpose | 0.4.18 |
xpose.nlmixr2 | 0.4.0 | xpose4 | 4.7.3 |
xslt | 1.4.5 | xtable | 1.8-4 |
xts | 0.13.2 | XVector | 0.40.0 |
xxIRT | 2.1.2 | yaImpute | 1.0-34 |
yaml | 2.3.8 | yardstick | 1.3.1 |
yesno | 0.1.2 | yhatr | 0.15.1 |
yorkr | 0.0.42 | ypssc | 1.1.0 |
yuima | 1.15.27 | yulab.utils | 0.1.4 |
zeallot | 0.1.0 | zen4R | 0.9 |
zic | 0.9.1 | ZIM | 1.1.0 |
ZINARp | 0.1.0 | zip | 2.3.1 |
zipfR | 0.6-70 | zlib | 1.0.3 |
zlibbioc | 1.46.0 | zoo | 1.8-12 |
ZRA | 0.2 | ztable | 0.2.3 |
zTree | 1.0.7 | zyp | 0.11-1 |
RStudio Server
R: 4.3.3
rstudio-server: 2023.12.0+369
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
Added GPU support for tensorflow.
R: 4.3.3; rstudio-server: 2023.12.0+369; CUDA Version: 11.7; GPU Driver Version: 515.43.04
This AMI provides thousands of R packages covering various domains such as data science, machine learning, economitrics, database, finance, official statistics, survey statistics, Bayesian statistics, clinical trials, epidemiology, experimental design, psychometric methodology, analysis of pharmacokinetic data, medical image processing, teaching statistics, time series analysis, analysis of spatial and spatiotemporal data, reproducible research, phylogenetics, web technologies, hydrology, sports analytics, natural language processing, actuarial science, optimization, genomics, proteomics, metabolomics, transcriptomics, and other omics.
R packages (4161)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.0 |
ABCoptim | 0.15.0 | abcrf | 1.9 |
abglasso | 0.1.1 | abind | 1.4-5 |
abtest | 1.0.1 | accrualPlot | 1.0.7 |
acebayes | 1.10 | acepack | 1.4.2 |
acp | 2.1 | acs | 2.1.4 |
ACSWR | 1.0 | ActivePathways | 2.0.3 |
actuar | 3.3-4 | actuaRE | 0.1.5 |
ActuarialM | 0.1.0 | actuaryr | 1.1.1 |
actxps | 1.4.0 | ada | 2.0-5 |
adagio | 0.9.2 | adaptivetau | 2.3 |
adaptMCMC | 1.5 | adaptr | 1.3.2 |
ADAPTS | 1.0.22 | adaptsmoFMRI | 1.2 |
adaptTest | 1.2 | additivityTests | 1.1-4.1 |
ade4 | 1.7-22 | ade4TkGUI | 0.3-1 |
adegenet | 2.1.10 | adegraphics | 1.0-21 |
adehabitatHR | 0.4.21 | adehabitatHS | 0.3.17 |
adehabitatLT | 0.3.27 | adehabitatMA | 0.3.16 |
adephylo | 1.1-16 | ADGofTest | 0.3 |
adimpro | 0.9.6 | adiv | 2.2.1 |
adjclust | 0.6.9 | admisc | 0.34 |
AdMit | 2.1.9 | ads | 1.5-10 |
AdvancedBasketballStats | 1.0.1 | AER | 1.2-12 |
affy | 1.78.0 | affyio | 1.70.0 |
africamonitor | 0.2.4 | agricolae | 1.3-7 |
agricolaeplotr | 0.5.0 | agridat | 1.23 |
agriwater | 1.0.2 | agvgd | 0.1.2 |
AhoCorasickTrie | 0.1.2 | airGR | 1.7.6 |
airGRdatassim | 0.1.3 | airGRiwrm | 0.6.2 |
airGRteaching | 0.3.2 | airports | 0.1.0 |
airr | 1.5.0 | ajv | 1.0.0 |
akima | 0.6-3.4 | alabama | 2023.1.0 |
alakazam | 1.3.0 | aLFQ | 1.3.6 |
AlgDesign | 1.2.1 | aliases2entrez | 0.1.2 |
almanac | 1.0.0 | alpaca | 0.3.4 |
alphavantager | 0.1.3 | ALTopt | 0.1.2 |
Amelia | 1.8.1 | AmericanCallOpt | 0.95 |
ammiBayes | 1.0-2 | ampir | 1.1.0 |
AMR | 2.1.1 | anabel | 3.0.1 |
AnaCoDa | 0.1.4.4 | anacor | 1.1-4 |
analogsea | 1.0.7.2 | anesrake | 0.80 |
animation | 2.7 | anipaths | 0.10.3 |
anMC | 0.2.5 | annotate | 1.78.0 |
AnnotationBustR | 1.3.0 | AnnotationDbi | 1.62.1 |
AnnuityRIR | 1.0-0 | Anthropometry | 1.19 |
anytime | 0.3.9 | ao | 0.3.3 |
aod | 1.3.3 | aoos | 0.5.0 |
AovBay | 0.1.0 | apc | 2.0.0 |
apcluster | 1.4.11 | ape | 5.7-1 |
APFr | 1.0.2 | aphid | 1.3.5 |
aphylo | 0.3-3 | aplot | 0.2.2 |
apollo | 0.3.1 | approximator | 1.2-8 |
apt | 3.0 | ARCensReg | 3.0.1 |
ArchaeoChron | 0.1 | ArchaeoPhases | 1.8 |
archetypes | 2.2-0.1 | archivist | 2.3.6 |
ArDec | 2.1-1 | ARDL | 0.2.4 |
ardl.nardl | 1.3.0 | areal | 0.1.8 |
arfima | 1.8-1 | argparse | 2.2.2 |
arm | 1.13-1 | aroma.apd | 0.7.0 |
arpr | 0.1.2 | arrangements | 1.1.9 |
arrow | 14.0.2.1 | ars | 0.6 |
aRxiv | 0.10 | ascii | 2.6 |
asd | 2.2 | ash | 1.0-15 |
ashr | 2.2-63 | AsioHeaders | 1.22.1-2 |
askpass | 1.2.0 | aspect | 1.0-6 |
ASSA | 2.0 | assertive.base | 0.0-9 |
assertive.files | 0.0-2 | assertive.numbers | 0.0-2 |
assertthat | 0.2.1 | AssetCorr | 1.0.4 |
astrochron | 1.2 | astsa | 2.1 |
asymmetry | 2.0.4 | ata | 1.1.1 |
atom4R | 0.3-3 | atRisk | 0.1.0 |
aTSA | 3.1.2.1 | attempt | 0.3.1 |
attention | 0.4.0 | AUC | 0.3.2 |
audio | 0.1-11 | autoFRK | 1.4.3 |
autoimage | 2.2.3 | automap | 1.1-9 |
autostsm | 3.1.3 | av | 0.9.0 |
aweek | 1.0.3 | aws | 2.5-5 |
aws.signature | 0.6.0 | awsMethods | 1.1-1 |
AzureAuth | 1.3.3 | AzureCognitive | 1.0.1 |
AzureContainers | 1.3.2 | AzureCosmosR | 1.0.0 |
AzureGraph | 1.3.4 | AzureKusto | 1.1.3 |
AzureQstor | 1.0.1 | AzureRMR | 2.4.4 |
AzureStor | 3.7.0 | AzureTableStor | 1.0.0 |
AzureVision | 1.0.2 | AzureVM | 2.2.2 |
babelgene | 22.9 | babelwhale | 1.2.0 |
BACCO | 2.1-0 | BACCT | 1.0 |
backports | 1.4.1 | backtest | 0.3-4 |
bacondecomp | 0.1.1 | baggr | 0.7.8 |
bain | 0.2.10 | BalancedSampling | 2.0.6 |
BaM | 1.0.3 | bama | 1.3.0 |
bamdit | 3.4.0 | bamlss | 1.2-2 |
BAMMtools | 2.1.11 | bang | 1.0.3 |
BANOVA | 1.2.1 | BarcodingR | 1.0-3 |
BART | 2.9.6 | bartBMA | 1.0 |
bartCause | 1.0-6 | bartMachine | 1.3.4.1 |
bartMachineJARs | 1.2.1 | BAS | 1.7.1 |
basad | 0.3.0 | base64 | 2.0.1 |
base64enc | 0.1-3 | base64url | 1.4 |
baseballDBR | 0.1.2 | basicMCMCplots | 0.2.7 |
BASiNET | 0.0.5 | BaSkePro | 1.1.1 |
BasketballAnalyzeR | 0.5.0 | BASS | 1.3.1 |
BatchExperiments | 1.4.3 | BatchJobs | 1.9 |
batchmeans | 1.0-4 | BAwiR | 1.3.2 |
baycn | 1.2.0 | bayefdr | 0.2.1 |
bayes4psy | 1.2.12 | bayesAB | 1.1.3 |
bayesammi | 0.1.0 | bayesanova | 1.5 |
BayesARIMAX | 0.1.1 | BayesBinMix | 1.4.1 |
bayesbio | 1.0.0 | bayesboot | 0.2.2 |
BayesBP | 1.1 | bayesbr | 0.0.1.0 |
BayesCACE | 1.2.3 | BayesCombo | 1.0 |
BayesComm | 0.1-2 | bayescopulareg | 0.1.3 |
bayescount | 0.9.99-9 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.3.3 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.7 |
BayesFM | 0.1.5 | bayesforecast | 1.0.1 |
bayesGAM | 0.0.2 | bayesGARCH | 2.1.10 |
BayesGOF | 5.2 | BayesGPfit | 1.1.0 |
BayesGWQS | 0.1.1 | bayesian | 0.0.9 |
bayesianETAS | 1.0.3 | Bayesiangammareg | 0.1.0 |
BayesianGLasso | 0.2.0 | BayesianLaterality | 0.1.2 |
BayesianNetwork | 0.3 | BayesianTools | 0.1.8 |
bayesImageS | 0.6-1 | BayesLCA | 1.9 |
bayesLife | 5.2-0 | bayeslincom | 1.3.0 |
BayesLN | 0.2.10 | BayesLogit | 2.1 |
bayesloglin | 1.0.1 | bayeslongitudinal | 0.1.0 |
bayesm | 3.1-6 | BayesMallows | 2.0.1 |
BayesMassBal | 1.1.0 | bayesmeta | 3.4 |
bayesmix | 0.7-6 | bayesnec | 2.1.1.0 |
bayesplot | 1.11.1 | bayesQR | 2.4 |
BayesSAE | 1.0-2 | bayestestR | 0.13.2 |
bayesTFR | 7.4-2 | BayesTools | 0.2.17 |
BayesTree | 0.3-1.5 | BayesVarSel | 2.2.5 |
BayesX | 0.3-3 | BAYSTAR | 0.2-10 |
baytrends | 2.0.11 | BB | 2019.10-1 |
BBmisc | 1.13 | bbmle | 1.0.25.1 |
bbotk | 0.8.0 | BCBCSF | 1.0-1 |
BCC1997 | 0.1.1 | BCE | 2.2.0 |
Bchron | 4.7.6 | BClustLonG | 0.1.3 |
bcp | 4.0.3 | bcpa | 1.3.2 |
bcrm | 0.5.4 | BDgraph | 2.72 |
bdrc | 1.1.0 | bdsmatrix | 1.3-7 |
BE | 0.2.4 | beachmat | 2.16.0 |
beadarray | 2.50.0 | BeadDataPackR | 1.52.0 |
beakr | 0.4.3 | bearishTrader | 1.0.2 |
BED | 1.5.0 | beepr | 1.3 |
beeswarm | 0.4.0 | benchmarkme | 1.0.8 |
benchmarkmeData | 1.0.4 | BenfordTests | 1.2.0 |
bentcableAR | 0.3.1 | Bergm | 5.0.7 |
berryFunctions | 1.22.5 | Bessel | 0.6-0 |
BEST | 0.5.4 | BetaBit | 2.2 |
betafunctions | 1.8.1 | betapart | 1.6 |
betareg | 3.1-4 | betategarch | 3.3 |
BETS | 0.4.9 | bets.covid19 | 1.0.0 |
beyondWhittle | 1.2.0 | bezier | 1.1.2 |
bfast | 1.6.1 | BFpack | 1.2.3 |
BGGM | 2.1.1 | BGLR | 1.1.1 |
BGVAR | 2.5.5 | bgw | 0.1.2 |
BH | 1.84.0-0 | BHH2 | 2016.05.31 |
BiasCorrector | 0.2.2 | BiasedUrn | 2.0.11 |
bibtex | 0.5.1 | biclust | 2.0.3.1 |
bidask | 2.0.2 | bife | 0.7.2 |
BIFIEsurvey | 3.5-19 | biganalytics | 1.1.21 |
bigchess | 1.9.1 | bigD | 0.2.0 |
bigleaf | 0.8.2 | biglm | 0.9-2.1 |
bigmemory | 4.6.4 | bigmemory.sri | 0.1.8 |
bigrquery | 1.5.0 | bigsplines | 1.1-1 |
bigtime | 0.2.3 | BigVAR | 1.1.2 |
bimets | 3.0.2 | bindr | 0.1.1 |
bindrcpp | 0.2.3 | binman | 0.1.3 |
binom | 1.1-1.1 | binomSamSize | 0.1-5 |
binr | 1.1.1 | binseqtest | 1.0.4 |
bio3d | 2.4-4 | Biobase | 2.60.0 |
BiocFileCache | 2.8.0 | BiocGenerics | 0.46.0 |
BiocIO | 1.10.0 | BiocManager | 1.30.22 |
BiocParallel | 1.34.1 | BiocSingular | 1.16.0 |
BiocVersion | 3.17.1 | bioinactivation | 1.2.3 |
BioInsight | 0.3.1 | biomaRt | 2.56.1 |
biomartr | 1.0.7 | biomformat | 1.28.0 |
bioOED | 0.2.1 | bioseq | 0.1.4 |
Biostrings | 2.68.0 | biotic | 0.1.2 |
bipartite | 2.19 | birtr | 1.0.0 |
BisqueRNA | 1.0.5 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
biwavelet | 0.20.21 | bizdays | 1.0.16 |
bkmr | 0.2.2 | blaise | 1.3.11 |
blastula | 0.3.5 | blavaan | 0.5-3 |
BLModel | 1.0.2 | blob | 1.2.4 |
blocklength | 0.1.5 | blockmatrix | 1.0 |
blockrand | 1.5 | blocksdesign | 4.9 |
blockTools | 0.6.4 | blogdown | 1.19 |
BLR | 1.6 | BMA | 3.18.17 |
bmgarch | 2.0.0 | BMisc | 1.4.5 |
bmixture | 1.7 | BMS | 0.3.5 |
BMTAR | 0.1.1 | bnlearn | 4.9.1 |
BNPTSclust | 2.0 | BNSP | 2.2.3 |
bnstruct | 1.0.15 | boa | 1.1.8-2 |
boilerpipeR | 1.3.2 | BOIN | 2.7.2 |
bold | 1.3.0 | Bolstad | 0.2-41 |
Bolstad2 | 1.0-29 | bondAnalyst | 1.0.1 |
bookdown | 0.37 | Boom | 0.9.15 |
BoomSpikeSlab | 1.2.6 | bootnet | 1.6 |
BootPR | 1.0 | bootstrap | 2019.6 |
bootUR | 1.0.3 | BoSSA | 3.7 |
boussinesq | 1.0.6 | boxr | 0.3.6 |
bpca | 1.3-6 | bqtl | 1.0-36 |
BradleyTerry2 | 1.1-2 | brainR | 1.6.0 |
brandwatchR | 0.3.0 | breakfast | 2.3 |
brew | 1.0-10 | brglm | 0.7.2 |
brglm2 | 0.9.2 | bridgesampling | 1.1-2 |
BRINDA | 0.1.5 | brio | 1.1.4 |
brms | 2.20.4 | Brobdingnag | 1.2-9 |
broman | 0.80 | broom | 1.0.5 |
broom.helpers | 1.14.0 | brotli | 1.3.0 |
bsam | 1.1.3 | bsamGP | 1.2.4 |
BSgenome | 1.68.0 | bslib | 0.6.1 |
BsMD | 2023.920 | bspec | 1.6 |
bspmma | 0.1-2 | bssm | 2.0.2 |
BSSprep | 0.1 | bsts | 0.9.10 |
bsvars | 2.1.0 | BTLLasso | 0.1-13 |
BTM | 0.3.7 | bullishTrader | 1.0.1 |
bundesbank | 0.1-11 | BurStFin | 1.3 |
BurStMisc | 1.1 | BVAR | 1.0.5 |
bvartools | 0.2.4 | bvls | 1.4 |
C50 | 0.1.8 | ca | 0.71.1 |
cabinets | 0.6.0 | cabootcrs | 2.1.0 |
cachem | 1.0.8 | cacIRT | 1.4 |
CADFtest | 0.3-3 | caffsim | 0.2.2 |
Cairo | 1.6-2 | CALANGO | 1.0.16 |
calculus | 1.0.1 | calibrate | 1.7.7 |
CalibrateSSB | 1.3.0 | calibrator | 1.2-8 |
callr | 3.7.5 | cancensus | 0.5.7 |
candisc | 0.8-6 | canprot | 1.1.2 |
CANSIM2R | 1.14.1 | caper | 1.0.3 |
captr | 0.3.0 | capushe | 1.1.2 |
car | 3.1-2 | caRamel | 1.3 |
CARBayes | 6.1 | CARBayesdata | 3.0 |
CARBayesST | 4.0 | carData | 3.0-5 |
caret | 6.0-94 | carfima | 2.0.2 |
caribou | 1.1-1 | carrier | 0.1.1 |
cartogram | 0.3.0 | Cascade | 2.1 |
CascadeData | 1.4 | CAST | 0.9.0 |
castor | 1.8.0 | cate | 1.1.1 |
caTools | 1.18.2 | catR | 3.17 |
causact | 0.5.4 | CausalImpact | 1.3.0 |
CAvariants | 6.0 | CB2 | 1.3.4 |
cbioportalR | 1.1.0 | cbsodataR | 1.0.1 |
ccaPP | 0.3.3 | cccp | 0.3-1 |
cdlTools | 0.15 | CDM | 8.2-6 |
CDNmoney | 2012.4-2 | cds | 1.0.3 |
CellNOptR | 1.46.0 | cellranger | 1.1.0 |
censReg | 0.5-36 | censusapi | 0.8.0 |
CEoptim | 1.3 | CePa | 0.8.0 |
CeRNASeek | 2.1.3 | cfbfastR | 1.9.0 |
CFtime | 1.3.0 | ChainLadder | 0.2.18 |
chandwich | 1.1.6 | changepoint | 2.2.4 |
changepoint.geo | 1.0.2 | changepoint.np | 1.0.5 |
checkLuhn | 1.1.0 | checkmate | 2.3.1 |
checkpoint | 1.0.2 | chem.databases | 1.0.0 |
ChemoSpec | 6.1.10 | ChemoSpecUtils | 1.0.4 |
cherryblossom | 0.1.0 | chess | 1.0.1 |
chilemapas | 0.3.0 | chk | 0.9.1 |
CHNOSZ | 2.1.0 | choiceDes | 0.9-3 |
CholWishart | 1.1.2 | choroplethr | 3.7.3 |
choroplethrMaps | 1.0.1 | chromoMap | 4.1.1 |
chromote | 0.2.0 | chron | 2.3-61 |
cifti | 0.4.5 | cinterpolate | 1.0.1 |
circlize | 0.4.16 | CircSpaceTime | 0.9.0 |
CircStats | 0.2-6 | circular | 0.5-0 |
ciTools | 0.6.1 | Ckmeans.1d.dp | 4.3.5 |
Claddis | 0.6.3 | clarabel | 0.5.1 |
clarifai | 0.4.2 | classInt | 0.4-10 |
cli | 3.6.2 | clifro | 3.2-5 |
climatol | 4.0.0 | clime | 0.5.0 |
clinDR | 2.4.1 | clinfun | 1.1.5 |
clinicalsignificance | 2.0.0 | clinPK | 0.13.0 |
clinsig | 1.2 | clipr | 0.8.0 |
clisymbols | 1.2.0 | clmplus | 0.1.0 |
clock | 0.7.0 | clubSandwich | 0.5.10 |
clue | 0.3-65 | clustDRM | 0.1-0 |
clusterGeneration | 1.3.8 | clusterPower | 0.7.0 |
clusterSEs | 2.6.5 | clustMixType | 0.3-14 |
ClustVarLV | 2.1.1 | clv | 0.3-2.4 |
cmaes | 1.0-12 | cmaesr | 1.0.3 |
CMLS | 1.0-1 | cmm | 1.0 |
cmocean | 0.3-1 | cmprsk | 2.2-11 |
cmrutils | 1.3.1 | cNORM | 3.0.4 |
CNORode | 1.42.0 | coalescentMCMC | 0.4-4 |
coalitions | 0.6.24 | coarseDataTools | 0.6-6 |
cobalt | 4.5.4 | cobs | 1.3-7 |
coconots | 1.1.3 | COCONUT | 1.0.2 |
cocor | 1.1-4 | cocorresp | 0.4-4 |
cocron | 1.0-1 | coda | 0.19-4.1 |
cOde | 1.1.1 | coin | 1.4-3 |
cointReg | 0.2.0 | colf | 0.1.3 |
collapse | 2.0.10 | collapsibleTree | 0.1.8 |
collections | 0.3.7 | colorr | 1.0.0 |
colorRamps | 2.3.1 | colorspace | 2.1-0 |
colourpicker | 1.3.0 | colourvalues | 0.3.9 |
combinat | 0.0-8 | combinedevents | 0.1.1 |
CombinS | 1.1-1 | ComICS | 1.0.4 |
CommonJavaJars | 1.0-6 | commonmark | 1.9.1 |
compare | 0.2-6 | compas | 0.1.1 |
CompQuadForm | 1.4.3 | comprehenr | 0.6.10 |
conditionz | 0.1.0 | coneproj | 1.17 |
conf.design | 2.0.0 | config | 0.3.2 |
confintr | 1.0.2 | conflicted | 1.2.0 |
conquer | 1.3.3 | conquestr | 1.3.0 |
contactdata | 1.0.0 | contfrac | 1.1-12 |
convevol | 2.0.1 | convey | 1.0.0 |
coop | 0.6-3 | cops | 1.3-1 |
copula | 1.1-3 | copulaData | 0.0-1 |
copulaedas | 1.4.3 | cordillera | 1.0-0 |
corHMM | 2.8 | coro | 1.0.3 |
corona | 0.3.0 | coronavirus | 0.4.1 |
corpcor | 1.6.10 | corpora | 0.6 |
corporaexplorer | 0.8.6 | corrgram | 1.14 |
corrplot | 0.92 | cosa | 2.1.0 |
CoSMoS | 2.1.0 | costat | 2.4.1 |
countrycode | 1.5.0 | CovCombR | 1.0 |
COVID19 | 3.0.3 | covid19.analytics | 2.1.3.3 |
covid19br | 0.1.8 | covid19dbcand | 0.1.1 |
covid19france | 0.1.0 | covid19italy | 0.3.1 |
covid19sf | 0.1.2 | covid19swiss | 0.1.0 |
covid19us | 0.1.9 | CovidMutations | 0.1.3 |
cowplot | 1.1.3 | cp4p | 0.3.6 |
CPBayes | 1.1.0 | cpk | 1.3-1 |
cplm | 0.7-12 | cpp11 | 0.4.7 |
CRABS | 1.2.0 | crawl | 2.3.0 |
crayon | 1.5.2 | crch | 1.1-2 |
credentials | 2.0.1 | credule | 0.1.4 |
crfsuite | 0.4.2 | cricketdata | 0.2.3 |
cricketr | 0.0.26 | CRM | 1.2.4 |
crmPack | 1.0.5 | crossdes | 1.1-2 |
Crossover | 0.1-21 | crosstalk | 1.2.1 |
crs | 0.15-37 | crseEventStudy | 1.2.2 |
crsmeta | 0.3.0 | crul | 1.4.0 |
crunch | 1.30.4 | crunchy | 0.3.3 |
cSEM | 0.5.0 | CSGo | 0.6.7 |
cshapes | 2.0 | csodata | 1.4.2 |
cstab | 0.2-2 | csv | 0.6.2 |
ctbi | 2.0.5 | ctmcmove | 1.2.9 |
ctmm | 1.2.0 | ctrdata | 1.17.2 |
ctsem | 3.9.1 | ctsemOMX | 1.0.6 |
CTT | 2.3.3 | CTTShiny | 0.1 |
ctv | 0.9-5 | cubature | 2.1.0 |
cubble | 0.3.0 | cubelyr | 1.0.2 |
cubfits | 0.1-4 | Cubist | 0.4.2.1 |
cumSeg | 1.3 | curl | 5.2.1 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-12 |
d3Network | 0.5.2.1 | DAAG | 1.25.4 |
dae | 3.2.21 | daewr | 1.2-11 |
dagitty | 0.3-4 | DAKS | 2.1-3 |
DALEX | 2.4.3 | DAMOCLES | 2.3 |
data.table | 1.15.2 | data.tree | 1.1.0 |
DatabaseConnector | 6.3.2 | DataExplorer | 0.8.3 |
dataone | 2.2.2 | datapack | 1.4.1 |
datapasta | 3.1.0 | dataRetrieval | 2.7.15 |
datarobot | 2.18.5 | dataseries | 0.2.0 |
dataverse | 0.3.13 | datawizard | 0.9.1 |
date | 1.2-42 | dateback | 1.0.3 |
datetimeutils | 0.6-3 | dbarts | 0.9-26 |
dbhydroR | 0.2-8 | DBI | 1.2.2 |
DBItest | 1.8.0 | dbmss | 2.9-0 |
dbparser | 2.0.2 | dbplyr | 2.4.0 |
dbscan | 1.1-12 | dbx | 0.3.1 |
DChaos | 0.1-7 | dclone | 2.3-2 |
DCluster | 0.2-10 | DClusterm | 1.0-1 |
dcov | 0.1.1 | dCovTS | 1.4 |
dcurver | 0.9.2 | ddalpha | 1.3.15 |
DDD | 5.2.2 | dde | 1.0.5 |
DDPM | 0.1.0 | deBInfer | 0.4.4 |
debugme | 1.1.0 | decompr | 6.4.0 |
deducorrect | 1.3.7 | deductive | 1.0.0 |
DeductiveR | 1.0.0 | deeptime | 1.0.1 |
Delaporte | 8.3.0 | DelayedArray | 0.26.7 |
DelayedMatrixStats | 1.22.6 | deldir | 2.0-4 |
deltaPlotR | 1.6 | demography | 2.0 |
dendextend | 1.17.1 | dendsort | 0.3.4 |
densEstBayes | 1.0-2.2 | DEoptim | 2.2-8 |
DEoptimR | 1.1-3 | depmix | 0.9.16 |
depmixS4 | 1.5-0 | DepthProc | 2.1.5 |
depthTools | 0.7 | Deriv | 4.1.3 |
derivmkts | 0.2.5 | desc | 1.4.3 |
DescTools | 0.99.54 | DESeq2 | 1.40.2 |
designmatch | 0.5.4 | desiR | 1.2.2 |
desirability | 2.1 | deSolve | 1.40 |
desplot | 1.10 | devtools | 2.4.5 |
dexter | 1.4.0 | dextergui | 0.2.6 |
dexterMST | 0.9.6 | dfcomb | 3.1-1 |
dfcrm | 0.2-2.1 | dfidx | 0.0-5 |
DFIT | 1.1 | dfms | 0.2.1 |
dfmta | 1.7-3 | dfoptim | 2023.1.0 |
dfped | 1.1 | dfpk | 3.5.1 |
DGEobj | 1.1.2 | DGEobj.utils | 1.0.6 |
DHARMa | 0.4.6 | DHS.rates | 0.9.2 |
diagis | 0.2.3 | diagonals | 6.4.0 |
diagram | 1.6.5 | DiagrammeR | 1.0.11 |
dials | 1.2.1 | DiceDesign | 1.10 |
DiceEval | 1.6.1 | DiceKriging | 1.6.0 |
DiceView | 2.2-0 | dichromat | 2.0-0.1 |
DICOMread | 0.0.0.3 | did | 2.1.2 |
did2s | 1.0.2 | didimputation | 0.3.0 |
DIFboost | 0.3 | DiffCorr | 0.4.3 |
diffEnrich | 0.1.2 | diffobj | 0.3.5 |
diffpriv | 0.4.2 | diffusion | 0.2.7 |
DIFlasso | 1.0-4 | difNLR | 1.4.2-1 |
DIFplus | 1.1 | difR | 5.1 |
DIFtree | 3.1.6 | digest | 0.6.34 |
DIMORA | 0.3.6 | dimRed | 0.2.6 |
dina | 2.0.0 | DiPALM | 1.2 |
dipsaus | 0.2.8 | diptest | 0.77-0 |
Dire | 2.2.0 | DIRECT | 1.1.0 |
directlabels | 2024.1.21 | directPA | 1.5.1 |
dirichletprocess | 0.4.2 | dirmult | 0.1.3-5 |
disaggR | 1.0.5.2 | DIscBIO | 1.2.2 |
DiscreteFDR | 1.3.7 | discretization | 1.0-1.1 |
dispRity | 1.8 | DistatisR | 1.1.1 |
distcrete | 1.0.3 | distfree.cr | 1.5.1 |
distill | 1.6 | distory | 1.4.4 |
distr | 2.9.3 | distrEx | 2.9.2 |
distributional | 0.4.0 | distributions3 | 0.2.1 |
DistributionUtils | 0.6-1 | distrom | 1.0.1 |
distrTeach | 2.9.1 | dittodb | 0.1.7 |
diversitree | 0.10-0 | divest | 1.0.0 |
divseg | 0.0.5 | dLagM | 1.1.13 |
dlm | 1.1-6 | dlnm | 2.4.7 |
dlsem | 2.4.6 | dlstats | 0.1.7 |
dm | 1.0.10 | dmri.tracking | 0.1.0 |
dnapath | 0.7.4 | doBy | 4.6.20 |
doc2vec | 0.2.0 | docopt | 0.7.1 |
docopulae | 0.4.0 | DoE.base | 1.2-4 |
DoE.MIParray | 1.0-1 | DoE.wrapper | 0.12 |
doFuture | 1.0.1 | doMC | 1.3.8 |
doParallel | 1.0.17 | doRNG | 1.8.6 |
DoseFinding | 1.1-1 | doSNOW | 1.0.20 |
DOSPortfolio | 0.1.0 | dotCall64 | 1.1-1 |
DoubleML | 1.0.0 | Dowd | 0.12 |
downlit | 0.4.3 | downloader | 0.4 |
dparser | 1.3.1-11 | dplyr | 1.1.4 |
dqrng | 0.3.2 | dr4pl | 2.0.0 |
drake | 7.13.8 | drat | 0.2.4 |
DRaWR | 1.0.3 | DRDID | 1.0.6 |
dreamerr | 1.4.0 | DriftBurstHypothesis | 0.4.0.1 |
driveR | 0.4.1 | DRomics | 2.5-2 |
DRR | 0.0.4 | dsa | 1.0.12 |
DSAIDE | 0.9.6 | dsb | 1.0.3 |
dse | 2020.2-1 | DSI | 1.5.0 |
DSL | 0.1-7 | DT | 0.32 |
DTAT | 0.3-6 | DtD | 0.2.2 |
dti | 1.5.4 | dtplyr | 1.3.1 |
DTSg | 1.1.3 | dtt | 0.1-2 |
dtts | 0.1.2 | dtw | 1.23-1 |
dtwclust | 5.5.12 | duckdb | 0.9.2-1 |
duckduckr | 1.0.0 | dunn.test | 1.3.5 |
dwctaxon | 2.0.3 | dygraphs | 1.1.1.6 |
Dykstra | 1.0-0 | dyn | 0.2-9.6 |
dynamicTreeCut | 1.63-1 | dynatop | 0.2.3 |
dynatopGIS | 0.2.5 | dynaTree | 1.2-16 |
dynlm | 0.3-6 | dynparam | 1.0.2 |
dynutils | 1.0.11 | dynwrap | 1.2.4 |
DysPIA | 1.3 | DysPIAData | 0.1.2 |
e1071 | 1.7-14 | earlyR | 0.0.5 |
earth | 5.3.3 | easypower | 1.0.1 |
easySdcTable | 1.0.7 | eba | 1.10-0 |
EbayesThresh | 1.4-12 | ebdbNet | 1.2.8 |
EBImage | 4.42.0 | EBMAforecast | 1.0.31 |
ecb | 0.4.2 | Ecdat | 0.4-2 |
ecespa | 1.1-17 | Ecfun | 0.3-2 |
echor | 0.1.9 | ecm | 7.2.0 |
ecodist | 2.1.3 | Ecohydmod | 1.0.0 |
ECOSolveR | 0.5.5 | ecoval | 1.2.9 |
ecp | 3.1.5 | ecr | 2.1.1 |
edfReader | 1.2.1 | edgeR | 3.42.2 |
edina | 0.1.1 | editrules | 2.9.3 |
edmdata | 1.2.0 | edstan | 1.0.6 |
EdSurvey | 4.0.4 | eegkit | 1.0-4 |
eegkitdata | 1.1 | EFAutilities | 2.1.3 |
effects | 4.2-2 | EGAnet | 2.0.4 |
egg | 0.4.5 | egor | 1.24.2 |
EGRET | 3.0.9 | EGRETci | 2.0.4 |
eha | 2.11.2 | eigenmodel | 1.11 |
eiopaR | 0.1.1 | elastic | 1.2.0 |
elasticnet | 1.3 | elevatr | 0.99.0 |
ellipse | 0.5.0 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | elo | 3.0.2 |
EloChoice | 0.29.4 | EloRating | 0.46.11 |
ELT | 1.7 | EMbC | 2.0.4 |
EMD | 1.5.9 | emdi | 2.2.1 |
emg | 1.0.9 | emmeans | 1.10.0 |
EMMIXgene | 0.1.4 | emoa | 0.5-2 |
emulator | 1.2-21 | encode | 0.3.6 |
endtoend | 2.29 | energy | 1.7-11 |
EngrExpt | 0.1-8 | enrichR | 3.2 |
enrichwith | 0.3.1 | ensembleBMA | 5.1.8 |
entropart | 1.6-13 | entropy | 1.3.1 |
EntropyEstimation | 1.2 | EntropyMCMC | 1.0.4 |
enveomics.R | 1.9.1 | enviPat | 2.6 |
EnvStats | 2.8.1 | epanet2toolkit | 1.0.4 |
epanetReader | 0.7.3 | Epi | 2.47.1 |
epibasix | 1.5 | epicontacts | 1.1.3 |
EpiContactTrace | 0.17.0 | EpiCurve | 2.4-2 |
epiDisplay | 3.5.0.2 | EpiEstim | 2.2-4 |
epiflows | 0.2.1 | EpiILM | 1.5.2 |
EpiILMCT | 1.1.7 | epimdr | 0.6-5 |
EpiModel | 2.4.0 | epinet | 2.1.11 |
epiR | 2.0.68 | EpiReport | 1.0.2 |
episensr | 1.3.0 | epitools | 0.5-10.1 |
epitrix | 0.4.0 | epm | 1.1.2 |
equate | 2.0.8 | equateIRT | 2.3.0 |
equateMultiple | 0.1.2 | equivalence | 0.7.2 |
era | 0.4.1 | erah | 2.0.1 |
erer | 3.1 | ergm | 4.6.0 |
ergm.ego | 1.1.0 | ergm.multi | 0.2.1 |
eRm | 1.0-5 | errorlocate | 1.1.1 |
errum | 0.0.3 | esaBcv | 1.2.1.1 |
esemifar | 1.0.2 | ESG | 1.3 |
EstCRM | 1.6 | estimability | 1.5 |
EstimateGroupNetwork | 0.3.1 | estimatr | 1.0.2 |
ETLUtils | 1.5 | etm | 1.1.1 |
etrm | 1.0.1 | etrunct | 0.1 |
etwfe | 0.4.0 | EUfootball | 0.0.1 |
eulerr | 7.0.1 | europepmc | 0.4.3 |
eurostat | 4.0.0 | evaluate | 0.23 |
Evapotranspiration | 1.16 | evd | 2.3-6.1 |
evgam | 1.0.0 | evir | 1.7-4 |
evobiR | 1.1 | EvoPhylo | 0.3.2 |
evtree | 1.0-8 | ewoc | 0.3.0 |
Exact | 3.2 | exactextractr | 0.10.0 |
exactRankTests | 0.8-35 | exams | 2.4-0 |
ExceedanceTools | 1.3.6 | exdex | 1.2.3 |
experiment | 1.2.1 | expint | 0.1-8 |
expm | 0.999-9 | ExPosition | 2.8.23 |
expsmooth | 2.3 | exreport | 0.4.1 |
extraDistr | 1.10.0 | extrafont | 0.19 |
extrafontdb | 1.0 | extraoperators | 0.3.0 |
ExtremeBounds | 0.1.7 | ExtremeRisks | 0.0.4 |
eyelinker | 0.2.1 | ez | 4.4-0 |
fable | 0.3.3 | fable.prophet | 0.1.0 |
fabletools | 0.4.1 | FactoClass | 1.2.9 |
factoextra | 1.0.7 | FactoMineR | 2.10 |
factorstochvol | 1.1.0 | FAdist | 2.4 |
fanplot | 4.0.0 | fansi | 1.0.6 |
FAOSTAT | 2.3.0 | faoutlier | 0.7.6 |
faraway | 1.0.8 | farver | 2.1.1 |
fAssets | 4023.85 | fasstr | 0.5.1 |
fastcluster | 1.2.6 | fastDummies | 1.7.3 |
fastGHQuad | 1.0.1 | fastICA | 1.2-4 |
fastLink | 0.6.1 | fastmap | 1.1.1 |
fastmatch | 1.1-4 | fastRhockey | 0.4.0 |
fastrmodels | 1.0.2 | FastRWeb | 1.2-1 |
fasttime | 1.1-0 | FatTailsR | 1.8-0 |
fauxpas | 0.5.2 | FAVAR | 0.1.3 |
fbar | 0.6.0 | fBasics | 4032.96 |
fBonds | 3042.78 | fbRads | 17.0.0 |
fCopulae | 4022.85 | FD | 1.0-12.3 |
fda | 6.1.7 | fdaACF | 1.0.0 |
fdapace | 0.5.9 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.3-0 |
feasts | 0.3.1 | feather | 0.3.5 |
fechner | 1.0-3 | FedData | 4.0.0 |
FeedbackTS | 1.5 | feisr | 1.3.0 |
fExtremes | 4032.84 | ff | 4.0.12 |
FFD | 1.0-9 | fflr | 2.2.2 |
ffscrapr | 1.4.8 | ffsimulator | 1.2.3 |
fftwtools | 0.9-11 | fGarch | 4032.91 |
fHMM | 1.2.2 | FielDHub | 1.3.4 |
fields | 15.2 | fiery | 1.2.1 |
filearray | 0.1.6 | filehash | 2.4-5 |
filehashSQLite | 0.2-6 | filelock | 1.0.3 |
filematrix | 1.3 | fImport | 4032.87 |
FinancialMath | 0.1.1 | FinAsym | 1.0 |
findpython | 1.0.8 | FinNet | 0.1.2 |
finnts | 0.4.0 | finreportr | 1.0.4 |
FinTS | 0.4-9 | FiRE | 1.0.1 |
fishMod | 0.29 | fitdistrplus | 1.1-11 |
fitzRoy | 1.3.0 | fixest | 0.11.2 |
FKF | 0.2.5 | FKF.SP | 0.3.1 |
flacco | 1.8 | flashClust | 1.01-2 |
flexclust | 1.4-1 | flexdashboard | 0.6.2 |
flexmix | 2.3-19 | FlexScan | 0.2.2 |
flextable | 0.9.4 | flippant | 1.5.4 |
float | 0.3-2 | flock | 0.7 |
flowr | 0.9.11 | FlowScreen | 1.2.6 |
FLSSS | 9.1.3 | fma | 2.5 |
FMC | 1.0.1 | fmcmc | 0.5-2 |
fmdates | 0.1.4 | FME | 1.3.6.3 |
fmesher | 0.1.5 | fmri | 1.9.12 |
fMultivar | 4031.84 | fnets | 0.1.6 |
FNN | 1.1.4 | fNonlinear | 4021.81 |
fontawesome | 0.5.2 | fontBitstreamVera | 0.1.1 |
fontLiberation | 0.1.0 | fontquiver | 0.2.1 |
footballpenaltiesBL | 1.0.0 | footBayes | 0.2.0 |
forcats | 1.0.0 | foreach | 1.5.2 |
ForeCA | 0.2.7 | forecast | 8.21.1 |
ForecastComb | 1.3.1 | forecastHybrid | 5.0.19 |
forecastLSW | 1.0 | forecastML | 0.9.0 |
FoReco | 0.2.6 | forecTheta | 2.6.2 |
forestplot | 3.1.3 | forge | 0.2.0 |
formatR | 1.14 | formattable | 0.2.1 |
Formula | 1.2-5 | formula.tools | 1.7.1 |
FossilSim | 2.3.2 | fourPNO | 1.1.0 |
fpc | 2.2-11 | fpcb | 0.1.0 |
fpCompare | 0.2.4 | FPLdata | 0.1.0 |
fPortfolio | 4023.84 | fpp2 | 2.5 |
fpp3 | 0.5 | fracdiff | 1.5-3 |
Frames2 | 0.2.1 | FRAPO | 0.4-1 |
fredr | 2.1.0 | freecurrencyapi | 0.1.0 |
freesurferformats | 0.1.18 | fRegression | 4021.83 |
frenchdata | 0.2.0 | freqdom | 2.0.3 |
freqdom.fda | 1.0.1 | fresh | 0.2.0 |
FrF2 | 2.3-3 | FrF2.catlg128 | 1.2-3 |
FRK | 2.2.2 | frontier | 1.1-8 |
frostr | 0.2.0 | fs | 1.6.3 |
FSA | 0.9.5 | fslr | 2.25.2 |
fsMTS | 0.1.7 | fst | 0.9.8 |
fstcore | 0.9.18 | fTrading | 3042.79 |
ftrCOOL | 2.0.0 | ftsa | 6.4 |
func2vis | 1.0-3 | functional | 0.6 |
funtimes | 9.1 | furrr | 0.3.1 |
futile.logger | 1.4.3 | futile.options | 1.0.1 |
future | 1.33.1 | future.apply | 1.11.1 |
fuzzyjoin | 0.1.6 | fwildclusterboot | 0.13.0 |
fxregime | 1.0-4 | GA | 3.2.4 |
GAD | 1.1.1 | gafit | 0.5.1 |
gam | 1.22-3 | gamlr | 1.13-8 |
gamlss | 5.4-20 | gamlss.data | 6.0-2 |
gamlss.dist | 6.1-1 | GANPA | 1.1 |
GANPAdata | 1.0 | gap | 1.5-3 |
gap.datasets | 0.0.6 | gapfill | 0.9.6-1 |
GARCHSK | 0.1.0 | garchx | 1.5 |
gargle | 1.5.2 | garma | 0.9.13 |
GAS | 0.3.4 | gasmodel | 0.6.0 |
gaussquad | 1.0-3 | GaussSuppression | 0.8.0 |
gbm | 2.1.9 | gbutils | 0.5 |
gclus | 1.3.2 | GCPM | 1.2.2 |
gdalcubes | 0.6.4 | gdalraster | 1.9.0 |
gdalUtilities | 1.2.5 | gdata | 3.0.0 |
GDINA | 2.9.4 | gdistance | 1.6.4 |
gdpc | 1.1.4 | gdtools | 0.3.6 |
gear | 0.3.4 | gee | 4.13-26 |
geeM | 0.10.1 | geepack | 1.3.10 |
geiger | 2.0.11 | genalg | 0.2.1 |
gender | 0.6.0 | GeneCycle | 1.1.5 |
geneExpressionFromGEO | 0.9 | genefilter | 1.82.1 |
GeneNet | 1.2.16 | GeneralizedHyperbolic | 0.8-6 |
generics | 0.1.3 | genetics | 1.3.8.1.3 |
geno2proteo | 0.0.6 | GenomeInfoDb | 1.36.0 |
GenomeInfoDbData | 1.2.10 | GenomicAlignments | 1.36.0 |
GenomicFeatures | 1.52.2 | GenomicRanges | 1.52.0 |
genoPlotR | 0.8.11 | GenSA | 1.1.14 |
geodist | 0.0.8 | geogrid | 0.1.2 |
geojson | 0.3.5 | geojsonio | 0.11.3 |
geojsonsf | 2.0.3 | GEOmap | 2.5-5 |
geomapdata | 2.0-2 | geometa | 0.7-1 |
geometries | 0.2.4 | geometry | 0.4.7 |
geomorph | 4.0.6 | geonames | 0.999 |
geonapi | 0.7 | GEOquery | 2.68.0 |
geoR | 1.9-4 | geos | 0.2.4 |
geosapi | 0.7 | geoscale | 2.0.1 |
geosphere | 1.5-18 | geospt | 1.0-4 |
geostan | 0.5.3 | geotopbricks | 1.5.8.0 |
geouy | 0.2.8 | gert | 2.0.1 |
GET | 1.0 | getPass | 0.2-4 |
gets | 0.37 | GetTDData | 1.5.4 |
gfonts | 0.2.0 | GGally | 2.2.1 |
ggalt | 0.4.0 | gganimate | 1.0.9 |
ggdag | 0.2.11 | ggdemetra | 0.2.8 |
ggdendro | 0.2.0 | ggdist | 3.3.1 |
ggExtra | 0.10.1 | ggfittext | 0.10.2 |
ggforce | 0.4.2 | ggformula | 0.12.0 |
ggfortify | 0.4.16 | ggfun | 0.1.4 |
gggenes | 0.5.1 | gghalves | 0.1.4 |
ggimage | 0.3.3 | gginnards | 0.1.2 |
gglasso | 1.5 | ggm | 2.5.1 |
ggmap | 4.0.0 | ggmcmc | 1.5.1.1 |
ggmuller | 0.5.6 | ggnetwork | 0.5.13 |
ggnewscale | 0.4.10 | ggpath | 1.0.1 |
ggplot2 | 3.5.0 | ggplotify | 0.1.2 |
ggpmisc | 0.5.5 | ggpp | 0.5.6 |
ggpubr | 0.6.0 | ggquiver | 0.3.3 |
ggraph | 2.2.0 | ggrepel | 0.9.5 |
ggridges | 0.5.6 | ggsci | 3.0.1 |
ggseas | 0.5.4 | ggsignif | 0.6.4 |
ggsn | 0.5.0 | ggsoccer | 0.1.7 |
ggspatial | 1.1.9 | ggstance | 0.3.6 |
ggstats | 0.5.1 | ggtext | 0.1.2 |
ggthemes | 5.1.0 | ggtree | 3.8.0 |
ggupset | 0.3.0 | ggvis | 0.4.9 |
gh | 1.4.0 | ghyp | 1.6.4 |
Gifi | 0.4-0 | gifti | 0.8.0 |
GIGrvg | 0.8 | gimme | 0.7-16 |
giscoR | 0.4.0 | gistr | 0.9.0 |
git2r | 0.33.0 | gitcreds | 0.1.2 |
gitlabr | 2.0.1 | glarma | 1.6-0 |
GlarmaVarSel | 1.0 | glasso | 1.11 |
glassoFast | 1.0.1 | gld | 2.6.6 |
glm2 | 1.2.1 | glmmML | 1.1.6 |
GLMMRR | 0.5.0 | glmmSeq | 0.5.5 |
glmmTMB | 1.1.8 | glmnet | 4.1-8 |
glmx | 0.2-0 | GlobalOptions | 0.1.2 |
globalOptTests | 1.1 | globals | 0.16.2 |
glpkAPI | 1.3.4 | glue | 1.7.0 |
gmailr | 2.0.0 | GMDH | 1.6 |
Gmedian | 1.2.7 | gmm | 1.8 |
gmnl | 1.1-3.2 | gmodels | 2.18.1.1 |
gmp | 0.7-4 | gmt | 2.0.3 |
gmvarkit | 2.1.2 | GNAR | 1.1.3 |
gnm | 1.1-5 | GO.db | 3.17.0 |
goftest | 1.2-3 | gogarch | 0.7-5 |
golem | 0.4.1 | gontr | 1.1.0 |
googleAnalyticsR | 1.1.0 | googleAuthR | 2.0.1 |
googleCloudStorageR | 0.7.0 | googleComputeEngineR | 0.3.0 |
googledrive | 2.1.1 | googleLanguageR | 0.3.0 |
googlePolylines | 0.8.4 | googlesheets4 | 1.1.1 |
googleVis | 0.7.1 | googleway | 2.7.8 |
gower | 1.0.1 | GOxploreR | 1.2.7 |
GPareto | 1.1.8 | GPArotation | 2024.3-1 |
GPCMlasso | 0.1-7 | GPfit | 1.0-8 |
gplots | 3.1.3.1 | GPRMortality | 0.1.0 |
gprofiler2 | 0.2.3 | gradethis | 0.2.12.9004 |
graDiEnt | 1.0.1 | gRain | 1.4.1 |
grantham | 0.1.1 | graph | 1.78.0 |
graphicalVAR | 0.3.4 | graphite | 1.46.0 |
graphlayouts | 1.1.0 | graphsim | 1.0.3 |
graphTweets | 0.5.3 | grates | 1.1.1 |
gratis | 1.0.5 | gravitas | 0.1.3 |
gravity | 1.1 | gRbase | 2.0.1 |
greeks | 1.3.2 | greta | 0.4.4 |
greybox | 2.0.0 | grf | 2.3.2 |
gridBase | 0.4-7 | gridExtra | 2.3 |
gridGraphics | 0.5-1 | gridSVG | 1.7-5 |
gridtext | 0.1.5 | grImport | 0.9-7 |
grImport2 | 0.3-1 | grnn | 0.1.0 |
groundhog | 3.2.0 | GroupSeq | 1.4.3 |
grplasso | 0.4-7 | grwat | 0.0.4 |
GSA | 1.03.2 | gsarima | 0.1-5 |
gsDesign | 3.6.1 | GSEABase | 1.62.0 |
gSEM | 0.4.3.4 | gsheet | 0.4.5 |
gsignal | 0.3-5 | gsisdecoder | 0.0.1 |
gsl | 2.1-8 | gslnls | 1.2.0 |
GSODR | 3.1.10 | gss | 2.2-7 |
gstat | 2.1-1 | gsubfn | 0.7 |
GSVA | 1.48.3 | gsw | 1.1-1 |
gsynth | 1.2.1 | gt | 0.10.1 |
gtable | 0.3.4 | gtheory | 0.1.2 |
gtools | 3.9.5 | gtop | 0.2.0 |
gtrendsR | 1.5.1 | gtsummary | 1.7.2 |
GUIDE | 1.2.7 | GUniFrac | 1.8 |
gustave | 1.0.0 | gvc | 6.4.0 |
gwavr | 0.2.0 | gWidgets2 | 1.0-9 |
GWmodel | 2.3-2 | gwrr | 0.2-2 |
GWSDAT | 3.2.0 | h2o | 3.44.0.3 |
hackeRnews | 0.1.0 | HandTill2001 | 1.0.1 |
HaploSim | 1.8.4.2 | hardhat | 1.3.1 |
hash | 2.2.6.3 | haven | 2.5.4 |
hbsae | 1.2 | HBV.IANIGLA | 0.2.6 |
HDF5Array | 1.28.1 | hdf5r | 1.3.10 |
hdi | 0.1-9 | HDInterval | 0.2.4 |
hdm | 0.3.2 | HDMT | 1.0.5 |
hdrcde | 3.4 | HDShOP | 0.1.3 |
HDTSA | 1.0.2 | heatmaply | 1.5.0 |
hellno | 0.0.1 | heplots | 1.6.2 |
here | 1.0.1 | hett | 0.3-3 |
hexbin | 1.28.3 | hexSticker | 0.4.9 |
hflights | 0.1 | hglm | 2.2-1 |
hglm.data | 1.0-1 | hgnc | 0.1.4 |
HGNChelper | 0.8.1 | HH | 3.1-52 |
hht | 2.1.6 | HiClimR | 2.2.1 |
highcharter | 0.9.4 | highfrequency | 1.0.1 |
highlight | 0.5.1 | highr | 0.10 |
highs | 0.1-10 | HIMA | 2.2.1 |
hipread | 0.2.4 | hisse | 2.1.11 |
HKRbook | 0.1.3 | HLMdiag | 0.5.0 |
HMDHFDplus | 2.0.3 | Hmisc | 5.1-1 |
HMMpa | 1.0.1 | HMP | 2.0.1 |
HMPTrees | 1.4 | hms | 1.1.3 |
hoardr | 0.5.4 | homals | 1.0-10 |
hommel | 1.6 | hoopR | 2.1.0 |
hot.deck | 1.2 | howzatR | 1.0.1 |
hpfilter | 1.0.2 | HSAUR3 | 1.0-14 |
hsstan | 0.8.2 | htm2txt | 2.2.2 |
htmlTable | 2.4.2 | htmltools | 0.5.7 |
HTMLUtils | 0.1.9 | htmlwidgets | 1.6.4 |
hts | 6.0.2 | HTSCluster | 2.0.11 |
htsr | 2.1.4 | httpcache | 1.2.0 |
httpcode | 0.3.0 | httping | 0.2.0 |
httpRequest | 0.0.11 | httptest | 4.2.2 |
httpuv | 1.6.14 | httr | 1.4.7 |
httr2 | 1.0.0 | humanFormat | 1.2 |
humanize | 0.2.0 | humidity | 0.1.5 |
hunspell | 3.0.3 | hurricaneexposure | 0.1.1 |
hutils | 1.8.1 | huxtable | 5.5.6 |
hwriter | 1.3.2.1 | hwwntest | 1.3.2 |
hydraulics | 0.6.1 | hydroEvents | 0.11 |
hydrogeo | 0.6-1 | hydroloom | 1.0.2 |
HydroMe | 2.0-1 | hydropeak | 0.1.2 |
hydroroute | 0.1.2 | hydrostats | 0.2.9 |
hydrotoolbox | 1.1.2 | hyfo | 1.4.6 |
HyperbolicDist | 0.6-5 | hypergeo | 1.2-13 |
i2extras | 0.2.1 | iarm | 0.4.3 |
ibd | 1.6 | ibdreg | 0.3.8 |
IBMPopSim | 1.0.0 | iBreakDown | 2.1.2 |
IBrokers | 0.10-2 | ica | 1.0-3 |
ICAMS | 2.3.12 | ICAOD | 1.0.1 |
iCARH | 2.0.2.1 | icarus | 0.3.2 |
ICBioMark | 0.1.4 | ICC | 2.4.0 |
iccbeta | 1.2.0 | ICDS | 0.1.2 |
iCellR | 1.6.7 | Icens | 1.72.0 |
ICGE | 0.4.2 | ichimoku | 1.5.0 |
ICS | 1.4-1 | ICSNP | 1.1-2 |
ICtest | 0.3-5 | idbr | 1.0 |
IDE | 0.3.1 | idefix | 1.0.3 |
idendr0 | 1.5.3 | IDF | 2.1.2 |
IDPmisc | 1.1.21 | ids | 1.0.1 |
ie2misc | 0.9.1 | ie2miscdata | 1.0.4 |
iemisc | 1.0.4 | iemiscdata | 1.0.1 |
IETD | 1.0.0 | ifaTools | 0.23 |
igraph | 2.0.2 | igraphdata | 1.0.1 |
illuminaio | 0.42.0 | imbibe | 0.1.1 |
imguR | 1.0.3 | IMIX | 1.1.5 |
immer | 1.4-15 | imp4p | 1.2 |
implied | 0.5 | implyr | 0.5.0 |
import | 1.3.2 | impute | 1.74.1 |
imputeLCMD | 2.1 | imputeTestbench | 3.0.3 |
imputeTS | 3.3 | imsig | 1.1.3 |
inca | 0.0.4 | IncDTW | 1.1.4.4 |
incidence | 1.7.3 | incidence2 | 2.2.3 |
inegiR | 3.0.0 | ineq | 0.2-13 |
infer | 1.0.6 | influence.SEM | 2.3 |
influenceR | 0.1.5 | influxdbr | 0.14.2 |
infotheo | 1.2.0.1 | InfoTrad | 1.2 |
ingredients | 2.3.0 | ini | 0.3.1 |
injurytools | 1.0.3 | inline | 0.3.19 |
insee | 1.1.5 | insight | 0.19.8 |
InspectChangepoint | 1.2 | instaR | 0.2.4 |
insuranceData | 1.0 | insurancerating | 0.7.2 |
intamap | 1.5-7 | integIRTy | 1.0.7 |
InteRD | 0.1.1 | interep | 0.4.1 |
interleave | 0.1.2 | interp | 1.1-6 |
InterpretMSSpectrum | 1.4.5 | intervals | 0.15.4 |
inum | 1.0-5 | investr | 1.4.2 |
invgamma | 1.1 | ioncopy | 2.2.2 |
iotables | 0.9.3 | iotools | 0.3-5 |
ipaddress | 1.0.2 | ipdw | 2.0-0 |
ipfp | 1.0.2 | ipred | 0.9-14 |
ips | 0.0.11 | ipumsr | 0.7.1 |
iq | 1.9.12 | irace | 3.5 |
IRanges | 2.34.0 | IRdisplay | 1.1 |
IRkernel | 1.3.2 | irlba | 2.3.5.1 |
irr | 0.84.1 | irtDemo | 0.1.4 |
irtoys | 0.2.2 | irtrees | 1.0.0 |
IRTShiny | 1.2 | isdparser | 0.4.0 |
IsingFit | 0.4 | IsingSampler | 0.2.3 |
ISLR | 1.4 | ismev | 1.42 |
Iso | 0.0-21 | isoband | 0.2.7 |
ISOcodes | 2024.02.12 | IsoGene | 1.0-24 |
isotone | 1.1-1 | isoWater | 1.1.2 |
ISOweek | 0.6-2 | ISwR | 2.0-8 |
iterators | 1.0.14 | iterLap | 1.1-4 |
itertools | 0.1-3 | itscalledsoccer | 0.2.4 |
itsmr | 1.10 | ivprobit | 1.1 |
ivreg | 0.6-2 | JADE | 2.0-4 |
jalcal | 0.1.0 | janeaustenr | 1.0.0 |
janitor | 2.2.0 | JavaGD | 0.6-5 |
JBrowseR | 0.10.2 | jetset | 3.4.0 |
jiebaR | 0.11 | jiebaRD | 0.1 |
jjb | 0.1.1 | JMdesign | 1.5 |
jomo | 2.7-6 | JoSAE | 0.3.0 |
jose | 1.2.0 | jpeg | 0.1-10 |
jqr | 1.3.3 | jquerylib | 0.1.4 |
jrt | 1.1.2 | js | 1.2 |
jsonify | 1.2.2 | jsonlite | 1.8.8 |
jsonvalidate | 1.3.2 | JSparO | 1.5.0 |
jstor | 0.3.11 | juicyjuice | 0.1.0 |
JuliaConnectoR | 1.1.3 | JWileymisc | 1.4.1 |
kableExtra | 1.4.0 | kalmanfilter | 2.1.0 |
kappaSize | 1.2 | KEGGgraph | 1.60.0 |
KEGGREST | 1.40.0 | kelvin | 2.0-2 |
Kendall | 2.2.1 | kequate | 1.6.4 |
keras | 2.13.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-32 | keyring | 1.3.2 |
KFAS | 1.5.1 | kfigr | 1.2.1 |
kinship2 | 1.9.6 | kitagawa | 3.1.2 |
kiwisR | 0.2.0 | klaR | 1.7-3 |
km.ci | 0.5-6 | kmer | 1.1.2 |
KMsurv | 0.1-5 | knitcitations | 1.0.12 |
knitLatex | 0.9.0 | knitr | 1.45 |
kofnGA | 1.3 | koRpus | 0.13-8 |
KrigInv | 1.4.2 | KRIS | 1.1.6 |
krm | 2022.10-17< |