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
This AMI offers two ways to set up and use:
- RStudio IDE with AI Assistant within Linux GUI Desktop
- Regular RStudio Server access
1. RStudio IDE with AI Assistant within Linux GUI Desktop
To connect to the Linux GUI Desktop on your EC2 instance using an RDP client:
- Use the public IP address of the instance as the PC name.
- The default username is
ruser
. - The password is the EC2 instance ID, which follows the format
i-0c7xxxxxxxxxxxxxx
. Replace this with your actual instance ID found in the AWS Management Console under the Instances section. - Proceed to connect. You may receive a security warning about the certificate; you can safely choose to continue.
RDP Client Downloads:
- For Mac: Windows App
- For Windows: Windows App
This setup allows you to remotely access your instance using the Remote Desktop Protocol (RDP) with the provided credentials.
Connection Steps
Detailed steps for connecting to the Linux GUI Desktop are available here.
Launch RStudio IDE
Once connected, start the RStudio IDE with AI Assistant:
- Navigate to:
Applications -> Development -> RStudio
- This will launch the RStudio IDE within your Linux environment.
Steps to Start the gptstudio
RShiny App in the Viewer Panel
-
Load the
gptstudio
Librarylibrary(gptstudio)
-
Set the OpenAI API Key
You need an API key from OpenAI to use the gptstudio OpenAI features. You can obtain your key by signing up or logging into your account on the OpenAI website. After obtaining the key, set it using the following command:
Sys.setenv(OPENAI_API_KEY = "your_openai_api_key")
-
Launch the Chat App
gptstudio_chat()
-
Check the Port Number in the Error Message:
If an error occurs, note the port number shown in the error message. For example, the error message might indicate:
Failed to connect to 127.0.0.1 port 3570 after 0 ms: Connection refused
In this case, the port is 3570.
-
Open the App in the Viewer Pane
Replace the port number accordingly:
rstudioapi::viewer("http://127.0.0.1:<port_number>")
For example, if the port is 3570, use:
rstudioapi::viewer("http://127.0.0.1:3570")
These steps will launch the gptstudio RShiny app and display it in RStudio’s Viewer panel.
2. Regular RStudio Server Access
After the EC2 instance is started, you can access RStudio Server via the public IP address.
For example, if the IP address is 10.11.12.13
, enter the following URL in your browser
http://10.11.12.13
to access the login page as below:
Login Credentials
- Username:
ruser
- Password: The EC2 instance ID (format:
i-0c7xxxxxxxxxxxxxx
)
Automatic Redirect from HTTP to HTTPS
All HTTP traffic is automatically redirected to HTTPS to ensure encrypted and secure communication.
Self-Signed Certificate
- The HTTPS connection uses a self-signed certificate.
- The first time you access the site, you may need to accept the self-signed certificate in your browser.
- 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.
Additional Information
- SSH Username:
ubuntu
- SSH Port:
22
RStudio Server
R: 4.4.2
rstudio-server: 2024.04.2-764
Release Notes
Integrated RStudio Server with Xfce GUI Desktop, featuring an AI Assistant for the RStudio IDE.
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 (4303)
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 |
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 | 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.12.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.7.3 |
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 | 2020-3.3 | LCAvarsel | 1.1 |
lcda | 0.3.2 | lcmm | 2.1.0 |
lctools | 0.2-8 | lda | 1.4.2 |
ldat | 0.3.3 | ldbounds | 2.0.2 |
leafem | 0.2.3 | leaflet | 2.2.1 |
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.0 | 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.0 | 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.1 |
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.2.2 | logging | 0.10-108 |
logitnorm | 0.8.39 | logitr | 1.1.1 |
logspline | 2.1.21 | lokern | 1.1-10.1 |
lomb | 2.2.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 | 2.9 |
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.1 |
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.6 | 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.0.6 |
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.18.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.1.0 | 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.2.0 | matrixTests | 0.2.3 |
maxLik | 1.5-2 | MaxPro | 4.1-2 |
maxstat | 0.7-25 | MBA | 0.1-0 |
mbbefd | 0.8.11 | MBC | 0.10-6 |
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.0.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.4-0 | metaheuristicOpt | 2.0.0 |
metaMA | 3.1.3 | metap | 1.9 |
metaplot | 0.8.4 | metaRNASeq | 1.0.7 |
metaSEM | 1.3.1 | metasens | 1.5-2 |
meteo | 2.0-2 | 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.2.16 |
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.12.1 |
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.1 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlogitBMA | 0.1-7 | mlr | 2.19.1 |
mlr3 | 0.17.2 | mlr3learners | 0.5.8 |
mlr3measures | 0.5.0 | mlr3misc | 0.14.0 |
mlr3spatiotempcv | 2.3.0 | mlr3tuning | 0.19.2 |
mlrMBO | 1.1.5.1 | mlVAR | 0.5.2 |
mma | 10.7-1 | mmand | 1.6.3 |
mmrm | 0.3.10 | 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 | 1.4.5 |
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.7.3 |
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 | 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-9 |
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.0 |
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 |
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.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.3.6 | NCmisc | 1.2.0 |
ncvreg | 3.14.1 | 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.0 | nflreadr | 1.4.0 |
nflseedR | 1.2.0 | NFLSimulatoR | 0.4.0 |
nflverse | 1.0.3 | ngspatial | 1.2-2 |
nhanesA | 1.0 | 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.6 | noaastormevents | 0.2.0 |
nodbi | 0.10.2 | nomisr | 0.4.7 |
nomnoml | 0.3.0 | NonCompart | 0.7.0 |
nonlinearTseries | 0.2.12 | nonmemica | 1.0.8 |
nonneg.cg | 0.1.6-1 | nonnest2 | 0.5-6 |
nor1mix | 1.3-2 | 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-0 | o2geosocial | 1.1.0 |
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.3 |
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.1 |
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 | 0.8.3 |
OPDOE | 1.0-10 | openair | 2.18-0 |
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-4 | openssl | 2.1.1 |
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.5.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.5 |
ParamHelpers | 1.14.1 | params | 0.7.3 |
paran | 1.5.2 | Pareto | 2.4.5 |
parma | 1.7 | parmigene | 1.1.0 |
parsedate | 1.3.1 | parsnip | 1.2.0 |
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.0 | 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.10.9 |
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.6 | 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.3 | pkgcache | 2.2.1 |
pkgconfig | 2.0.3 | pkgdepends | 0.7.1 |
pkgdown | 2.0.7 | 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-3 |
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.1 |
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.0 | 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.6 | 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-4 |
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.2 | praise | 1.0.0 |
pRecipe | 3.0.1-3 | PreciseSums | 0.6 |
PredCRG | 1.0.2 | prediction | 0.3.14 |
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.1 |
ProbitSpatial | 1.1 | pROC | 1.18.5 |
processx | 3.8.3 | prodigenr | 0.6.2 |
prodlim | 2023.08.28 | ProfessR | 2.4-3 |
profileModel | 0.6.1 | profileR | 0.3-5 |
profoc | 1.3.1 | 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.2.1 | prophet | 1.0 |
PROsetta | 0.4.1 | proto | 1.0.0 |
protoclust | 1.6.4 | protolite | 2.3.0 |
protr | 1.7-0 | protti | 0.7.0 |
protViz | 0.7.9 | proxy | 0.4-27 |
proxyC | 0.3.4 | 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.1 |
psychomix | 1.1-8 | psychonetrics | 0.11.5 |
psychotools | 0.7-3 | psychotree | 0.16-0 |
psychTools | 2.4.2 | psyphy | 0.3 |
PTAk | 2.0.0 | PTSR | 0.1.2 |
ptw | 1.9-16 | PTXQC | 1.1.0 |
pubmed.mineR | 1.0.19 | 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.2 | qpmadr | 1.1.0-0 |
qpNCA | 1.1.6 | qqconf | 1.3.2 |
qqplotr | 0.0.6 | QRM | 0.4-31 |
qrmdata | 2022-05-31-1 | qrmtools | 0.0-16 |
qrng | 0.0-10 | qs | 0.25.7 |
qtl | 1.66 | quadprog | 1.5-8 |
quadprogXT | 0.0.5 | qualmap | 0.2.2 |
qualtRics | 3.2.0 | Quandl | 2.11.0 |
quanteda | 3.3.1 | 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.2.7 |
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.3 |
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.0 |
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.1.0 |
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 | 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.8.4 |
REDCapR | 1.1.0 | REDCapTidieR | 1.0.0 |
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.4.2.1 |
REndo | 2.4.9 | rentrez | 1.2.3 |
renv | 1.0.5 | 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.6 | represtools | 0.1.3 |
reprex | 2.1.0 | reproducible | 2.0.10 |
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.35.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.1 | 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.2.8 |
Rglpk | 0.6-5.1 | RgoogleMaps | 1.5.1 |
RGraphics | 3.0-2 | Rgraphviz | 2.44.0 |
rgrass | 0.4-1 | 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 | 1.1.2 | rib | 0.19.3 |
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.5 | 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.25 | 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.7-1 |
RMTstat | 0.3.1 | rmutil | 1.1.10 |
RMySQL | 0.10.27 | rmzqc | 0.5.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-1 |
RNeXML | 2.4.11 | rngtools | 1.5.2 |
rngWELL | 0.10-9 | RNifti | 1.6.0 |
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.6 | 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.0 | 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.5 | Rssa | 1.0.5 |
rstac | 1.0.0 | rstan | 2.32.5 |
rstanarm | 2.32.1 | rstantools | 2.4.0 |
rstatix | 0.7.2 | rstiefel | 1.0.1 |
rStrava | 1.3.0 | rstudioapi | 0.15.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.26 | 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-1.1 | runner | 0.4.3 |
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.4.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.2 |
SAScii | 1.0.2 | sass | 0.4.8 |
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.7 |
sdcSpatial | 0.5.2 | sdcTable | 0.32.6 |
sde | 2.0.18 | sdmTMB | 0.4.3 |
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.3.0.1 | secsse | 3.0.2 |
seer | 1.1.8 | seg | 0.5-7 |
segmented | 2.0-3 | 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.19 |
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.4 |
servr | 0.29 | sessioninfo | 1.2.2 |
setartree | 0.2.1 | setRNG | 2024.2-1 |
sets | 1.0-25 | settings | 0.2.7 |
Seurat | 5.0.2 | SeuratObject | 5.0.1 |
sf | 1.0-15 | 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.0 | shiny.semantic | 0.5.0 |
shinyAce | 0.4.2 | shinyalert | 3.0.0 |
shinybrms | 1.8.0 | shinyBS | 0.61.1 |
shinybusy | 0.3.2 | shinycssloaders | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.0 |
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.2 | showimage | 1.0.0 |
showtext | 0.9-7 | showtextdb | 3.0 |
SIBERG | 2.0.3 | sigmoid | 1.4.0 |
Signac | 1.12.0 | SignacX | 2.2.5 |
signal | 1.8-0 | signs | 0.1.2 |
sigora | 3.1.1 | SigTree | 1.10.6 |
Sim.DiffProc | 4.8 | simcdm | 0.1.2 |
SimComp | 3.3 | simex | 1.8 |
simfinapi | 1.0.0 | simglm | 0.8.9 |
SimilarityMeasures | 1.4 | SimInf | 9.6.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.6.2 | 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.0 | smoother | 1.1 |
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.0 | SOAs | 1.4 |
soc.ca | 0.8.0 | socceR | 0.1.1 |
socialmixr | 0.3.1 | 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.18.0 | sparklyr | 1.8.4 |
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-7 |
spatstat.data | 3.0-4 | spatstat.explore | 3.2-6 |
spatstat.geom | 3.2-9 | spatstat.linnet | 3.1-4 |
spatstat.model | 3.2-10 | 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.2.1 | sperrorest | 3.0.5 |
sphet | 2.0 | spiderbar | 0.2.5 |
spikeslab | 1.1.6 | spikeSlabGAM | 1.1-19 |
spINAR | 0.1.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.5.1 | 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.16.1 | 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-4 | starter | 0.1.14 |
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.4 |
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.0.0 | stringr | 1.5.1 |
strucchange | 1.5-3 | strucchangeRcpp | 1.5-3-1.0.4 |
StructuralDecompose | 0.1.1 | styler | 1.10.2 |
subplex | 1.8 | subscore | 3.3 |
sufficientForecasting | 0.1.0 | sugrrants | 0.2.8 |
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.2-1 | 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.5 | table1 | 1.4.3 |
tables | 0.9.17 | 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.5.1 | 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.15.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.5.1 | tester | 0.1.7 |
TestFunctions | 0.2.1 | testit | 0.13 |
TestScorer | 1.7.2 | testthat | 3.2.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.2 |
tgp | 2.4-22 | TH.data | 1.1-2 |
theft | 0.5.4.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.4 |
tibble | 3.2.1 | tibbletime | 0.1.8 |
tictoc | 1.2 | Tides | 2.1 |
tidyBdE | 0.3.5 | tidycensus | 1.6 |
tidyestimate | 1.1.1 | tidygraph | 1.3.1 |
tidyhydat | 0.6.1 | tidyLPA | 1.1.0 |
tidymodels | 1.1.1 | tidyquant | 1.0.7 |
tidyqwi | 0.1.2 | tidyr | 1.3.1 |
tidyREDCap | 1.1.1 | tidyRSS | 2.0.7 |
tidyselect | 1.2.0 | tidysynth | 0.2.0 |
tidytable | 0.11.0 | tidytext | 0.4.1 |
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.0.5 | tinytex | 0.49 |
tis | 1.39 | tkrplot | 0.0-27 |
TLMoments | 0.7.5.3 | tm | 0.7-11 |
tm.plugin.alceste | 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.10 | 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.2 |
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.4.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 | 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.1.2 |
turner | 0.1.7 | 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.1 |
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.0 | usmapdata | 0.2.1 |
utf8 | 1.2.4 | utility | 1.4.6 |
uuid | 1.2-0 | uwot | 0.1.16 |
V8 | 4.4.2 | VALERIE | 1.1.0 |
validate | 1.1.5 | validatetools | 0.5.2 |
valr | 0.7.0 | 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-0 |
VARshrink | 0.3.1 | varycoef | 0.3.4 |
VCA | 1.5.0 | vcd | 1.4-12 |
vcdExtra | 0.8-5 | vcr | 1.2.2 |
vctrs | 0.6.5 | vdg | 1.2.2 |
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.3 |
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 | 0.14.2 |
weights | 1.0.4 | welo | 0.1.3 |
WeMix | 4.0.3 | WGCNA | 1.72-5 |
WH | 1.1.0 | 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.5.0 |
wikitaxa | 0.4.0 | wildlifeDI | 0.5.1 |
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.0.1 | 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.29 | XBRL | 0.99.19.1 |
xfun | 0.42 | xgboost | 1.7.7.1 |
xgxr | 1.1.2 | XLConnect | 1.0.8 |
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.4 |
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.0 | yesno | 0.1.2 |
yhatr | 0.15.1 | yorkr | 0.0.41 |
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
Installed tensorflow CPU version.
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 | 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.12.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.7.3 |
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 | 2020-3.3 | LCAvarsel | 1.1 |
lcda | 0.3.2 | lcmm | 2.1.0 |
lctools | 0.2-8 | lda | 1.4.2 |
ldat | 0.3.3 | ldbounds | 2.0.2 |
leafem | 0.2.3 | leaflet | 2.2.1 |
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.0 | 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.0 | 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.1 |
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.2.2 | logging | 0.10-108 |
logitnorm | 0.8.39 | logitr | 1.1.1 |
logspline | 2.1.21 | lokern | 1.1-10.1 |
lomb | 2.2.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 | 2.9 |
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.1 |
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.6 | 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.0.6 |
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.18.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.1.0 | 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.2.0 | matrixTests | 0.2.3 |
maxLik | 1.5-2 | MaxPro | 4.1-2 |
maxstat | 0.7-25 | MBA | 0.1-0 |
mbbefd | 0.8.11 | MBC | 0.10-6 |
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.0.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.4-0 | metaheuristicOpt | 2.0.0 |
metaMA | 3.1.3 | metap | 1.9 |
metaplot | 0.8.4 | metaRNASeq | 1.0.7 |
metaSEM | 1.3.1 | metasens | 1.5-2 |
meteo | 2.0-2 | 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.2.16 |
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.12.1 |
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.1 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlogitBMA | 0.1-7 | mlr | 2.19.1 |
mlr3 | 0.17.2 | mlr3learners | 0.5.8 |
mlr3measures | 0.5.0 | mlr3misc | 0.14.0 |
mlr3spatiotempcv | 2.3.0 | mlr3tuning | 0.19.2 |
mlrMBO | 1.1.5.1 | mlVAR | 0.5.2 |
mma | 10.7-1 | mmand | 1.6.3 |
mmrm | 0.3.10 | 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 | 1.4.5 |
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.7.3 |
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 | 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-9 |
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.0 |
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 |
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.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.3.6 | NCmisc | 1.2.0 |
ncvreg | 3.14.1 | 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.0 | nflreadr | 1.4.0 |
nflseedR | 1.2.0 | NFLSimulatoR | 0.4.0 |
nflverse | 1.0.3 | ngspatial | 1.2-2 |
nhanesA | 1.0 | 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.6 | noaastormevents | 0.2.0 |
nodbi | 0.10.2 | nomisr | 0.4.7 |
nomnoml | 0.3.0 | NonCompart | 0.7.0 |
nonlinearTseries | 0.2.12 | nonmemica | 1.0.8 |
nonneg.cg | 0.1.6-1 | nonnest2 | 0.5-6 |
nor1mix | 1.3-2 | 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-0 | o2geosocial | 1.1.0 |
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.3 |
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.1 |
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 | 0.8.3 |
OPDOE | 1.0-10 | openair | 2.18-0 |
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-4 | openssl | 2.1.1 |
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.5.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.5 |
ParamHelpers | 1.14.1 | params | 0.7.3 |
paran | 1.5.2 | Pareto | 2.4.5 |
parma | 1.7 | parmigene | 1.1.0 |
parsedate | 1.3.1 | parsnip | 1.2.0 |
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.0 | 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.10.9 |
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.6 | 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.3 | pkgcache | 2.2.1 |
pkgconfig | 2.0.3 | pkgdepends | 0.7.1 |
pkgdown | 2.0.7 | 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-3 |
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.1 |
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.0 | 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.6 | 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-4 |
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.2 | praise | 1.0.0 |
pRecipe | 3.0.1-3 | PreciseSums | 0.6 |
PredCRG | 1.0.2 | prediction | 0.3.14 |
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.1 |
ProbitSpatial | 1.1 | pROC | 1.18.5 |
processx | 3.8.3 | prodigenr | 0.6.2 |
prodlim | 2023.08.28 | ProfessR | 2.4-3 |
profileModel | 0.6.1 | profileR | 0.3-5 |
profoc | 1.3.1 | 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.2.1 | prophet | 1.0 |
PROsetta | 0.4.1 | proto | 1.0.0 |
protoclust | 1.6.4 | protolite | 2.3.0 |
protr | 1.7-0 | protti | 0.7.0 |
protViz | 0.7.9 | proxy | 0.4-27 |
proxyC | 0.3.4 | 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.1 |
psychomix | 1.1-8 | psychonetrics | 0.11.5 |
psychotools | 0.7-3 | psychotree | 0.16-0 |
psychTools | 2.4.2 | psyphy | 0.3 |
PTAk | 2.0.0 | PTSR | 0.1.2 |
ptw | 1.9-16 | PTXQC | 1.1.0 |
pubmed.mineR | 1.0.19 | 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.2 | qpmadr | 1.1.0-0 |
qpNCA | 1.1.6 | qqconf | 1.3.2 |
qqplotr | 0.0.6 | QRM | 0.4-31 |
qrmdata | 2022-05-31-1 | qrmtools | 0.0-16 |
qrng | 0.0-10 | qs | 0.25.7 |
qtl | 1.66 | quadprog | 1.5-8 |
quadprogXT | 0.0.5 | qualmap | 0.2.2 |
qualtRics | 3.2.0 | Quandl | 2.11.0 |
quanteda | 3.3.1 | 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.2.7 |
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.3 |
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.0 |
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.1.0 |
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 | 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.8.4 |
REDCapR | 1.1.0 | REDCapTidieR | 1.0.0 |
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.4.2.1 |
REndo | 2.4.9 | rentrez | 1.2.3 |
renv | 1.0.5 | 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.6 | represtools | 0.1.3 |
reprex | 2.1.0 | reproducible | 2.0.10 |
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.35.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.1 | 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.2.8 |
Rglpk | 0.6-5.1 | RgoogleMaps | 1.5.1 |
RGraphics | 3.0-2 | Rgraphviz | 2.44.0 |
rgrass | 0.4-1 | 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 | 1.1.2 | rib | 0.19.3 |
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.5 | 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.25 | 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.7-1 |
RMTstat | 0.3.1 | rmutil | 1.1.10 |
RMySQL | 0.10.27 | rmzqc | 0.5.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-1 |
RNeXML | 2.4.11 | rngtools | 1.5.2 |
rngWELL | 0.10-9 | RNifti | 1.6.0 |
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.6 | 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.0 | 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.5 | Rssa | 1.0.5 |
rstac | 1.0.0 | rstan | 2.32.5 |
rstanarm | 2.32.1 | rstantools | 2.4.0 |
rstatix | 0.7.2 | rstiefel | 1.0.1 |
rStrava | 1.3.0 | rstudioapi | 0.15.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.26 | 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-1.1 | runner | 0.4.3 |
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.4.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.2 |
SAScii | 1.0.2 | sass | 0.4.8 |
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.7 |
sdcSpatial | 0.5.2 | sdcTable | 0.32.6 |
sde | 2.0.18 | sdmTMB | 0.4.3 |
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.3.0.1 | secsse | 3.0.2 |
seer | 1.1.8 | seg | 0.5-7 |
segmented | 2.0-3 | 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.19 |
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.4 |
servr | 0.29 | sessioninfo | 1.2.2 |
setartree | 0.2.1 | setRNG | 2024.2-1 |
sets | 1.0-25 | settings | 0.2.7 |
Seurat | 5.0.2 | SeuratObject | 5.0.1 |
sf | 1.0-15 | 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.0 | shiny.semantic | 0.5.0 |
shinyAce | 0.4.2 | shinyalert | 3.0.0 |
shinybrms | 1.8.0 | shinyBS | 0.61.1 |
shinybusy | 0.3.2 | shinycssloaders | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.0 |
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.2 | showimage | 1.0.0 |
showtext | 0.9-7 | showtextdb | 3.0 |
SIBERG | 2.0.3 | sigmoid | 1.4.0 |
Signac | 1.12.0 | SignacX | 2.2.5 |
signal | 1.8-0 | signs | 0.1.2 |
sigora | 3.1.1 | SigTree | 1.10.6 |
Sim.DiffProc | 4.8 | simcdm | 0.1.2 |
SimComp | 3.3 | simex | 1.8 |
simfinapi | 1.0.0 | simglm | 0.8.9 |
SimilarityMeasures | 1.4 | SimInf | 9.6.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.6.2 | 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.0 | smoother | 1.1 |
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.0 | SOAs | 1.4 |
soc.ca | 0.8.0 | socceR | 0.1.1 |
socialmixr | 0.3.1 | 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.18.0 | sparklyr | 1.8.4 |
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-7 |
spatstat.data | 3.0-4 | spatstat.explore | 3.2-6 |
spatstat.geom | 3.2-9 | spatstat.linnet | 3.1-4 |
spatstat.model | 3.2-10 | 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.2.1 | sperrorest | 3.0.5 |
sphet | 2.0 | spiderbar | 0.2.5 |
spikeslab | 1.1.6 | spikeSlabGAM | 1.1-19 |
spINAR | 0.1.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.5.1 | 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.16.1 | 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-4 | starter | 0.1.14 |
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.4 |
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.0.0 | stringr | 1.5.1 |
strucchange | 1.5-3 | strucchangeRcpp | 1.5-3-1.0.4 |
StructuralDecompose | 0.1.1 | styler | 1.10.2 |
subplex | 1.8 | subscore | 3.3 |
sufficientForecasting | 0.1.0 | sugrrants | 0.2.8 |
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.2-1 | 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.5 | table1 | 1.4.3 |
tables | 0.9.17 | 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.5.1 | 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.15.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.5.1 | tester | 0.1.7 |
TestFunctions | 0.2.1 | testit | 0.13 |
TestScorer | 1.7.2 | testthat | 3.2.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.2 |
tgp | 2.4-22 | TH.data | 1.1-2 |
theft | 0.5.4.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.4 |
tibble | 3.2.1 | tibbletime | 0.1.8 |
tictoc | 1.2 | Tides | 2.1 |
tidyBdE | 0.3.5 | tidycensus | 1.6 |
tidyestimate | 1.1.1 | tidygraph | 1.3.1 |
tidyhydat | 0.6.1 | tidyLPA | 1.1.0 |
tidymodels | 1.1.1 | tidyquant | 1.0.7 |
tidyqwi | 0.1.2 | tidyr | 1.3.1 |
tidyREDCap | 1.1.1 | tidyRSS | 2.0.7 |
tidyselect | 1.2.0 | tidysynth | 0.2.0 |
tidytable | 0.11.0 | tidytext | 0.4.1 |
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.0.5 | tinytex | 0.49 |
tis | 1.39 | tkrplot | 0.0-27 |
TLMoments | 0.7.5.3 | tm | 0.7-11 |
tm.plugin.alceste | 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.10 | 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.2 |
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.4.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 | 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.1.2 |
turner | 0.1.7 | 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.1 |
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.0 | usmapdata | 0.2.1 |
utf8 | 1.2.4 | utility | 1.4.6 |
uuid | 1.2-0 | uwot | 0.1.16 |
V8 | 4.4.2 | VALERIE | 1.1.0 |
validate | 1.1.5 | validatetools | 0.5.2 |
valr | 0.7.0 | 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-0 |
VARshrink | 0.3.1 | varycoef | 0.3.4 |
VCA | 1.5.0 | vcd | 1.4-12 |
vcdExtra | 0.8-5 | vcr | 1.2.2 |
vctrs | 0.6.5 | vdg | 1.2.2 |
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.3 |
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 | 0.14.2 |
weights | 1.0.4 | welo | 0.1.3 |
WeMix | 4.0.3 | WGCNA | 1.72-5 |
WH | 1.1.0 | 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.5.0 |
wikitaxa | 0.4.0 | wildlifeDI | 0.5.1 |
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.0.1 | 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.29 | XBRL | 0.99.19.1 |
xfun | 0.42 | xgboost | 1.7.7.1 |
xgxr | 1.1.2 | XLConnect | 1.0.8 |
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.4 |
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.0 | yesno | 0.1.2 |
yhatr | 0.15.1 | yorkr | 0.0.41 |
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
Upgraded R to version 4.3.3 and all R packages to their latest versions.
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 | 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.12.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.7.3 |
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 | 2020-3.3 | LCAvarsel | 1.1 |
lcda | 0.3.2 | lcmm | 2.1.0 |
lctools | 0.2-8 | lda | 1.4.2 |
ldat | 0.3.3 | ldbounds | 2.0.2 |
leafem | 0.2.3 | leaflet | 2.2.1 |
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.0 | 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.0 | 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.1 |
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.2.2 | logging | 0.10-108 |
logitnorm | 0.8.39 | logitr | 1.1.1 |
logspline | 2.1.21 | lokern | 1.1-10.1 |
lomb | 2.2.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 | 2.9 |
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.1 |
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.6 | 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.0.6 |
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.18.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.1.0 | 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.2.0 | matrixTests | 0.2.3 |
maxLik | 1.5-2 | MaxPro | 4.1-2 |
maxstat | 0.7-25 | MBA | 0.1-0 |
mbbefd | 0.8.11 | MBC | 0.10-6 |
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.0.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.4-0 | metaheuristicOpt | 2.0.0 |
metaMA | 3.1.3 | metap | 1.9 |
metaplot | 0.8.4 | metaRNASeq | 1.0.7 |
metaSEM | 1.3.1 | metasens | 1.5-2 |
meteo | 2.0-2 | 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.2.16 |
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.12.1 |
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.1 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlogitBMA | 0.1-7 | mlr | 2.19.1 |
mlr3 | 0.17.2 | mlr3learners | 0.5.8 |
mlr3measures | 0.5.0 | mlr3misc | 0.14.0 |
mlr3spatiotempcv | 2.3.0 | mlr3tuning | 0.19.2 |
mlrMBO | 1.1.5.1 | mlVAR | 0.5.2 |
mma | 10.7-1 | mmand | 1.6.3 |
mmrm | 0.3.10 | 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 | 1.4.5 |
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.7.3 |
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 | 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-9 |
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.0 |
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 |
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.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.3.6 | NCmisc | 1.2.0 |
ncvreg | 3.14.1 | 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.0 | nflreadr | 1.4.0 |
nflseedR | 1.2.0 | NFLSimulatoR | 0.4.0 |
nflverse | 1.0.3 | ngspatial | 1.2-2 |
nhanesA | 1.0 | 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.6 | noaastormevents | 0.2.0 |
nodbi | 0.10.2 | nomisr | 0.4.7 |
nomnoml | 0.3.0 | NonCompart | 0.7.0 |
nonlinearTseries | 0.2.12 | nonmemica | 1.0.8 |
nonneg.cg | 0.1.6-1 | nonnest2 | 0.5-6 |
nor1mix | 1.3-2 | 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-0 | o2geosocial | 1.1.0 |
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.3 |
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.1 |
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 | 0.8.3 |
OPDOE | 1.0-10 | openair | 2.18-0 |
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-4 | openssl | 2.1.1 |
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.5.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.5 |
ParamHelpers | 1.14.1 | params | 0.7.3 |
paran | 1.5.2 | Pareto | 2.4.5 |
parma | 1.7 | parmigene | 1.1.0 |
parsedate | 1.3.1 | parsnip | 1.2.0 |
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.0 | 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.10.9 |
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.6 | 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.3 | pkgcache | 2.2.1 |
pkgconfig | 2.0.3 | pkgdepends | 0.7.1 |
pkgdown | 2.0.7 | 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-3 |
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.1 |
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.0 | 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.6 | 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-4 |
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.2 | praise | 1.0.0 |
pRecipe | 3.0.1-3 | PreciseSums | 0.6 |
PredCRG | 1.0.2 | prediction | 0.3.14 |
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.1 |
ProbitSpatial | 1.1 | pROC | 1.18.5 |
processx | 3.8.3 | prodigenr | 0.6.2 |
prodlim | 2023.08.28 | ProfessR | 2.4-3 |
profileModel | 0.6.1 | profileR | 0.3-5 |
profoc | 1.3.1 | 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.2.1 | prophet | 1.0 |
PROsetta | 0.4.1 | proto | 1.0.0 |
protoclust | 1.6.4 | protolite | 2.3.0 |
protr | 1.7-0 | protti | 0.7.0 |
protViz | 0.7.9 | proxy | 0.4-27 |
proxyC | 0.3.4 | 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.1 |
psychomix | 1.1-8 | psychonetrics | 0.11.5 |
psychotools | 0.7-3 | psychotree | 0.16-0 |
psychTools | 2.4.2 | psyphy | 0.3 |
PTAk | 2.0.0 | PTSR | 0.1.2 |
ptw | 1.9-16 | PTXQC | 1.1.0 |
pubmed.mineR | 1.0.19 | 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.2 | qpmadr | 1.1.0-0 |
qpNCA | 1.1.6 | qqconf | 1.3.2 |
qqplotr | 0.0.6 | QRM | 0.4-31 |
qrmdata | 2022-05-31-1 | qrmtools | 0.0-16 |
qrng | 0.0-10 | qs | 0.25.7 |
qtl | 1.66 | quadprog | 1.5-8 |
quadprogXT | 0.0.5 | qualmap | 0.2.2 |
qualtRics | 3.2.0 | Quandl | 2.11.0 |
quanteda | 3.3.1 | 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.2.7 |
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.3 |
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.0 |
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.1.0 |
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 | 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.8.4 |
REDCapR | 1.1.0 | REDCapTidieR | 1.0.0 |
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.4.2.1 |
REndo | 2.4.9 | rentrez | 1.2.3 |
renv | 1.0.5 | 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.6 | represtools | 0.1.3 |
reprex | 2.1.0 | reproducible | 2.0.10 |
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.35.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.1 | 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.2.8 |
Rglpk | 0.6-5.1 | RgoogleMaps | 1.5.1 |
RGraphics | 3.0-2 | Rgraphviz | 2.44.0 |
rgrass | 0.4-1 | 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 | 1.1.2 | rib | 0.19.3 |
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.5 | 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.25 | 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.7-1 |
RMTstat | 0.3.1 | rmutil | 1.1.10 |
RMySQL | 0.10.27 | rmzqc | 0.5.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-1 |
RNeXML | 2.4.11 | rngtools | 1.5.2 |
rngWELL | 0.10-9 | RNifti | 1.6.0 |
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.6 | 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.0 | 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.5 | Rssa | 1.0.5 |
rstac | 1.0.0 | rstan | 2.32.5 |
rstanarm | 2.32.1 | rstantools | 2.4.0 |
rstatix | 0.7.2 | rstiefel | 1.0.1 |
rStrava | 1.3.0 | rstudioapi | 0.15.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.26 | 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-1.1 | runner | 0.4.3 |
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.4.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.2 |
SAScii | 1.0.2 | sass | 0.4.8 |
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.7 |
sdcSpatial | 0.5.2 | sdcTable | 0.32.6 |
sde | 2.0.18 | sdmTMB | 0.4.3 |
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.3.0.1 | secsse | 3.0.2 |
seer | 1.1.8 | seg | 0.5-7 |
segmented | 2.0-3 | 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.19 |
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.4 |
servr | 0.29 | sessioninfo | 1.2.2 |
setartree | 0.2.1 | setRNG | 2024.2-1 |
sets | 1.0-25 | settings | 0.2.7 |
Seurat | 5.0.2 | SeuratObject | 5.0.1 |
sf | 1.0-15 | 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.0 | shiny.semantic | 0.5.0 |
shinyAce | 0.4.2 | shinyalert | 3.0.0 |
shinybrms | 1.8.0 | shinyBS | 0.61.1 |
shinybusy | 0.3.2 | shinycssloaders | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.0 |
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.2 | showimage | 1.0.0 |
showtext | 0.9-7 | showtextdb | 3.0 |
SIBERG | 2.0.3 | sigmoid | 1.4.0 |
Signac | 1.12.0 | SignacX | 2.2.5 |
signal | 1.8-0 | signs | 0.1.2 |
sigora | 3.1.1 | SigTree | 1.10.6 |
Sim.DiffProc | 4.8 | simcdm | 0.1.2 |
SimComp | 3.3 | simex | 1.8 |
simfinapi | 1.0.0 | simglm | 0.8.9 |
SimilarityMeasures | 1.4 | SimInf | 9.6.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.6.2 | 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.0 | smoother | 1.1 |
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.0 | SOAs | 1.4 |
soc.ca | 0.8.0 | socceR | 0.1.1 |
socialmixr | 0.3.1 | 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.18.0 | sparklyr | 1.8.4 |
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-7 |
spatstat.data | 3.0-4 | spatstat.explore | 3.2-6 |
spatstat.geom | 3.2-9 | spatstat.linnet | 3.1-4 |
spatstat.model | 3.2-10 | 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.2.1 | sperrorest | 3.0.5 |
sphet | 2.0 | spiderbar | 0.2.5 |
spikeslab | 1.1.6 | spikeSlabGAM | 1.1-19 |
spINAR | 0.1.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.5.1 | 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.16.1 | 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-4 | starter | 0.1.14 |
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.4 |
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.0.0 | stringr | 1.5.1 |
strucchange | 1.5-3 | strucchangeRcpp | 1.5-3-1.0.4 |
StructuralDecompose | 0.1.1 | styler | 1.10.2 |
subplex | 1.8 | subscore | 3.3 |
sufficientForecasting | 0.1.0 | sugrrants | 0.2.8 |
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.2-1 | 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.5 | table1 | 1.4.3 |
tables | 0.9.17 | 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.5.1 | 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.15.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.5.1 | tester | 0.1.7 |
TestFunctions | 0.2.1 | testit | 0.13 |
TestScorer | 1.7.2 | testthat | 3.2.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.2 |
tgp | 2.4-22 | TH.data | 1.1-2 |
theft | 0.5.4.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.4 |
tibble | 3.2.1 | tibbletime | 0.1.8 |
tictoc | 1.2 | Tides | 2.1 |
tidyBdE | 0.3.5 | tidycensus | 1.6 |
tidyestimate | 1.1.1 | tidygraph | 1.3.1 |
tidyhydat | 0.6.1 | tidyLPA | 1.1.0 |
tidymodels | 1.1.1 | tidyquant | 1.0.7 |
tidyqwi | 0.1.2 | tidyr | 1.3.1 |
tidyREDCap | 1.1.1 | tidyRSS | 2.0.7 |
tidyselect | 1.2.0 | tidysynth | 0.2.0 |
tidytable | 0.11.0 | tidytext | 0.4.1 |
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.0.5 | tinytex | 0.49 |
tis | 1.39 | tkrplot | 0.0-27 |
TLMoments | 0.7.5.3 | tm | 0.7-11 |
tm.plugin.alceste | 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.10 | 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.2 |
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.4.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 | 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.1.2 |
turner | 0.1.7 | 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.1 |
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.0 | usmapdata | 0.2.1 |
utf8 | 1.2.4 | utility | 1.4.6 |
uuid | 1.2-0 | uwot | 0.1.16 |
V8 | 4.4.2 | VALERIE | 1.1.0 |
validate | 1.1.5 | validatetools | 0.5.2 |
valr | 0.7.0 | 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-0 |
VARshrink | 0.3.1 | varycoef | 0.3.4 |
VCA | 1.5.0 | vcd | 1.4-12 |
vcdExtra | 0.8-5 | vcr | 1.2.2 |
vctrs | 0.6.5 | vdg | 1.2.2 |
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.3 |
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 | 0.14.2 |
weights | 1.0.4 | welo | 0.1.3 |
WeMix | 4.0.3 | WGCNA | 1.72-5 |
WH | 1.1.0 | 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.5.0 |
wikitaxa | 0.4.0 | wildlifeDI | 0.5.1 |
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.0.1 | 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.29 | XBRL | 0.99.19.1 |
xfun | 0.42 | xgboost | 1.7.7.1 |
xgxr | 1.1.2 | XLConnect | 1.0.8 |
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.4 |
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.0 | yesno | 0.1.2 |
yhatr | 0.15.1 | yorkr | 0.0.41 |
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.2
rstudio-server: 2023.12.0+369
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
Applied security patching and updated all R packages to their latest versions. Additionally, included essential R packages for Actuarial Science, Optimization, Genomics, Proteomics, Metabolomics, Transcriptomics, and other Omics.
R: 4.3.2; 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 (4156)
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 |
adjclust | 0.6.8 | admisc | 0.34 |
AdMit | 2.1.9 | ads | 1.5-10 |
AdvancedBasketballStats | 1.0.1 | AER | 1.2-10 |
affy | 1.78.0 | affyio | 1.70.0 |
africamonitor | 0.2.4 | agricolae | 1.3-7 |
agricolaeplotr | 0.5.0 | agridat | 1.22 |
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-1 | 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.2 |
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.1 |
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.0.2 | ars | 0.6 |
aRxiv | 0.8 | 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 | 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.2 | av | 0.9.0 |
aweek | 1.0.3 | aws | 2.5-3 |
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.6 |
bain | 0.2.10 | BalancedSampling | 1.6.3 |
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.2 | 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.3 |
bayesmix | 0.7-6 | bayesnec | 2.1.1.0 |
bayesplot | 1.11.0 | bayesQR | 2.4 |
BayesSAE | 1.0-2 | bayestestR | 0.13.1 |
bayesTFR | 7.4-2 | BayesTools | 0.2.16 |
BayesTree | 0.3-1.5 | BayesVarSel | 2.2.5 |
BayesX | 0.3-3 | BAYSTAR | 0.2-10 |
baytrends | 2.0.9 | BB | 2019.10-1 |
BBmisc | 1.13 | bbmle | 1.0.25.1 |
bbotk | 0.7.3 | 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-6 |
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.0 | 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.0.4 | 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.4-15 | 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.15 |
bkmr | 0.2.2 | blaise | 1.3.11 |
blastula | 0.3.4 | 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.14 |
BoomSpikeSlab | 1.2.6 | bootnet | 1.5.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-12 |
BTM | 0.3.7 | bullishTrader | 1.0.1 |
bundesbank | 0.1-11 | BurStFin | 1.3 |
BurStMisc | 1.1 | BVAR | 1.0.4 |
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.3 | cancensus | 0.5.6 |
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.3 | 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.2.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.9 | ChemoSpecUtils | 1.0.4 |
cherryblossom | 0.1.0 | chess | 1.0.1 |
chilemapas | 0.3.0 | chk | 0.9.1 |
CHNOSZ | 2.0.0 | choiceDes | 0.9-3 |
CholWishart | 1.1.2 | choroplethr | 3.7.2 |
choroplethrMaps | 1.0.1 | chromoMap | 4.1.1 |
chromote | 0.1.2 | chron | 2.3-61 |
cifti | 0.4.5 | cinterpolate | 1.0.1 |
circlize | 0.4.15 | 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.11.1 |
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.3 | cobs | 1.3-5 |
coconots | 1.1.3 | COCONUT | 1.0.2 |
cocor | 1.1-4 | cocorresp | 0.4-3 |
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.9 | 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.1.1 |
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.4 | 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.0 |
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.0 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-11 |
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.0 | 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.14 |
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-25 |
dbhydroR | 0.2-8 | DBI | 1.2.1 |
DBItest | 1.8.0 | dbmss | 2.9-0 |
dbparser | 2.0.1 | dbplyr | 2.4.0 |
dbscan | 1.1-12 | dbx | 0.3.1 |
DChaos | 0.1-7 | dclone | 2.3-2 |
DCluster | 0.2-9 | 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-2 |
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.53 | 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.10 |
dials | 1.2.0 | 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.1 | DIscBIO | 1.2.2 |
DiscreteFDR | 1.3.6 | 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.3.2 | 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 | 0.10.3 |
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 | 0.5.3 | 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.31 |
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.2 | 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.23.3 |
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.67 | 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.1 | 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.0 |
eRm | 1.0-4 | 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.4.1 |
EstimateGroupNetwork | 0.3.1 | estimatr | 1.0.2 |
ETLUtils | 1.5 | etm | 1.1.1 |
etrm | 1.0.1 | etrunct | 0.1 |
etwfe | 0.3.5 | EUfootball | 0.0.1 |
eulerr | 7.0.0 | 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.3.4 | FactoClass | 1.2.9 |
factoextra | 1.0.7 | FactoMineR | 2.9 |
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.4 | 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.1 |
ffscrapr | 1.4.8 | ffsimulator | 1.2.3 |
fftwtools | 0.9-11 | fGarch | 4031.90 |
fHMM | 1.2.1 | FielDHub | 1.3.4 |
fields | 15.2 | fiery | 1.2.0 |
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.1 | 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.17 | 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.1 | 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.5.1 |
gaussquad | 1.0-3 | GaussSuppression | 0.7.0 |
gbm | 2.1.9 | gbutils | 0.5 |
gclus | 1.3.2 | GCPM | 1.2.2 |
gdalcubes | 0.6.4 | gdalraster | 1.8.0 |
gdalUtilities | 1.2.5 | gdata | 3.0.0 |
GDINA | 2.9.4 | gdistance | 1.6.4 |
gdpc | 1.1.4 | gdtools | 0.3.5 |
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-3 | geos | 0.2.4 |
geosapi | 0.6-7 | geoscale | 2.0.1 |
geosphere | 1.5-18 | geospt | 1.0-3 |
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.0 |
ggalt | 0.4.0 | gganimate | 1.0.8 |
ggdag | 0.2.11 | ggdemetra | 0.2.7 |
ggdendro | 0.1.23 | ggdist | 3.3.1 |
ggExtra | 0.10.1 | ggfittext | 0.10.2 |
ggforce | 0.4.1 | 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.12 |
ggnewscale | 0.4.9 | ggpath | 1.0.1 |
ggplot2 | 3.4.4 | ggplotify | 0.1.2 |
ggpmisc | 0.5.5 | ggpp | 0.5.6 |
ggpubr | 0.6.0 | ggquiver | 0.3.3 |
ggraph | 2.1.0 | ggrepel | 0.9.5 |
ggridges | 0.5.6 | ggsci | 3.0.0 |
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.0.0 | ggtree | 3.8.0 |
ggupset | 0.3.0 | ggvis | 0.4.8 |
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.1 | 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 | 2023.11-1 |
GPCMlasso | 0.1-7 | GPfit | 1.0-8 |
gplots | 3.1.3 | GPRMortality | 0.1.0 |
gprofiler2 | 0.2.2 | gradethis | 0.2.12.9004 |
graDiEnt | 1.0.1 | gRain | 1.4.1 |
grantham | 0.1.1 | graph | 1.78.0 |
graphicalVAR | 0.3.3 | graphite | 1.46.0 |
graphlayouts | 1.1.0 | graphsim | 1.0.3 |
graphTweets | 0.5.3 | grates | 1.1.0 |
gratis | 1.0.5 | gravitas | 0.1.3 |
gravity | 1.1 | gRbase | 2.0.1 |
greeks | 1.3.2 | greta | 0.4.3 |
greybox | 2.0.0 | grf | 2.3.1 |
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.1.2 | GroupSeq | 1.4.2 |
grplasso | 0.4-7 | grwat | 0.0.4 |
GSA | 1.03.2 | gsarima | 0.1-5 |
gsDesign | 3.6.0 | 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.9 | 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.0 |
hash | 2.2.6.3 | haven | 2.5.4 |
hbsae | 1.2 | HBV.IANIGLA | 0.2.6 |
HDF5Array | 1.28.1 | hdf5r | 1.3.9 |
hdi | 0.1-9 | HDInterval | 0.2.4 |
hdm | 0.3.1 | 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.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.1 | HH | 3.1-51 |
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.3 |
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 | 0.4.3 | iBreakDown | 2.1.2 |
IBrokers | 0.10-2 | ica | 1.0-3 |
ICAMS | 2.3.10 | 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.4.13 |
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.20 | 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.1.1 | 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.4.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.0 |
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 | 2023.12.07 | 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.0.2 |
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 | 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.12.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.7.3 |
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 | 2020-3.3 | LCAvarsel | 1.1 |
lcda | 0.3.1 | lcmm | 2.1.0 |
lctools | 0.2-8 | lda | 1.4.2 |
ldat | 0.3.3 | ldbounds | 2.0.2 |
leafem | 0.2.3 | leaflet | 2.2.1 |
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.2 |
lfactors | 1.0.4 | lfe | 2.9-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.0 | 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 |
limma | 3.56.1 | limSolve | 1.5.7 |
linelist | 1.0.0 | 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.1.5 | listcomp | 0.4.1 |
listenv | 0.9.1 | liteq | 1.1.0 |
lmds | 0.1.0 | lme4 | 1.1-35.1 |
lmerTest | 3.1-3 | lmForc | 0.1.0 |
lmm | 1.4 | lmodel2 | 1.7-3 |
lmom | 3.0 | lmomco | 2.4.13 |
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.8 | locits | 1.7.7 |
locpol | 0.8.0 | log4r | 0.4.3 |
logger | 0.2.2 | logging | 0.10-108 |
logitnorm | 0.8.39 | logitr | 1.1.1 |
logspline | 2.1.21 | lokern | 1.1-10.1 |
lomb | 2.2.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.6.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 | 2.9 |
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-13 | 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.2 | magrittr | 2.0.3 |
maGUI | 4.0 | mailR | 0.8 |
makeit | 1.0.1 | makepipe | 0.2.1 |
makeProject | 1.0 | MAMS | 2.0.1 |
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.6 | 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.0.3 |
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.17.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.8 | MassSpecWavelet | 1.66.0 |
Matching | 4.10-14 | matchingMarkets | 1.0-4 |
matchingR | 1.3.3 | MatchIt | 4.5.5 |
MatchThem | 1.1.0 | 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.2.0 | matrixTests | 0.2.3 |
maxLik | 1.5-2 | MaxPro | 4.1-2 |
maxstat | 0.7-25 | MBA | 0.1-0 |
mbbefd | 0.8.11 | MBC | 0.10-6 |
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.0.1 |
mcmc | 0.9-8 | MCMC.qpcr | 1.2.4 |
mcmcensemble | 3.0.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.6 | metadat | 1.2-0 |
metafor | 4.4-0 | metaheuristicOpt | 2.0.0 |
metaMA | 3.1.3 | metap | 1.9 |
metaplot | 0.8.3 | metaRNASeq | 1.0.7 |
metaSEM | 1.3.1 | metasens | 1.5-2 |
meteo | 2.0-2 | meteoland | 2.2.1 |
metR | 0.14.1 | 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.7 |
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.2.16 |
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.12.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-11 |
mixAR | 0.22.8 | MixedPsy | 1.1.0 |
mixexp | 1.2.7 | mixl | 1.3.3 |
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.1 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlogitBMA | 0.1-7 | mlr | 2.19.1 |
mlr3 | 0.17.2 | mlr3learners | 0.5.8 |
mlr3measures | 0.5.0 | mlr3misc | 0.14.0 |
mlr3spatiotempcv | 2.3.0 | mlr3tuning | 0.19.2 |
mlrMBO | 1.1.5.1 | mlVAR | 0.5.2 |
mma | 10.7-1 | mmand | 1.6.3 |
mmrm | 0.3.10 | 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 | 1.4.3 |
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.2 |
moments | 0.14.1 | momentuHMM | 1.5.5 |
mondate | 0.10.02 | mongolite | 2.7.3 |
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.0 | 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 | movecost | 2.0 |
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.3.0 |
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-9 |
multDM | 1.1.4 | multicool | 1.0.0 |
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.0 |
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 |
mvQuad | 1.0-8 | mvtnorm | 1.2-4 |
mvtsplot | 1.0-4 | mxkssd | 1.2 |
myClim | 1.0.12 | n1qn1 | 6.0.1-11 |
N2R | 1.0.1 | 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 | nanonext | 0.12.0 |
nanostringr | 0.4.1 | nanotime | 0.3.7 |
nardl | 0.1.6 | nasapower | 4.1.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.3.6 | NCmisc | 1.2.0 |
ncvreg | 3.14.1 | 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.1 | 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.2.0 | nflreadr | 1.4.0 |
nflseedR | 1.2.0 | NFLSimulatoR | 0.4.0 |
nflverse | 1.0.3 | ngspatial | 1.2-2 |
nhanesA | 1.0 | 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.0-1 |
nlts | 1.0-2 | NMF | 0.26 |
NMOF | 2.8-0 | nmw | 0.1.5 |
nnfor | 0.9.9 | nnls | 1.5 |
NNS | 10.5 | noaastormevents | 0.2.0 |
nodbi | 0.10.0 | nomisr | 0.4.7 |
nomnoml | 0.3.0 | NonCompart | 0.7.0 |
nonlinearTseries | 0.2.12 | nonmemica | 1.0.8 |
nonneg.cg | 0.1.6-1 | nonnest2 | 0.5-6 |
nor1mix | 1.3-2 | norm | 1.0-11.1 |
normalp | 0.7.2.1 | nortest | 1.0-4 |
nosoi | 1.1.0 | 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-0 | o2geosocial | 1.1.0 |
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.3 |
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.3.2 |
officer | 0.6.3 | ohoegdm | 0.1.0 |
OmicNavigator | 1.13.13 | omicwas | 0.8.0 |
ompr | 1.0.4 | omu | 1.1.1 |
onbrand | 1.0.4 | onlineforecast | 1.0.2 |
onls | 0.1-2 | ontologyIndex | 2.11 |
oompaBase | 3.2.9 | oompaData | 3.1.3 |
OOR | 0.1.4 | opdisDownsampling | 0.8.3 |
OPDOE | 1.0-10 | openair | 2.18-0 |
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-4 | openssl | 2.1.1 |
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.1.1 | OptHedging | 1.0 |
OptimalDesign | 1.0.1 | OptimaRegion | 1.2 |
optimbase | 1.0-10 | optimizeR | 1.0.3 |
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.5.0 |
pagoda2 | 1.0.11 | 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 |
parallelly | 1.36.0 | parallelMap | 1.5.1 |
parameters | 0.21.3 | ParamHelpers | 1.14.1 |
params | 0.7.3 | paran | 1.5.2 |
Pareto | 2.4.5 | parma | 1.7 |
parmigene | 1.1.0 | parsedate | 1.3.1 |
parsnip | 1.1.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.0 |
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.0 | 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.10.8 | 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.6 |
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.3 |
pkgcache | 2.2.1 | pkgconfig | 2.0.3 |
pkgdepends | 0.7.1 | pkgdown | 2.0.7 |
pkgfilecache | 0.1.4 | 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-3 | PLMIX | 2.1.1 |
PLmixed | 0.1.7 | plogr | 0.2.0 |
plot3D | 1.4 | plot3Drgl | 1.0.4 |
plotdap | 1.0.3 | plotly | 4.10.4 |
plotMCMC | 2.0.1 | plotmo | 3.6.2 |
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.1 | plyr | 1.8.9 |
PMA | 1.2-2 | 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.11.4 |
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-5 |
polyreg | 0.8.0 | pomp | 5.5 |
pool | 1.0.2 | 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-4 | 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.2 |
praise | 1.0.0 | pRecipe | 3.0.1-3 |
PreciseSums | 0.6 | PredCRG | 1.0.2 |
prediction | 0.3.14 | 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.4 | 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.1 | ProbitSpatial | 1.1 |
pROC | 1.18.5 | processx | 3.8.3 |
prodigenr | 0.6.2 | prodlim | 2023.08.28 |
ProfessR | 2.4-3 | profileModel | 0.6.1 |
profileR | 0.3-5 | profoc | 1.3.1 |
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.2.1 |
prophet | 1.0 | PROsetta | 0.4.1 |
proto | 1.0.0 | protoclust | 1.6.4 |
protolite | 2.3.0 | protr | 1.7-0 |
protti | 0.6.0 | protViz | 0.7.9 |
proxy | 0.4-27 | proxyC | 0.3.4 |
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.1 | psychomix | 1.1-8 |
psychonetrics | 0.11.5 | psychotools | 0.7-3 |
psychotree | 0.16-0 | psychTools | 2.4.2 |
psyphy | 0.3 | PTAk | 2.0.0 |
PTSR | 0.1.2 | ptw | 1.9-16 |
PTXQC | 1.1.0 | pubmed.mineR | 1.0.19 |
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.2.0 |
qgraph | 1.9.8 | qicharts2 | 0.7.4 |
qlcal | 0.0.10 | qmap | 1.0-4 |
qMRI | 1.2.7 | qpdf | 1.3.2 |
qpmadr | 1.1.0-0 | qpNCA | 1.1.6 |
qqconf | 1.3.2 | qqplotr | 0.0.6 |
QRM | 0.4-31 | qrmdata | 2022-05-31-1 |
qrmtools | 0.0-16 | qrng | 0.0-9 |
qs | 0.25.7 | qtl | 1.66 |
quadprog | 1.5-8 | quadprogXT | 0.0.5 |
qualmap | 0.2.2 | qualtRics | 3.2.0 |
Quandl | 2.11.0 | quanteda | 3.3.1 |
quantification | 0.2.0 | quantmod | 0.4.25 |
quantreg | 5.97 | quantspec | 1.2-3 |
Quartet | 1.2.5 | 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.45.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 |
R2OpenBUGS | 3.2-3.2.1 | r2rtf | 1.1.1 |
R2WinBUGS | 2.1-22 | 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.2.7 | 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.3 | 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.0 | 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-1 | 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.6.6.1 | RcppCCTZ | 0.2.12 |
RcppDate | 0.0.3 | RcppDE | 0.1.7 |
RcppDist | 0.1.1 | RcppEigen | 0.3.3.9.4 |
RcppGSL | 0.3.13 | RcppHNSW | 0.5.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.6 |
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.9 | reclin | 0.1.2 |
recmap | 1.0.17 | RecordLinkage | 0.4-12.4 |
redcapAPI | 2.8.4 | REDCapR | 1.1.0 |
REDCapTidieR | 1.0.0 | redland | 1.0.17-17 |
redux | 1.1.4 | RefManageR | 1.4.0 |
refugees | 2023.6.0 | regions | 0.1.8 |
registry | 0.5-1 | regnet | 1.0.0 |
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.4.2.1 | REndo | 2.4.9 |
rentrez | 1.2.3 | renv | 1.0.3 |
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.6 |
represtools | 0.1.3 | reprex | 2.1.0 |
reproducible | 2.0.10 | 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.35.0 |
retrosheet | 1.1.5 | 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.1 |
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.2.8 | Rglpk | 0.6-5.1 |
RgoogleMaps | 1.5.1 | RGraphics | 3.0-2 |
Rgraphviz | 2.44.0 | rgrass | 0.4-1 |
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 | 1.1.2 |
rib | 0.19.3 | riceidconverter | 1.1.1 |
RIdeogram | 0.2.2 | ridge | 3.3 |
riingo | 0.3.1 | Rilostat | 1.1.8 |
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.4 |
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.25 |
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.7-1 | RMTstat | 0.3.1 |
rmutil | 1.1.10 | RMySQL | 0.10.27 |
rmzqc | 0.5.3 | RNAseqNet | 0.1.4 |
RNAsmc | 0.8.0 | rnaturalearth | 1.0.1 |
rnaturalearthdata | 0.1.0 | RNCEP | 1.0.10 |
rncl | 0.8.7 | RND | 1.2 |
RNentropy | 1.2.3 | rneos | 0.4-0 |
RNetCDF | 2.9-1 | RNeXML | 2.4.11 |
rngtools | 1.5.2 | rngWELL | 0.10-9 |
RNifti | 1.5.1 | RNiftyReg | 2.8.1 |
rnn | 1.9.0 | rnoaa | 1.4.0 |
rnrfa | 2.1.0 | 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.6 |
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.0 |
RPANDA | 2.2 | rpanel | 1.1-5.2 |
rPanglaoDB | 0.2.1 | rpart.plot | 3.1.1 |
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.2 | 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 | 1.4.0 | RRreg | 0.7.5 |
RRTCS | 0.0.4 | rrum | 0.2.1 |
rsae | 0.2 | RSAGA | 1.4.0 |
Rsagacmd | 0.4.2 | rsample | 1.2.0 |
Rsamtools | 2.16.0 | RSclient | 0.7-10 |
rscopus | 0.6.6 | rsdmx | 0.6-3 |
rSEA | 2.1.1 | RSEIS | 4.1-6 |
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.5 |
Rssa | 1.0.5 | rstac | 0.9.2-5 |
rstan | 2.32.5 | rstanarm | 2.32.1 |
rstantools | 2.4.0 | rstatix | 0.7.2 |
rstiefel | 1.0.1 | rStrava | 1.3.0 |
rstudioapi | 0.15.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.26 |
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 | 1.2.1 |
rucrdtw | 0.1.6 | rugarch | 1.5-1 |
ruimtehol | 0.3.1 | ruin | 0.1.1 |
rules | 1.0.2 | runexp | 0.2.1 |
RUnit | 0.4.32 | runjags | 2.2.2-1.1 |
runner | 0.4.3 | 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.3 |
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.4.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.1 | SAScii | 1.0.2 |
sass | 0.4.8 | satellite | 1.0.4 |
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-15 | scatterD3 | 1.0.1 |
scattermore | 1.2 | scatterplot3d | 0.3-44 |
scBio | 0.1.6 | sccore | 1.0.4 |
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.7 | sdcSpatial | 0.5.2 |
sdcTable | 0.32.6 | sde | 2.0.18 |
sdmTMB | 0.4.2 | 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 | secsse | 3.0.2 |
seer | 1.1.8 | seg | 0.5-7 |
segmented | 2.0-2 | 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.19 |
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.4 |
servr | 0.28 | sessioninfo | 1.2.2 |
setartree | 0.2.1 | setRNG | 2022.4-1 |
sets | 1.0-25 | settings | 0.2.7 |
Seurat | 5.0.1 | SeuratObject | 5.0.1 |
sf | 1.0-15 | 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 | shapefiles | 0.7.2 |
shapes | 1.2.7 | SharpeR | 1.3.0 |
shazam | 1.2.0 | ShiftConvolvePoibin | 1.0.0 |
shiny | 1.8.0 | shiny.semantic | 0.5.0 |
shinyAce | 0.4.2 | shinyalert | 3.0.0 |
shinybrms | 1.8.0 | shinyBS | 0.61.1 |
shinybusy | 0.3.2 | shinycssloaders | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.0 |
shinyjqui | 0.4.1 | shinyjs | 2.1.0 |
shinystan | 2.6.0 | shinytest | 1.5.3 |
shinythemes | 1.2.0 | shinyTree | 0.3.1 |
shinyWidgets | 0.8.1 | showimage | 1.0.0 |
showtext | 0.9-6 | showtextdb | 3.0 |
SIBERG | 2.0.3 | sigmoid | 1.4.0 |
Signac | 1.12.0 | SignacX | 2.2.5 |
signal | 1.8-0 | signs | 0.1.2 |
sigora | 3.1.1 | SigTree | 1.10.6 |
Sim.DiffProc | 4.8 | simcdm | 0.1.2 |
SimComp | 3.3 | simex | 1.8 |
simfinapi | 0.2.4 | simglm | 0.8.9 |
SimilarityMeasures | 1.4 | SimInf | 9.6.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.0-32 |
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.6.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-5.7.1 | smacof | 2.1-5 |
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.0 | smoother | 1.1 |
smoothr | 1.0.1 | smoots | 1.1.4 |
smovie | 1.1.6 | SMPracticals | 1.4-3 |
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.8.0 | SOAs | 1.4 |
soc.ca | 0.8.0 | socceR | 0.1.1 |
socialmixr | 0.3.1 | 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.17.0 | sparklyr | 1.8.4 |
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.1 | spatialreg | 1.3-1 |
spatialsample | 0.5.1 | SpatialTools | 1.0.5 |
spatialwidget | 0.2.5 | spatstat | 3.0-7 |
spatstat.data | 3.0-4 | spatstat.explore | 3.2-6 |
spatstat.geom | 3.2-8 | spatstat.linnet | 3.1-3 |
spatstat.model | 3.2-8 | spatstat.random | 3.2-2 |
spatstat.sparse | 3.0-3 | spatstat.utils | 3.0-4 |
spBayes | 0.4-7 | spBayesSurv | 1.1.7 |
Spbsampling | 1.3.5 | spd | 2.0-1 |
spData | 2.3.0 | spdep | 1.3-1 |
spec | 0.1.7 | spectral | 2.0 |
speff2trial | 1.0.5 | SPEI | 1.8.1 |
spelling | 2.2.1 | sperrorest | 3.0.5 |
sphet | 2.0 | spiderbar | 0.2.5 |
spikeslab | 1.1.6 | spikeSlabGAM | 1.1-19 |
spINAR | 0.1.0 | spind | 2.2.1 |
splancs | 2.01-44 | SPLICE | 1.1.1 |
splines2 | 0.5.1 | splm | 1.6-5 |
spls | 2.2-3 | splus2R | 1.3-4 |
spmodel | 0.5.1 | spmoran | 0.2.3 |
SportsTour | 0.1.0 | sportyR | 2.2.1 |
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.16.1 | 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.5 | StanMoMo | 1.2.0 |
stargazer | 5.2.3 | starma | 1.3 |
stars | 0.6-4 | starter | 0.1.14 |
STARTS | 1.3-8 | startupmsg | 0.9.6 |
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.4 |
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.3 | 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.0.0 | stringr | 1.5.1 |
strucchange | 1.5-3 | strucchangeRcpp | 1.5-3-1.0.4 |
StructuralDecompose | 0.1.1 | styler | 1.10.2 |
subplex | 1.8 | subscore | 3.3 |
sufficientForecasting | 0.1.0 | sugrrants | 0.2.8 |
SummarizedExperiment | 1.30.2 | summclust | 0.7.2 |
suntools | 1.0.0 | supclust | 1.1-1 |
SuperLearner | 2.0-28.1 | superml | 0.5.6 |
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.2-1 | 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.4 |
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.8 | systemfit | 1.1-30 |
systemfonts | 1.0.5 | table1 | 1.4.3 |
tables | 0.9.17 | tabnet | 0.5.0 |
tabuSearch | 1.1.1 | TAF | 4.2.0 |
tagcloud | 0.6 | TailRank | 3.2.2 |
TAM | 4.1-4 | TAQMNGR | 2018.5-1 |
targets | 1.4.1 | 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.12 | 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.15.0 |
TensorPreAve | 1.1.0 | tensorTS | 1.0.1 |
TEQR | 6.0-0 | tergm | 4.2.0 |
Ternary | 2.3.0 | terra | 1.7-71 |
TESS | 2.1.2 | tesseract | 5.2.1 |
testcorr | 0.2.0 | TestDataImputation | 2.3 |
TestDesign | 1.5.1 | tester | 0.1.7 |
TestFunctions | 0.2.1 | testit | 0.13 |
TestScorer | 1.7.2 | testthat | 3.2.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.2 |
tgp | 2.4-22 | TH.data | 1.1-2 |
theft | 0.5.4.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.4 |
tibble | 3.2.1 | tibbletime | 0.1.8 |
tictoc | 1.2 | Tides | 2.1 |
tidyBdE | 0.3.5 | tidycensus | 1.6 |
tidyestimate | 1.1.1 | tidygraph | 1.3.1 |
tidyhydat | 0.6.1 | tidyLPA | 1.1.0 |
tidymodels | 1.1.1 | tidyquant | 1.0.7 |
tidyqwi | 0.1.2 | tidyr | 1.3.1 |
tidyREDCap | 1.1.1 | tidyRSS | 2.0.7 |
tidyselect | 1.2.0 | tidysynth | 0.2.0 |
tidytable | 0.10.2 | tidytext | 0.4.1 |
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 |
tinytex | 0.49 | tis | 1.39 |
tkrplot | 0.0-27 | TLMoments | 0.7.5.3 |
tm | 0.7-11 | tm.plugin.alceste | 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.10 |
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.3.5.1 |
traipse | 0.3.0 | trajectories | 0.2-8 |
TrajectoryUtils | 1.8.0 | trajr | 1.5.1 |
transfR | 1.0.11 | TransPhylo | 1.4.5 |
trapezoid | 2.0-2 | traudem | 1.0.1 |
tree | 1.0-43 | treebase | 0.1.4 |
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.4.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 | 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-8 | 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.1.2 |
turner | 0.1.7 | TUWmodel | 1.1-1 |
tvm | 0.5.2 | tweedie | 2.3.5 |
tweenr | 2.0.2 | 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.1 |
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.2 |
usmap | 0.7.0 | usmapdata | 0.2.0 |
utf8 | 1.2.4 | utility | 1.4.6 |
uuid | 1.2-0 | uwot | 0.1.16 |
V8 | 4.4.1 | VALERIE | 1.1.0 |
validate | 1.1.3 | validatetools | 0.5.2 |
valr | 0.7.0 | 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-0 |
VARshrink | 0.3.1 | varycoef | 0.3.4 |
VCA | 1.5.0 | vcd | 1.4-12 |
vcdExtra | 0.8-5 | vcr | 1.2.2 |
vctrs | 0.6.5 | vdg | 1.2.2 |
VedicDateTime | 0.1.9 | vegan | 2.6-4 |
vegperiod | 0.4.0 | VennDiagram | 1.7.3 |
venneuler | 1.1-4 | VGAM | 1.1-9 |
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.3 |
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.2 |
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 | 0.14.2 |
weights | 1.0.4 | welo | 0.1.3 |
WeMix | 4.0.3 | WGCNA | 1.72-5 |
WH | 1.1.0 | 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.5.0 |
wikitaxa | 0.4.0 | wildlifeDI | 0.5.1 |
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.7.3 | 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.3 |
workflowsets | 1.0.1 | 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.4.2 | WriteXLS | 6.5.0 |
wrMisc | 1.14.0 | wrProteo | 1.10.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.28 | XBRL | 0.99.19.1 |
xfun | 0.41 | xgboost | 1.7.7.1 |
xgxr | 1.1.2 | XLConnect | 1.0.8 |
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.2 | xslt | 1.4.4 |
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.0 | yesno | 0.1.2 |
yhatr | 0.15.1 | yorkr | 0.0.41 |
ypssc | 1.1.0 | yuima | 1.15.22 |
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 |
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.2
rstudio-server: 2023.12.0+369
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
Upgraded rstudio-server to version 2023.12.0+369, and all R packages to their latest versions. Additionally, included essential R packages for Econometrics.
R: 4.3.2; 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 and natural language processing.
R packages (3638)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.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 |
actuar | 3.3-4 | ada | 2.0-5 |
adagio | 0.9.2 | adaptivetau | 2.3 |
adaptMCMC | 1.4 | adaptr | 1.3.2 |
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 | admisc | 0.34 |
AdMit | 2.1.9 | ads | 1.5-10 |
AdvancedBasketballStats | 1.0.1 | AER | 1.2-10 |
affy | 1.78.0 | affyio | 1.70.0 |
africamonitor | 0.2.3 | agricolae | 1.3-7 |
agricolaeplotr | 0.3.1 | agridat | 1.22 |
agriwater | 1.0.2 | airGR | 1.7.6 |
airGRdatassim | 0.1.3 | airGRiwrm | 0.6.2 |
airGRteaching | 0.3.2 | airports | 0.1.0 |
ajv | 1.0.0 | akima | 0.6-3.4 |
alabama | 2023.1.0 | AlgDesign | 1.2.1 |
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-1 | AMR | 2.1.1 |
AnaCoDa | 0.1.4.4 | anacor | 1.1-4 |
analogsea | 1.0.7.2 | anesrake | 0.80 |
animation | 2.7 | anipaths | 0.10.2 |
AnnotationDbi | 1.62.1 | Anthropometry | 1.19 |
anytime | 0.3.9 | aod | 1.3.3 |
aoos | 0.5.0 | AovBay | 0.1.0 |
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.2.3 |
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.0.2 |
ars | 0.6 | aRxiv | 0.6 |
ascii | 2.4 | 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 |
aTSA | 3.1.2 | 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.2 | av | 0.9.0 |
aweek | 1.0.3 | aws | 2.5-3 |
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 |
BACCO | 2.1-0 | BACCT | 1.0 |
backports | 1.4.1 | backtest | 0.3-4 |
bacondecomp | 0.1.1 | baggr | 0.7.6 |
bain | 0.2.10 | BalancedSampling | 1.6.3 |
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 | 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 | 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.1 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.6 |
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 | 1.5.0 |
BayesMassBal | 1.1.0 | bayesmeta | 3.3 |
bayesmix | 0.7-6 | bayesnec | 2.1.1.0 |
bayesplot | 1.10.0 | bayesQR | 2.4 |
BayesSAE | 1.0-2 | bayestestR | 0.13.1 |
bayesTFR | 7.4-2 | BayesTools | 0.2.16 |
BayesTree | 0.3-1.4 | BayesVarSel | 2.2.5 |
BayesX | 0.3-3 | BAYSTAR | 0.2-10 |
baytrends | 2.0.9 | BB | 2019.10-1 |
BBmisc | 1.13 | bbmle | 1.0.25.1 |
bbotk | 0.7.3 | BCBCSF | 1.0-1 |
BCC1997 | 0.1.1 | BCE | 2.2.0 |
Bchron | 4.7.6 | bcp | 4.0.3 |
bcpa | 1.3.2 | bcrm | 0.5.4 |
BDgraph | 2.72 | bdrc | 1.1.0 |
bdsmatrix | 1.3-6 | BE | 0.2.4 |
beadarray | 2.50.0 | BeadDataPackR | 1.52.0 |
beakr | 0.4.3 | bearishTrader | 1.0.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 | berryFunctions | 1.22.0 |
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.0.4 |
BGLR | 1.1.1 | BGVAR | 2.5.5 |
bgw | 0.1.2 | BH | 1.84.0-0 |
BHH2 | 2016.05.31 | BiasedUrn | 2.0.11 |
bibtex | 0.5.1 | biclust | 2.0.3.1 |
bidask | 2.0.2 | bife | 0.7.2 |
BIFIEsurvey | 3.4-15 | 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.4.2 | 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 |
Biobase | 2.60.0 | BiocGenerics | 0.46.0 |
BiocManager | 1.30.22 | BiocParallel | 1.34.1 |
BiocVersion | 3.17.1 | bioinactivation | 1.2.3 |
biomformat | 1.28.0 | bioOED | 0.2.1 |
Biostrings | 2.68.0 | biotic | 0.1.2 |
bipartite | 2.19 | birtr | 1.0.0 |
bit | 4.0.5 | bit64 | 4.0.5 |
bitops | 1.0-7 | biwavelet | 0.20.21 |
bizdays | 1.0.13 | bkmr | 0.2.2 |
blaise | 1.3.11 | blastula | 0.3.4 |
blavaan | 0.5-2 | 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.18 | 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 | 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.14 |
BoomSpikeSlab | 1.2.6 | bootnet | 1.5.6 |
BootPR | 1.0 | bootstrap | 2019.6 |
bootUR | 1.0.2 | BoSSA | 3.7 |
boussinesq | 1.0.6 | boxr | 0.3.6 |
bpca | 1.3-6 | bqtl | 1.0-35 |
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 |
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 | bslib | 0.6.1 |
BsMD | 2023.920 | bspec | 1.6 |
bspmma | 0.1-2 | bssm | 2.0.2 |
BSSprep | 0.1 | bsts | 0.9.9 |
bsvars | 2.1.0 | BTLLasso | 0.1-11 |
BTM | 0.3.7 | bullishTrader | 1.0.1 |
bundesbank | 0.1-11 | BurStFin | 1.3 |
BurStMisc | 1.1 | BVAR | 1.0.4 |
bvartools | 0.2.4 | 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 | CalibrateSSB | 1.3.0 |
calibrator | 1.2-8 | callr | 3.7.3 |
cancensus | 0.5.6 | candisc | 0.8-6 |
CANSIM2R | 1.14.1 | caper | 1.0.3 |
captr | 0.3.0 | car | 3.1-2 |
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 | cartogram | 0.3.0 |
CAST | 0.9.0 | castor | 1.8.0 |
caTools | 1.18.2 | catR | 3.17 |
causact | 0.5.3 | CausalImpact | 1.3.0 |
CAvariants | 6.0 | cbsodataR | 1.0.1 |
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 | cfbfastR | 1.9.0 |
CFtime | 1.2.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 |
cherryblossom | 0.1.0 | chess | 1.0.1 |
chilemapas | 0.3.0 | chk | 0.9.1 |
choiceDes | 0.9-3 | CholWishart | 1.1.2 |
choroplethr | 3.7.2 | choroplethrMaps | 1.0.1 |
chromote | 0.1.2 | chron | 2.3-61 |
cifti | 0.4.5 | cinterpolate | 1.0.1 |
circlize | 0.4.15 | CircSpaceTime | 0.9.0 |
CircStats | 0.2-6 | circular | 0.5-0 |
ciTools | 0.6.1 | Claddis | 0.6.3 |
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.11.1 |
clinsig | 1.2 | clipr | 0.8.0 |
clisymbols | 1.2.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 |
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.3 | coconots | 1.1.3 |
cocor | 1.1-4 | cocorresp | 0.4-3 |
cocron | 1.0-1 | coda | 0.19-4 |
cOde | 1.1.1 | coin | 1.4-3 |
cointReg | 0.2.0 | collapse | 2.0.9 |
collapsibleTree | 0.1.8 | 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 | CommonJavaJars | 1.0-6 |
commonmark | 1.9.0 | compare | 0.2-6 |
CompQuadForm | 1.4.3 | comprehenr | 0.6.10 |
conditionz | 0.1.0 | conf.design | 2.0.0 |
config | 0.3.2 | confintr | 1.0.2 |
conflicted | 1.2.0 | conquer | 1.3.3 |
conquestr | 1.1.1 | 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 | 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 | 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.2 |
CPBayes | 1.1.0 | cpk | 1.3-1 |
cplm | 0.7-11 | 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.3 | 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.3 | 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.16.0 |
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 |
Cubist | 0.4.2.1 | curl | 5.2.0 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-11 |
d3Network | 0.5.2.1 | DAAG | 1.25.4 |
dae | 3.2.19 | daewr | 1.2-11 |
dagitty | 0.3-4 | DAKS | 2.1-3 |
DALEX | 2.4.3 | DAMOCLES | 2.3 |
data.table | 1.14.10 | data.tree | 1.1.0 |
DatabaseConnector | 6.3.2 | DataExplorer | 0.8.2 |
dataone | 2.2.2 | datapack | 1.4.1 |
datapasta | 3.1.0 | dataRetrieval | 2.7.14 |
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-25 |
dbhydroR | 0.2-8 | DBI | 1.2.0 |
DBItest | 1.8.0 | dbmss | 2.9-0 |
dbparser | 2.0.1 | dbplyr | 2.4.0 |
dbscan | 1.1-12 | dbx | 0.3.1 |
DChaos | 0.1-7 | dclone | 2.3-2 |
DCluster | 0.2-9 | DClusterm | 1.0-1 |
dcov | 0.1.1 | dCovTS | 1.4 |
dcurver | 0.9.2 | ddalpha | 1.3.13 |
DDD | 5.2.2 | dde | 1.0.4 |
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 | deldir | 2.0-2 |
deltaPlotR | 1.6 | dendextend | 1.17.1 |
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 |
Deriv | 4.1.3 | derivmkts | 0.2.5 |
desc | 1.4.3 | DescTools | 0.99.52 |
designmatch | 0.5.4 | desirability | 2.1 |
deSolve | 1.40 | desplot | 1.10 |
devtools | 2.4.5 | dexter | 1.3.3 |
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 | DHARMa | 0.4.6 |
DHS.rates | 0.9.1 | diagis | 0.2.3 |
diagonals | 6.4.0 | diagram | 1.6.5 |
DiagrammeR | 1.0.10 | dials | 1.2.0 |
DiceDesign | 1.10 | DiceEval | 1.6.1 |
DiceKriging | 1.6.0 | DiceView | 2.1-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 |
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 |
dipsaus | 0.2.8 | diptest | 0.77-0 |
Dire | 2.2.0 | DIRECT | 1.1.0 |
directlabels | 2023.8.25 | dirichletprocess | 0.4.2 |
dirmult | 0.1.3-5 | disaggR | 1.0.5.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.4 | distr | 2.9.2 |
distrEx | 2.9.0 | distributional | 0.3.2 |
distributions3 | 0.2.1 | DistributionUtils | 0.6-1 |
distrom | 1.0.1 | distrTeach | 2.9.0 |
dittodb | 0.1.7 | diversitree | 0.10-0 |
divest | 0.10.3 | 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.9 |
dmri.tracking | 0.1.0 | 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 | 0.5.3 | 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 | DRDID | 1.0.6 |
dreamerr | 1.4.0 | DriftBurstHypothesis | 0.4.0.1 |
DRR | 0.0.4 | dsa | 1.0.12 |
DSAIDE | 0.9.6 | dse | 2020.2-1 |
DSI | 1.5.0 | DSL | 0.1-7 |
DT | 0.31 | 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.1 |
dtw | 1.23-1 | dtwclust | 5.5.12 |
duckdb | 0.9.2-1 | duckduckr | 1.0.0 |
dygraphs | 1.1.1.6 | 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 | e1071 | 1.7-14 |
earlyR | 0.0.5 | earth | 5.3.2 |
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.0.0 | ecodist | 2.1.3 |
Ecohydmod | 1.0.0 | ECOSolveR | 0.5.5 |
ecoval | 1.2.9 | ecp | 3.1.5 |
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.3 |
egg | 0.4.5 | egor | 1.23.3 |
EGRET | 3.0.9 | EGRETci | 2.0.4 |
eha | 2.11.2 | eigenmodel | 1.11 |
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 | EMbC | 2.0.4 |
EMD | 1.5.9 | emdi | 2.2.1 |
emg | 1.0.9 | emmeans | 1.9.0 |
emulator | 1.2-21 | encode | 0.3.6 |
endtoend | 2.29 | energy | 1.7-11 |
EngrExpt | 0.1-8 | enrichwith | 0.3.1 |
ensembleBMA | 5.1.8 | entropart | 1.6-13 |
EntropyEstimation | 1.2 | EntropyMCMC | 1.0.4 |
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.67 | 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.1 | equivalence | 0.7.2 |
era | 0.4.1 | erer | 3.1 |
ergm | 4.6.0 | ergm.ego | 1.1.0 |
ergm.multi | 0.2.0 | eRm | 1.0-4 |
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.4.1 | EstimateGroupNetwork | 0.3.1 |
estimatr | 1.0.0 | ETLUtils | 1.5 |
etm | 1.1.1 | etrm | 1.0.1 |
etrunct | 0.1 | etwfe | 0.3.5 |
EUfootball | 0.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 |
ewoc | 0.3.0 | Exact | 3.2 |
exactextractr | 0.10.0 | 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 | eyelinker | 0.2.1 |
ez | 4.4-0 | fable | 0.3.3 |
fable.prophet | 0.1.0 | fabletools | 0.3.4 |
FactoClass | 1.2.8 | FactoMineR | 2.9 |
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.3 | 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 |
fBasics | 4032.96 | fBonds | 3042.78 |
fbRads | 17.0.0 | fCopulae | 4022.85 |
FD | 1.0-12.3 | fda | 6.1.4 |
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.9 | FFD | 1.0-9 |
fflr | 2.2.0 | ffscrapr | 1.4.8 |
ffsimulator | 1.2.3 | fftwtools | 0.9-11 |
fGarch | 4031.90 | fHMM | 1.2.0 |
FielDHub | 1.3.4 | fields | 15.2 |
fiery | 1.2.0 | 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 |
finnts | 0.4.0 | finreportr | 1.0.4 |
FinTS | 0.4-8 | fishMod | 0.29 |
fitdistrplus | 1.1-11 | fitzRoy | 1.3.0 |
fixest | 0.11.2 | FKF | 0.2.4 |
FKF.SP | 0.3.1 | flashClust | 1.01-2 |
flexclust | 1.4-1 | flexdashboard | 0.6.2 |
flexmix | 2.3-19 | FlexScan | 0.2.2 |
flextable | 0.9.4 | 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.5 | fmri | 1.9.12 |
fMultivar | 4031.84 | fnets | 0.1.5 |
FNN | 1.1.3.2 | 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-2 |
Frames2 | 0.2.1 | FRAPO | 0.4-1 |
fredr | 2.1.0 | freecurrencyapi | 0.1.0 |
freesurferformats | 0.1.17 | 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.1 | frontier | 1.1-8 |
frostr | 0.2.0 | fs | 1.6.3 |
fslr | 2.25.2 | fsMTS | 0.1.7 |
fst | 0.9.8 | fstcore | 0.9.18 |
fTrading | 3042.79 | ftsa | 6.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.3 | GAD | 1.1.1 |
gam | 1.22-3 | gamlr | 1.13-8 |
gamlss | 5.4-20 | gamlss.data | 6.0-2 |
gamlss.dist | 6.1-1 | 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.5.1 |
gaussquad | 1.0-3 | GaussSuppression | 0.7.0 |
gbm | 2.1.9 | gbutils | 0.5 |
gclus | 1.3.2 | GCPM | 1.2.2 |
gdalcubes | 0.6.4 | gdalraster | 1.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.5 |
gear | 0.3.4 | gee | 4.13-26 |
geepack | 1.3.9 | geiger | 2.0.11 |
genalg | 0.2.1 | gender | 0.6.0 |
GeneralizedHyperbolic | 0.8-6 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | GenomeInfoDb | 1.36.0 |
GenomeInfoDbData | 1.2.10 | GenomicRanges | 1.52.0 |
GenSA | 1.1.12 | 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.3 |
geometry | 0.4.7 | geomorph | 4.0.6 |
geonames | 0.999 | geonapi | 0.7 |
GEOquery | 2.68.0 | geoR | 1.9-3 |
geos | 0.2.4 | geosapi | 0.6-7 |
geoscale | 2.0.1 | geosphere | 1.5-18 |
geospt | 1.0-3 | geostan | 0.5.3 |
geotopbricks | 1.5.8.0 | geouy | 0.2.8 |
gert | 2.0.1 | GET | 0.5 |
getPass | 0.2-4 | gets | 0.37 |
GetTDData | 1.5.4 | gfonts | 0.2.0 |
GGally | 2.2.0 | ggalt | 0.4.0 |
gganimate | 1.0.8 | ggdag | 0.2.10 |
ggdemetra | 0.2.6 | ggdendro | 0.1.23 |
ggdist | 3.3.1 | ggExtra | 0.10.1 |
ggfittext | 0.10.1 | ggforce | 0.4.1 |
ggformula | 0.12.0 | ggfun | 0.1.3 |
gghalves | 0.1.4 | ggimage | 0.3.3 |
gginnards | 0.1.2 | ggmap | 4.0.0 |
ggmcmc | 1.5.1.1 | ggmuller | 0.5.6 |
ggnetwork | 0.5.12 | ggnewscale | 0.4.9 |
ggpath | 1.0.1 | ggplot2 | 3.4.4 |
ggplotify | 0.1.2 | ggpmisc | 0.5.5 |
ggpp | 0.5.6 | ggpubr | 0.6.0 |
ggquiver | 0.3.3 | ggraph | 2.1.0 |
ggrepel | 0.9.5 | ggridges | 0.5.5 |
ggsci | 3.0.0 | 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.0.0 |
ggtree | 3.8.0 | ggvis | 0.4.8 |
gh | 1.4.0 | ghyp | 1.6.4 |
Gifi | 0.4-0 | gifti | 0.8.0 |
GIGrvg | 0.8 | gimme | 0.7-15 |
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 | glmmTMB | 1.1.8 |
glmnet | 4.1-8 | glmx | 0.2-0 |
GlobalOptions | 0.1.2 | 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-3 | gmt | 2.0.3 |
gmvarkit | 2.1.0 | 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 | 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 |
GPArotation | 2023.11-1 | GPCMlasso | 0.1-6 |
GPfit | 1.0-8 | gplots | 3.1.3 |
gradethis | 0.2.12.9004 | gRain | 1.4.1 |
graph | 1.78.0 | graphicalVAR | 0.3.3 |
graphlayouts | 1.0.2 | graphTweets | 0.5.3 |
grates | 1.1.0 | gratis | 1.0.5 |
gravitas | 0.1.3 | gravity | 1.1 |
gRbase | 2.0.1 | greeks | 1.3.1 |
greta | 0.4.3 | greybox | 2.0.0 |
grf | 2.3.1 | 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.1.2 |
GroupSeq | 1.4.2 | grplasso | 0.4-7 |
grwat | 0.0.4 | gsarima | 0.1-5 |
gsDesign | 3.6.0 | gSEM | 0.4.3.4 |
gsheet | 0.4.5 | gsignal | 0.3-5 |
gsisdecoder | 0.0.1 | gsl | 2.1-8 |
GSODR | 3.1.9 | gss | 2.2-7 |
gstat | 2.1-1 | gsubfn | 0.7 |
gsw | 1.1-1 | gsynth | 1.2.1 |
gt | 0.10.0 | 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-1 |
gwrr | 0.2-2 | GWSDAT | 3.2.0 |
hackeRnews | 0.1.0 | HandTill2001 | 1.0.1 |
HaploSim | 1.8.4.2 | hardhat | 1.3.0 |
hash | 2.2.6.3 | haven | 2.5.4 |
hbsae | 1.2 | HBV.IANIGLA | 0.2.6 |
hdf5r | 1.3.8 | hdi | 0.1-9 |
HDInterval | 0.2.4 | hdm | 0.3.1 |
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.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 |
HH | 3.1-49 | hht | 2.1.6 |
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 |
Hmisc | 5.1-1 | HMMpa | 1.0.1 |
HMP | 2.0.1 | HMPTrees | 1.4 |
hms | 1.1.3 | hoardr | 0.5.3 |
homals | 1.0-10 | hommel | 1.6 |
hoopR | 2.1.0 | howzatR | 1.0.1 |
hpfilter | 1.0.2 | HSAUR3 | 1.0-14 |
htm2txt | 2.2.2 | htmlTable | 2.4.2 |
htmltools | 0.5.7 | HTMLUtils | 0.1.8 |
htmlwidgets | 1.6.4 | hts | 6.0.2 |
htsr | 2.1.3 | httpcache | 1.2.0 |
httpcode | 0.3.0 | httping | 0.2.0 |
httpRequest | 0.0.11 | httptest | 4.2.1 |
httpuv | 1.6.13 | 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.3 |
hwriter | 1.3.2.1 | hwwntest | 1.3.2 |
hydraulics | 0.6.1 | hydroEvents | 0.11 |
hydrogeo | 0.6-1 | hydroloom | 1.0.1 |
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.5 | ibdreg | 0.3.8 |
iBreakDown | 2.1.2 | IBrokers | 0.10-2 |
ica | 1.0-3 | ICAOD | 1.0.1 |
icarus | 0.3.2 | ICC | 2.4.0 |
iccbeta | 1.2.0 | Icens | 1.72.0 |
ICGE | 0.4.2 | ichimoku | 1.4.12 |
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.20 | 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 | 1.6.0 | igraphdata | 1.0.1 |
illuminaio | 0.42.0 | imbibe | 0.1.1 |
imguR | 1.0.3 | immer | 1.4-15 |
implied | 0.5 | implyr | 0.4.0 |
import | 1.3.1 | impute | 1.74.1 |
imputeTestbench | 3.0.3 | imputeTS | 3.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.5 | influence.SEM | 2.3 |
influenceR | 0.1.5 | influxdbr | 0.14.2 |
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.7 | InspectChangepoint | 1.2 |
instaR | 0.2.4 | intamap | 1.5-7 |
interp | 1.1-5 | intervals | 0.15.4 |
inum | 1.0-5 | invgamma | 1.1 |
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.0 |
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 |
ismev | 1.42 | Iso | 0.0-21 |
isoband | 0.2.7 | ISOcodes | 2023.12.07 |
IsoGene | 1.0-24 | 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 |
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 | jstor | 0.3.11 |
juicyjuice | 0.1.0 | JuliaConnectoR | 1.1.3 |
JWileymisc | 1.4.1 | kableExtra | 1.3.4 |
kalmanfilter | 2.0.2 | kappaSize | 1.2 |
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 |
kitagawa | 3.1.0 | kiwisR | 0.2.0 |
klaR | 1.7-3 | km.ci | 0.5-6 |
kmer | 1.1.2 | knitcitations | 1.0.12 |
knitLatex | 0.9.0 | knitr | 1.45 |
koRpus | 0.13-8 | ks | 1.14.1 |
kst | 0.5-4 | kutils | 1.73 |
kza | 4.1.0.1 | labdsv | 2.1-0 |
label.switching | 1.8 | labeling | 0.4.3 |
labelled | 2.12.0 | labelVector | 0.1.2 |
laeken | 0.5.2 | LaF | 0.8.4 |
lagged | 0.3.2 | 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.7.3 |
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 | 2020-3.3 | LCAvarsel | 1.1 |
lcda | 0.3.1 | lctools | 0.2-8 |
lda | 1.4.2 | ldat | 0.3.3 |
ldbounds | 2.0.2 | leafem | 0.2.3 |
leaflet | 2.2.1 | leaflet.extras | 1.0.0 |
leaflet.providers | 2.0.0 | leafpm | 0.1.0 |
leafpop | 0.1.0 | leafsync | 0.1.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
learnr | 0.11.5 | legion | 0.1.2 |
lfactors | 1.0.4 | lfe | 2.9-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 | lidR | 4.0.4 |
lifecontingencies | 1.3.11 | lifecycle | 1.0.4 |
liftr | 0.9.2 | LIM | 1.4.7 |
limma | 3.56.1 | limSolve | 1.5.7 |
linelist | 1.0.0 | link2GI | 0.5-3 |
linpk | 1.1.2 | linprog | 0.9-4 |
LinRegInteractive | 0.3-3 | lintools | 0.1.7 |
lisrelToR | 0.1.5 | listenv | 0.9.0 |
liteq | 1.1.0 | lme4 | 1.1-35.1 |
lmerTest | 3.1-3 | lmForc | 0.1.0 |
lmm | 1.4 | lmodel2 | 1.7-3 |
lmom | 3.0 | lmomco | 2.4.13 |
Lmoments | 1.3-1 | lmomRFA | 3.6 |
lmtest | 0.9-40 | LNIRT | 0.5.1 |
lobstr | 1.1.2 | locfit | 1.5-9.8 |
locits | 1.7.7 | locpol | 0.8.0 |
logger | 0.2.2 | logging | 0.10-108 |
logitnorm | 0.8.38 | logitr | 1.1.1 |
logspline | 2.1.21 | lokern | 1.1-10.1 |
lomb | 2.1.0 | longCatEDA | 0.31 |
longitudinalData | 2.4.5.1 | longmemo | 1.1-2 |
LongMemoryTS | 0.1.0 | longpower | 1.0.24 |
longurl | 0.3.3 | loo | 2.6.0 |
lordif | 0.3-3 | lotri | 0.4.3 |
lpacf | 1.0.1 | lpdensity | 2.4 |
lpirfs | 0.2.3 | LPM | 2.9 |
lpSolve | 5.6.20 | lpSolveAPI | 5.5.2.0-17.11 |
lsa | 0.73.3 | lsl | 0.5.6 |
lslx | 0.6.11 | LSMonteCarlo | 1.0 |
LSMRealOptions | 0.2.1 | LSTS | 2.1 |
LSWPlib | 0.1.0 | ltm | 1.2-0 |
ltsa | 1.4.6 | lubridate | 1.9.3 |
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-13 | m5 | 0.1.1 |
maat | 1.1.0 | madrat | 3.6.4 |
magclass | 6.10.0 | magic | 1.6-1 |
magick | 2.8.2 | magrittr | 2.0.3 |
mailR | 0.8 | makeit | 1.0.1 |
makepipe | 0.2.1 | makeProject | 1.0 |
MAMS | 2.0.1 | manipulate | 1.0.1 |
manipulateWidget | 0.11.1 | MAPA | 2.0.6 |
mapdata | 2.3.1 | mapdeck | 0.3.4 |
mapedit | 0.6.0 | mapiso | 0.3.0 |
maplegend | 0.1.0 | mapme.biodiversity | 0.5.0 |
mapmisc | 2.0.3 | mapproj | 1.2.11 |
maps | 3.4.2 | mapsapi | 0.5.4 |
mapsf | 0.8.0 | mapSpain | 0.8.0 |
maptiles | 0.6.1 | 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.17.0 | margins | 0.3.26 |
markdown | 1.12 | markophylo | 1.0.9 |
markovchain | 0.9.5 | MarkowitzR | 1.0.3 |
marmap | 1.0.10 | MARSS | 3.11.8 |
MassSpecWavelet | 1.66.0 | Matching | 4.10-14 |
matchingMarkets | 1.0-4 | MatchIt | 4.5.5 |
MatchThem | 1.1.0 | mathjaxr | 1.6-0 |
matlab | 1.0.4 | matlab2r | 1.5.0 |
matlabr | 1.5.2 | matrixcalc | 1.0-6 |
MatrixExtra | 0.1.14 | MatrixModels | 0.5-3 |
matrixStats | 1.2.0 | maxLik | 1.5-2 |
MaxPro | 4.1-2 | MBA | 0.1-0 |
MBC | 0.10-6 | MBHdesign | 2.3.15 |
mblm | 0.12.1 | mboost | 2.9-9 |
mbsts | 3.0 | mc2d | 0.2.0 |
MCAvariants | 2.6.1 | mclcar | 0.2-0 |
mclust | 6.0.1 | mcmc | 0.9-8 |
mcmcensemble | 3.0.0 | MCMCglmm | 2.35 |
MCMCpack | 1.6-3 | 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 |
meta | 6.5-0 | metacoder | 0.3.6 |
metadat | 1.2-0 | metafor | 4.4-0 |
metaplot | 0.8.3 | metaSEM | 1.3.1 |
metasens | 1.5-2 | meteo | 2.0-2 |
meteoland | 2.2.1 | metR | 0.14.1 |
Metrics | 0.1.4 | metRology | 0.9-28-1 |
mFilter | 0.1-5 | mfx | 1.2-2 |
mgm | 1.2-14 | mgsub | 1.7.3 |
mhurdle | 1.3-0 | mi | 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.7 | microsamplingDesign | 1.0.8 |
Microsoft365R | 2.4.0 | MicSim | 2.0.0 |
midasr | 0.8 | MIIVsem | 0.5.8 |
mime | 0.12 | mind | 1.1.0 |
MinEDfind | 0.1.3 | miniCRAN | 0.2.16 |
minimalRSD | 1.0.0 | minimaxdesign | 0.1.5 |
miniUI | 0.1.1.1 | minpack.lm | 1.2-4 |
minqa | 1.2.6 | mipfp | 3.2.1 |
mirai | 0.11.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.3 |
mixOmics | 6.24.0 | mixsqp | 0.3-54 |
mixtools | 2.0.0 | mize | 0.2.4 |
mkssd | 1.2 | mlapi | 0.1.1 |
mlbench | 2.1-3.1 | mlbstats | 0.1.0 |
MLCIRTwithin | 2.1.1 | MLDS | 0.5.1 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlogitBMA | 0.1-7 | mlr | 2.19.1 |
mlr3 | 0.17.2 | mlr3learners | 0.5.8 |
mlr3measures | 0.5.0 | mlr3misc | 0.13.0 |
mlr3spatiotempcv | 2.2.0 | mlr3tuning | 0.19.2 |
mlrMBO | 1.1.5.1 | mlVAR | 0.5.1 |
mma | 10.7-1 | mmand | 1.6.3 |
mmrm | 0.3.7 | mnormt | 2.1.1 |
MNP | 3.1-4 | modeest | 2.4.0 |
modeldata | 1.2.0 | modelenv | 0.1.1 |
ModelMap | 3.4.0.4 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.11 | modelsummary | 1.4.3 |
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.12.0 |
mokken | 3.1.0 | mombf | 3.4.2 |
moments | 0.14.1 | momentuHMM | 1.5.5 |
mondate | 0.10.02 | mongolite | 2.7.3 |
mongopipe | 0.1.1 | monmlp | 1.1.5 |
monobin | 0.2.4 | Morpho | 2.12 |
mosaic | 1.9.0 | mosaicCore | 0.9.4.0 |
mosaicData | 0.20.4 | motmot | 2.1.3 |
mousetrap | 3.2.2 | move | 4.2.4 |
movecost | 2.0 | moveHMM | 1.9 |
moveWindSpeed | 0.2.4 | movMF | 0.2-8 |
MPDiR | 0.2 | MplusAutomation | 1.1.0 |
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.3.0 |
mritc | 0.5-3 | mschart | 0.4.0 |
mscstexta4r | 0.1.2 | mscsweblm4r | 0.1.2 |
MSGARCH | 2.51 | 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-9 |
multDM | 1.1.4 | multicool | 1.0.0 |
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.0 |
musica | 0.1.3 | mvglmmRank | 1.2-4 |
mvLSW | 1.2.5 | mvMORPH | 1.1.9 |
mvnfast | 0.2.8 | mvnormtest | 0.1-9 |
mvQuad | 1.0-8 | mvtnorm | 1.2-4 |
mvtsplot | 1.0-4 | mxkssd | 1.2 |
n1qn1 | 6.0.1-11 | nabor | 0.5.0 |
NADA | 1.6-1.1 | NAEPirtparams | 1.0.0 |
NAEPprimer | 1.0.1 | nanoarrow | 0.3.0.1 |
nanonext | 0.12.0 | nanotime | 0.3.7 |
nardl | 0.1.6 | nasapower | 4.1.0 |
natserv | 1.0.0 | naturalsort | 0.1.3 |
NBAloveR | 0.1.3.3 | nbapalettes | 0.1.0 |
nbTransmission | 1.1.3 | ncappc | 0.3.0 |
ncar | 0.5.0 | ncbit | 2013.03.29.1 |
ncdf4 | 1.22 | ncdfgeom | 1.1.5 |
ncf | 1.3-2 | ncmeta | 0.3.6 |
NCmisc | 1.2.0 | ncvreg | 3.14.1 |
ndjson | 0.9.0 | nets | 0.9.1 |
network | 1.18.2 | 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.1 | networktree | 1.0.1 |
neuralnet | 1.44.2 | NeuralNetTools | 1.5.3 |
neurobase | 1.32.3 | neuroim | 0.0.6 |
neuRosim | 0.2-14 | nFactors | 2.4.1.1 |
NFCP | 1.2.1 | nfl4th | 1.0.4 |
nflfastR | 4.6.1 | nflplotR | 1.2.0 |
nflreadr | 1.4.0 | nflseedR | 1.2.0 |
NFLSimulatoR | 0.4.0 | nflverse | 1.0.3 |
ngspatial | 1.2-2 | nhanesA | 1.0 |
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 | nimble | 1.0.1 |
NISTnls | 0.9-13 | NlcOptim | 0.6 |
nleqslv | 3.3.5 | NlinTS | 1.4.5 |
nlmeVPC | 2.6 | nlmixr2 | 2.1.0 |
nlmixr2data | 2.0.8 | nlmixr2est | 2.2.0 |
nlmixr2extra | 2.0.8 | nlmixr2plot | 2.0.7 |
nlmixr2rpt | 0.2.0 | nloptr | 2.0.3 |
NLP | 0.2-1 | nls2 | 0.3-3 |
nlsem | 0.8-1 | nlstools | 2.0-1 |
nlts | 1.0-2 | NMOF | 2.8-0 |
nmw | 0.1.5 | nnfor | 0.9.9 |
nnls | 1.5 | NNS | 10.5 |
noaastormevents | 0.2.0 | nodbi | 0.9.8 |
nomisr | 0.4.7 | nomnoml | 0.3.0 |
NonCompart | 0.7.0 | nonlinearTseries | 0.2.12 |
nonmemica | 1.0.8 | nonnest2 | 0.5-6 |
norm | 1.0-11.1 | normalp | 0.7.2.1 |
nortest | 1.0-4 | nosoi | 1.1.0 |
notifyme | 0.3.0 | np | 0.60-17 |
NPflow | 0.13.3 | npi | 0.2.0 |
nppbib | 1.2-0 | NPRED | 1.0.7 |
nsarfima | 0.2.0.0 | nse | 1.21 |
nsprcomp | 0.5.1-2 | numbers | 0.8-5 |
numDeriv | 2016.8-1.1 | nvmix | 0.1-0 |
o2geosocial | 1.1.0 | oai | 0.4.0 |
OAIHarvester | 0.3-4 | OasisR | 3.1.0 |
obAnalytics | 0.1.1 | OBsMD | 11.1 |
occ | 1.1 | oce | 1.8-2 |
octopus | 0.4.2 | odbc | 1.4.1 |
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.3.1 | officer | 0.6.3 |
ohoegdm | 0.1.0 | onbrand | 1.0.4 |
onlineforecast | 1.0.2 | opdisDownsampling | 0.8.3 |
OPDOE | 1.0-10 | openair | 2.18-0 |
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-4 | openssl | 2.1.1 |
OpenStreetMap | 0.4.0 | openxlsx | 4.2.5.2 |
opera | 1.2.0 | operator.tools | 1.6.3 |
operators | 0.1-8 | optextras | 2019-12.4 |
OptGS | 1.1.1 | OptHedging | 1.0 |
OptimalDesign | 1.0.1 | OptimaRegion | 1.2 |
optimParallel | 1.0-2 | optimx | 2023-10.21 |
OptionPricing | 0.1.2 | optiscale | 1.2.2 |
ORCME | 2.0.2 | orderly | 1.4.3 |
ordinal | 2023.12-4 | ore | 1.7.4.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 |
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 |
packrat | 0.9.2 | padr | 0.6.2 |
pageviews | 0.5.0 | PairedData | 1.1.1 |
pairwise | 0.6.1-0 | paleobuddy | 1.0.0 |
paleotree | 3.4.5 | paleoTS | 0.5.3 |
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 |
parallelly | 1.36.0 | parallelMap | 1.5.1 |
parameters | 0.21.3 | ParamHelpers | 1.14.1 |
params | 0.7.3 | paran | 1.5.2 |
parma | 1.7 | parsedate | 1.3.1 |
parsnip | 1.1.1 | partitions | 1.10-7 |
partsm | 1.1-3 | party | 1.3-14 |
partykit | 1.2-20 | pastecs | 1.3.21 |
patchwork | 1.2.0 | paws | 0.4.0 |
paws.analytics | 0.5.0 | paws.application.integration | 0.5.0 |
paws.common | 0.7.0 | paws.compute | 0.5.0 |
paws.cost.management | 0.4.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-10 | PBIBD | 1.3 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
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 |
PearsonDS | 1.3.0 | pedigree | 1.4.2 |
PeerPerformance | 2.2.5 | penalized | 0.9-52 |
penppml | 0.2.3 | perfectphyloR | 0.2.1 |
performance | 0.10.8 | PerformanceAnalytics | 2.0.4 |
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 | pheatmap | 1.0.12 |
phonics | 1.3.10 | phyclust | 0.1-34 |
phyext2 | 0.0.4 | phylobase | 0.8.10 |
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 | pillar | 1.9.0 |
pingr | 2.0.3 | pinnacle.data | 0.1.4 |
pins | 1.3.0 | pipe.design | 0.5.1 |
pipeR | 0.6.1.3 | 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.3 |
pkgcache | 2.2.1 | pkgconfig | 2.0.3 |
pkgdepends | 0.7.1 | pkgdown | 2.0.7 |
pkgfilecache | 0.1.4 | pkgload | 1.3.3 |
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-3 | PLMIX | 2.1.1 |
PLmixed | 0.1.7 | plogr | 0.2.0 |
plot3D | 1.4 | plotdap | 1.0.3 |
plotly | 4.10.3 | plotMCMC | 2.0.1 |
plotmo | 3.6.2 | plotrix | 3.8-4 |
plotROC | 2.3.1 | plotSEMM | 2.4 |
PlotTools | 0.3.0 | pls | 2.8-3 |
plumber | 1.2.1 | plyr | 1.8.9 |
pmc | 1.0.6 | pmr | 1.2.5.1 |
pmxTools | 1.3 | png | 0.1-8 |
pointblank | 0.11.4 | poisbinom | 1.0.1 |
poLCA | 1.6.0.1 | polspline | 1.1.24 |
polyclip | 1.10-6 | polycor | 0.8-1 |
polyCub | 0.9.0 | polynom | 1.4-1 |
PolynomF | 2.0-5 | polyreg | 0.8.0 |
pomp | 5.5 | pool | 1.0.1 |
PopED | 0.6.0 | popEpi | 0.4.11 |
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-4 |
PowerUpR | 1.1.0 | PP | 0.6.3-11 |
ppcor | 1.1 | PPRL | 0.3.8 |
pps | 1.0 | prabclus | 2.3-3 |
pracma | 2.4.4 | PracTools | 1.4.2 |
praise | 1.0.0 | pRecipe | 3.0.1-2 |
PreciseSums | 0.6 | prediction | 0.3.14 |
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.4 |
prettyunits | 1.2.0 | prevalence | 0.4.1 |
prevR | 5.0.0 | princurve | 2.1.6 |
prism | 0.2.1 | ProbitSpatial | 1.1 |
pROC | 1.18.5 | processx | 3.8.3 |
prodigenr | 0.6.2 | prodlim | 2023.08.28 |
ProfessR | 2.4-3 | profileModel | 0.6.1 |
profileR | 0.3-5 | profoc | 1.3.0 |
profvis | 0.3.8 | progress | 1.2.3 |
progressr | 0.14.0 | PROJ | 0.4.5 |
proj4 | 1.0-13 | projects | 2.1.3 |
ProjectTemplate | 0.10.4 | promises | 1.2.1 |
prophet | 1.0 | PROsetta | 0.4.1 |
proto | 1.0.0 | protoclust | 1.6.4 |
protolite | 2.3.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | pryr | 0.1.6 |
ps | 1.7.5 | pscl | 1.5.5.1 |
psd | 2.1.1 | PSF | 0.5 |
psidR | 2.1 | pso | 1.0.4 |
pspline | 1.0-19 | psy | 1.2 |
psych | 2.3.12 | psychomix | 1.1-8 |
psychonetrics | 0.11.5 | psychotools | 0.7-3 |
psychotree | 0.16-0 | psychTools | 2.3.12 |
psyphy | 0.3 | PTAk | 2.0.0 |
PTSR | 0.1.2 | ptw | 1.9-16 |
pubmed.mineR | 1.0.19 | 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.16.2 | PxWebApiData | 0.8.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.2.0 | qgraph | 1.9.8 |
qicharts2 | 0.7.4 | qlcal | 0.0.9 |
qmap | 1.0-4 | qMRI | 1.2.7 |
qpdf | 1.3.2 | qpNCA | 1.1.6 |
qqconf | 1.3.2 | qqplotr | 0.0.6 |
QRM | 0.4-31 | qrmdata | 2022-05-31-1 |
qrmtools | 0.0-16 | qrng | 0.0-9 |
qs | 0.25.7 | qtl | 1.66 |
quadprog | 1.5-8 | qualmap | 0.2.2 |
qualtRics | 3.1.7 | Quandl | 2.11.0 |
quanteda | 3.3.1 | quantification | 0.2.0 |
quantmod | 0.4.25 | quantreg | 5.97 |
quantspec | 1.2-3 | Quartet | 1.2.5 |
questionr | 0.7.8 | QuickJSR | 1.0.9 |
quickpsy | 0.1.5.1 | qvalue | 2.32.0 |
qvcalc | 1.0.3 | R.cache | 0.16.0 |
R.devices | 2.17.1 | R.filesets | 2.15.0 |
R.huge | 0.10.0 | R.matlab | 3.7.0 |
R.methodsS3 | 1.8.2 | R.oo | 1.25.0 |
R.rsp | 0.45.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 | R2OpenBUGS | 3.2-3.2.1 |
r2rtf | 1.1.1 | R2WinBUGS | 2.1-22 |
R4CouchDB | 0.7.5 | R6 | 2.5.1 |
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.2.7 | ragtop | 1.1.1 |
rainbow | 3.7 | rakeR | 0.2.1 |
rAmCharts | 2.1.15 | ramcmc | 0.1.2 |
ramify | 0.3.3 | ramps | 0.6.18 |
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.3 | 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 | Rbeast | 1.0.0 |
rbedrock | 0.3.2 | rbenchmark | 1.0.0 |
RBGL | 1.76.0 | 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 |
Rcgmin | 2022-4.30 | rchess | 0.1 |
Rchoice | 0.3-6 | rcmdcheck | 1.4.0 |
Rcmdr | 2.9-1 | RcmdrMisc | 2.9-1 |
RcmdrPlugin.DoE | 0.12-5 | RcmdrPlugin.temis | 0.7.10 |
RColorBrewer | 1.1-3 | Rcpp | 1.0.12 |
RcppAnnoy | 0.0.21 | RcppArmadillo | 0.12.6.6.1 |
RcppCCTZ | 0.2.12 | RcppDate | 0.0.3 |
RcppDE | 0.1.7 | RcppDist | 0.1.1 |
RcppEigen | 0.3.3.9.4 | RcppGSL | 0.3.13 |
RcppHungarian | 0.3 | RcppParallel | 5.1.7 |
RcppProgress | 0.4.2 | RcppQuantuccia | 0.1.2 |
RcppRedis | 0.2.4 | RcppRoll | 0.3.0 |
RcppSimdJson | 0.1.11 | RcppThread | 2.1.6 |
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.4 |
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 | readabs | 0.4.14 |
reader | 1.0.6 | readODS | 2.1.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.9 | reclin | 0.1.2 |
recmap | 1.0.17 | RecordLinkage | 0.4-12.4 |
redcapAPI | 2.8.0 | REDCapR | 1.1.0 |
REDCapTidieR | 1.0.0 | redland | 1.0.17-17 |
redux | 1.1.4 | RefManageR | 1.4.0 |
refugees | 2023.6.0 | regions | 0.1.8 |
registry | 0.5-1 | regress | 1.3-21 |
RegSDC | 0.7.0 | regsem | 1.9.5 |
regspec | 2.7 | regtools | 1.7.0 |
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.4.2.1 | REndo | 2.4.9 |
rentrez | 1.2.3 | renv | 1.0.3 |
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.6 |
represtools | 0.1.3 | reprex | 2.1.0 |
reproducible | 2.0.10 | reproj | 0.4.3 |
reqres | 0.2.5 | REQS | 0.8-13 |
request | 0.1.0 | Require | 0.3.1 |
rerddap | 1.0.4 | rerddapXtracto | 1.1.7 |
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.34.0 |
retrosheet | 1.1.5 | retry | 0.1.0 |
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.1 |
rfigshare | 0.3.8 | rflexscan | 1.1.0 |
rgbif | 3.7.9 | 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.2.8 |
Rglpk | 0.6-5 | RgoogleMaps | 1.5.1 |
RGraphics | 3.0-2 | Rgraphviz | 2.44.0 |
rgrass | 0.4-1 | rgrass7 | 0.2-13 |
RGreenplum | 0.1.2 | rgugik | 0.4.0 |
RH2 | 0.2.4 | rhandsontable | 0.3.8 |
rhdf5 | 2.44.0 | rhdf5filters | 1.12.1 |
Rhdf5lib | 1.22.0 | RHMS | 1.7 |
rhosa | 0.2.0 | RhpcBLASctl | 0.23-42 |
rhub | 1.1.2 | rib | 0.19.3 |
riingo | 0.3.1 | Rilostat | 1.1.8 |
ring | 1.0.5 | RInside | 0.2.18 |
rintrojs | 0.3.3 | 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.2 |
rivernet | 1.2.3 | rivr | 1.2-3 |
rjags | 4-15 | rJava | 1.0-10 |
RJDBC | 0.2-10 | RJDemetra | 0.2.4 |
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 | 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 | rmapshaper | 0.5.0 |
RMariaDB | 1.3.1 | rmarkdown | 2.25 |
rmatio | 0.19.0 | RMAWGEN | 1.3.7 |
rmeta | 3.0 | rmgarch | 1.3-9 |
Rmpfr | 0.9-4 | rms | 6.7-1 |
rmutil | 1.1.10 | RMySQL | 0.10.27 |
rnaturalearth | 1.0.1 | rnaturalearthdata | 0.1.0 |
RNCEP | 1.0.10 | rncl | 0.8.7 |
RND | 1.2 | rneos | 0.4-0 |
RNetCDF | 2.9-1 | RNeXML | 2.4.11 |
rngtools | 1.5.2 | rngWELL | 0.10-9 |
RNifti | 1.5.1 | RNiftyReg | 2.8.1 |
rnn | 1.9.0 | rnoaa | 1.4.0 |
rnrfa | 2.1.0 | 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.5-2 | robustbase | 0.99-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 | roll | 1.1.6 |
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.0 | rpact | 3.4.0 |
RPANDA | 2.2 | rpanel | 1.1-5.2 |
rpart.plot | 3.1.1 | rpdo | 0.3.2 |
rpf | 1.0.14 | Rphylopars | 0.3.9 |
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.2 |
rprojroot | 2.0.4 | RPushbullet | 0.3.4 |
RPyGeo | 1.0.0 | rpymat | 0.1.7 |
RQuantLib | 0.4.17 | rrcov | 1.7-4 |
rredlist | 0.7.1 | rrefine | 2.1.0 |
RRPP | 1.4.0 | RRreg | 0.7.5 |
RRTCS | 0.0.4 | rrum | 0.2.1 |
rsae | 0.2 | RSAGA | 1.4.0 |
Rsagacmd | 0.4.2 | rsample | 1.2.0 |
RSclient | 0.7-10 | rscopus | 0.6.6 |
rsdmx | 0.6-3 | RSEIS | 4.1-6 |
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.4 |
Rssa | 1.0.5 | rstac | 0.9.2-5 |
rstan | 2.32.5 | rstanarm | 2.26.1 |
rstantools | 2.3.1.1 | rstatix | 0.7.2 |
rstiefel | 1.0.1 | rStrava | 1.3.0 |
rstudioapi | 0.15.0 | rsurface | 1.1.0 |
RSurveillance | 0.2.1 | rsvg | 2.6.0 |
Rsymphony | 0.1-33 | rTensor | 1.4.8 |
rtf | 0.4-14.1 | RTFA | 0.1.0 |
rticles | 0.26 | RTL | 1.3.5 |
rtoot | 0.3.4 | rtop | 0.6-8 |
RTransferEntropy | 0.2.21 | rtrim | 2.1.1 |
rts | 1.1-14 | Rtsne | 0.17 |
Rttf2pt1 | 1.3.12 | rtweet | 1.2.1 |
rucrdtw | 0.1.6 | rugarch | 1.5-1 |
ruimtehol | 0.3.1 | rules | 1.0.2 |
runexp | 0.2.1 | RUnit | 0.4.32 |
runjags | 2.2.2-1.1 | runner | 0.4.3 |
runstats | 1.1.0 | Runuran | 0.38 |
rust | 1.4.2 | Rvcg | 0.22.2 |
rversions | 2.1.2 | rvest | 1.0.3 |
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.1 | rxode2et | 2.0.11 |
rxode2ll | 2.0.11 | rxode2parse | 2.0.17 |
rxode2random | 2.0.12 | RYandexTranslate | 1.0 |
s2 | 1.1.6 | S4Vectors | 0.38.1 |
sae | 1.3 | saeRobust | 0.4.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 | sandwich | 3.1-0 |
sarima | 0.9.1 | SAScii | 1.0.2 |
sass | 0.4.8 | satellite | 1.0.4 |
sazedR | 2.0.2 | sbgcop | 0.980 |
SBN | 1.0.0 | scales | 1.3.0 |
scalreg | 1.0.1 | scam | 1.2-14 |
scatterD3 | 1.0.1 | scatterplot3d | 0.3-44 |
scholar | 0.2.4 | SCI | 1.0-2 |
scoringRules | 1.1.1 | scoringutils | 1.2.2 |
ScottKnott | 1.3-2 | scs | 3.2.4 |
SDaA | 0.1-5 | sdcHierarchies | 0.21.0 |
sdcMicro | 5.7.7 | sdcSpatial | 0.5.2 |
sdcTable | 0.32.6 | sde | 2.0.18 |
sdmTMB | 0.4.1 | 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 |
secsse | 3.0.2 | seer | 1.1.8 |
seg | 0.5-7 | segmented | 2.0-1 |
selectr | 0.4-2 | seleniumPipes | 0.3.7 |
sem | 3.1-15 | semds | 0.9-6 |
SemiPar | 1.0-4.2 | semPlot | 1.1.6 |
SEMsens | 1.5.5 | semsfa | 1.1 |
semTools | 0.5-6 | semtree | 0.9.19 |
semver | 0.2.0 | sendmailR | 1.4-0 |
SensoMineR | 1.27 | sentencepiece | 0.2.3 |
separationplot | 1.4 | seqDesign | 1.2 |
seqinr | 4.2-36 | seriation | 1.5.4 |
servr | 0.28 | sessioninfo | 1.2.2 |
setartree | 0.2.1 | setRNG | 2022.4-1 |
sets | 1.0-25 | settings | 0.2.7 |
sf | 1.0-15 | sFFLHD | 0.1.2 |
sfheaders | 0.4.3 | sfsmisc | 1.1-16 |
sftime | 0.2-0 | sgd | 1.1.1 |
sgeostat | 1.0-27 | shades | 1.4.0 |
shape | 1.4.6 | shapefiles | 0.7.2 |
shapes | 1.2.7 | SharpeR | 1.3.0 |
shiny | 1.8.0 | shiny.semantic | 0.4.3 |
shinyAce | 0.4.2 | shinyalert | 3.0.0 |
shinybrms | 1.8.0 | shinyBS | 0.61.1 |
shinycssloaders | 1.0.0 | shinydashboard | 0.7.2 |
shinydashboardPlus | 2.0.3 | shinyFiles | 0.9.3 |
ShinyItemAnalysis | 1.5.0 | shinyjqui | 0.4.1 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinytest | 1.5.3 | shinythemes | 1.2.0 |
shinyTree | 0.3.1 | shinyWidgets | 0.8.1 |
showimage | 1.0.0 | showtext | 0.9-6 |
showtextdb | 3.0 | sigmoid | 1.4.0 |
signal | 1.8-0 | signs | 0.1.2 |
SigTree | 1.10.6 | Sim.DiffProc | 4.8 |
simcdm | 0.1.2 | SimComp | 3.3 |
simex | 1.8 | simfinapi | 0.2.4 |
simglm | 0.8.9 | SimilarityMeasures | 1.4 |
SimInf | 9.6.0 | 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 |
singleRcapture | 0.2.1.1 | siplab | 1.6 |
sirt | 3.13-228 | 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.6.1 |
slackr | 3.3.1 | slam | 0.1-50 |
SLBDD | 0.0.4 | sleekts | 1.0.2 |
sleeperapi | 1.0.4 | Sleuth2 | 2.0-5 |
Sleuth3 | 1.0-3 | SLHD | 2.1-1 |
slider | 0.3.1 | slippymath | 0.3.1 |
sm | 2.2-5.7.1 | smacof | 2.1-5 |
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.0 | smoother | 1.1 |
smoothr | 1.0.1 | smoots | 1.1.4 |
smovie | 1.1.6 | SMPracticals | 1.4-3 |
sms | 2.3.1 | 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 | SOAs | 1.4 |
soc.ca | 0.8.0 | socceR | 0.1.1 |
socialmixr | 0.3.1 | 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 | sorvi | 0.8.21 |
sourcetools | 0.1.7-1 | sp | 2.1-2 |
sp23design | 0.9-1 | spacetime | 1.3-1 |
spam | 2.10-0 | spaMM | 4.4.16 |
spant | 2.17.0 | sparklyr | 1.8.4 |
sparktex | 0.1 | sparr | 2.3-10 |
sparseDFM | 1.0 | SparseFactorAnalysis | 1.0 |
sparseinv | 0.1.3 | SparseM | 1.81 |
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.1 |
spatialreg | 1.3-1 | spatialsample | 0.5.1 |
SpatialTools | 1.0.5 | spatialwidget | 0.2.3 |
spatstat | 3.0-7 | spatstat.data | 3.0-3 |
spatstat.explore | 3.2-5 | spatstat.geom | 3.2-7 |
spatstat.linnet | 3.1-3 | spatstat.model | 3.2-8 |
spatstat.random | 3.2-2 | spatstat.sparse | 3.0-3 |
spatstat.utils | 3.0-4 | spBayes | 0.4-7 |
spBayesSurv | 1.1.7 | Spbsampling | 1.3.5 |
spd | 2.0-1 | spData | 2.3.0 |
spdep | 1.3-1 | spec | 0.1.7 |
spectral | 2.0 | speff2trial | 1.0.5 |
SPEI | 1.8.1 | sperrorest | 3.0.5 |
sphet | 2.0 | spiderbar | 0.2.5 |
spikeslab | 1.1.6 | spikeSlabGAM | 1.1-19 |
spINAR | 0.1.0 | spind | 2.2.1 |
splancs | 2.01-44 | splines2 | 0.5.1 |
splm | 1.6-5 | splus2R | 1.3-4 |
spmodel | 0.5.1 | spmoran | 0.2.2.9 |
SportsTour | 0.1.0 | sportyR | 2.2.1 |
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.16.1 |
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.5 |
stargazer | 5.2.3 | starma | 1.3 |
stars | 0.6-4 | starter | 0.1.14 |
STARTS | 1.3-8 | startupmsg | 0.9.6 |
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.4 |
stlplus | 0.5.1 | stm | 1.3.7 |
STMedianPolish | 0.2 | stochvol | 3.2.3 |
stockAnalyst | 1.0.1 | stopwords | 2.3 |
storr | 1.2.5 | 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.0.0 | stringr | 1.5.1 |
strucchange | 1.5-3 | strucchangeRcpp | 1.5-3-1.0.4 |
StructuralDecompose | 0.1.1 | styler | 1.10.2 |
subplex | 1.8 | subscore | 3.3 |
sufficientForecasting | 0.1.0 | sugrrants | 0.2.8 |
summclust | 0.7.2 | suntools | 1.0.0 |
SuperLearner | 2.0-28.1 | superml | 0.5.6 |
SuppDists | 1.1-9.7 | support.CEs | 0.7-0 |
surface | 0.5 | suRtex | 0.9 |
survcomp | 1.50.0 | surveillance | 1.22.1 |
survey | 4.2-1 | surveybootstrap | 0.0.3 |
surveydata | 0.2.7 | surveyoutliers | 0.1 |
surveyplanning | 4.0 | surveysd | 1.3.1 |
survivalROC | 1.0.3.1 | survPresmooth | 1.1-11 |
svars | 1.3.11 | svd | 0.5.5 |
SVDNF | 0.1.8 | svglite | 2.1.3 |
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.4 |
symmoments | 1.2.1 | SYNCSA | 1.3.4 |
Synth | 1.1-8 | synthACS | 1.7.1 |
synthesis | 1.2.4 | synthpop | 1.8-0 |
sys | 3.4.2 | sysfonts | 0.8.8 |
systemfit | 1.1-30 | systemfonts | 1.0.5 |
table1 | 1.4.3 | tables | 0.9.17 |
tabnet | 0.5.0 | TAF | 4.2.0 |
TAM | 4.1-4 | TAQMNGR | 2018.5-1 |
targets | 1.4.1 | tau | 0.0-25 |
taxize | 0.9.100 | TBRDist | 1.0.2 |
tbrf | 0.1.5 | tcltk2 | 1.2-11 |
Tcomp | 1.0.1 | tdigest | 0.4.1 |
TeachingDemos | 2.12 | 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.14.0 |
TensorPreAve | 1.1.0 | tensorTS | 1.0.1 |
TEQR | 6.0-0 | tergm | 4.2.0 |
Ternary | 2.3.0 | terra | 1.7-65 |
TESS | 2.1.2 | tesseract | 5.2.1 |
testcorr | 0.2.0 | TestDataImputation | 2.3 |
TestDesign | 1.5.1 | tester | 0.1.7 |
testit | 0.13 | TestScorer | 1.7.2 |
testthat | 3.2.1 | TexExamRandomizer | 1.2.3 |
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 | tfplot | 2021.6-1 |
tframe | 2015.12-1.1 | tfruns | 1.5.1 |
tgp | 2.4-22 | TH.data | 1.1-2 |
theft | 0.5.4.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.4 |
tibble | 3.2.1 | tibbletime | 0.1.8 |
tictoc | 1.2 | Tides | 2.1 |
tidyBdE | 0.3.4 | tidycensus | 1.5 |
tidygraph | 1.3.0 | tidyhydat | 0.6.1 |
tidyLPA | 1.1.0 | tidymodels | 1.1.1 |
tidyquant | 1.0.7 | tidyqwi | 0.1.2 |
tidyr | 1.3.0 | tidyREDCap | 1.1.1 |
tidyRSS | 2.0.7 | tidyselect | 1.2.0 |
tidysynth | 0.2.0 | tidytable | 0.10.2 |
tidytext | 0.4.1 | tidytree | 0.4.6 |
tidyverse | 2.0.0 | tiff | 0.1-12 |
tigris | 2.0.4 | tikzDevice | 0.12.6 |
timechange | 0.2.0 | timeDate | 4032.109 |
timeSeries | 4032.108 | timeseriesdb | 1.0.0-1.1.2 |
timetk | 2.9.0 | timsac | 1.3.8-4 |
tinyProject | 0.6.1 | tinytex | 0.49 |
tis | 1.39 | tkrplot | 0.0-27 |
TLMoments | 0.7.5.3 | tm | 0.7-11 |
tm.plugin.alceste | 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.10 | tmvnsim | 1.0-2 |
tmvtnorm | 1.6 | 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 |
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.2 |
trackdown | 1.1.1 | trackeR | 1.5.2 |
trackeRapp | 1.2 | TrackReconstruction | 1.3 |
tractor.base | 3.3.5.1 | traipse | 0.3.0 |
trajectories | 0.2-8 | trajr | 1.5.1 |
transfR | 1.0.11 | TransPhylo | 1.4.5 |
trapezoid | 2.0-2 | traudem | 1.0.1 |
tree | 1.0-43 | treebase | 0.1.4 |
TreeBUGS | 1.5.0 | treedater | 0.5.0 |
TreeDist | 2.7.0 | treeio | 1.24.0 |
treemap | 2.4-4 | TreeSearch | 1.4.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 | TSA | 1.3.1 |
TSANN | 0.1.0 | tsbox | 0.4.1 |
tsBSS | 1.0.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 |
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.3 |
tsibbledata | 0.4.1 | tsibbletalk | 0.1.0 |
tsintermittent | 1.10 | tsiR | 0.4.3 |
TSLSTM | 0.1.0 | tsModel | 0.6-1 |
tsoutliers | 0.6-8 | 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.1.2 |
turner | 0.1.7 | TUWmodel | 1.1-1 |
tvm | 0.5.2 | tweedie | 2.3.5 |
tweenr | 2.0.2 | twosamples | 2.0.1 |
txtq | 0.2.4 | tzdb | 0.4.0 |
uaparserjs | 0.3.5 | ubiquity | 2.0.1 |
ucminf | 1.2.1 | UComp | 4.0.2 |
udpipe | 0.8.11 | ufRisk | 1.0.7 |
ugatsdb | 0.2.3 | uGMAR | 3.4.5 |
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.3 | 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.2 |
usmap | 0.6.4 | usmapdata | 0.1.2 |
utf8 | 1.2.4 | utility | 1.4.6 |
uuid | 1.1-1 | uwot | 0.1.16 |
V8 | 4.4.1 | validate | 1.1.3 |
validatetools | 0.5.2 | vapour | 0.9.5 |
VAR.etp | 1.1 | VARDetect | 0.1.6 |
vardiag | 0.2-1 | vardpoor | 0.20.1 |
VaRES | 1.0.2 | vars | 1.6-0 |
VARshrink | 0.3.1 | varycoef | 0.3.4 |
VCA | 1.4.5 | vcd | 1.4-12 |
vcdExtra | 0.8-5 | vcr | 1.2.2 |
vctrs | 0.6.5 | vdg | 1.2.2 |
VedicDateTime | 0.1.9 | vegan | 2.6-4 |
vegperiod | 0.4.0 | VennDiagram | 1.7.3 |
venneuler | 1.1-3 | VGAM | 1.1-9 |
VGAMdata | 1.1-9 | vglmer | 1.0.3 |
VIC5 | 0.2.6 | VIM | 6.2.2 |
VineCopula | 2.5.0 | vip | 0.4.1 |
viridis | 0.6.4 | viridisLite | 0.4.2 |
visNetwork | 2.1.2 | visualize | 4.5.0 |
vkR | 0.2 | volatilityTrader | 1.0.1 |
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.3 | 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.2 | wbstats | 1.0.4 |
wCorr | 1.9.8 | WDI | 2.7.8 |
wdman | 0.2.6 | WebAnalytics | 0.9.12 |
webdriver | 1.0.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 | 0.14.2 | weights | 1.0.4 |
welo | 0.1.3 | WeMix | 4.0.3 |
whisker | 0.4.1 | whitebox | 2.3.4 |
whoami | 1.3.0 | widgetframe | 0.3.1 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
wikipediatrend | 2.1.6 | WikipediR | 1.5.0 |
wikitaxa | 0.4.0 | wildlifeDI | 0.5.1 |
windex | 2.0.7 | wINEQ | 1.2.0 |
withr | 2.5.2 | wk | 0.9.1 |
wktmo | 1.0.5 | wkutils | 0.1.3 |
wnl | 0.7.3 | 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.3 |
workflowsets | 1.0.1 | 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.4.2 | WriteXLS | 6.5.0 |
WRSS | 3.1 | wrswoR | 1.1.1 |
WRTDStidal | 1.1.4 | WufooR | 1.0.1 |
x12 | 1.10.3 | x13binary | 1.1.57-4 |
xaringan | 0.28 | XBRL | 0.99.19.1 |
xfun | 0.41 | xgboost | 1.7.6.1 |
xgxr | 1.1.2 | XLConnect | 1.0.7 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.16 | xml2 | 1.3.6 |
XML2R | 0.0.6 | xopen | 1.0.0 |
xplain | 0.2.2 | xpose | 0.4.17 |
xpose.nlmixr2 | 0.4.0 | xpose4 | 4.7.2 |
xslt | 1.4.4 | xtable | 1.8-4 |
xts | 0.13.1 | XVector | 0.40.0 |
xxIRT | 2.1.2 | yaImpute | 1.0-34 |
yaml | 2.3.8 | yardstick | 1.2.0 |
yesno | 0.1.2 | yhatr | 0.15.1 |
yorkr | 0.0.41 | yuima | 1.15.22 |
yulab.utils | 0.1.3 | zeallot | 0.1.0 |
zen4R | 0.9 | zic | 0.9.1 |
ZIM | 1.1.0 | ZINARp | 0.1.0 |
zip | 2.3.0 | zipfR | 0.6-70 |
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.2
rstudio-server: 2023.09.01-494
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
Upgraded R to version 4.3.2, rstudio-server to version 2023.09.01-494, and all R packages to their latest versions. Additionally, included essential R packages for Reproducible Research, Phylogenetics, Web Technologies, Hydrology, and Sports Analytics.
R: 4.3.2; rstudio-server: 2023.09.1-494; 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, 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 and natural language processing.
R packages (3518)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.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 |
actuar | 3.3-3 | ada | 2.0-5 |
adagio | 0.9.2 | adaptivetau | 2.2-3 |
adaptMCMC | 1.4 | adaptr | 1.3.2 |
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 | admisc | 0.33 |
AdMit | 2.1.9 | ads | 1.5-9 |
AdvancedBasketballStats | 1.0.1 | AER | 1.2-10 |
affy | 1.78.0 | affyio | 1.70.0 |
africamonitor | 0.2.3 | agricolae | 1.3-7 |
agricolaeplotr | 0.3.1 | agridat | 1.22 |
agriwater | 1.0.2 | airGR | 1.7.6 |
airGRdatassim | 0.1.3 | airGRiwrm | 0.6.2 |
airGRteaching | 0.3.2 | airports | 0.1.0 |
ajv | 1.0.0 | akima | 0.6-3.4 |
alabama | 2023.1.0 | AlgDesign | 1.2.1 |
almanac | 1.0.0 | alphavantager | 0.1.3 |
ALTopt | 0.1.2 | Amelia | 1.8.1 |
AmericanCallOpt | 0.95 | ammiBayes | 1.0-1 |
AMR | 2.1.1 | AnaCoDa | 0.1.4.4 |
anacor | 1.1-4 | analogsea | 1.0.7.2 |
anesrake | 0.80 | animation | 2.7 |
anipaths | 0.10.2 | AnnotationDbi | 1.62.1 |
Anthropometry | 1.19 | anytime | 0.3.9 |
aod | 1.3.2 | aoos | 0.5.0 |
AovBay | 0.1.0 | ape | 5.7-1 |
APFr | 1.0.2 | aphid | 1.3.5 |
aphylo | 0.3-3 | aplot | 0.2.2 |
approximator | 1.2-8 | 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.2.3 | 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 | 13.0.0.1 | ars | 0.6 |
aRxiv | 0.6 | ascii | 2.4 |
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.0 |
asymmetry | 2.0.4 | ata | 1.1.1 |
atom4R | 0.3-3 | aTSA | 3.1.2 |
attempt | 0.3.1 | attention | 0.3.0 |
AUC | 0.3.2 | audio | 0.1-11 |
autoFRK | 1.4.3 | autoimage | 2.2.3 |
automap | 1.1-9 | autostsm | 3.1.2 |
av | 0.8.6 | aweek | 1.0.3 |
aws | 2.5-3 | 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 | BACCO | 2.1-0 |
BACCT | 1.0 | backports | 1.4.1 |
backtest | 0.3-4 | baggr | 0.7.6 |
bain | 0.2.10 | BalancedSampling | 1.6.3 |
BaM | 1.0.3 | bama | 1.3.0 |
bamdit | 3.4.0 | bamlss | 1.2-2 |
BAMMtools | 2.1.10 | bang | 1.0.2 |
BANOVA | 1.2.1 | BART | 2.9.4 |
bartBMA | 1.0 | bartCause | 1.0-6 |
bartMachine | 1.3.4.1 | bartMachineJARs | 1.2.1 |
BAS | 1.6.4 | basad | 0.3.0 |
base64 | 2.0.1 | base64enc | 0.1-3 |
base64url | 1.4 | baseballDBR | 0.1.2 |
basicMCMCplots | 0.2.7 | BaSkePro | 0.1.0 |
BasketballAnalyzeR | 0.5.0 | BASS | 1.3.1 |
BatchExperiments | 1.4.3 | BatchJobs | 1.9 |
batchmeans | 1.0-4 | BAwiR | 1.3 |
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-8 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.3.1 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.5 |
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.8 | BayesLogit | 2.1 |
bayesloglin | 1.0.1 | bayeslongitudinal | 0.1.0 |
bayesm | 3.1-6 | BayesMallows | 1.4.0 |
BayesMassBal | 1.1.0 | bayesmeta | 3.3 |
bayesmix | 0.7-6 | bayesnec | 2.1.1.0 |
bayesplot | 1.10.0 | bayesQR | 2.4 |
BayesSAE | 1.0-2 | bayestestR | 0.13.1 |
bayesTFR | 7.4-2 | BayesTools | 0.2.16 |
BayesTree | 0.3-1.4 | BayesVarSel | 2.2.5 |
BayesX | 0.3-3 | BAYSTAR | 0.2-10 |
baytrends | 2.0.9 | BB | 2019.10-1 |
BBmisc | 1.13 | bbmle | 1.0.25 |
BCBCSF | 1.0-1 | BCC1997 | 0.1.1 |
BCE | 2.2.0 | Bchron | 4.7.6 |
bcp | 4.0.3 | bcpa | 1.3.2 |
bcrm | 0.5.4 | BDgraph | 2.72 |
bdrc | 1.1.0 | bdsmatrix | 1.3-6 |
BE | 0.2.4 | beadarray | 2.50.0 |
BeadDataPackR | 1.52.0 | beakr | 0.4.3 |
bearishTrader | 1.0.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.6 |
berryFunctions | 1.22.0 | 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.0.4 | BGLR | 1.1.0 |
BGVAR | 2.5.2 | BH | 1.81.0-1 |
BHH2 | 2016.05.31 | BiasedUrn | 2.0.11 |
bibtex | 0.5.1 | biclust | 2.0.3.1 |
bidask | 1.0.0 | BIFIEsurvey | 3.4-15 |
biganalytics | 1.1.21 | bigchess | 1.9.1 |
bigD | 0.2.0 | bigleaf | 0.8.2 |
biglm | 0.9-2.1 | bigmemory | 4.6.1 |
bigmemory.sri | 0.1.6 | bigrquery | 1.4.2 |
bigsplines | 1.1-1 | bigtime | 0.2.3 |
BigVAR | 1.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | binman | 0.1.3 |
binom | 1.1-1.1 | binomSamSize | 0.1-5 |
binr | 1.1.1 | binseqtest | 1.0.4 |
Biobase | 2.60.0 | BiocGenerics | 0.46.0 |
BiocManager | 1.30.22 | BiocParallel | 1.34.1 |
BiocVersion | 3.17.1 | bioinactivation | 1.2.3 |
biomformat | 1.28.0 | bioOED | 0.2.1 |
Biostrings | 2.68.0 | biotic | 0.1.2 |
bipartite | 2.18 | birtr | 1.0.0 |
bit | 4.0.5 | bit64 | 4.0.5 |
bitops | 1.0-7 | biwavelet | 0.20.21 |
bizdays | 1.0.13 | bkmr | 0.2.2 |
blaise | 1.3.10 | blastula | 0.3.4 |
blavaan | 0.5-2 | 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.18 | BLR | 1.6 |
BMA | 3.18.17 | bmgarch | 2.0.0 |
bmixture | 1.7 | BMS | 0.3.5 |
BMTAR | 0.1.1 | bnlearn | 4.9 |
BNPTSclust | 2.0 | BNSP | 2.2.3 |
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.36 |
Boom | 0.9.11 | BoomSpikeSlab | 1.2.5 |
bootnet | 1.5.6 | BootPR | 1.0 |
bootstrap | 2019.6 | bootUR | 1.0.2 |
BoSSA | 3.7 | boussinesq | 1.0.6 |
boxr | 0.3.6 | bpca | 1.3-4 |
bqtl | 1.0-35 | BradleyTerry2 | 1.1-2 |
brainR | 1.6.0 | brandwatchR | 0.3.0 |
breakfast | 2.3 | brew | 1.0-8 |
brglm | 0.7.2 | brglm2 | 0.9.2 |
bridgesampling | 1.1-2 | brio | 1.1.3 |
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 |
bslib | 0.5.1 | BsMD | 2023.920 |
bspec | 1.6 | bspmma | 0.1-2 |
bssm | 2.0.2 | BSSprep | 0.1 |
bsts | 0.9.9 | bsvars | 2.0.0 |
BTLLasso | 0.1-11 | BTM | 0.3.7 |
bullishTrader | 1.0.1 | bundesbank | 0.1-11 |
BurStFin | 1.3 | BurStMisc | 1.1 |
BVAR | 1.0.4 | bvartools | 0.2.3 |
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-1 |
CALANGO | 1.0.16 | calculus | 1.0.1 |
CalibrateSSB | 1.3.0 | calibrator | 1.2-8 |
callr | 3.7.3 | cancensus | 0.5.6 |
candisc | 0.8-6 | CANSIM2R | 1.14.1 |
caper | 1.0.3 | captr | 0.3.0 |
car | 3.1-2 | CARBayes | 6.0 |
CARBayesdata | 3.0 | CARBayesST | 4.0 |
carData | 3.0-5 | caret | 6.0-94 |
carfima | 2.0.2 | caribou | 1.1-1 |
cartogram | 0.3.0 | CAST | 0.8.1 |
castor | 1.7.11 | caTools | 1.18.2 |
catR | 3.17 | causact | 0.5.3 |
CausalImpact | 1.3.0 | CAvariants | 6.0 |
cbsodataR | 0.5.1 | cccp | 0.2-9 |
cdlTools | 0.15 | CDM | 8.2-6 |
cds | 1.0.3 | CellNOptR | 1.46.0 |
cellranger | 1.1.0 | censusapi | 0.8.0 |
cfbfastR | 1.9.0 | CFtime | 1.2.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.0 | checkpoint | 1.0.2 |
chem.databases | 1.0.0 | cherryblossom | 0.1.0 |
chess | 1.0.1 | chilemapas | 0.3.0 |
chk | 0.9.1 | choiceDes | 0.9-3 |
CholWishart | 1.1.2 | choroplethr | 3.7.2 |
choroplethrMaps | 1.0.1 | chron | 2.3-61 |
cifti | 0.4.5 | cinterpolate | 1.0.0 |
circlize | 0.4.15 | CircSpaceTime | 0.9.0 |
CircStats | 0.2-6 | circular | 0.5-0 |
ciTools | 0.6.1 | Claddis | 0.6.3 |
clarifai | 0.4.2 | classInt | 0.4-10 |
cli | 3.6.1 | clifro | 3.2-5 |
climatol | 4.0.0 | clime | 0.5.0 |
clinDR | 2.4.1 | clinfun | 1.1.5 |
clinicalsignificance | 1.2.0 | clinPK | 0.11.1 |
clinsig | 1.2 | clipr | 0.8.0 |
clisymbols | 1.2.0 | clock | 0.7.0 |
clue | 0.3-65 | clustDRM | 0.1-0 |
clusterGeneration | 1.3.8 | clusterPower | 0.7.0 |
clustMixType | 0.3-9 | ClustVarLV | 2.1.1 |
clv | 0.3-2.4 | cmaes | 1.0-12 |
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.1 | coconots | 1.1.3 |
cocor | 1.1-4 | cocorresp | 0.4-3 |
cocron | 1.0-1 | coda | 0.19-4 |
coin | 1.4-3 | cointReg | 0.2.0 |
collapse | 2.0.3 | collapsibleTree | 0.1.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 |
CommonJavaJars | 1.0-6 | commonmark | 1.9.0 |
compare | 0.2-6 | CompQuadForm | 1.4.3 |
comprehenr | 0.6.10 | conditionz | 0.1.0 |
conf.design | 2.0.0 | config | 0.3.2 |
confintr | 1.0.2 | conflicted | 1.2.0 |
conquer | 1.3.3 | conquestr | 1.0.7 |
contactdata | 1.0.0 | contfrac | 1.1-12 |
convevol | 2.0.1 | convey | 0.2.5 |
cops | 1.3-1 | copula | 1.1-2 |
copulaData | 0.0-1 | 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 | 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.1 |
CPBayes | 1.1.0 | cpk | 1.3-1 |
cplm | 0.7-11 | cpp11 | 0.4.6 |
CRABS | 1.2.0 | crawl | 2.3.0 |
crayon | 1.5.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.3 |
crossdes | 1.1-2 | Crossover | 0.1-21 |
crosstalk | 1.2.0 | crs | 0.15-37 |
crseEventStudy | 1.2.2 | crsmeta | 0.3.0 |
crul | 1.4.0 | crunch | 1.30.3 |
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.15.2 | CTT | 2.3.3 |
CTTShiny | 0.1 | ctv | 0.9-5 |
cubature | 2.1.0 | cubble | 0.3.0 |
cubelyr | 1.0.2 | Cubist | 0.4.2.1 |
curl | 5.1.0 | cvar | 0.5 |
cvAUC | 1.1.4 | CVST | 0.2-3 |
CVXR | 1.0-11 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | dae | 3.2.19 |
daewr | 1.2-11 | dagitty | 0.3-1 |
DAKS | 2.1-3 | DALEX | 2.4.3 |
DAMOCLES | 2.3 | data.table | 1.14.8 |
data.tree | 1.0.0 | DatabaseConnector | 6.2.4 |
DataExplorer | 0.8.2 | dataone | 2.2.2 |
datapack | 1.4.1 | datapasta | 3.1.0 |
dataRetrieval | 2.7.14 | datarobot | 2.18.5 |
dataseries | 0.2.0 | dataverse | 0.3.13 |
datawizard | 0.9.0 | date | 1.2-42 |
dateback | 1.0.3 | datetimeutils | 0.6-2 |
dbarts | 0.9-23 | dbhydroR | 0.2-8 |
DBI | 1.1.3 | DBItest | 1.7.3 |
dbmss | 2.8-2 | dbparser | 2.0.1 |
dbplyr | 2.4.0 | dbscan | 1.1-11 |
dbx | 0.2.8 | DChaos | 0.1-7 |
dclone | 2.3-2 | DCluster | 0.2-9 |
DClusterm | 1.0-1 | dcov | 0.1.1 |
dCovTS | 1.4 | dcurver | 0.9.2 |
ddalpha | 1.3.13 | DDD | 5.2.2 |
dde | 1.0.4 | deBInfer | 0.4.4 |
debugme | 1.1.0 | deducorrect | 1.3.7 |
deductive | 1.0.0 | DeductiveR | 1.0.0 |
deeptime | 1.0.1 | deldir | 1.0-9 |
deltaPlotR | 1.6 | dendextend | 1.17.1 |
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 |
Deriv | 4.1.3 | derivmkts | 0.2.5 |
desc | 1.4.2 | DescTools | 0.99.50 |
designmatch | 0.5.4 | desirability | 2.1 |
deSolve | 1.38 | desplot | 1.10 |
devtools | 2.4.5 | dexter | 1.2.2 |
dextergui | 0.2.6 | dexterMST | 0.9.3 |
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 | DHARMa | 0.4.6 |
DHS.rates | 0.9.1 | diagis | 0.2.3 |
diagonals | 6.4.0 | diagram | 1.6.5 |
DiagrammeR | 1.0.10 | dials | 1.2.0 |
DiceDesign | 1.9 | DiceEval | 1.5.1 |
DiceKriging | 1.6.0 | DiceView | 2.1-0 |
dichromat | 2.0-0.1 | DICOMread | 0.0.0.3 |
DIFboost | 0.3 | 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.33 |
DIMORA | 0.3.6 | dimRed | 0.2.6 |
dina | 2.0.0 | dipsaus | 0.2.8 |
diptest | 0.76-0 | Dire | 2.2.0 |
DIRECT | 1.1.0 | directlabels | 2023.8.25 |
dirichletprocess | 0.4.2 | dirmult | 0.1.3-5 |
disaggR | 1.0.5.1 | discretization | 1.0-1.1 |
dispRity | 1.7.0 | DistatisR | 1.1.1 |
distcrete | 1.0.3 | distfree.cr | 1.5.1 |
distill | 1.6 | distory | 1.4.4 |
distr | 2.9.2 | distrEx | 2.9.0 |
distributional | 0.3.2 | distributions3 | 0.2.1 |
DistributionUtils | 0.6-1 | distrom | 1.0.1 |
distrTeach | 2.9.0 | dittodb | 0.1.7 |
diversitree | 0.9-20 | divest | 0.10.3 |
divseg | 0.0.5 | dLagM | 1.1.13 |
dlm | 1.1-6 | dlnm | 2.4.7 |
dlstats | 0.1.7 | dm | 1.0.8 |
dmri.tracking | 0.1.0 | doBy | 4.6.20 |
doc2vec | 0.2.0 | docopt | 0.7.1 |
docopulae | 0.4.0 | DoE.base | 1.2-3 |
DoE.MIParray | 1.0-1 | DoE.wrapper | 0.12 |
doFuture | 1.0.0 | 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-0 |
Dowd | 0.12 | downlit | 0.4.3 |
downloader | 0.4 | dparser | 1.3.1-10 |
dplyr | 1.1.3 | dqrng | 0.3.1 |
dr4pl | 2.0.0 | drake | 7.13.6 |
DriftBurstHypothesis | 0.4.0.1 | DRR | 0.0.4 |
dsa | 1.0.12 | DSAIDE | 0.9.6 |
dse | 2020.2-1 | DSI | 1.5.0 |
DSL | 0.1-7 | DT | 0.30 |
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.1 | dtw | 1.23-1 |
dtwclust | 5.5.12 | duckdb | 0.9.1-1 |
duckduckr | 1.0.0 | dygraphs | 1.1.1.6 |
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 |
e1071 | 1.7-13 | earlyR | 0.0.5 |
earth | 5.3.2 | 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.3 |
ecb | 0.4.2 | Ecdat | 0.4-2 |
ecespa | 1.1-17 | Ecfun | 0.3-2 |
echor | 0.1.9 | ecm | 7.0.0 |
ecodist | 2.1.3 | Ecohydmod | 1.0.0 |
ECOSolveR | 0.5.5 | ecoval | 1.2.9 |
ecp | 3.1.5 | 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.2 | egg | 0.4.5 |
egor | 1.23.3 | EGRET | 3.0.9 |
EGRETci | 2.0.4 | eha | 2.11.1 |
eigenmodel | 1.11 | 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 |
EMbC | 2.0.4 | EMD | 1.5.9 |
emdi | 2.2.0 | emg | 1.0.9 |
emmeans | 1.8.9 | emulator | 1.2-21 |
encode | 0.3.6 | endtoend | 2.29 |
energy | 1.7-11 | EngrExpt | 0.1-8 |
enrichwith | 0.3.1 | ensembleBMA | 5.1.8 |
entropart | 1.6-13 | EntropyEstimation | 1.2 |
EntropyMCMC | 1.0.4 | EnvStats | 2.8.1 |
epanet2toolkit | 1.0.0 | 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.8 | epiR | 2.0.65 |
EpiReport | 1.0.2 | episensr | 1.3.0 |
epitools | 0.5-10.1 | epitrix | 0.4.0 |
epm | 1.1.1 | equate | 2.0.8 |
equateIRT | 2.3.0 | equateMultiple | 0.1.1 |
equivalence | 0.7.2 | era | 0.4.1 |
ergm | 4.5.0 | ergm.ego | 1.1.0 |
ergm.multi | 0.2.0 | eRm | 1.0-4 |
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.4.1 | EstimateGroupNetwork | 0.3.1 |
ETLUtils | 1.5 | etm | 1.1.1 |
etrm | 1.0.1 | etrunct | 0.1 |
EUfootball | 0.0.1 | europepmc | 0.4.3 |
eurostat | 3.8.2 | 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 |
ewoc | 0.3.0 | Exact | 3.2 |
exactextractr | 0.10.0 | exams | 2.4-0 |
ExceedanceTools | 1.3.6 | exdex | 1.2.2 |
experiment | 1.2.1 | expint | 0.1-8 |
expm | 0.999-7 | ExPosition | 2.8.23 |
expsmooth | 2.3 | exreport | 0.4.1 |
extraDistr | 1.9.1 | extrafont | 0.19 |
extrafontdb | 1.0 | extraoperators | 0.1.1 |
eyelinker | 0.2.1 | ez | 4.4-0 |
fable | 0.3.3 | fable.prophet | 0.1.0 |
fabletools | 0.3.4 | FactoClass | 1.2.8 |
FactoMineR | 2.9 | factorstochvol | 1.0.6 |
FAdist | 2.4 | fanplot | 4.0.0 |
fansi | 1.0.5 | 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.3 |
fastDummies | 1.7.3 | fastGHQuad | 1.0.1 |
fastICA | 1.2-3 | fastLink | 0.6.0 |
fastmap | 1.1.1 | fastmatch | 1.1-4 |
fastRhockey | 0.4.0 | fastrmodels | 1.0.2 |
FastRWeb | 1.2-0 | fasttime | 1.1-0 |
FatTailsR | 1.8-0 | fauxpas | 0.5.2 |
FAVAR | 0.1.3 | fBasics | 4031.95 |
fBonds | 3042.78 | fbRads | 17.0.0 |
fCopulae | 4022.85 | FD | 1.0-12.1 |
fda | 6.1.4 | fdaACF | 1.0.0 |
fdapace | 0.5.9 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
feasts | 0.3.1 | feather | 0.3.5 |
fechner | 1.0-3 | FedData | 4.0.0 |
FeedbackTS | 1.5 | fExtremes | 4021.83 |
ff | 4.0.9 | FFD | 1.0-9 |
fflr | 2.2.0 | ffscrapr | 1.4.8 |
ffsimulator | 1.2.3 | fftwtools | 0.9-11 |
fGarch | 4031.90 | fHMM | 1.1.1 |
FielDHub | 1.3.4 | fields | 15.2 |
fiery | 1.2.0 | filearray | 0.1.6 |
filehash | 2.4-5 | filehashSQLite | 0.2-6 |
filelock | 1.0.2 | filematrix | 1.3 |
fImport | 4021.86 | FinancialMath | 0.1.1 |
FinAsym | 1.0 | findpython | 1.0.8 |
finnts | 0.3.0 | finreportr | 1.0.4 |
FinTS | 0.4-6 | fishMod | 0.29 |
fitdistrplus | 1.1-11 | fitzRoy | 1.3.0 |
FKF | 0.2.4 | FKF.SP | 0.3.1 |
flashClust | 1.01-2 | flexclust | 1.4-1 |
flexdashboard | 0.6.2 | flexmix | 2.3-19 |
FlexScan | 0.2.2 | flextable | 0.9.4 |
float | 0.3-1 | 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.4 |
fmri | 1.9.12 | fMultivar | 4031.84 |
fnets | 0.1.5 | FNN | 1.1.3.2 |
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-10 |
fpcb | 0.1.0 | fpCompare | 0.2.4 |
FPLdata | 0.1.0 | fPortfolio | 4023.84 |
fpp2 | 2.5 | fpp3 | 0.5 |
fracdiff | 1.5-2 | Frames2 | 0.2.1 |
FRAPO | 0.4-1 | fredr | 2.1.0 |
freecurrencyapi | 0.1.0 | freesurferformats | 0.1.17 |
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.0 |
frostr | 0.2.0 | fs | 1.6.3 |
fslr | 2.25.2 | fsMTS | 0.1.7 |
fst | 0.9.8 | fstcore | 0.9.14 |
fTrading | 3042.79 | ftsa | 6.3 |
functional | 0.6 | funtimes | 9.1 |
furrr | 0.3.1 | futile.logger | 1.4.3 |
futile.options | 1.0.1 | future | 1.33.0 |
future.apply | 1.11.0 | fuzzyjoin | 0.1.6 |
GA | 3.2.3 | GAD | 1.1.1 |
gam | 1.22-2 | gamlr | 1.13-8 |
gamlss | 5.4-20 | gamlss.data | 6.0-2 |
gamlss.dist | 6.1-1 | 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.5.1 |
gaussquad | 1.0-3 | GaussSuppression | 0.7.0 |
gbm | 2.1.8.1 | gbutils | 0.5 |
gclus | 1.3.2 | GCPM | 1.2.2 |
gdalcubes | 0.6.4 | gdalraster | 1.6.0 |
gdalUtilities | 1.2.5 | gdata | 3.0.0 |
GDINA | 2.9.4 | gdistance | 1.6.4 |
gdpc | 1.1.3 | gdtools | 0.3.4 |
gear | 0.3.4 | gee | 4.13-25 |
geepack | 1.3.9 | geiger | 2.0.11 |
genalg | 0.2.1 | gender | 0.6.0 |
GeneralizedHyperbolic | 0.8-4 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | GenomeInfoDb | 1.36.0 |
GenomeInfoDbData | 1.2.10 | GenomicRanges | 1.52.0 |
GenSA | 1.1.10.1 | 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.3 |
geometry | 0.4.7 | geomorph | 4.0.6 |
geonames | 0.999 | geonapi | 0.7 |
GEOquery | 2.68.0 | geoR | 1.9-2 |
geos | 0.2.3 | geosapi | 0.6-7 |
geoscale | 2.0.1 | geosphere | 1.5-18 |
geospt | 1.0-3 | geostan | 0.5.2 |
geotopbricks | 1.5.6.0 | geouy | 0.2.8 |
gert | 2.0.0 | getPass | 0.2-2 |
gets | 0.37 | GetTDData | 1.5.4 |
gfonts | 0.2.0 | GGally | 2.1.2 |
ggalt | 0.4.0 | gganimate | 1.0.8 |
ggdag | 0.2.10 | ggdemetra | 0.2.6 |
ggdendro | 0.1.23 | ggdist | 3.3.0 |
ggExtra | 0.10.1 | ggfittext | 0.10.1 |
ggforce | 0.4.1 | ggformula | 0.10.4 |
ggfun | 0.1.3 | gghalves | 0.1.4 |
ggimage | 0.3.3 | gginnards | 0.1.2 |
ggmap | 3.0.2 | ggmcmc | 1.5.1.1 |
ggmuller | 0.5.6 | ggnetwork | 0.5.12 |
ggnewscale | 0.4.9 | ggpath | 1.0.1 |
ggplot2 | 3.4.4 | ggplotify | 0.1.2 |
ggpmisc | 0.5.4-1 | ggpp | 0.5.4 |
ggpubr | 0.6.0 | ggquiver | 0.3.2 |
ggraph | 2.1.0 | ggrepel | 0.9.4 |
ggridges | 0.5.4 | ggsci | 3.0.0 |
ggseas | 0.5.4 | ggsignif | 0.6.4 |
ggsn | 0.5.0 | ggsoccer | 0.1.7 |
ggspatial | 1.1.9 | ggstance | 0.3.6 |
ggtext | 0.1.2 | ggthemes | 4.2.4 |
ggtree | 3.8.0 | ggvis | 0.4.8 |
gh | 1.4.0 | ghyp | 1.6.4 |
Gifi | 0.4-0 | gifti | 0.8.0 |
GIGrvg | 0.8 | gimme | 0.7-15 |
giscoR | 0.4.0 | gistr | 0.9.0 |
git2r | 0.32.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 | GLMMRR | 0.5.0 |
glmmTMB | 1.1.8 | glmnet | 4.1-8 |
GlobalOptions | 0.1.2 | globals | 0.16.2 |
glpkAPI | 1.3.4 | glue | 1.6.2 |
gmailr | 2.0.0 | GMDH | 1.6 |
Gmedian | 1.2.7 | gmm | 1.8 |
gmodels | 2.18.1.1 | gmp | 0.7-2 |
gmt | 2.0.3 | gmvarkit | 2.0.10 |
GNAR | 1.1.2 | gnm | 1.1-5 |
GO.db | 3.17.0 | goftest | 1.2-3 |
gogarch | 0.7-5 | golem | 0.4.1 |
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 | GPArotation | 2023.8-1 |
GPCMlasso | 0.1-6 | GPfit | 1.0-8 |
gplots | 3.1.3 | gradethis | 0.2.12.9004 |
gRain | 1.4.0 | graph | 1.78.0 |
graphicalVAR | 0.3.3 | graphlayouts | 1.0.1 |
graphTweets | 0.5.3 | grates | 1.1.0 |
gratis | 1.0.5 | gravitas | 0.1.3 |
gRbase | 2.0.0 | greeks | 1.3 |
greta | 0.4.3 | greybox | 2.0.0 |
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.1.2 | GroupSeq | 1.4.2 |
grplasso | 0.4-7 | grwat | 0.0.4 |
gsarima | 0.1-5 | gsDesign | 3.5.0 |
gSEM | 0.4.3.4 | gsheet | 0.4.5 |
gsignal | 0.3-5 | gsisdecoder | 0.0.1 |
gsl | 2.1-8 | GSODR | 3.1.9 |
gss | 2.2-7 | gstat | 2.1-1 |
gsubfn | 0.7 | gsw | 1.1-1 |
gt | 0.10.0 | gtable | 0.3.4 |
gtheory | 0.1.2 | gtools | 3.9.4 |
gtop | 0.2.0 | gtrendsR | 1.5.1 |
gtsummary | 1.7.2 | GUIDE | 1.2.7 |
GUniFrac | 1.8 | gustave | 0.4.4 |
gwavr | 0.2.0 | gWidgets2 | 1.0-9 |
GWmodel | 2.3-1 | gwrr | 0.2-2 |
GWSDAT | 3.1.1 | hackeRnews | 0.1.0 |
HandTill2001 | 1.0.1 | HaploSim | 1.8.4.2 |
hardhat | 1.3.0 | hash | 2.2.6.3 |
haven | 2.5.3 | hbsae | 1.2 |
HBV.IANIGLA | 0.2.6 | hdf5r | 1.3.8 |
hdi | 0.1-9 | HDInterval | 0.2.4 |
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.0 | here | 1.0.1 |
hett | 0.3-3 | hexbin | 1.28.3 |
hflights | 0.1 | hglm | 2.2-1 |
hglm.data | 1.0-1 | HH | 3.1-49 |
hht | 2.1.6 | 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.3 |
hisse | 2.1.11 | HKRbook | 0.1.3 |
HLMdiag | 0.5.0 | Hmisc | 5.1-1 |
HMMpa | 1.0.1 | HMP | 2.0.1 |
HMPTrees | 1.4 | hms | 1.1.3 |
hoardr | 0.5.3 | homals | 1.0-10 |
hommel | 1.6 | hoopR | 1.8.0 |
howzatR | 1.0.1 | hpfilter | 1.0.2 |
HSAUR3 | 1.0-14 | htm2txt | 2.2.2 |
htmlTable | 2.4.2 | htmltools | 0.5.6.1 |
HTMLUtils | 0.1.8 | htmlwidgets | 1.6.2 |
hts | 6.0.2 | htsr | 2.1.2 |
httpcache | 1.2.0 | httpcode | 0.3.0 |
httping | 0.2.0 | httpRequest | 0.0.11 |
httptest | 4.2.1 | httpuv | 1.6.12 |
httr | 1.4.7 | httr2 | 0.2.3 |
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.2 | hwriter | 1.3.2.1 |
hwwntest | 1.3.2 | hydraulics | 0.6.1 |
hydroEvents | 0.11 | hydrogeo | 0.6-1 |
hydroloom | 1.0.0 | 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-4 |
hypergeo | 1.2-13 | i2extras | 0.2.1 |
iarm | 0.4.3 | ibd | 1.5 |
ibdreg | 0.3.8 | iBreakDown | 2.0.1 |
IBrokers | 0.10-2 | ica | 1.0-3 |
ICAOD | 1.0.1 | icarus | 0.3.2 |
ICC | 2.4.0 | iccbeta | 1.2.0 |
Icens | 1.72.0 | ICGE | 0.4.2 |
ichimoku | 1.4.10 | 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.20 |
ids | 1.0.1 | ie2misc | 0.9.1 |
ie2miscdata | 1.0.4 | iemisc | 1.0.4 |
iemiscdata | 1.0.0 | IETD | 1.0.0 |
ifaTools | 0.23 | igraph | 1.5.1 |
igraphdata | 1.0.1 | illuminaio | 0.42.0 |
imbibe | 0.1.1 | imguR | 1.0.3 |
immer | 1.4-15 | implied | 0.5 |
implyr | 0.4.0 | import | 1.3.1 |
impute | 1.74.1 | imputeTestbench | 3.0.3 |
imputeTS | 3.3 | inca | 0.0.4 |
IncDTW | 1.1.4.4 | incidence | 1.7.3 |
incidence2 | 2.2.1 | inegiR | 3.0.0 |
ineq | 0.2-13 | infer | 1.0.5 |
influence.SEM | 2.3 | influenceR | 0.1.5 |
influxdbr | 0.14.2 | InfoTrad | 1.2 |
ingredients | 2.3.0 | ini | 0.3.1 |
injurytools | 1.0.2 | inline | 0.3.19 |
insee | 1.1.5 | insight | 0.19.6 |
InspectChangepoint | 1.2 | instaR | 0.2.4 |
intamap | 1.5-7 | interp | 1.1-4 |
intervals | 0.15.4 | inum | 1.0-5 |
invgamma | 1.1 | iotables | 0.9.1 |
iotools | 0.3-2 | ipaddress | 1.0.1 |
ipdw | 2.0-0 | ipfp | 1.0.2 |
ipred | 0.9-14 | ips | 0.0.11 |
ipumsr | 0.7.0 | 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 | ismev | 1.42 |
Iso | 0.0-21 | isoband | 0.2.7 |
ISOcodes | 2022.09.29 | IsoGene | 1.0-24 |
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 |
JADE | 2.0-4 | jalcal | 0.1.0 |
janeaustenr | 1.0.0 | janitor | 2.2.0 |
JavaGD | 0.6-5 | jiebaR | 0.11 |
jiebaRD | 0.1 | jjb | 0.1.1 |
JMdesign | 1.4 | jomo | 2.7-6 |
JoSAE | 0.3.0 | jose | 1.2.0 |
jpeg | 0.1-10 | jqr | 1.3.1 |
jquerylib | 0.1.4 | jrt | 1.1.2 |
js | 1.2 | jsonify | 1.2.2 |
jsonlite | 1.8.7 | jsonvalidate | 1.3.2 |
jstor | 0.3.11 | juicyjuice | 0.1.0 |
JuliaConnectoR | 1.1.1 | JWileymisc | 1.4.1 |
kableExtra | 1.3.4 | kalmanfilter | 2.0.2 |
kappaSize | 1.2 | 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.1 | KFAS | 1.5.1 |
kfigr | 1.2.1 | kitagawa | 3.1.0 |
kiwisR | 0.2.0 | klaR | 1.7-2 |
km.ci | 0.5-6 | kmer | 1.1.2 |
knitcitations | 1.0.12 | knitLatex | 0.9.0 |
knitr | 1.45 | koRpus | 0.13-8 |
ks | 1.14.1 | kst | 0.5-4 |
kutils | 1.73 | kza | 4.1.0.1 |
labdsv | 2.1-0 | label.switching | 1.8 |
labeling | 0.4.3 | labelled | 2.12.0 |
labelVector | 0.1.2 | laeken | 0.5.2 |
LaF | 0.8.4 | lagged | 0.3.2 |
Lahman | 11.0-0 | lakemorpho | 1.3.2 |
LAM | 0.6-19 | lambda.r | 1.2.4 |
lamW | 2.2.1 | landsat | 1.1.2 |
landscapemetrics | 2.0.0 | languagelayeR | 1.2.4 |
languageR | 1.5.0 | LaplacesDemon | 16.1.6 |
lars | 1.3 | lassoshooting | 0.1.5-1.1 |
latdiag | 0.3 | later | 1.3.1 |
latex2exp | 0.9.6 | latticeExtra | 0.6-30 |
LatticeKrig | 8.4 | lava | 1.7.2.1 |
lavaan | 0.6-16 | lavaan.survey | 1.1.3.1 |
LAWBL | 1.5.0 | lazyeval | 0.2.2 |
lazyWeave | 3.0.2 | lbfgs | 1.2.1.2 |
lbfgsb3c | 2020-3.2 | LCAvarsel | 1.1 |
lcda | 0.3.1 | lctools | 0.2-8 |
lda | 1.4.2 | ldat | 0.3.3 |
ldbounds | 2.0.1 | leafem | 0.2.3 |
leaflet | 2.2.0 | leaflet.extras | 1.0.0 |
leaflet.providers | 2.0.0 | leafpm | 0.1.0 |
leafpop | 0.1.0 | leafsync | 0.1.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
learnr | 0.11.5 | legion | 0.1.2 |
lfactors | 1.0.4 | 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-1 |
lidR | 4.0.4 | lifecontingencies | 1.3.11 |
lifecycle | 1.0.3 | liftr | 0.9.2 |
LIM | 1.4.7 | limma | 3.56.1 |
limSolve | 1.5.7 | linelist | 1.0.0 |
link2GI | 0.5-3 | linpk | 1.1.2 |
linprog | 0.9-4 | lintools | 0.1.7 |
lisrelToR | 0.1.5 | listenv | 0.9.0 |
liteq | 1.1.0 | lme4 | 1.1-34 |
lmerTest | 3.1-3 | lmForc | 0.1.0 |
lmm | 1.4 | lmodel2 | 1.7-3 |
lmom | 3.0 | lmomco | 2.4.11 |
Lmoments | 1.3-1 | lmomRFA | 3.6 |
lmtest | 0.9-40 | LNIRT | 0.5.1 |
lobstr | 1.1.2 | locfit | 1.5-9.8 |
locits | 1.7.7 | locpol | 0.8.0 |
logger | 0.2.2 | logging | 0.10-108 |
logitnorm | 0.8.38 | logspline | 2.1.21 |
lokern | 1.1-10 | lomb | 2.1.0 |
longCatEDA | 0.31 | longitudinalData | 2.4.5 |
longmemo | 1.1-2 | LongMemoryTS | 0.1.0 |
longpower | 1.0.24 | longurl | 0.3.3 |
loo | 2.6.0 | lordif | 0.3-3 |
lotri | 0.4.3 | lpacf | 1.0.1 |
LPM | 2.9 | lpSolve | 5.6.19 |
lpSolveAPI | 5.5.2.0-17.10 | lsa | 0.73.3 |
lsl | 0.5.6 | lslx | 0.6.11 |
LSMonteCarlo | 1.0 | LSMRealOptions | 0.2.1 |
LSTS | 2.1 | LSWPlib | 0.1.0 |
ltm | 1.2-0 | ltsa | 1.4.6 |
lubridate | 1.9.3 | lulcc | 1.0.4 |
Luminescence | 0.9.22 | 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-13 |
m5 | 0.1.1 | maat | 1.1.0 |
madrat | 3.6.4 | magclass | 6.10.0 |
magic | 1.6-1 | magick | 2.8.1 |
magrittr | 2.0.3 | mailR | 0.8 |
makeit | 1.0.1 | makepipe | 0.2.1 |
makeProject | 1.0 | MAMS | 2.0.1 |
manipulate | 1.0.1 | manipulateWidget | 0.11.1 |
MAPA | 2.0.5 | mapdata | 2.3.1 |
mapdeck | 0.3.4 | mapedit | 0.6.0 |
mapiso | 0.3.0 | mapme.biodiversity | 0.4.0 |
mapmisc | 2.0.1 | mapproj | 1.2.11 |
maps | 3.4.1 | mapsapi | 0.5.4 |
mapsf | 0.7.1 | mapSpain | 0.8.0 |
maptiles | 0.6.1 | 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 |
markdown | 1.11 | markophylo | 1.0.9 |
markovchain | 0.9.5 | MarkowitzR | 1.0.3 |
marmap | 1.0.10 | MARSS | 3.11.8 |
MassSpecWavelet | 1.66.0 | Matching | 4.10-14 |
MatchIt | 4.5.5 | MatchThem | 1.1.0 |
mathjaxr | 1.6-0 | matlab | 1.0.4 |
matlab2r | 1.5.0 | matlabr | 1.5.2 |
matrixcalc | 1.0-6 | MatrixExtra | 0.1.14 |
MatrixModels | 0.5-2 | matrixStats | 1.0.0 |
maxLik | 1.5-2 | MaxPro | 4.1-2 |
MBA | 0.1-0 | MBC | 0.10-6 |
MBHdesign | 2.3.15 | mblm | 0.12.1 |
mboost | 2.9-8 | mbsts | 3.0 |
mc2d | 0.2.0 | MCAvariants | 2.6.1 |
mclcar | 0.2-0 | mclust | 6.0.0 |
mcmc | 0.9-7 | mcmcensemble | 3.0.0 |
MCMCglmm | 2.35 | MCMCpack | 1.6-3 |
mcmcse | 1.5-0 | MCMCvis | 0.16.3 |
mco | 1.15.6 | Mcomp | 2.8 |
mcompanion | 0.5.8 | MCPMod | 1.0-10.1 |
mdftracks | 0.2.1 | 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.6 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
memuse | 4.2-3 | meta | 6.5-0 |
metacoder | 0.3.6 | metadat | 1.2-0 |
metafor | 4.4-0 | metaplot | 0.8.3 |
metaSEM | 1.3.1 | metasens | 1.5-2 |
meteo | 2.0-2 | meteoland | 2.1.0 |
metR | 0.14.1 | Metrics | 0.1.4 |
metRology | 0.9-28-1 | mFilter | 0.1-5 |
mgm | 1.2-14 | mgsub | 1.7.3 |
mi | 1.1 | mice | 3.16.0 |
miceadds | 3.16-18 | micEconIndex | 0.1-8 |
microbenchmark | 1.4.10 | micromap | 1.9.7 |
microsamplingDesign | 1.0.8 | Microsoft365R | 2.4.0 |
MicSim | 2.0.0 | MIIVsem | 0.5.8 |
mime | 0.12 | mind | 1.1.0 |
MinEDfind | 0.1.3 | miniCRAN | 0.2.16 |
minimalRSD | 1.0.0 | minimaxdesign | 0.1.5 |
miniUI | 0.1.1.1 | minpack.lm | 1.2-4 |
minqa | 1.2.6 | mipfp | 3.2.1 |
mirt | 1.41 | mirtCAT | 1.13 |
misc3d | 0.9-1 | miscTools | 0.6-28 |
missForest | 1.5 | missMDA | 1.18 |
mitml | 0.4-5 | mitools | 2.4 |
mix | 1.0-11 | mixAR | 0.22.7 |
MixedPsy | 1.1.0 | mixexp | 1.2.7 |
mixOmics | 6.24.0 | mixsqp | 0.3-48 |
mixtools | 2.0.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 | mlmRev | 1.0-8 |
mlogit | 1.1-1 | mlogitBMA | 0.1-7 |
mlr | 2.19.1 | mlr3 | 0.16.1 |
mlr3measures | 0.5.0 | mlr3misc | 0.13.0 |
mlr3spatiotempcv | 2.2.0 | mlrMBO | 1.1.5.1 |
mlVAR | 0.5.1 | mma | 10.7-1 |
mmand | 1.6.3 | mmrm | 0.2.2 |
mnormt | 2.1.1 | MNP | 3.1-4 |
modeest | 2.4.0 | modeldata | 1.2.0 |
modelenv | 0.1.1 | ModelMap | 3.4.0.4 |
ModelMetrics | 1.2.2.2 | modelr | 0.1.11 |
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.12.0 |
mokken | 3.1.0 | mombf | 3.4.2 |
moments | 0.14.1 | momentuHMM | 1.5.5 |
mondate | 0.10.02 | mongolite | 2.7.2 |
mongopipe | 0.1.1 | monmlp | 1.1.5 |
monobin | 0.2.4 | Morpho | 2.11 |
mosaic | 1.8.4.2 | mosaicCore | 0.9.2.1 |
mosaicData | 0.20.3 | motmot | 2.1.3 |
mousetrap | 3.2.2 | move | 4.2.4 |
movecost | 2.0 | moveHMM | 1.9 |
moveWindSpeed | 0.2.4 | movMF | 0.2-7 |
MPDiR | 0.2 | MplusAutomation | 1.1.0 |
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.1.1 |
mritc | 0.5-3 | mschart | 0.4.0 |
mscstexta4r | 0.1.2 | mscsweblm4r | 0.1.2 |
MSGARCH | 2.51 | msm | 1.7 |
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-9 |
multDM | 1.1.4 | multicool | 0.1-12 |
MultiGlarmaVarSel | 1.0 | MultiLCIRT | 2.11 |
MultipleBubbles | 0.2.0 | multiplex | 3.1.0 |
multipol | 1.0-9 | multitaper | 1.0-17 |
multiway | 1.0-6 | multtest | 2.56.0 |
MuMIn | 1.47.5 | munfold | 0.3.5 |
munsell | 0.5.0 | musica | 0.1.3 |
mvglmmRank | 1.2-4 | mvLSW | 1.2.5 |
mvMORPH | 1.1.7 | mvnfast | 0.2.8 |
mvnormtest | 0.1-9 | mvQuad | 1.0-8 |
mvtnorm | 1.2-3 | mvtsplot | 1.0-4 |
mxkssd | 1.2 | n1qn1 | 6.0.1-11 |
nabor | 0.5.0 | NADA | 1.6-1.1 |
NAEPirtparams | 1.0.0 | NAEPprimer | 1.0.1 |
nanoarrow | 0.3.0 | nanonext | 0.10.2 |
nanotime | 0.3.7 | nardl | 0.1.6 |
nasapower | 4.0.11 | natserv | 1.0.0 |
naturalsort | 0.1.3 | NBAloveR | 0.1.3.3 |
nbapalettes | 0.1.0 | nbTransmission | 1.1.2 |
ncappc | 0.3.0 | ncar | 0.4.5 |
ncbit | 2013.03.29.1 | ncdf4 | 1.21 |
ncdfgeom | 1.1.5 | ncf | 1.3-2 |
ncmeta | 0.3.6 | NCmisc | 1.2.0 |
ncvreg | 3.14.1 | ndjson | 0.9.0 |
nets | 0.9.1 | network | 1.18.1 |
NetworkChange | 0.8 | NetworkComparisonTest | 2.2.2 |
networkD3 | 0.4 | networkDynamic | 0.11.3 |
networkLite | 1.0.5 | NetworkRiskMeasures | 0.1.4 |
NetworkToolbox | 1.4.2 | networktools | 1.5.1 |
networktree | 1.0.1 | neuralnet | 1.44.2 |
NeuralNetTools | 1.5.3 | neurobase | 1.32.3 |
neuroim | 0.0.6 | neuRosim | 0.2-14 |
nFactors | 2.4.1.1 | NFCP | 1.2.1 |
nfl4th | 1.0.4 | nflfastR | 4.6.0 |
nflplotR | 1.2.0 | nflreadr | 1.4.0 |
nflseedR | 1.2.0 | NFLSimulatoR | 0.4.0 |
nflverse | 1.0.3 | ngspatial | 1.2-2 |
nhanesA | 0.7.4 | 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 |
nimble | 1.0.1 | NISTnls | 0.9-13 |
NlcOptim | 0.6 | nleqslv | 3.3.4 |
NlinTS | 1.4.5 | nlmeVPC | 2.6 |
nlmixr2 | 2.0.9 | nlmixr2data | 2.0.8 |
nlmixr2est | 2.1.8 | nlmixr2extra | 2.0.8 |
nlmixr2plot | 2.0.7 | nlmixr2rpt | 0.2.0 |
nloptr | 2.0.3 | NLP | 0.2-1 |
nls2 | 0.3-3 | nlsem | 0.8-1 |
nlstools | 2.0-1 | nlts | 1.0-2 |
NMOF | 2.8-0 | nmw | 0.1.5 |
nnfor | 0.9.8 | nnls | 1.5 |
noaastormevents | 0.2.0 | nodbi | 0.9.8 |
nomisr | 0.4.7 | nomnoml | 0.2.7 |
NonCompart | 0.6.0 | nonlinearTseries | 0.2.12 |
nonmemica | 1.0.8 | nonnest2 | 0.5-6 |
norm | 1.0-11.1 | normalp | 0.7.2 |
nortest | 1.0-4 | nosoi | 1.1.0 |
notifyme | 0.3.0 | np | 0.60-17 |
NPflow | 0.13.3 | npi | 0.2.0 |
nppbib | 1.2-0 | NPRED | 1.0.7 |
nsarfima | 0.2.0.0 | nsprcomp | 0.5.1-2 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
nvmix | 0.1-0 | o2geosocial | 1.1.0 |
oai | 0.4.0 | OAIHarvester | 0.3-4 |
OasisR | 3.1.0 | obAnalytics | 0.1.1 |
OBsMD | 6.1 | occ | 1.1 |
oce | 1.8-1 | octopus | 0.4.0 |
odbc | 1.3.5 | 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 | officer | 0.6.3 |
ohoegdm | 0.1.0 | onbrand | 1.0.3 |
onlineforecast | 1.0.2 | opdisDownsampling | 0.8.2 |
OPDOE | 1.0-10 | openair | 2.18-0 |
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.8 | openNLP | 0.2-7 |
openNLPdata | 1.5.3-4 | openssl | 2.1.1 |
OpenStreetMap | 0.4.0 | openxlsx | 4.2.5.2 |
opera | 1.2.0 | operator.tools | 1.6.3 |
operators | 0.1-8 | optextras | 2019-12.4 |
OptGS | 1.1.1 | OptHedging | 1.0 |
OptimalDesign | 1.0.1 | OptimaRegion | 1.2 |
optimParallel | 1.0-2 | optimx | 2023-10.21 |
OptionPricing | 0.1.2 | optiscale | 1.2.2 |
ORCME | 2.0.2 | orderly | 1.4.3 |
ordinal | 2022.11-16 | ore | 1.7.3.1 |
ORIClust | 1.0-2 | oro.dicom | 0.5.3 |
oro.nifti | 0.11.4 | oro.pet | 0.2.7 |
orthopolynom | 1.0-6.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 | packrat | 0.9.2 |
padr | 0.6.2 | pageviews | 0.5.0 |
PairedData | 1.1.1 | pairwise | 0.6.1-0 |
paleobuddy | 1.0.0 | paleotree | 3.4.5 |
paleoTS | 0.5.3 | palmerpenguins | 0.1.1 |
pan | 1.9 | pander | 0.6.5 |
panelaggregation | 0.1.1 | papeR | 1.0-5 |
paradox | 0.11.1 | parallelly | 1.36.0 |
parallelMap | 1.5.1 | parameters | 0.21.3 |
ParamHelpers | 1.14.1 | params | 0.7.3 |
paran | 1.5.2 | parma | 1.7 |
parsedate | 1.3.1 | parsnip | 1.1.1 |
partitions | 1.10-7 | partsm | 1.1-3 |
party | 1.3-13 | partykit | 1.2-20 |
pastecs | 1.3.21 | patchwork | 1.1.3 |
paws | 0.4.0 | paws.analytics | 0.4.0 |
paws.application.integration | 0.4.0 | paws.common | 0.6.2 |
paws.compute | 0.4.0 | paws.cost.management | 0.4.0 |
paws.customer.engagement | 0.4.0 | paws.database | 0.4.0 |
paws.developer.tools | 0.4.0 | paws.end.user.computing | 0.4.0 |
paws.machine.learning | 0.4.0 | paws.management | 0.4.0 |
paws.networking | 0.4.0 | paws.security.identity | 0.4.0 |
paws.storage | 0.4.0 | pbapply | 1.7-2 |
PBD | 1.4 | pbdZMQ | 0.3-10 |
PBIBD | 1.3 | pbivnorm | 0.6.0 |
pbkrtest | 0.5.2 | pbmcapply | 1.5.1 |
pbo | 1.3.5 | pbs | 1.1 |
PBSddesolve | 1.13.3 | PBSmapping | 2.73.2 |
PBSmodelling | 2.68.8 | pbv | 0.4-22 |
PCA4TS | 0.1 | pcaMethods | 1.92.0 |
pcaPP | 2.0-3 | pcdpca | 0.4 |
pcFactorStan | 1.5.4 | pcIRT | 0.2.4 |
PCMRS | 0.1-4 | PCPS | 1.0.7 |
pcts | 0.15.5 | pdc | 1.0.3 |
pdfCluster | 1.0-4 | pdfetch | 0.2.9 |
pdftables | 0.1 | pdftools | 3.4.0 |
pdist | 1.2.1 | pdp | 0.8.1 |
PearsonDS | 1.3.0 | pedigree | 1.4.2 |
PeerPerformance | 2.2.5 | penalized | 0.9-52 |
perfectphyloR | 0.2.1 | performance | 0.10.8 |
PerformanceAnalytics | 2.0.4 | permute | 0.9-7 |
PGM2 | 1.0-1 | ph2bayes | 0.0.2 |
ph2bye | 0.1.4 | phangorn | 2.11.1 |
pharmaRTF | 0.1.4 | pheatmap | 1.0.12 |
phonics | 1.3.10 | phyclust | 0.1-34 |
phyext2 | 0.0.4 | phylobase | 0.8.10 |
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 | 1.9-16 | picante | 1.8.2 |
picasso | 1.3.1 | pid | 0.50 |
piecewiseSEM | 2.3.0 | pillar | 1.9.0 |
pingr | 2.0.2 | pinnacle.data | 0.1.4 |
pins | 1.2.2 | pipe.design | 0.5.1 |
pipeR | 0.6.1.3 | 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.2 |
pkgcache | 2.2.0.1 | pkgconfig | 2.0.3 |
pkgdepends | 0.6.0 | pkgdown | 2.0.7 |
pkgfilecache | 0.1.4 | pkgload | 1.3.3 |
pkgsearch | 3.1.2 | 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-3 | PLMIX | 2.1.1 |
PLmixed | 0.1.7 | plogr | 0.2.0 |
plot3D | 1.4 | plotdap | 1.0.3 |
plotly | 4.10.3 | plotMCMC | 2.0.1 |
plotmo | 3.6.2 | plotrix | 3.8-3 |
plotSEMM | 2.4 | PlotTools | 0.3.0 |
pls | 2.8-2 | plumber | 1.2.1 |
plyr | 1.8.9 | pmc | 1.0.6 |
pmr | 1.2.5.1 | pmxTools | 1.3 |
png | 0.1-8 | pointblank | 0.11.4 |
poisbinom | 1.0.1 | poLCA | 1.6.0.1 |
polspline | 1.1.24 | polyclip | 1.10-6 |
polycor | 0.8-1 | polyCub | 0.9.0 |
polynom | 1.4-1 | PolynomF | 2.0-5 |
polyreg | 0.8.0 | pomp | 5.4 |
pool | 1.0.1 | PopED | 0.6.0 |
popEpi | 0.4.11 | 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-4 | PowerUpR | 1.1.0 |
PP | 0.6.3-11 | ppcor | 1.1 |
PPRL | 0.3.8 | pps | 1.0 |
prabclus | 2.3-3 | pracma | 2.4.2 |
PracTools | 1.4 | praise | 1.0.0 |
pRecipe | 3.0.1-1 | PreciseSums | 0.6 |
predicts | 0.1-11 | prefmod | 0.8-36 |
PReMiuM | 3.2.10 | 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.4 |
prettyunits | 1.2.0 | prevalence | 0.4.1 |
prevR | 5.0.0 | princurve | 2.1.6 |
prism | 0.2.1 | ProbitSpatial | 1.1 |
pROC | 1.18.5 | processx | 3.8.2 |
prodigenr | 0.6.2 | prodlim | 2023.08.28 |
ProfessR | 2.4-3 | profileModel | 0.6.1 |
profileR | 0.3-5 | profoc | 1.2.1 |
profvis | 0.3.8 | progress | 1.2.2 |
progressr | 0.14.0 | PROJ | 0.4.0 |
proj4 | 1.0-13 | projects | 2.1.3 |
ProjectTemplate | 0.10.3 | promises | 1.2.1 |
prophet | 1.0 | PROsetta | 0.4.1 |
proto | 1.0.0 | protoclust | 1.6.4 |
protolite | 2.3.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | pryr | 0.1.6 |
ps | 1.7.5 | pscl | 1.5.5.1 |
psd | 2.1.1 | PSF | 0.5 |
pso | 1.0.4 | pspline | 1.0-19 |
psy | 1.2 | psych | 2.3.9 |
psychomix | 1.1-8 | psychonetrics | 0.11.5 |
psychotools | 0.7-3 | psychotree | 0.16-0 |
psychTools | 2.3.9 | psyphy | 0.3 |
PTAk | 2.0.0 | PTSR | 0.1.2 |
ptw | 1.9-16 | pubmed.mineR | 1.0.19 |
purrr | 1.0.2 | pushoverr | 1.1.0 |
pvclust | 2.2-0 | pwr | 1.3-0 |
PwrGSD | 2.3.6 | pwrRasch | 0.1-2 |
pxweb | 0.16.2 | PxWebApiData | 0.8.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.1.0 | qgraph | 1.9.5 |
qicharts2 | 0.7.4 | qlcal | 0.0.8 |
qmap | 1.0-4 | qMRI | 1.2.7 |
qpdf | 1.3.2 | qpNCA | 1.1.6 |
qqconf | 1.3.2 | qqplotr | 0.0.6 |
QRM | 0.4-31 | qrmdata | 2022-05-31-1 |
qrmtools | 0.0-16 | qrng | 0.0-9 |
qs | 0.25.5 | qtl | 1.60 |
quadprog | 1.5-8 | qualmap | 0.2.1 |
qualtRics | 3.1.7 | Quandl | 2.11.0 |
quanteda | 3.3.1 | quantification | 0.2.0 |
quantmod | 0.4.25 | quantreg | 5.97 |
quantspec | 1.2-3 | Quartet | 1.2.5 |
questionr | 0.7.8 | QuickJSR | 1.0.7 |
quickpsy | 0.1.5.1 | qvalue | 2.32.0 |
qvcalc | 1.0.3 | R.cache | 0.16.0 |
R.devices | 2.17.1 | R.filesets | 2.15.0 |
R.huge | 0.10.0 | R.matlab | 3.7.0 |
R.methodsS3 | 1.8.2 | R.oo | 1.25.0 |
R.rsp | 0.45.0 | R.utils | 2.12.2 |
R0 | 1.3-1 | R2BEAT | 1.0.5 |
r2d3 | 0.2.6 | R2HTML | 2.3.3 |
R2jags | 0.7-1 | R2OpenBUGS | 3.2-3.2.1 |
r2rtf | 1.1.1 | R2WinBUGS | 2.1-21 |
R4CouchDB | 0.7.5 | R6 | 2.5.1 |
radarchart | 0.3.1 | radiant | 1.6.0 |
radiant.basics | 1.6.0 | radiant.data | 1.6.2 |
radiant.design | 1.6.1 | radiant.model | 1.6.3 |
radiant.multivariate | 1.6.1 | RAdwords | 0.1.18 |
ragg | 1.2.6 | ragtop | 1.1.1 |
rainbow | 3.7 | rakeR | 0.2.1 |
rAmCharts | 2.1.15 | ramcmc | 0.1.2 |
ramify | 0.3.3 | ramps | 0.6.18 |
randomForest | 4.7-1.1 | randomForestSRC | 3.2.2 |
randomizeR | 3.0.2 | randomizr | 1.0.0 |
randomLCA | 1.1-3 | randtoolbox | 2.0.4 |
rang | 0.3.0 | ranger | 0.15.1 |
rankdist | 1.1.4 | RANN | 2.6.1 |
rapiclient | 0.1.3 | 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 | raveio | 0.9.0 |
RavenR | 2.2.0 | ravetools | 0.1.2 |
Rbeast | 0.9.9 | rbedrock | 0.3.1 |
rbenchmark | 1.0.0 | RBGL | 1.76.0 |
rbibutils | 2.2.16 | Rblpapi | 0.3.14 |
rbmi | 1.2.5 | RCarb | 0.1.6 |
rcartocolor | 2.1.1 | Rcatch22 | 0.2.1 |
rcdd | 1.5-2 | Rcgmin | 2022-4.30 |
rchess | 0.1 | rcmdcheck | 1.4.0 |
Rcmdr | 2.9-1 | RcmdrMisc | 2.9-1 |
RcmdrPlugin.DoE | 0.12-5 | RcmdrPlugin.temis | 0.7.10 |
RColorBrewer | 1.1-3 | Rcpp | 1.0.11 |
RcppAnnoy | 0.0.21 | RcppArmadillo | 0.12.6.6.0 |
RcppCCTZ | 0.2.12 | RcppDate | 0.0.3 |
RcppDE | 0.1.7 | RcppDist | 0.1.1 |
RcppEigen | 0.3.3.9.3 | RcppGSL | 0.3.13 |
RcppHungarian | 0.3 | RcppParallel | 5.1.7 |
RcppProgress | 0.4.2 | RcppQuantuccia | 0.1.1 |
RcppRedis | 0.2.4 | RcppRoll | 0.3.0 |
RcppSimdJson | 0.1.10 | RcppThread | 2.1.6 |
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.13 | RCzechia | 1.12.0 |
rdatacite | 0.5.4 | rdbnomics | 0.6.4 |
rdflib | 0.2.7 | rdhs | 0.8.0 |
RDota2 | 0.1.6 | Rdpack | 2.5 |
Rdsdp | 1.0.5.2.1 | rdwd | 1.8.0 |
re2 | 0.1.2 | reactable | 0.4.4 |
reactR | 0.5.0 | readabs | 0.4.14 |
reader | 1.0.6 | readODS | 2.1.0 |
readr | 2.1.4 | readsdmx | 0.3.1 |
readstata13 | 0.10.1 | readxl | 1.4.3 |
reasonabletools | 0.1 | REBayes | 2.54 |
recipes | 1.0.8 | reclin | 0.1.2 |
recmap | 1.0.17 | RecordLinkage | 0.4-12.4 |
redcapAPI | 2.8.0 | REDCapR | 1.1.0 |
REDCapTidieR | 0.4.1 | redland | 1.0.17-17 |
redux | 1.1.3 | RefManageR | 1.4.0 |
refugees | 2023.6.0 | regions | 0.1.8 |
registry | 0.5-1 | regress | 1.3-21 |
RegSDC | 0.7.0 | regsem | 1.9.5 |
regspec | 2.7 | regtools | 1.7.0 |
reinsureR | 0.1.0 | relations | 0.6-13 |
relimp | 1.0-5 | rematch | 2.0.0 |
rematch2 | 2.1.2 | remotes | 2.4.2.1 |
rentrez | 1.2.3 | renv | 1.0.3 |
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.6 |
represtools | 0.1.3 | reprex | 2.0.2 |
reproducible | 2.0.8 | reproj | 0.4.3 |
reqres | 0.2.5 | REQS | 0.8-13 |
request | 0.1.0 | Require | 0.3.1 |
rerddap | 1.0.4 | rerddapXtracto | 1.1.7 |
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.34.0 |
retrosheet | 1.1.5 | retry | 0.1.0 |
revdbayes | 1.5.2 | RevGadgets | 1.1.1 |
Revticulate | 1.0.0 | rex | 1.2.1 |
Rexperigen | 0.2.1 | Rfacebook | 0.6.15 |
Rfast | 2.0.9 | Rfast2 | 0.1.5.1 |
rfigshare | 0.3.8 | rflexscan | 1.1.0 |
rgbif | 3.7.8 | rgdal | 1.6-7 |
rgee | 1.1.7 | rgen | 0.0.1 |
RGENERATE | 1.3.7 | RGENERATEPREC | 1.2.9 |
rgenoud | 5.9-0.3 | rgeoda | 0.0.10-4 |
rgeos | 0.6-4 | rgl | 1.2.1 |
Rglpk | 0.6-5 | RgoogleMaps | 1.4.5.3 |
RGraphics | 3.0-2 | Rgraphviz | 2.44.0 |
rgrass | 0.3-9 | rgrass7 | 0.2-13 |
RGreenplum | 0.1.2 | rgugik | 0.4.0 |
RH2 | 0.2.4 | rhandsontable | 0.3.8 |
rhdf5 | 2.44.0 | rhdf5filters | 1.12.1 |
Rhdf5lib | 1.22.0 | RHMS | 1.7 |
rhosa | 0.2.0 | RhpcBLASctl | 0.23-42 |
rhub | 1.1.2 | rib | 0.19.3 |
riingo | 0.3.1 | Rilostat | 1.1.8 |
ring | 1.0.4 | RInside | 0.2.18 |
rintrojs | 0.3.3 | 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.1 |
rivernet | 1.2.3 | rivr | 1.2-3 |
rjags | 4-14 | rJava | 1.0-6 |
RJDBC | 0.2-10 | RJDemetra | 0.2.4 |
rje | 1.12.1 | rjson | 0.2.21 |
RJSONIO | 1.3-1.8 | rjstat | 0.4.3 |
RKEA | 0.0-6 | RKEAjars | 5.0-4 |
RKelly | 1.0 | rlang | 1.1.1 |
rlas | 1.6.3 | rle | 0.9.2 |
rlecuyer | 0.3-7 | 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 | rmapshaper | 0.5.0 |
RMariaDB | 1.3.1 | rmarkdown | 2.25 |
rmatio | 0.18.0 | RMAWGEN | 1.3.7 |
rmeta | 3.0 | rmgarch | 1.3-9 |
Rmpfr | 0.9-3 | rms | 6.7-1 |
rmutil | 1.1.10 | RMySQL | 0.10.26 |
rnaturalearth | 0.3.4 | rnaturalearthdata | 0.1.0 |
RNCEP | 1.0.10 | rncl | 0.8.7 |
RND | 1.2 | rneos | 0.4-0 |
RNetCDF | 2.8-1 | RNeXML | 2.4.11 |
rngtools | 1.5.2 | rngWELL | 0.10-9 |
RNifti | 1.5.0 | RNiftyReg | 2.8.1 |
rnn | 1.9.0 | rnoaa | 1.4.0 |
rnrfa | 2.1.0 | roadoi | 0.7.2 |
ROAuth | 0.9.6 | robfilter | 4.1.3 |
RobKF | 1.0.2 | RoBMA | 3.1.0 |
robotoolbox | 1.3.2 | robotstxt | 0.7.13 |
robsurvey | 0.5-2 | robustbase | 0.99-0 |
rockchalk | 1.8.157 | rocker | 0.3.1 |
ROCR | 1.0-11 | RODBC | 1.3-21 |
rodd | 0.2-1 | Rogue | 2.1.5 |
ROI | 1.0-1 | roll | 1.1.6 |
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 | routr | 0.4.1 |
roxygen2 | 7.2.3 | rpact | 3.4.0 |
RPANDA | 2.2 | rpanel | 1.1-5.2 |
rpart.plot | 3.1.1 | rpdo | 0.3.2 |
rpf | 1.0.14 | Rphylopars | 0.3.9 |
rpinterest | 0.3.1 | RPMG | 2.2-7 |
rpms | 0.5.1 | rpostgis | 1.5.0 |
RPostgres | 1.4.6 | RPostgreSQL | 0.7-5 |
RPPairwiseDesign | 1.0 | RPresto | 1.4.6 |
rprintf | 0.2.1 | rprojroot | 2.0.3 |
RPushbullet | 0.3.4 | RPyGeo | 1.0.0 |
rpymat | 0.1.7 | RQuantLib | 0.4.17 |
rrcov | 1.7-4 | rredlist | 0.7.1 |
rrefine | 2.1.0 | RRPP | 1.4.0 |
RRreg | 0.7.5 | RRTCS | 0.0.4 |
rrum | 0.2.0 | rsae | 0.2 |
RSAGA | 1.4.0 | Rsagacmd | 0.4.2 |
rsample | 1.2.0 | RSclient | 0.7-9 |
rscopus | 0.6.6 | rsdmx | 0.6-3 |
RSEIS | 4.1-6 | RSelenium | 1.7.9 |
rsem | 0.5.1 | Rserve | 1.8-11 |
Rsfar | 0.0.1 | RSGHB | 1.2.2 |
RSiteCatalyst | 1.4.16 | rsm | 2.10.4 |
RSmartlyIO | 0.1.3 | rsoi | 0.5.5 |
Rsolnp | 1.16 | rspa | 0.2.8 |
rsparse | 0.5.1 | RSpectra | 0.16-1 |
RSQLite | 2.3.2 | Rssa | 1.0.5 |
rstac | 0.9.2-5 | rstan | 2.32.3 |
rstanarm | 2.26.1 | rstantools | 2.3.1.1 |
rstatix | 0.7.2 | rstiefel | 1.0.1 |
rStrava | 1.3.0 | rstudioapi | 0.15.0 |
rsurface | 1.1.0 | RSurveillance | 0.2.1 |
rsvg | 2.6.0 | Rsymphony | 0.1-33 |
rTensor | 1.4.8 | rtf | 0.4-14.1 |
RTFA | 0.1.0 | rticles | 0.25 |
RTL | 1.3.4 | rtoot | 0.3.2 |
rtop | 0.6-8 | RTransferEntropy | 0.2.21 |
rtrim | 2.1.1 | rts | 1.1-14 |
Rtsne | 0.16 | Rttf2pt1 | 1.3.12 |
rtweet | 1.2.1 | rucrdtw | 0.1.5 |
rugarch | 1.5-1 | ruimtehol | 0.3.1 |
rules | 1.0.2 | runexp | 0.2.1 |
RUnit | 0.4.32 | runjags | 2.2.2-1.1 |
runner | 0.4.3 | runstats | 1.1.0 |
Runuran | 0.38 | rust | 1.4.1 |
Rvcg | 0.22.1 | rversions | 2.1.2 |
rvest | 1.0.3 | 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.0.14 |
rxode2et | 2.0.10 | rxode2ll | 2.0.11 |
rxode2parse | 2.0.16 | rxode2random | 2.0.11 |
RYandexTranslate | 1.0 | s2 | 1.1.4 |
S4Vectors | 0.38.1 | sae | 1.3 |
saeRobust | 0.4.0 | saeSim | 0.11.0 |
SAEval | 1.0.0 | samadb | 0.2.6 |
samplesize | 0.2-4 | sampling | 2.10 |
SamplingBigData | 1.0.0 | samplingbook | 1.2.4 |
SamplingStrata | 1.5-4 | samplingVarEst | 1.5 |
sandwich | 3.0-2 | sarima | 0.9.1 |
sass | 0.4.7 | satellite | 1.0.4 |
sazedR | 2.0.2 | sbgcop | 0.980 |
SBN | 1.0.0 | scales | 1.2.1 |
scalreg | 1.0.1 | scam | 1.2-14 |
scatterD3 | 1.0.1 | scatterplot3d | 0.3-44 |
scholar | 0.2.4 | SCI | 1.0-2 |
scoringRules | 1.1.1 | scoringutils | 1.1.0 |
ScottKnott | 1.3-2 | scs | 3.2.4 |
SDaA | 0.1-5 | sdcHierarchies | 0.20.0 |
sdcMicro | 5.7.6 | sdcSpatial | 0.5.2 |
sdcTable | 0.32.6 | sde | 2.0.18 |
sdmTMB | 0.4.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 |
secsse | 3.0.2 | seer | 1.1.8 |
seg | 0.5-7 | segmented | 1.6-4 |
selectr | 0.4-2 | seleniumPipes | 0.3.7 |
sem | 3.1-15 | semds | 0.9-6 |
SemiPar | 1.0-4.2 | semPlot | 1.1.6 |
SEMsens | 1.5.5 | semTools | 0.5-6 |
semtree | 0.9.18 | semver | 0.2.0 |
sendmailR | 1.4-0 | SensoMineR | 1.26 |
sentencepiece | 0.2.3 | separationplot | 1.4 |
seqDesign | 1.2 | seqinr | 4.2-30 |
seriation | 1.5.1 | servr | 0.27 |
sessioninfo | 1.2.2 | setartree | 0.2.1 |
setRNG | 2022.4-1 | sets | 1.0-24 |
settings | 0.2.7 | sf | 1.0-14 |
sFFLHD | 0.1.2 | sfheaders | 0.4.3 |
sfsmisc | 1.1-16 | sftime | 0.2-0 |
sgd | 1.1.1 | sgeostat | 1.0-27 |
shades | 1.4.0 | shape | 1.4.6 |
shapefiles | 0.7.2 | shapes | 1.2.7 |
SharpeR | 1.3.0 | shiny | 1.7.5.1 |
shiny.semantic | 0.4.3 | shinyAce | 0.4.2 |
shinyalert | 3.0.0 | shinybrms | 1.8.0 |
shinyBS | 0.61.1 | shinycssloaders | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.0 |
shinyjqui | 0.4.1 | shinyjs | 2.1.0 |
shinystan | 2.6.0 | shinytest | 1.5.3 |
shinythemes | 1.2.0 | shinyTree | 0.3.1 |
shinyWidgets | 0.8.0 | showimage | 1.0.0 |
showtext | 0.9-6 | showtextdb | 3.0 |
sigmoid | 1.4.0 | signal | 0.7-7 |
signs | 0.1.2 | SigTree | 1.10.6 |
Sim.DiffProc | 4.8 | simcdm | 0.1.1 |
SimComp | 3.3 | simex | 1.8 |
simfinapi | 0.2.4 | simglm | 0.8.9 |
SimilarityMeasures | 1.4 | SimInf | 9.5.0 |
simPop | 2.1.2 | simputation | 0.2.8 |
simrel | 2.1.0 | SiMRiv | 1.0.6 |
simsem | 0.5-16 | SimSurvey | 0.1.6 |
singleRcapture | 0.2.1.1 | siplab | 1.6 |
sirt | 3.13-228 | sitmo | 2.0.2 |
sits | 1.4.2-1 | sjlabelled | 1.2.0 |
sjmisc | 2.8.9 | SkewHyperbolic | 0.4-0 |
skmeans | 0.2-16 | skpr | 1.4.0 |
slackr | 3.3.1 | slam | 0.1-50 |
SLBDD | 0.0.4 | sleekts | 1.0.2 |
sleeperapi | 1.0.4 | Sleuth2 | 2.0-5 |
Sleuth3 | 1.0-3 | SLHD | 2.1-1 |
slider | 0.3.1 | slippymath | 0.3.1 |
sm | 2.2-5.7.1 | smacof | 2.1-5 |
smacpod | 2.6 | SmallCountRounding | 1.0.3 |
smam | 0.7.0 | smapr | 0.2.1 |
smerc | 1.8.3 | smoof | 1.6.0.3 |
smooth | 4.0.0 | smoother | 1.1 |
smoothr | 1.0.1 | smoots | 1.1.4 |
smovie | 1.1.5 | SMPracticals | 1.4-3 |
sms | 2.3.1 | sn | 2.1.1 |
sna | 2.7-1 | snakecase | 0.11.1 |
snow | 0.4-4 | SnowballC | 0.7.1 |
snowfall | 1.84-6.2 | SOAs | 1.4 |
soc.ca | 0.8.0 | socceR | 0.1.1 |
socialmixr | 0.3.1 | sodium | 1.3.0 |
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 | sorvi | 0.8.21 |
sourcetools | 0.1.7-1 | sp | 2.1-1 |
sp23design | 0.9-1 | spacetime | 1.3-0 |
spam | 2.10-0 | spaMM | 4.4.0 |
spant | 2.16.0 | sparklyr | 1.8.4 |
sparktex | 0.1 | sparr | 2.3-10 |
sparseDFM | 1.0 | SparseFactorAnalysis | 1.0 |
sparseinv | 0.1.3 | SparseM | 1.81 |
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.1 |
spatialreg | 1.2-9 | spatialsample | 0.4.0 |
SpatialTools | 1.0.5 | spatialwidget | 0.2.3 |
spatstat | 3.0-7 | spatstat.data | 3.0-3 |
spatstat.explore | 3.2-5 | spatstat.geom | 3.2-7 |
spatstat.linnet | 3.1-3 | spatstat.model | 3.2-8 |
spatstat.random | 3.2-1 | spatstat.sparse | 3.0-3 |
spatstat.utils | 3.0-4 | spBayes | 0.4-6 |
spBayesSurv | 1.1.7 | Spbsampling | 1.3.5 |
spd | 2.0-1 | spData | 2.3.0 |
spdep | 1.2-8 | spec | 0.1.7 |
spectral | 2.0 | speff2trial | 1.0.5 |
SPEI | 1.8.1 | sperrorest | 3.0.5 |
sphet | 2.0 | spiderbar | 0.2.5 |
spikeslab | 1.1.6 | spikeSlabGAM | 1.1-19 |
spINAR | 0.1.0 | spind | 2.2.1 |
splancs | 2.01-44 | splines2 | 0.5.1 |
splm | 1.6-3 | splus2R | 1.3-3 |
spmodel | 0.5.0 | spmoran | 0.2.2.9 |
SportsTour | 0.1.0 | sportyR | 2.2.1 |
SpotSampling | 0.1.0 | spselect | 0.0.1 |
spsur | 1.0.2.5 | spsurvey | 5.5.0 |
spTimer | 3.3.2 | sptotal | 1.0.1 |
sqldf | 0.4-11 | SqlRender | 1.16.1 |
SQRL | 1.0.1 | SQUAREM | 2021.1 |
srvyr | 1.2.0 | ssanv | 1.1 |
SSBtools | 1.4.8 | ssgraph | 1.15 |
ssize.fdr | 1.3 | ssizeRNA | 1.3.2 |
ssMousetrack | 1.1.6 | SSN | 1.1.17 |
stable | 1.1.6 | stabledist | 0.7-1 |
stabs | 0.6-4 | stampr | 0.3.0 |
StanHeaders | 2.26.28 | stargazer | 5.2.3 |
starma | 1.3 | stars | 0.6-4 |
starter | 0.1.14 | STARTS | 1.3-8 |
startupmsg | 0.9.6 | 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 |
STFTS | 0.1.0 | stinepack | 1.4 |
stlplus | 0.5.1 | stm | 1.3.6.1 |
STMedianPolish | 0.2 | stochvol | 3.2.1 |
stockAnalyst | 1.0.1 | stopwords | 2.3 |
storr | 1.2.5 | 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.10 |
stringfish | 0.15.8 | stringi | 1.7.12 |
stringr | 1.5.0 | strucchange | 1.5-3 |
strucchangeRcpp | 1.5-3-1.0.4 | StructuralDecompose | 0.1.1 |
styler | 1.10.2 | subplex | 1.8 |
subscore | 3.3 | sufficientForecasting | 0.1.0 |
sugrrants | 0.2.8 | suntools | 1.0.0 |
SuperLearner | 2.0-28.1 | superml | 0.5.6 |
SuppDists | 1.1-9.7 | support.CEs | 0.6-0 |
surface | 0.5 | suRtex | 0.9 |
survcomp | 1.50.0 | surveillance | 1.22.0 |
survey | 4.2-1 | surveybootstrap | 0.0.3 |
surveydata | 0.2.7 | surveyoutliers | 0.1 |
surveyplanning | 4.0 | surveysd | 1.3.1 |
survivalROC | 1.0.3.1 | survPresmooth | 1.1-11 |
svars | 1.3.11 | svd | 0.5.4.1 |
SVDNF | 0.1.8 | svglite | 2.1.2 |
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.2 |
symmoments | 1.2.1 | SYNCSA | 1.3.4 |
synthACS | 1.7.1 | synthesis | 1.2.4 |
synthpop | 1.8-0 | sys | 3.4.2 |
sysfonts | 0.8.8 | systemfit | 1.1-30 |
systemfonts | 1.0.5 | table1 | 1.4.3 |
tables | 0.9.17 | tabnet | 0.4.0 |
TAF | 4.2.0 | TAM | 4.1-4 |
TAQMNGR | 2018.5-1 | targets | 1.3.2 |
tau | 0.0-24 | taxize | 0.9.100 |
TBRDist | 1.0.2 | tbrf | 0.1.5 |
tcltk2 | 1.2-11 | Tcomp | 1.0.1 |
tdigest | 0.4.1 | TeachingDemos | 2.12 |
teamcolors | 0.0.4 | telegram.bot | 3.0.0 |
telemac | 0.1.1 | tempdisagg | 1.1.1 |
tensor | 1.5 | tensorA | 0.36.2 |
tensorflow | 2.14.0 | TensorPreAve | 1.1.0 |
tensorTS | 1.0.1 | TEQR | 6.0-0 |
tergm | 4.2.0 | Ternary | 2.2.1 |
terra | 1.7-55 | TESS | 2.1.2 |
tesseract | 5.2.0 | testcorr | 0.2.0 |
TestDataImputation | 2.3 | TestDesign | 1.5.1 |
tester | 0.1.7 | testit | 0.13 |
TestScorer | 1.7.2 | testthat | 3.2.0 |
TexExamRandomizer | 1.2.3 | texreg | 1.38.6 |
text2vec | 0.6.3 | 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.7 |
tfarima | 0.3.2 | tfautograph | 0.3.2 |
tfdatasets | 2.9.0 | tfio | 0.4.1 |
tfplot | 2021.6-1 | tframe | 2015.12-1.1 |
tfruns | 1.5.1 | tgp | 2.4-21 |
TH.data | 1.1-2 | theft | 0.5.4.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.3 | tibble | 3.2.1 |
tibbletime | 0.1.8 | tictoc | 1.2 |
Tides | 2.1 | tidyBdE | 0.3.4 |
tidycensus | 1.5 | tidygraph | 1.2.3 |
tidyhydat | 0.6.0 | tidyLPA | 1.1.0 |
tidymodels | 1.1.1 | tidyquant | 1.0.7 |
tidyqwi | 0.1.2 | tidyr | 1.3.0 |
tidyREDCap | 1.1.1 | tidyRSS | 2.0.7 |
tidyselect | 1.2.0 | tidytable | 0.10.2 |
tidytext | 0.4.1 | tidytree | 0.4.5 |
tidyverse | 2.0.0 | tiff | 0.1-11 |
tigris | 2.0.4 | tikzDevice | 0.12.5 |
timechange | 0.2.0 | timeDate | 4022.108 |
timeSeries | 4031.107 | timeseriesdb | 1.0.0-1.1.2 |
timetk | 2.9.0 | timsac | 1.3.8-4 |
tinyProject | 0.6.1 | tinytex | 0.48 |
tis | 1.39 | tkrplot | 0.0-27 |
TLMoments | 0.7.5.3 | tm | 0.7-11 |
tm.plugin.alceste | 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.6 | tmvnsim | 1.0-2 |
tmvtnorm | 1.5 | tokenizers | 0.3.0 |
tokenizers.bpe | 0.1.3 | toOrdinal | 1.3-0.0 |
topicdoc | 0.1.1 | topicmodels | 0.2-14 |
topicmodels.etm | 0.1.0 | topmodel | 0.7.5 |
torch | 0.11.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.2 |
trackdown | 1.1.1 | trackeR | 1.5.2 |
trackeRapp | 1.2 | TrackReconstruction | 1.3 |
tractor.base | 3.3.5.1 | traipse | 0.3.0 |
trajectories | 0.2-7 | trajr | 1.5.0 |
transfR | 1.0.11 | TransPhylo | 1.4.5 |
trapezoid | 2.0-2 | traudem | 1.0.1 |
tree | 1.0-43 | treebase | 0.1.4 |
TreeBUGS | 1.5.0 | treedater | 0.5.0 |
TreeDist | 2.7.0 | treeio | 1.24.0 |
treemap | 2.4-4 | TreeSearch | 1.4.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 | TSA | 1.3.1 |
TSANN | 0.1.0 | tsbox | 0.4.1 |
tsBSS | 1.0.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 |
TSEntropies | 0.9 | tseries | 0.10-54 |
tseriesChaos | 0.1-13.1 | tseriesEntropy | 0.7-2 |
tseriesTARMA | 0.3-4 | tsfeatures | 1.1.1 |
tsfknn | 0.5.2 | tsibble | 1.1.3 |
tsibbledata | 0.4.1 | tsibbletalk | 0.1.0 |
tsintermittent | 1.10 | tsiR | 0.4.3 |
TSLSTM | 0.1.0 | tsModel | 0.6-1 |
tsoutliers | 0.6-8 | 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.3 | tswge | 2.1.0 |
tth | 4.12-0-1 | TTR | 0.24.3 |
tufterhandout | 1.2.1 | tune | 1.1.2 |
turner | 0.1.7 | TUWmodel | 1.1-1 |
tvm | 0.5.2 | tweedie | 2.3.5 |
tweenr | 2.0.2 | twosamples | 2.0.1 |
txtq | 0.2.4 | tzdb | 0.4.0 |
uaparserjs | 0.3.5 | ubiquity | 2.0.1 |
ucminf | 1.2.0 | UComp | 4.0.2 |
udpipe | 0.8.11 | ufRisk | 1.0.7 |
ugatsdb | 0.2.3 | uGMAR | 3.4.5 |
uncmbb | 0.2.2 | unglue | 0.1.0 |
UnifiedDoseFinding | 0.1.10 | units | 0.8-4 |
univOutl | 0.4 | unrepx | 1.0-2 |
unrtf | 1.4.3 | uptasticsearch | 0.4.0 |
urca | 1.3-3 | urlchecker | 1.0.1 |
urlshorteneR | 1.5.7 | urltools | 1.7.3 |
uroot | 2.1-2 | USA.state.boundaries | 1.0.1 |
usdata | 0.2.0 | usethis | 2.2.2 |
usmap | 0.6.3 | usmapdata | 0.1.1 |
utf8 | 1.2.4 | utility | 1.4.6 |
uuid | 1.1-1 | uwot | 0.1.16 |
V8 | 4.4.0 | validate | 1.1.3 |
validatetools | 0.5.2 | vapour | 0.9.5 |
VAR.etp | 1.1 | VARDetect | 0.1.6 |
vardiag | 0.2-1 | vardpoor | 0.20.1 |
VaRES | 1.0.2 | vars | 1.5-9 |
VARshrink | 0.3.1 | varycoef | 0.3.4 |
VCA | 1.4.5 | vcd | 1.4-11 |
vcdExtra | 0.8-5 | vcr | 1.2.2 |
vctrs | 0.6.4 | vdg | 1.2.2 |
VedicDateTime | 0.1.9 | vegan | 2.6-4 |
vegperiod | 0.4.0 | VennDiagram | 1.7.3 |
venneuler | 1.1-3 | VGAM | 1.1-9 |
VGAMdata | 1.1-9 | vglmer | 1.0.3 |
VIC5 | 0.2.6 | VIM | 6.2.2 |
VineCopula | 2.5.0 | vip | 0.4.1 |
viridis | 0.6.4 | viridisLite | 0.4.2 |
visNetwork | 2.1.2 | visualize | 4.4.0 |
vkR | 0.2 | volatilityTrader | 1.0.1 |
volleystat | 0.2.0 | vpc | 1.2.2 |
vroom | 1.6.4 | vrtest | 1.2 |
W3CMarkupValidator | 0.1-7 | waiter | 0.2.5 |
waldo | 0.5.2 | warp | 0.2.1 |
washdata | 0.1.3 | 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.2 | wCorr | 1.9.8 |
WDI | 2.7.8 | wdman | 0.2.6 |
WebAnalytics | 0.9.12 | webdriver | 1.0.6 |
webmockr | 0.9.0 | webreadr | 0.4.0 |
webshot | 0.5.5 | webutils | 1.1 |
wehoop | 1.5.0 | WeightIt | 0.14.2 |
weights | 1.0.4 | welo | 0.1.3 |
WeMix | 4.0.0 | whisker | 0.4.1 |
whitebox | 2.3.1 | whoami | 1.3.0 |
widgetframe | 0.3.1 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | wikipediatrend | 2.1.6 |
WikipediR | 1.5.0 | wikitaxa | 0.4.0 |
wildlifeDI | 0.5.0 | windex | 2.0.6 |
wINEQ | 1.2.0 | withr | 2.5.2 |
wk | 0.9.0 | wktmo | 1.0.5 |
wkutils | 0.1.3 | wnl | 0.7.3 |
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.3 | workflowsets | 1.0.1 |
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.4.2 |
WriteXLS | 6.4.0 | WRSS | 3.1 |
wrswoR | 1.1.1 | WRTDStidal | 1.1.4 |
WufooR | 1.0.1 | x12 | 1.10.3 |
x13binary | 1.1.57-4 | xaringan | 0.28 |
XBRL | 0.99.19.1 | xfun | 0.41 |
xgboost | 1.7.5.1 | xgxr | 1.1.2 |
XLConnect | 1.0.7 | xlsx | 0.6.5 |
xlsxjars | 0.6.1 | XML | 3.99-0.15 |
xml2 | 1.3.5 | XML2R | 0.0.6 |
xopen | 1.0.0 | xplain | 0.2.2 |
xpose | 0.4.17 | xpose.nlmixr2 | 0.4.0 |
xpose4 | 4.7.2 | xslt | 1.4.4 |
xtable | 1.8-4 | xts | 0.13.1 |
XVector | 0.40.0 | xxIRT | 2.1.2 |
yaImpute | 1.0-33 | yaml | 2.3.7 |
yardstick | 1.2.0 | yesno | 0.1.2 |
yhatr | 0.15.1 | yorkr | 0.0.41 |
yuima | 1.15.22 | yulab.utils | 0.1.0 |
zeallot | 0.1.0 | zen4R | 0.9 |
zic | 0.9.1 | ZIM | 1.1.0 |
ZINARp | 0.1.0 | zip | 2.3.0 |
zipfR | 0.6-70 | zlibbioc | 1.46.0 |
zoo | 1.8-12 | ZRA | 0.2 |
ztable | 0.2.3 | zyp | 0.11-1 |
RStudio Server
R: 4.3.1
rstudio-server: 2023.06.2+561
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
Added package flock
R: 4.3.1; rstudio-server: 2023.06.2+561; 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, 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, and natural language processing.
R packages (2904)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.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 |
actuar | 3.3-2 | ada | 2.0-5 |
adagio | 0.8.5 | adaptivetau | 2.2-3 |
adaptMCMC | 1.4 | adaptr | 1.3.2 |
adaptsmoFMRI | 1.2 | adaptTest | 1.1 |
ade4 | 1.7-22 | ade4TkGUI | 0.3-1 |
adegenet | 2.1.10 | adegraphics | 1.0-18 |
adehabitatHR | 0.4.21 | adehabitatHS | 0.3.17 |
adehabitatLT | 0.3.27 | adehabitatMA | 0.3.16 |
ADGofTest | 0.3 | adimpro | 0.9.6 |
admisc | 0.33 | AdMit | 2.1.9 |
ads | 1.5-9 | AER | 1.2-10 |
affy | 1.78.0 | affyio | 1.70.0 |
africamonitor | 0.2.3 | agricolae | 1.3-6 |
agricolaeplotr | 0.3.1 | agridat | 1.22 |
airports | 0.1.0 | akima | 0.6-3.4 |
alabama | 2023.1.0 | AlgDesign | 1.2.1 |
almanac | 1.0.0 | alphavantager | 0.1.3 |
ALTopt | 0.1.2 | Amelia | 1.8.1 |
AmericanCallOpt | 0.95 | ammiBayes | 1.0-1 |
AMR | 2.1.0 | AnaCoDa | 0.1.4.4 |
anacor | 1.1-4 | anesrake | 0.80 |
animation | 2.7 | anipaths | 0.10.2 |
AnnotationDbi | 1.62.1 | anytime | 0.3.9 |
aod | 1.3.2 | aoos | 0.5.0 |
AovBay | 0.1.0 | ape | 5.7-1 |
APFr | 1.0.2 | aplot | 0.2.1 |
approximator | 1.2-8 | ARCensReg | 3.0.1 |
ArchaeoChron | 0.1 | ArchaeoPhases | 1.8 |
ArDec | 2.1-1 | ARDL | 0.2.4 |
ardl.nardl | 1.2.3 | areal | 0.1.8 |
arfima | 1.8-1 | argparse | 2.2.2 |
arm | 1.13-1 | aroma.apd | 0.7.0 |
arrangements | 1.1.9 | arrow | 13.0.0 |
ars | 0.6 | ascii | 2.4 |
asd | 2.2 | ash | 1.0-15 |
ashr | 2.2-63 | askpass | 1.2.0 |
aspect | 1.0-6 | ASSA | 2.0 |
assertthat | 0.2.1 | AssetCorr | 1.0.4 |
astsa | 2.0 | asymmetry | 2.0.4 |
ata | 1.1.1 | aTSA | 3.1.2 |
attempt | 0.3.1 | attention | 0.3.0 |
AUC | 0.3.2 | audio | 0.1-11 |
autoFRK | 1.4.3 | autoimage | 2.2.3 |
automap | 1.1-9 | autostsm | 3.1.0 |
av | 0.8.4 | aweek | 1.0.3 |
aws | 2.5-3 | awsMethods | 1.1-1 |
BACCO | 2.1-0 | BACCT | 1.0 |
backports | 1.4.1 | backtest | 0.3-4 |
baggr | 0.7.6 | bain | 0.2.9 |
BalancedSampling | 1.6.3 | BaM | 1.0.3 |
bama | 1.3.0 | bamdit | 3.4.0 |
bamlss | 1.2-1 | bang | 1.0.2 |
BANOVA | 1.2.1 | BART | 2.9.4 |
bartBMA | 1.0 | bartCause | 1.0-6 |
bartMachine | 1.3.4.1 | bartMachineJARs | 1.2.1 |
BAS | 1.6.4 | basad | 0.3.0 |
base64 | 2.0.1 | base64enc | 0.1-3 |
base64url | 1.4 | basicMCMCplots | 0.2.7 |
BaSkePro | 0.1.0 | BASS | 1.3.1 |
BatchExperiments | 1.4.3 | BatchJobs | 1.9 |
batchmeans | 1.0-4 | baycn | 1.2.0 |
bayefdr | 0.2.1 | bayes4psy | 1.2.11 |
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-8 |
BayesCR | 2.1 | bayesCT | 0.99.3 |
BayesCTDesign | 0.6.1 | BayesDA | 2012.04-1 |
bayesDccGarch | 3.0.4 | bayesdfa | 1.2.0 |
bayesdistreg | 0.1.0 | bayesDP | 1.3.6 |
BayesFactor | 0.9.12-4.4 | 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.1-1 |
bayeslincom | 1.3.0 | BayesLN | 0.2.8 |
BayesLogit | 2.1 | bayesloglin | 1.0.1 |
bayeslongitudinal | 0.1.0 | bayesm | 3.1-5 |
BayesMallows | 1.3.2 | BayesMassBal | 1.1.0 |
bayesmeta | 3.3 | bayesmix | 0.7-6 |
bayesnec | 2.1.0.3 | bayesplot | 1.10.0 |
bayesQR | 2.4 | BayesSAE | 1.0-2 |
bayestestR | 0.13.1 | bayesTFR | 7.4-0 |
BayesTools | 0.2.16 | BayesTree | 0.3-1.4 |
BayesVarSel | 2.2.5 | BayesX | 0.3-2 |
BAYSTAR | 0.2-10 | BB | 2019.10-1 |
BBmisc | 1.13 | BCBCSF | 1.0-1 |
BCC1997 | 0.1.1 | BCE | 2.2.0 |
Bchron | 4.7.6 | bcp | 4.0.3 |
bcpa | 1.3.2 | bcrm | 0.5.4 |
BDgraph | 2.72 | bdsmatrix | 1.3-6 |
BE | 0.2.4 | beadarray | 2.50.0 |
BeadDataPackR | 1.52.0 | bearishTrader | 1.0.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.6 | Bessel | 0.6-0 |
BEST | 0.5.4 | BetaBit | 2.2 |
betafunctions | 1.8.1 | 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.0.0 | BGGM | 2.0.4 |
BGLR | 1.1.0 | BGVAR | 2.5.2 |
BH | 1.81.0-1 | BHH2 | 2016.05.31 |
BiasedUrn | 2.0.11 | bibtex | 0.5.1 |
bidask | 1.0.0 | BIFIEsurvey | 3.4-15 |
biganalytics | 1.1.21 | bigD | 0.2.0 |
biglm | 0.9-2.1 | bigmemory | 4.6.1 |
bigmemory.sri | 0.1.6 | bigrquery | 1.4.2 |
bigsplines | 1.1-1 | bigtime | 0.2.3 |
BigVAR | 1.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | binom | 1.1-1.1 |
binomSamSize | 0.1-5 | binr | 1.1.1 |
binseqtest | 1.0.4 | Biobase | 2.60.0 |
BiocGenerics | 0.46.0 | BiocManager | 1.30.22 |
BiocParallel | 1.34.1 | BiocVersion | 3.17.1 |
bioinactivation | 1.2.3 | biomformat | 1.28.0 |
bioOED | 0.2.1 | Biostrings | 2.68.0 |
birtr | 1.0.0 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
biwavelet | 0.20.21 | bizdays | 1.0.13 |
bkmr | 0.2.2 | blaise | 1.3.10 |
blastula | 0.3.3 | blavaan | 0.5-1 |
BLModel | 1.0.2 | blob | 1.2.4 |
blocklength | 0.1.5 | blockrand | 1.5 |
blocksdesign | 4.9 | blockTools | 0.6.4 |
BLR | 1.6 | BMA | 3.18.17 |
bmgarch | 2.0.0 | bmixture | 1.7 |
BMS | 0.3.5 | BMTAR | 0.1.1 |
bnlearn | 4.9 | BNPTSclust | 2.0 |
BNSP | 2.2.3 | 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.35 | Boom | 0.9.11 |
BoomSpikeSlab | 1.2.5 | bootnet | 1.5.5 |
BootPR | 1.0 | bootstrap | 2019.6 |
bootUR | 1.0.2 | bpca | 1.3-4 |
bqtl | 1.0-35 | BradleyTerry2 | 1.1-2 |
brainR | 1.6.0 | breakfast | 2.3 |
brew | 1.0-8 | brglm | 0.7.2 |
brglm2 | 0.9 | bridgesampling | 1.1-2 |
brio | 1.1.3 | brms | 2.20.3 |
Brobdingnag | 1.2-9 | broman | 0.80 |
broom | 1.0.5 | bsam | 1.1.3 |
bsamGP | 1.2.4 | bslib | 0.5.1 |
BsMD | 2023.707 | bspec | 1.6 |
bspmma | 0.1-2 | bssm | 2.0.1 |
BSSprep | 0.1 | bsts | 0.9.9 |
bsvars | 1.0.0 | BTLLasso | 0.1-11 |
BTM | 0.3.7 | bullishTrader | 1.0.1 |
bundesbank | 0.1-9 | BurStFin | 1.3 |
BurStMisc | 1.1 | BVAR | 1.0.4 |
bvartools | 0.2.3 | ca | 0.71.1 |
cabootcrs | 2.1.0 | cachem | 1.0.8 |
cacIRT | 1.4 | CADFtest | 0.3-3 |
caffsim | 0.2.2 | Cairo | 1.6-1 |
calculus | 1.0.1 | CalibrateSSB | 1.3.0 |
calibrator | 1.2-8 | callr | 3.7.3 |
cancensus | 0.5.5 | candisc | 0.8-6 |
CANSIM2R | 1.14.1 | car | 3.1-2 |
CARBayes | 6.0 | CARBayesdata | 3.0 |
CARBayesST | 3.3.1 | carData | 3.0-5 |
caret | 6.0-94 | carfima | 2.0.2 |
caribou | 1.1-1 | cartogram | 0.3.0 |
caTools | 1.18.2 | catR | 3.17 |
causact | 0.5.3 | CausalImpact | 1.3.0 |
CAvariants | 5.9 | cbsodataR | 0.5.1 |
cccp | 0.2-9 | cdlTools | 0.15 |
CDM | 8.2-6 | cds | 1.0.3 |
CellNOptR | 1.46.0 | cellranger | 1.1.0 |
censusapi | 0.8.0 | CFtime | 1.0.0 |
ChainLadder | 0.2.18 | chandwich | 1.1.6 |
changepoint | 2.2.4 | changepoint.geo | 1.0.1 |
changepoint.np | 1.0.5 | checkLuhn | 1.1.0 |
checkmate | 2.2.0 | cherryblossom | 0.1.0 |
chilemapas | 0.3.0 | chk | 0.9.0 |
choiceDes | 0.9-3 | CholWishart | 1.1.2 |
chron | 2.3-61 | cifti | 0.4.5 |
cinterpolate | 1.0.0 | CircSpaceTime | 0.9.0 |
CircStats | 0.2-6 | circular | 0.5-0 |
ciTools | 0.6.1 | classInt | 0.4-10 |
cli | 3.6.1 | clime | 0.5.0 |
clinDR | 2.4.1 | clinfun | 1.1.3 |
clinicalsignificance | 1.2.0 | clinPK | 0.11.1 |
clinsig | 1.2 | clipr | 0.8.0 |
clisymbols | 1.2.0 | clock | 0.7.0 |
clue | 0.3-64 | clustDRM | 0.1-0 |
clusterGeneration | 1.3.8 | clusterPower | 0.7.0 |
ClustVarLV | 2.1.1 | clv | 0.3-2.3 |
cmaes | 1.0-12 | CMLS | 1.0-1 |
cmm | 1.0 | cmocean | 0.3-1 |
cmprsk | 2.2-11 | cmrutils | 1.3.1 |
cNORM | 3.0.3 | CNORode | 1.42.0 |
coalescentMCMC | 0.4-4 | coalitions | 0.6.24 |
coarseDataTools | 0.6-6 | cobalt | 4.5.1 |
coconots | 1.1.2 | cocor | 1.1-4 |
cocorresp | 0.4-3 | cocron | 1.0-1 |
coda | 0.19-4 | coin | 1.4-2 |
cointReg | 0.2.0 | collapse | 1.9.6 |
collapsibleTree | 0.1.7 | colorRamps | 2.3.1 |
colorspace | 2.1-0 | colourpicker | 1.3.0 |
colourvalues | 0.3.9 | combinat | 0.0-8 |
CombinS | 1.1-1 | CommonJavaJars | 1.0-6 |
commonmark | 1.9.0 | compare | 0.2-6 |
CompQuadForm | 1.4.3 | conditionz | 0.1.0 |
conf.design | 2.0.0 | config | 0.3.2 |
conflicted | 1.2.0 | conquer | 1.3.3 |
conquestr | 1.0.7 | contactdata | 1.0.0 |
contfrac | 1.1-12 | convey | 0.2.5 |
cops | 1.3-1 | copula | 1.1-2 |
copulaData | 0.0-1 | cordillera | 1.0-0 |
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 | costat | 2.4.1 |
countrycode | 1.5.0 | COVID19 | 3.0.3 |
covid19.analytics | 2.1.3.1 | covid19br | 0.1.6 |
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.1 |
CPBayes | 1.1.0 | cpk | 1.3-1 |
cplm | 0.7-11 | cpp11 | 0.4.6 |
crawl | 2.3.0 | crayon | 1.5.2 |
credentials | 2.0.1 | credule | 0.1.4 |
crfsuite | 0.4.1 | CRM | 1.2.4 |
crmPack | 1.0.3 | crossdes | 1.1-2 |
Crossover | 0.1-21 | crosstalk | 1.2.0 |
crs | 0.15-37 | crseEventStudy | 1.2.2 |
crsmeta | 0.3.0 | crul | 1.4.0 |
cSEM | 0.5.0 | 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.1.0 |
ctrdata | 1.15.1 | CTT | 2.3.3 |
CTTShiny | 0.1 | ctv | 0.9-5 |
cubature | 2.1.0 | cubble | 0.3.0 |
Cubist | 0.4.2.1 | curl | 5.0.2 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-11 |
d3Network | 0.5.2.1 | DAAG | 1.25.4 |
dae | 3.2.19 | daewr | 1.2-11 |
dagitty | 0.3-1 | DAKS | 2.1-3 |
DALEX | 2.4.3 | data.table | 1.14.8 |
data.tree | 1.0.0 | DatabaseConnector | 6.2.4 |
DataExplorer | 0.8.2 | datapasta | 3.1.0 |
dataseries | 0.2.0 | datawizard | 0.9.0 |
date | 1.2-42 | datetimeutils | 0.6-1 |
dbarts | 0.9-23 | DBI | 1.1.3 |
DBItest | 1.7.3 | dbmss | 2.8-2 |
dbparser | 2.0.1 | dbplyr | 2.3.3 |
dbscan | 1.1-11 | dbx | 0.2.8 |
DChaos | 0.1-7 | dclone | 2.3-2 |
DCluster | 0.2-9 | DClusterm | 1.0-1 |
dcov | 0.1.1 | dCovTS | 1.3 |
dcurver | 0.9.2 | dde | 1.0.4 |
deBInfer | 0.4.4 | debugme | 1.1.0 |
deducorrect | 1.3.7 | deductive | 1.0.0 |
deldir | 1.0-9 | deltaPlotR | 1.6 |
dendextend | 1.17.1 | densEstBayes | 1.0-2.2 |
DEoptim | 2.2-8 | DEoptimR | 1.1-2 |
depmix | 0.9.16 | depmixS4 | 1.5-0 |
DepthProc | 2.1.5 | Deriv | 4.1.3 |
derivmkts | 0.2.5 | desc | 1.4.2 |
DescTools | 0.99.50 | designmatch | 0.5.4 |
desirability | 2.1 | deSolve | 1.38 |
desplot | 1.10 | devtools | 2.4.5 |
dexter | 1.2.2 | dextergui | 0.2.6 |
dexterMST | 0.9.3 | 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 |
DHARMa | 0.4.6 | DHS.rates | 0.9.1 |
diagis | 0.2.3 | diagonals | 6.4.0 |
diagram | 1.6.5 | DiagrammeR | 1.0.10 |
dials | 1.2.0 | DiceDesign | 1.9 |
DiceEval | 1.5.1 | DiceKriging | 1.6.0 |
DiceView | 2.1-0 | dichromat | 2.0-0.1 |
DICOMread | 0.0.0.3 | DIFboost | 0.3 |
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.33 | DIMORA | 0.3.5 |
dimRed | 0.2.6 | dina | 2.0.0 |
dipsaus | 0.2.8 | diptest | 0.76-0 |
Dire | 2.1.1 | DIRECT | 1.1.0 |
directlabels | 2023.8.25 | dirichletprocess | 0.4.2 |
disaggR | 1.0.5 | discretization | 1.0-1.1 |
DistatisR | 1.1.1 | distcrete | 1.0.3 |
distfree.cr | 1.5.1 | distr | 2.9.2 |
distrEx | 2.9.0 | distributional | 0.3.2 |
distributions3 | 0.2.1 | DistributionUtils | 0.6-1 |
distrom | 1.0.1 | distrTeach | 2.9.0 |
dittodb | 0.1.7 | divest | 0.10.3 |
divseg | 0.0.5 | dLagM | 1.1.12 |
dlm | 1.1-6 | dlnm | 2.4.7 |
dlstats | 0.1.7 | dmri.tracking | 0.1.0 |
doBy | 4.6.18 | doc2vec | 0.2.0 |
docopulae | 0.4.0 | DoE.base | 1.2-2 |
DoE.MIParray | 1.0-1 | DoE.wrapper | 0.12 |
doMC | 1.3.8 | doParallel | 1.0.17 |
doRNG | 1.8.6 | DoseFinding | 1.0-5 |
doSNOW | 1.0.20 | DOSPortfolio | 0.1.0 |
dotCall64 | 1.0-2 | Dowd | 0.12 |
downlit | 0.4.3 | downloader | 0.4 |
dparser | 1.3.1-10 | dplyr | 1.1.3 |
dqrng | 0.3.1 | dr4pl | 2.0.0 |
DriftBurstHypothesis | 0.4.0.1 | DRR | 0.0.4 |
dsa | 1.0.12 | DSAIDE | 0.9.6 |
dse | 2020.2-1 | DSI | 1.5.0 |
DSL | 0.1-7 | DT | 0.29 |
DTAT | 0.3-6 | DtD | 0.2.2 |
dti | 1.5.4 | dtplyr | 1.3.1 |
DTSg | 1.1.1 | dtt | 0.1-2 |
dtts | 0.1.1 | dtw | 1.23-1 |
dtwclust | 5.5.12 | duckdb | 0.8.1-3 |
dygraphs | 1.1.1.6 | dyn | 0.2-9.6 |
dynamicTreeCut | 1.63-1 | dynaTree | 1.2-16 |
dynlm | 0.3-6 | e1071 | 1.7-13 |
earlyR | 0.0.5 | earth | 5.3.2 |
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.3 | ecb | 0.4.2 |
Ecdat | 0.4-2 | ecespa | 1.1-17 |
Ecfun | 0.3-2 | ecm | 7.0.0 |
ecodist | 2.0.9 | ECOSolveR | 0.5.5 |
ecp | 3.1.5 | 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.1 |
eegkit | 1.0-4 | eegkitdata | 1.1 |
EFAutilities | 2.1.3 | effects | 4.2-2 |
EGAnet | 2.0.1 | egg | 0.4.5 |
egor | 1.23.3 | eha | 2.11.0 |
eigenmodel | 1.11 | elastic | 1.2.0 |
elasticnet | 1.3 | elevatr | 0.99.0 |
ellipse | 0.5.0 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | EMbC | 2.0.3 |
EMD | 1.5.9 | emdi | 2.2.0 |
emg | 1.0.9 | emmeans | 1.8.8 |
emulator | 1.2-21 | encode | 0.3.6 |
endtoend | 2.29 | energy | 1.7-11 |
EngrExpt | 0.1-8 | enrichwith | 0.3.1 |
ensembleBMA | 5.1.8 | EntropyMCMC | 1.0.4 |
EnvStats | 2.8.1 | 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.8 |
epiR | 2.0.63 | EpiReport | 1.0.2 |
episensr | 1.3.0 | epitools | 0.5-10.1 |
epitrix | 0.4.0 | equate | 2.0.8 |
equateIRT | 2.3.0 | equateMultiple | 0.1.1 |
equivalence | 0.7.2 | era | 0.4.1 |
ergm | 4.5.0 | ergm.ego | 1.1.0 |
ergm.multi | 0.2.0 | eRm | 1.0-2 |
errorlocate | 1.1 | errum | 0.0.3 |
esaBcv | 1.2.1.1 | esemifar | 1.0.1 |
ESG | 1.3 | EstCRM | 1.6 |
estimability | 1.4.1 | EstimateGroupNetwork | 0.3.1 |
ETLUtils | 1.5 | etm | 1.1.1 |
etrm | 1.0.1 | etrunct | 0.1 |
eurostat | 3.8.2 | evaluate | 0.21 |
evd | 2.3-6.1 | evgam | 1.0.0 |
ewoc | 0.3.0 | Exact | 3.2 |
exactextractr | 0.9.1 | exams | 2.4-0 |
ExceedanceTools | 1.3.6 | exdex | 1.2.2 |
experiment | 1.2.1 | expint | 0.1-8 |
expm | 0.999-7 | ExPosition | 2.8.23 |
expsmooth | 2.3 | extraDistr | 1.9.1 |
extrafont | 0.19 | extrafontdb | 1.0 |
extraoperators | 0.1.1 | eyelinker | 0.2.1 |
ez | 4.4-0 | fable | 0.3.3 |
fable.prophet | 0.1.0 | fabletools | 0.3.3 |
FactoClass | 1.2.8 | FactoMineR | 2.8 |
factorstochvol | 1.0.2 | fanplot | 4.0.0 |
fansi | 1.0.4 | FAOSTAT | 2.3.0 |
faoutlier | 0.7.6 | faraway | 1.0.8 |
farver | 2.1.1 | fAssets | 4023.85 |
fastcluster | 1.2.3 | fastDummies | 1.7.3 |
fastGHQuad | 1.0.1 | fastICA | 1.2-3 |
fastLink | 0.6.0 | fastmap | 1.1.1 |
fastmatch | 1.1-4 | fasttime | 1.1-0 |
FatTailsR | 1.8-0 | FAVAR | 0.1.3 |
fBasics | 4022.94 | fBonds | 3042.78 |
fCopulae | 4022.85 | fda | 6.1.4 |
fdaACF | 1.0.0 | fdapace | 0.5.9 |
fdrtool | 1.2.17 | fds | 1.8 |
fdth | 1.2-6 | feasts | 0.3.1 |
fechner | 1.0-3 | FeedbackTS | 1.5 |
fExtremes | 4021.83 | ff | 4.0.9 |
FFD | 1.0-9 | fftwtools | 0.9-11 |
fGarch | 4022.89 | fHMM | 1.1.0 |
FielDHub | 1.3.1 | fields | 15.2 |
filearray | 0.1.6 | filehash | 2.4-5 |
filehashSQLite | 0.2-6 | filelock | 1.0.2 |
filematrix | 1.3 | fImport | 4021.86 |
FinancialMath | 0.1.1 | FinAsym | 1.0 |
findpython | 1.0.8 | finnts | 0.3.0 |
finreportr | 1.0.4 | FinTS | 0.4-6 |
fishMod | 0.29 | fitdistrplus | 1.1-11 |
FKF | 0.2.4 | FKF.SP | 0.3.1 |
flashClust | 1.01-2 | flexclust | 1.4-1 |
flexdashboard | 0.6.2 | flexmix | 2.3-19 |
FlexScan | 0.2.2 | flextable | 0.9.3 |
float | 0.3-1 | flock | 0.7 |
fma | 2.5 | FMC | 1.0.1 |
fmdates | 0.1.4 | FME | 1.3.6.3 |
fmri | 1.9.12 | fMultivar | 4031.84 |
fnets | 0.1.5 | FNN | 1.1.3.2 |
fNonlinear | 4021.81 | fontawesome | 0.5.2 |
fontBitstreamVera | 0.1.1 | fontLiberation | 0.1.0 |
fontquiver | 0.2.1 | 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 | fourPNO | 1.1.0 |
fpc | 2.2-10 | fpcb | 0.1.0 |
fPortfolio | 4023.84 | fpp2 | 2.5 |
fpp3 | 0.5 | fracdiff | 1.5-2 |
Frames2 | 0.2.1 | FRAPO | 0.4-1 |
fredr | 2.1.0 | freecurrencyapi | 0.1.0 |
freesurferformats | 0.1.17 | fRegression | 4021.83 |
frenchdata | 0.2.0 | freqdom | 2.0.3 |
freqdom.fda | 1.0.1 | fresh | 0.2.0 |
FrF2 | 2.3-2 | FrF2.catlg128 | 1.2-2 |
FRK | 2.1.5 | fs | 1.6.3 |
fslr | 2.25.2 | fsMTS | 0.1.7 |
fst | 0.9.8 | fstcore | 0.9.14 |
fTrading | 3042.79 | ftsa | 6.3 |
functional | 0.6 | funtimes | 9.1 |
furrr | 0.3.1 | futile.logger | 1.4.3 |
futile.options | 1.0.1 | future | 1.33.0 |
future.apply | 1.11.0 | fuzzyjoin | 0.1.6 |
GA | 3.2.3 | GAD | 1.1.1 |
gam | 1.22-2 | gamlr | 1.13-8 |
gamlss | 5.4-18 | gamlss.data | 6.0-2 |
gamlss.dist | 6.1-1 | 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.5.1 |
gaussquad | 1.0-3 | GaussSuppression | 0.7.0 |
gbm | 2.1.8.1 | gbutils | 0.5 |
gclus | 1.3.2 | GCPM | 1.2.2 |
gdalcubes | 0.6.4 | gdalraster | 1.4.0 |
gdalUtilities | 1.2.5 | gdata | 2.19.0 |
GDINA | 2.9.4 | gdistance | 1.6.4 |
gdpc | 1.1.3 | gdtools | 0.3.3 |
gear | 0.3.4 | gee | 4.13-25 |
geepack | 1.3.9 | genalg | 0.2.1 |
gender | 0.6.0 | GeneralizedHyperbolic | 0.8-4 |
generics | 0.1.3 | genetics | 1.3.8.1.3 |
GenomeInfoDb | 1.36.0 | GenomeInfoDbData | 1.2.10 |
GenomicRanges | 1.52.0 | GenSA | 1.1.10 |
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.3 | geometry | 0.4.7 |
geonames | 0.999 | geonapi | 0.7 |
GEOquery | 2.68.0 | geoR | 1.9-2 |
geos | 0.2.3 | geosapi | 0.6-6 |
geosphere | 1.5-18 | geospt | 1.0-2 |
geostan | 0.5.1 | geouy | 0.2.8 |
gert | 1.9.3 | getPass | 0.2-2 |
gets | 0.37 | GetTDData | 1.5.4 |
gfonts | 0.2.0 | GGally | 2.1.2 |
ggalt | 0.4.0 | gganimate | 1.0.8 |
ggdag | 0.2.10 | ggdemetra | 0.2.5 |
ggdendro | 0.1.23 | ggdist | 3.3.0 |
ggExtra | 0.10.1 | ggforce | 0.4.1 |
ggformula | 0.10.4 | ggfun | 0.1.3 |
gghalves | 0.1.4 | ggmap | 3.0.2 |
ggmcmc | 1.5.1.1 | ggnewscale | 0.4.9 |
ggplot2 | 3.4.3 | ggplotify | 0.1.2 |
ggpubr | 0.6.0 | ggraph | 2.1.0 |
ggrepel | 0.9.3 | ggridges | 0.5.4 |
ggsci | 3.0.0 | ggseas | 0.5.4 |
ggsignif | 0.6.4 | ggsn | 0.5.0 |
ggspatial | 1.1.9 | ggstance | 0.3.6 |
ggtext | 0.1.2 | ggthemes | 4.2.4 |
ggtree | 3.8.0 | ggvis | 0.4.8 |
gh | 1.4.0 | ghyp | 1.6.4 |
Gifi | 0.4-0 | gifti | 0.8.0 |
GIGrvg | 0.8 | gimme | 0.7-15 |
giscoR | 0.3.5 | git2r | 0.32.0 |
gitcreds | 0.1.2 | glarma | 1.6-0 |
GlarmaVarSel | 1.0 | glasso | 1.11 |
glassoFast | 1.0.1 | gld | 2.6.6 |
glm2 | 1.2.1 | GLMMRR | 0.5.0 |
glmmTMB | 1.1.7 | glmnet | 4.1-8 |
globals | 0.16.2 | glpkAPI | 1.3.4 |
glue | 1.6.2 | GMDH | 1.6 |
Gmedian | 1.2.7 | gmm | 1.8 |
gmodels | 2.18.1.1 | gmp | 0.7-2 |
gmt | 2.0.3 | gmvarkit | 2.0.10 |
GNAR | 1.1.2 | gnm | 1.1-4 |
GO.db | 3.17.0 | goftest | 1.2-3 |
gogarch | 0.7-5 | golem | 0.4.1 |
googledrive | 2.1.1 | googlePolylines | 0.8.4 |
googlesheets4 | 1.1.1 | googleVis | 0.7.1 |
gower | 1.0.1 | GPArotation | 2023.8-1 |
GPCMlasso | 0.1-6 | GPfit | 1.0-8 |
gplots | 3.1.3 | gradethis | 0.2.12.9004 |
gRain | 1.3.14 | graph | 1.78.0 |
graphicalVAR | 0.3.1 | graphlayouts | 1.0.0 |
grates | 1.1.0 | gratis | 1.0.5 |
gravitas | 0.1.3 | gRbase | 1.9.0 |
greeks | 1.3 | greta | 0.4.3 |
greybox | 1.0.8 | 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.2-0 |
grnn | 0.1.0 | GroupSeq | 1.4.2 |
grplasso | 0.4-7 | gsarima | 0.1-5 |
gsDesign | 3.5.0 | gSEM | 0.4.3.4 |
gsignal | 0.3-5 | gsl | 2.1-8 |
gss | 2.2-7 | gstat | 2.1-1 |
gsubfn | 0.7 | gsw | 1.1-1 |
gt | 0.9.0 | gtable | 0.3.4 |
gtheory | 0.1.2 | gtools | 3.9.4 |
gtop | 0.2.0 | GUIDE | 1.2.7 |
gustave | 0.4.4 | gWidgets2 | 1.0-9 |
GWmodel | 2.3-1 | gwrr | 0.2-2 |
HandTill2001 | 1.0.1 | HaploSim | 1.8.4.2 |
hardhat | 1.3.0 | hash | 2.2.6.3 |
haven | 2.5.3 | hbsae | 1.2 |
hdf5r | 1.3.8 | hdi | 0.1-9 |
HDInterval | 0.2.4 | HDMT | 1.0.5 |
hdrcde | 3.4 | HDShOP | 0.1.3 |
HDTSA | 1.0.2 | heatmaply | 1.4.2 |
heplots | 1.6.0 | here | 1.0.1 |
hett | 0.3-3 | hexbin | 1.28.3 |
hflights | 0.1 | hglm | 2.2-1 |
hglm.data | 1.0-1 | HH | 3.1-49 |
hht | 2.1.6 | highcharter | 0.9.4 |
highfrequency | 1.0.0 | highlight | 0.5.1 |
highr | 0.10 | highs | 0.1-10 |
HIMA | 2.2.1 | hipread | 0.2.3 |
HKRbook | 0.1.3 | HLMdiag | 0.5.0 |
Hmisc | 5.1-1 | HMMpa | 1.0.1 |
hms | 1.1.3 | hoardr | 0.5.3 |
homals | 1.0-10 | hommel | 1.6 |
hpfilter | 1.0.2 | HSAUR3 | 1.0-14 |
htmlTable | 2.4.1 | htmltools | 0.5.6 |
htmlwidgets | 1.6.2 | hts | 6.0.2 |
httpcode | 0.3.0 | httpuv | 1.6.11 |
httr | 1.4.7 | httr2 | 0.2.3 |
humanize | 0.2.0 | hunspell | 3.0.2 |
hutils | 1.8.1 | hwwntest | 1.3.2 |
HydroMe | 2.0-1 | HyperbolicDist | 0.6-4 |
hypergeo | 1.2-13 | i2extras | 0.2.1 |
iarm | 0.4.3 | ibd | 1.5 |
ibdreg | 0.3.8 | iBreakDown | 2.0.1 |
IBrokers | 0.10-2 | ica | 1.0-3 |
ICAOD | 1.0.1 | icarus | 0.3.2 |
ICC | 2.4.0 | iccbeta | 1.2.0 |
Icens | 1.72.0 | ichimoku | 1.4.9 |
ICS | 1.4-0 | ICSNP | 1.1-1 |
ICtest | 0.3-5 | idbr | 1.0 |
IDE | 0.3.1 | idefix | 1.0.3 |
IDPmisc | 1.1.20 | ids | 1.0.1 |
ifaTools | 0.23 | igraph | 1.5.1 |
igraphdata | 1.0.1 | illuminaio | 0.42.0 |
imbibe | 0.1.1 | immer | 1.4-15 |
implyr | 0.4.0 | impute | 1.74.1 |
imputeTestbench | 3.0.3 | imputeTS | 3.3 |
inca | 0.0.4 | IncDTW | 1.1.4.4 |
incidence | 1.7.3 | incidence2 | 2.2.1 |
inegiR | 3.0.0 | ineq | 0.2-13 |
infer | 1.0.5 | influence.SEM | 2.3 |
influenceR | 0.1.5 | influxdbr | 0.14.2 |
InfoTrad | 1.2 | ingredients | 2.3.0 |
ini | 0.3.1 | inline | 0.3.19 |
insee | 1.1.5 | insight | 0.19.5 |
InspectChangepoint | 1.2 | intamap | 1.5-6 |
interp | 1.1-4 | intervals | 0.15.4 |
inum | 1.0-5 | invgamma | 1.1 |
iotables | 0.9.1 | iotools | 0.3-2 |
ipdw | 2.0-0 | ipfp | 1.0.2 |
ipred | 0.9-14 | ipumsr | 0.6.3 |
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 | IsingFit | 0.3.1 |
IsingSampler | 0.2.3 | Iso | 0.0-18.1 |
isoband | 0.2.7 | ISOcodes | 2022.09.29 |
IsoGene | 1.0-24 | ISOweek | 0.6-2 |
ISwR | 2.0-8 | iterators | 1.0.14 |
iterLap | 1.1-3 | itertools | 0.1-3 |
itsmr | 1.10 | JADE | 2.0-3 |
jalcal | 0.1.0 | janeaustenr | 1.0.0 |
janitor | 2.2.0 | JavaGD | 0.6-5 |
jiebaR | 0.11 | jiebaRD | 0.1 |
jjb | 0.1.1 | JMdesign | 1.3 |
jomo | 2.7-6 | JoSAE | 0.3.0 |
jpeg | 0.1-10 | jqr | 1.2.3 |
jquerylib | 0.1.4 | jrt | 1.1.2 |
jsonify | 1.2.2 | jsonlite | 1.8.7 |
juicyjuice | 0.1.0 | JuliaConnectoR | 1.1.1 |
JWileymisc | 1.4.0 | kableExtra | 1.3.4 |
kalmanfilter | 2.0.1 | kappaSize | 1.2 |
KEGGREST | 1.40.0 | Kendall | 2.2.1 |
kequate | 1.6.4 | keras | 2.13.0 |
kernelFactory | 0.3.0 | kernlab | 0.9-32 |
keyring | 1.3.1 | KFAS | 1.5.1 |
klaR | 1.7-2 | km.ci | 0.5-6 |
knitr | 1.44 | koRpus | 0.13-8 |
ks | 1.14.1 | kst | 0.5-4 |
kutils | 1.72 | kza | 4.1.0.1 |
labdsv | 2.1-0 | label.switching | 1.8 |
labeling | 0.4.3 | labelled | 2.12.0 |
laeken | 0.5.2 | LaF | 0.8.4 |
lagged | 0.3.2 | Lahman | 11.0-0 |
LAM | 0.6-19 | lambda.r | 1.2.4 |
lamW | 2.2.0 | landsat | 1.1.2 |
landscapemetrics | 1.5.7 | languageR | 1.5.0 |
LaplacesDemon | 16.1.6 | lars | 1.3 |
lassoshooting | 0.1.5-1.1 | latdiag | 0.3 |
later | 1.3.1 | latex2exp | 0.9.6 |
latticeExtra | 0.6-30 | LatticeKrig | 8.4 |
lava | 1.7.2.1 | lavaan | 0.6-16 |
lavaan.survey | 1.1.3.1 | LAWBL | 1.5.0 |
lazyeval | 0.2.2 | lbfgsb3c | 2020-3.2 |
LCAvarsel | 1.1 | lcda | 0.3.1 |
lctools | 0.2-8 | lda | 1.4.2 |
ldat | 0.3.3 | ldbounds | 2.0.1 |
leafem | 0.2.0 | leaflet | 2.2.0 |
leaflet.extras | 1.0.0 | leaflet.providers | 1.13.0 |
leafpm | 0.1.0 | leafpop | 0.1.0 |
leafsync | 0.1.0 | leaps | 3.1 |
LearnBayes | 2.15.1 | learnr | 0.11.4 |
legion | 0.1.2 | lfactors | 1.0.4 |
lgarch | 0.6-2 | lgr | 0.4.4 |
lgtdl | 1.1.5 | lhs | 1.1.6 |
libcoin | 1.0-9 | libgeos | 3.11.1-1 |
lidR | 4.0.4 | lifecontingencies | 1.3.11 |
lifecycle | 1.0.3 | LIM | 1.4.7 |
limma | 3.56.1 | limSolve | 1.5.6 |
linelist | 0.0.1 | link2GI | 0.5-2 |
linpk | 1.1.2 | linprog | 0.9-4 |
lintools | 0.1.7 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | liteq | 1.1.0 |
lme4 | 1.1-34 | lmerTest | 3.1-3 |
lmForc | 0.1.0 | lmm | 1.4 |
lmodel2 | 1.7-3 | lmom | 3.0 |
Lmoments | 1.3-1 | lmtest | 0.9-40 |
LNIRT | 0.5.1 | locfit | 1.5-9.8 |
locits | 1.7.7 | locpol | 0.8.0 |
logging | 0.10-108 | logitnorm | 0.8.38 |
logspline | 2.1.20 | lokern | 1.1-10 |
lomb | 2.1.0 | longCatEDA | 0.31 |
longitudinalData | 2.4.5 | longmemo | 1.1-2 |
LongMemoryTS | 0.1.0 | longpower | 1.0.24 |
loo | 2.6.0 | lordif | 0.3-3 |
lotri | 0.4.3 | lpacf | 1.0.1 |
lpSolve | 5.6.19 | lpSolveAPI | 5.5.2.0-17.10 |
lsa | 0.73.3 | lsl | 0.5.6 |
lslx | 0.6.11 | LSMonteCarlo | 1.0 |
LSMRealOptions | 0.2.1 | LSTS | 2.1 |
LSWPlib | 0.1.0 | ltm | 1.2-0 |
ltsa | 1.4.6 | lubridate | 1.9.2 |
luz | 0.4.0 | lvec | 0.2.5 |
lvnet | 0.3.5 | lvplot | 0.2.1 |
lwgeom | 0.2-13 | m5 | 0.1.1 |
maat | 1.1.0 | magclass | 6.10.0 |
magic | 1.6-1 | magick | 2.7.5 |
magrittr | 2.0.3 | MAMS | 2.0.1 |
manipulate | 1.0.1 | manipulateWidget | 0.11.1 |
MAPA | 2.0.5 | mapdata | 2.3.1 |
mapdeck | 0.3.4 | mapedit | 0.6.0 |
mapme.biodiversity | 0.4.0 | mapmisc | 2.0.0 |
mapproj | 1.2.11 | maps | 3.4.1 |
mapsf | 0.7.1 | mapSpain | 0.8.0 |
maptools | 1.1-8 | maptree | 1.4-8 |
mapview | 2.11.0 | mAr | 1.2-0 |
mar1s | 2.1.1 | marcher | 0.0-2 |
markdown | 1.8 | markovchain | 0.9.4 |
MarkowitzR | 1.0.3 | marmap | 1.0.10 |
MARSS | 3.11.8 | MassSpecWavelet | 1.66.0 |
Matching | 4.10-14 | MatchIt | 4.5.4 |
MatchThem | 1.1.0 | mathjaxr | 1.6-0 |
matlabr | 1.5.2 | matrixcalc | 1.0-6 |
MatrixExtra | 0.1.14 | MatrixModels | 0.5-2 |
matrixStats | 1.0.0 | maxLik | 1.5-2 |
MaxPro | 4.1-2 | MBA | 0.1-0 |
MBHdesign | 2.2.2 | mboost | 2.9-8 |
mbsts | 3.0 | mc2d | 0.2.0 |
MCAvariants | 2.6.1 | mclcar | 0.2-0 |
mclust | 6.0.0 | mcmc | 0.9-7 |
mcmcensemble | 3.0.0 | MCMCglmm | 2.35 |
MCMCpack | 1.6-3 | mcmcse | 1.5-0 |
MCMCvis | 0.16.2 | mco | 1.15.6 |
Mcomp | 2.8 | mcompanion | 0.5.7 |
MCPMod | 1.0-10.1 | mdftracks | 0.2.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.6 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
memuse | 4.2-3 | meta | 6.5-0 |
metadat | 1.2-0 | metafor | 4.2-0 |
metaplot | 0.8.3 | metaSEM | 1.3.1 |
metasens | 1.5-2 | Metrics | 0.1.4 |
metRology | 0.9-28-1 | mFilter | 0.1-5 |
mgm | 1.2-14 | mi | 1.1 |
mice | 3.16.0 | miceadds | 3.16-18 |
micEconIndex | 0.1-8 | microbenchmark | 1.4.10 |
micromap | 1.9.7 | microsamplingDesign | 1.0.8 |
MicSim | 2.0.0 | MIIVsem | 0.5.8 |
mime | 0.12 | mind | 1.1.0 |
MinEDfind | 0.1.3 | minimalRSD | 1.0.0 |
minimaxdesign | 0.1.5 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-4 | minqa | 1.2.6 |
mipfp | 3.2.1 | mirt | 1.40 |
mirtCAT | 1.12.2 | misc3d | 0.9-1 |
miscTools | 0.6-28 | missForest | 1.5 |
missMDA | 1.18 | mitml | 0.4-5 |
mitools | 2.4 | mix | 1.0-11 |
mixAR | 0.22.7 | MixedPsy | 1.1.0 |
mixexp | 1.2.7 | mixOmics | 6.24.0 |
mixsqp | 0.3-48 | mixtools | 2.0.0 |
mkssd | 1.2 | mlapi | 0.1.1 |
mlbench | 2.1-3.1 | MLCIRTwithin | 2.1.1 |
MLDS | 0.5.1 | mlmRev | 1.0-8 |
mlogit | 1.1-1 | mlogitBMA | 0.1-7 |
mlr | 2.19.1 | mlr3 | 0.16.1 |
mlr3measures | 0.5.0 | mlr3misc | 0.12.0 |
mlr3spatiotempcv | 2.1.0 | mlrMBO | 1.1.5.1 |
mlVAR | 0.5.1 | mma | 10.7-1 |
mmand | 1.6.3 | mmrm | 0.2.2 |
mnormt | 2.1.1 | MNP | 3.1-4 |
modeldata | 1.2.0 | modelenv | 0.1.1 |
ModelMap | 3.4.0.4 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.11 | modeltime | 1.2.8 |
modeltime.ensemble | 1.0.3 | modeltime.resample | 0.2.3 |
modeltools | 0.2-23 | moderndive | 0.5.5 |
modules | 0.12.0 | mokken | 3.1.0 |
mombf | 3.4.1 | moments | 0.14.1 |
momentuHMM | 1.5.5 | mondate | 0.10.02 |
mongolite | 2.7.2 | mongopipe | 0.1.1 |
monmlp | 1.1.5 | monobin | 0.2.4 |
Morpho | 2.11 | mosaic | 1.8.4.2 |
mosaicCore | 0.9.2.1 | mosaicData | 0.20.3 |
mousetrap | 3.2.1 | move | 4.2.4 |
movecost | 2.0 | moveHMM | 1.9 |
moveWindSpeed | 0.2.4 | movMF | 0.2-7 |
MPDiR | 0.2 | MplusAutomation | 1.1.0 |
mpmi | 0.43.2.1 | mpt | 0.8-0 |
MPTinR | 1.14.1 | MPV | 1.63 |
mratios | 1.4.2 | mrf | 0.1.6 |
mrgsolve | 1.1.1 | mritc | 0.5-3 |
mscstexta4r | 0.1.2 | mscsweblm4r | 0.1.2 |
MSGARCH | 2.51 | msm | 1.7 |
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-9 |
multDM | 1.1.4 | multicool | 0.1-12 |
MultiGlarmaVarSel | 1.0 | MultiLCIRT | 2.11 |
MultipleBubbles | 0.2.0 | multiplex | 3.1.0 |
multipol | 1.0-9 | multitaper | 1.0-17 |
multiway | 1.0-6 | multtest | 2.56.0 |
MuMIn | 1.47.5 | munfold | 0.3.5 |
munsell | 0.5.0 | mvLSW | 1.2.5 |
mvMORPH | 1.1.7 | mvnfast | 0.2.8 |
mvnormtest | 0.1-9 | mvQuad | 1.0-6 |
mvtnorm | 1.2-3 | mvtsplot | 1.0-4 |
mxkssd | 1.2 | n1qn1 | 6.0.1-11 |
nabor | 0.5.0 | NADA | 1.6-1.1 |
NAEPirtparams | 1.0.0 | NAEPprimer | 1.0.1 |
nanoarrow | 0.2.0.2 | nanonext | 0.10.0 |
nanotime | 0.3.7 | nardl | 0.1.6 |
natserv | 1.0.0 | nbTransmission | 1.1.2 |
ncappc | 0.3.0 | ncar | 0.4.5 |
ncdf4 | 1.21 | ncf | 1.3-2 |
ncvreg | 3.14.1 | nets | 0.9.1 |
network | 1.18.1 | NetworkChange | 0.8 |
NetworkComparisonTest | 2.2.2 | networkD3 | 0.4 |
networkDynamic | 0.11.3 | networkLite | 1.0.5 |
NetworkRiskMeasures | 0.1.4 | NetworkToolbox | 1.4.2 |
networktools | 1.5.1 | networktree | 1.0.1 |
neuralnet | 1.44.2 | neurobase | 1.32.3 |
neuroim | 0.0.6 | neuRosim | 0.2-13 |
nFactors | 2.4.1.1 | NFCP | 1.2.1 |
ngspatial | 1.2-2 | nhanesA | 0.7.4 |
nifti.io | 1.0.0 | nimble | 1.0.1 |
NISTnls | 0.9-13 | NlcOptim | 0.6 |
nleqslv | 3.3.4 | NlinTS | 1.4.5 |
nlmeVPC | 2.6 | nlmixr2 | 2.0.9 |
nlmixr2data | 2.0.8 | nlmixr2est | 2.1.6 |
nlmixr2extra | 2.0.8 | nlmixr2plot | 2.0.7 |
nlmixr2rpt | 0.2.0 | nloptr | 2.0.3 |
NLP | 0.2-1 | nls2 | 0.3-3 |
nlsem | 0.8-1 | nlstools | 2.0-1 |
nlts | 1.0-2 | NMOF | 2.7-1 |
nmw | 0.1.5 | nnfor | 0.9.8 |
nnls | 1.5 | nodbi | 0.9.6 |
nomisr | 0.4.7 | NonCompart | 0.6.0 |
nonlinearTseries | 0.2.12 | nonmemica | 1.0.7 |
nonnest2 | 0.5-6 | norm | 1.0-11.1 |
nortest | 1.0-4 | nosoi | 1.1.0 |
np | 0.60-17 | NPflow | 0.13.3 |
npi | 0.2.0 | nppbib | 1.2-0 |
nsarfima | 0.2.0.0 | nsprcomp | 0.5.1-2 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
nvmix | 0.1-0 | o2geosocial | 1.1.0 |
oai | 0.4.0 | OasisR | 3.1.0 |
obAnalytics | 0.1.1 | OBsMD | 6.1 |
occ | 1.1 | oce | 1.8-1 |
octopus | 0.3.0 | odbc | 1.3.5 |
odin | 1.2.4 | odpc | 2.0.5 |
odr | 1.4.4 | OECD | 0.2.5 |
officer | 0.6.2 | ohoegdm | 0.1.0 |
onbrand | 1.0.3 | onlineforecast | 1.0.1 |
opdisDownsampling | 0.8.2 | OPDOE | 1.0-10 |
openair | 2.17-0 | openEBGM | 0.9.1 |
openintro | 2.4.0 | OpenMx | 2.21.8 |
openNLP | 0.2-7 | openNLPdata | 1.5.3-4 |
openssl | 2.1.0 | OpenStreetMap | 0.3.4 |
openxlsx | 4.2.5.2 | opera | 1.2.0 |
operator.tools | 1.6.3 | optextras | 2019-12.4 |
OptGS | 1.1.1 | OptHedging | 1.0 |
OptimalDesign | 1.0.1 | OptimaRegion | 1.2 |
optimParallel | 1.0-2 | optimx | 2023-8.13 |
OptionPricing | 0.1.1 | optiscale | 1.2.2 |
ORCME | 2.0.2 | ordinal | 2022.11-16 |
ore | 1.7.3.1 | ORIClust | 1.0-2 |
oro.dicom | 0.5.3 | oro.nifti | 0.11.4 |
oro.pet | 0.2.7 | orthopolynom | 1.0-6.1 |
osDesign | 1.8 | osmdata | 0.2.5 |
osmextract | 0.5.0 | osqp | 0.6.0.8 |
otsad | 0.2.0 | otsfeatures | 1.0.0 |
outbreaker2 | 1.1.3 | outbreaks | 1.9.0 |
outliers | 0.15 | overlapping | 2.1 |
ows4R | 0.3-6 | pa | 1.2-4 |
packcircles | 0.3.6 | padr | 0.6.2 |
PairedData | 1.1.1 | pairwise | 0.6.1-0 |
paleoTS | 0.5.3 | palmerpenguins | 0.1.1 |
pan | 1.9 | pander | 0.6.5 |
panelaggregation | 0.1.1 | paradox | 0.11.1 |
parallelly | 1.36.0 | parallelMap | 1.5.1 |
ParamHelpers | 1.14.1 | paran | 1.5.2 |
parma | 1.7 | parsedate | 1.3.1 |
parsnip | 1.1.1 | partitions | 1.10-7 |
partsm | 1.1-3 | party | 1.3-13 |
partykit | 1.2-20 | pastecs | 1.3.21 |
patchwork | 1.1.3 | paws | 0.4.0 |
paws.analytics | 0.4.0 | paws.application.integration | 0.4.0 |
paws.common | 0.6.0 | paws.compute | 0.4.0 |
paws.cost.management | 0.4.0 | paws.customer.engagement | 0.4.0 |
paws.database | 0.4.0 | paws.developer.tools | 0.4.0 |
paws.end.user.computing | 0.4.0 | paws.machine.learning | 0.4.0 |
paws.management | 0.4.0 | paws.networking | 0.4.0 |
paws.security.identity | 0.4.0 | paws.storage | 0.4.0 |
pbapply | 1.7-2 | pbdZMQ | 0.3-10 |
PBIBD | 1.3 | pbivnorm | 0.6.0 |
pbkrtest | 0.5.2 | pbmcapply | 1.5.1 |
pbo | 1.3.5 | pbs | 1.1 |
PBSddesolve | 1.13.3 | PBSmapping | 2.73.2 |
PBSmodelling | 2.68.8 | pbv | 0.4-22 |
PCA4TS | 0.1 | pcaMethods | 1.92.0 |
pcaPP | 2.0-3 | pcdpca | 0.4 |
pcFactorStan | 1.5.4 | pcIRT | 0.2.4 |
PCMRS | 0.1-4 | pcts | 0.15.5 |
pdc | 1.0.3 | pdfCluster | 1.0-4 |
pdfetch | 0.2.8 | pdftools | 3.3.3 |
pdist | 1.2.1 | pedigree | 1.4.2 |
PeerPerformance | 2.2.5 | penalized | 0.9-52 |
performance | 0.10.5 | PerformanceAnalytics | 2.0.4 |
permute | 0.9-7 | PGM2 | 1.0-1 |
ph2bayes | 0.0.2 | ph2bye | 0.1.4 |
phangorn | 2.11.1 | pheatmap | 1.0.12 |
phonics | 1.3.10 | phyloseq | 1.44.0 |
phytools | 1.9-16 | picasso | 1.3.1 |
pid | 0.50 | piecewiseSEM | 2.3.0 |
pillar | 1.9.0 | pingr | 2.0.2 |
pins | 1.2.2 | pipe.design | 0.5.1 |
pipeR | 0.6.1.3 | pixmap | 0.4-12 |
PK | 1.3-6 | PKconverter | 1.5 |
pkdata | 0.1.0 | pkgbuild | 1.4.2 |
pkgconfig | 2.0.3 | pkgdown | 2.0.7 |
pkgfilecache | 0.1.4 | pkgload | 1.3.2.1 |
PKNCA | 0.10.2 | pkr | 0.1.3 |
pks | 0.6-0 | PlackettLuce | 0.4.3 |
plgp | 1.1-12 | plink | 1.5-1 |
plm | 2.6-3 | PLMIX | 2.1.1 |
PLmixed | 0.1.7 | plogr | 0.2.0 |
plot3D | 1.4 | plotdap | 1.0.2 |
plotly | 4.10.2 | plotMCMC | 2.0.1 |
plotmo | 3.6.2 | plotrix | 3.8-2 |
plotSEMM | 2.4 | pls | 2.8-2 |
plyr | 1.8.8 | pmr | 1.2.5.1 |
pmxTools | 1.3 | png | 0.1-8 |
pointblank | 0.11.4 | poisbinom | 1.0.1 |
poLCA | 1.6.0.1 | polspline | 1.1.23 |
polyclip | 1.10-4 | polycor | 0.8-1 |
polyCub | 0.8.1 | polynom | 1.4-1 |
PolynomF | 2.0-5 | polyreg | 0.8.0 |
pomp | 5.4 | pool | 1.0.1 |
PopED | 0.6.0 | popEpi | 0.4.11 |
PortfolioOptim | 1.1.1 | PortRisk | 1.1.0 |
posterior | 1.4.1 | powerbydesign | 1.0.5 |
powerGWASinteraction | 1.1.3 | powerSurvEpi | 0.1.3 |
PowerTOST | 1.5-4 | PowerUpR | 1.1.0 |
PP | 0.6.3-11 | ppcor | 1.1 |
PPRL | 0.3.8 | pps | 1.0 |
prabclus | 2.3-2 | pracma | 2.4.2 |
PracTools | 1.4 | praise | 1.0.0 |
PreciseSums | 0.6 | prefmod | 0.8-35 |
PReMiuM | 3.2.10 | preprocessCore | 1.62.1 |
PresenceAbsence | 1.1.11 | presize | 0.3.7 |
prettydoc | 0.4.1 | prettyGraphs | 2.1.6 |
prettymapr | 0.2.4 | prettyunits | 1.1.1 |
prevalence | 0.4.1 | prevR | 5.0.0 |
princurve | 2.1.6 | ProbitSpatial | 1.1 |
pROC | 1.18.4 | processx | 3.8.2 |
prodlim | 2023.08.28 | ProfessR | 2.4-3 |
profileModel | 0.6.1 | profileR | 0.3-5 |
profoc | 1.2.1 | profvis | 0.3.8 |
progress | 1.2.2 | progressr | 0.14.0 |
PROJ | 0.4.0 | proj4 | 1.0-13 |
promises | 1.2.1 | prophet | 1.0 |
PROsetta | 0.4.1 | proto | 1.0.0 |
protolite | 2.2.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | ps | 1.7.5 |
pscl | 1.5.5.1 | psd | 2.1.1 |
PSF | 0.5 | pso | 1.0.4 |
pspline | 1.0-19 | psy | 1.2 |
psych | 2.3.6 | psychomix | 1.1-8 |
psychonetrics | 0.11 | psychotools | 0.7-3 |
psychotree | 0.16-0 | psychTools | 2.3.6 |
psyphy | 0.3 | PTAk | 2.0.0 |
PTSR | 0.1.2 | ptw | 1.9-16 |
purrr | 1.0.2 | pwr | 1.3-0 |
PwrGSD | 2.3.6 | pwrRasch | 0.1-2 |
pxweb | 0.16.2 | PxWebApiData | 0.8.0 |
qap | 0.1-2 | Qardl | 0.1.1 |
qcv | 1.0 | qdap | 2.4.6 |
qdapDictionaries | 1.0.7 | qdapRegex | 0.7.5 |
qdapTools | 1.3.7 | qgam | 1.3.4 |
qgisprocess | 0.1.0 | qgraph | 1.9.5 |
qicharts2 | 0.7.4 | qlcal | 0.0.7 |
qMRI | 1.2.6 | qpdf | 1.3.2 |
qpNCA | 1.1.6 | qqconf | 1.3.2 |
qqplotr | 0.0.6 | qrmdata | 2022-05-31-1 |
qrmtools | 0.0-16 | qrng | 0.0-9 |
qs | 0.25.5 | qtl | 1.60 |
quadprog | 1.5-8 | qualmap | 0.2.1 |
Quandl | 2.11.0 | quanteda | 3.3.1 |
quantification | 0.2.0 | quantmod | 0.4.25 |
quantreg | 5.97 | quantspec | 1.2-3 |
questionr | 0.7.8 | QuickJSR | 1.0.6 |
quickpsy | 0.1.5.1 | qvalue | 2.32.0 |
qvcalc | 1.0.3 | R.cache | 0.16.0 |
R.devices | 2.17.1 | R.filesets | 2.15.0 |
R.huge | 0.10.0 | R.matlab | 3.7.0 |
R.methodsS3 | 1.8.2 | R.oo | 1.25.0 |
R.rsp | 0.45.0 | R.utils | 2.12.2 |
R0 | 1.2-10 | R2BEAT | 1.0.5 |
r2d3 | 0.2.6 | R2HTML | 2.3.3 |
R2jags | 0.7-1 | R2OpenBUGS | 3.2-3.2.1 |
R2WinBUGS | 2.1-21 | R4CouchDB | 0.7.5 |
R6 | 2.5.1 | radarchart | 0.3.1 |
ragg | 1.2.5 | ragtop | 1.1.1 |
rainbow | 3.7 | rakeR | 0.2.1 |
rAmCharts | 2.1.15 | ramcmc | 0.1.2 |
ramps | 0.6.18 | randomForest | 4.7-1.1 |
randomForestSRC | 3.2.2 | randomizeR | 3.0.1 |
randomLCA | 1.1-3 | randtoolbox | 2.0.4 |
ranger | 0.15.1 | rankdist | 1.1.4 |
RANN | 2.6.1 | rapidjsonr | 1.2.0 |
RApiSerialize | 0.1.2 | rappdirs | 0.3.3 |
rARPACK | 0.11-0 | RaschSampler | 0.8-9 |
raster | 3.6-23 | rasterImage | 0.4.0 |
rasterVis | 0.51.5 | ratelimitr | 0.4.1 |
raveio | 0.9.0 | ravetools | 0.1.2 |
Rbeast | 0.9.9 | rbenchmark | 1.0.0 |
RBGL | 1.76.0 | rbibutils | 2.2.15 |
Rblpapi | 0.3.14 | rbmi | 1.2.3 |
rcartocolor | 2.1.1 | Rcatch22 | 0.2.1 |
rcdd | 1.5-2 | Rcgmin | 2022-4.30 |
rcmdcheck | 1.4.0 | Rcmdr | 2.9-0 |
RcmdrMisc | 2.9-0 | RcmdrPlugin.DoE | 0.12-4 |
RcmdrPlugin.temis | 0.7.10 | RColorBrewer | 1.1-3 |
Rcpp | 1.0.11 | RcppAnnoy | 0.0.21 |
RcppArmadillo | 0.12.6.4.0 | RcppCCTZ | 0.2.12 |
RcppDate | 0.0.3 | RcppDE | 0.1.7 |
RcppDist | 0.1.1 | RcppEigen | 0.3.3.9.3 |
RcppGSL | 0.3.13 | RcppParallel | 5.1.7 |
RcppProgress | 0.4.2 | RcppQuantuccia | 0.1.1 |
RcppRedis | 0.2.4 | RcppRoll | 0.3.0 |
RcppSimdJson | 0.1.10 | RcppThread | 2.1.5 |
RcppTN | 0.2-2 | RcppTOML | 0.2.2 |
RcppZiggurat | 0.1.6 | Rcsdp | 0.1.57.5 |
RCurl | 1.98-1.12 | RCzechia | 1.11.1 |
rdbnomics | 0.6.4 | rdhs | 0.7.6 |
Rdpack | 2.5 | Rdsdp | 1.0.5.2.1 |
re2 | 0.1.2 | reactable | 0.4.4 |
reactR | 0.4.4 | readabs | 0.4.14 |
readODS | 2.1.0 | readr | 2.1.4 |
readsdmx | 0.3.1 | readstata13 | 0.10.1 |
readxl | 1.4.3 | REBayes | 2.54 |
recipes | 1.0.8 | reclin | 0.1.2 |
recmap | 1.0.15 | RecordLinkage | 0.4-12.4 |
redux | 1.1.3 | RefManageR | 1.4.0 |
refugees | 2022.12.1 | regions | 0.1.8 |
registry | 0.5-1 | regress | 1.3-21 |
RegSDC | 0.7.0 | regsem | 1.9.5 |
regspec | 2.6 | regtools | 1.7.0 |
reinsureR | 0.1.0 | relations | 0.6-13 |
relimp | 1.0-5 | rematch | 2.0.0 |
rematch2 | 2.1.2 | remotes | 2.4.2.1 |
rentrez | 1.2.3 | renv | 1.0.2 |
replicateBE | 1.1.3 | reportr | 1.3.0 |
repr | 1.1.6 | reprex | 2.0.2 |
reproj | 0.4.3 | REQS | 0.8-13 |
rerddap | 1.0.4 | rerddapXtracto | 1.1.5 |
resampledata | 0.3.1 | resde | 1.1 |
reshape | 0.8.9 | reshape2 | 1.4.4 |
restimizeapi | 1.0.0 | reticulate | 1.32.0 |
retry | 0.1.0 | revdbayes | 1.5.2 |
rex | 1.2.1 | Rfast | 2.0.8 |
Rfast2 | 0.1.5.1 | rflexscan | 1.1.0 |
rgbif | 3.7.8 | rgdal | 1.6-7 |
rgee | 1.1.5 | rgen | 0.0.1 |
RGENERATE | 1.3.7 | rgenoud | 5.9-0.3 |
rgeoda | 0.0.10-4 | rgeos | 0.6-4 |
rgl | 1.2.1 | Rglpk | 0.6-5 |
RgoogleMaps | 1.4.5.3 | RGraphics | 3.0-2 |
Rgraphviz | 2.44.0 | rgrass | 0.3-9 |
rgrass7 | 0.2-13 | RGreenplum | 0.1.2 |
rgugik | 0.4.0 | RH2 | 0.2.4 |
rhandsontable | 0.3.8 | rhdf5 | 2.44.0 |
rhdf5filters | 1.12.1 | Rhdf5lib | 1.22.0 |
rhosa | 0.2.0 | RhpcBLASctl | 0.23-42 |
rib | 0.19.0 | riingo | 0.3.1 |
Rilostat | 1.1.8 | ring | 1.0.4 |
RInside | 0.2.18 | rintrojs | 0.3.2 |
rio | 1.0.0 | Rirt | 0.0.2 |
Risk | 1.0 | riskCommunicator | 1.0.1 |
riskParityPortfolio | 0.2.2 | RiskPortfolios | 2.1.7 |
riskSimul | 0.1.1 | ritis | 1.0.0 |
riverdist | 0.16.1 | rjags | 4-14 |
rJava | 1.0-6 | RJDBC | 0.2-10 |
RJDemetra | 0.2.3 | rje | 1.12.1 |
rjson | 0.2.21 | RJSONIO | 1.3-1.8 |
rjstat | 0.4.3 | RKEA | 0.0-6 |
RKEAjars | 5.0-4 | rlang | 1.1.1 |
rlas | 1.6.3 | rle | 0.9.2 |
rlecuyer | 0.3-7 | Rlgt | 0.2-1 |
Rlibeemd | 1.4.3 | rLiDAR | 0.1.5 |
rlist | 0.4.6.2 | RM2006 | 0.1.1 |
rmapshaper | 0.5.0 | RMariaDB | 1.2.2 |
rmarkdown | 2.24 | rmatio | 0.18.0 |
RMAWGEN | 1.3.7 | rmeta | 3.0 |
rmgarch | 1.3-9 | Rmpfr | 0.9-3 |
rms | 6.7-1 | rmutil | 1.1.10 |
RMySQL | 0.10.25 | rnaturalearth | 0.3.4 |
rnaturalearthdata | 0.1.0 | rncl | 0.8.7 |
RND | 1.2 | rneos | 0.4-0 |
RNetCDF | 2.6-2 | rngtools | 1.5.2 |
rngWELL | 0.10-9 | RNifti | 1.5.0 |
RNiftyReg | 2.8.1 | rnn | 1.9.0 |
robfilter | 4.1.3 | RobKF | 1.0.2 |
RoBMA | 3.1.0 | robsurvey | 0.5-2 |
robustbase | 0.99-0 | rockchalk | 1.8.157 |
rocker | 0.3.1 | ROCR | 1.0-11 |
RODBC | 1.3-21 | rodd | 0.2-1 |
ROI | 1.0-1 | roll | 1.1.6 |
Rook | 1.2 | ROOPSD | 0.3.9 |
rootSolve | 1.8.2.3 | roptim | 0.1.6 |
rosm | 0.3.0 | rotl | 3.1.0 |
roxygen2 | 7.2.3 | rpact | 3.4.0 |
rpanel | 1.1-5.2 | rpart.plot | 3.1.1 |
rpf | 1.0.14 | RPMG | 2.2-7 |
rpms | 0.5.1 | rpostgis | 1.4.4 |
RPostgres | 1.4.5 | RPostgreSQL | 0.7-5 |
RPPairwiseDesign | 1.0 | RPresto | 1.4.5 |
rprojroot | 2.0.3 | RPyGeo | 1.0.0 |
rpymat | 0.1.7 | RQuantLib | 0.4.17 |
rrcov | 1.7-4 | rredlist | 0.7.1 |
RRreg | 0.7.5 | RRTCS | 0.0.4 |
rrum | 0.2.0 | rsae | 0.2 |
RSAGA | 1.4.0 | Rsagacmd | 0.4.1 |
rsample | 1.2.0 | rsdmx | 0.6-3 |
RSEIS | 4.1-6 | rsem | 0.5.1 |
Rsfar | 0.0.1 | RSGHB | 1.2.2 |
rsm | 2.10.3 | Rsolnp | 1.16 |
rspa | 0.2.8 | rsparse | 0.5.1 |
RSpectra | 0.16-1 | RSQLite | 2.3.1 |
Rssa | 1.0.5 | rstac | 0.9.2-4 |
rstan | 2.26.23 | rstanarm | 2.26.1 |
rstantools | 2.3.1.1 | rstatix | 0.7.2 |
rstiefel | 1.0.1 | rstudioapi | 0.15.0 |
rsurface | 1.1.0 | RSurveillance | 0.2.1 |
Rsymphony | 0.1-33 | rTensor | 1.4.8 |
rtf | 0.4-14.1 | RTFA | 0.1.0 |
rticles | 0.25 | RTL | 1.3.3 |
rtop | 0.6-6 | RTransferEntropy | 0.2.21 |
rtrim | 2.1.1 | rts | 1.1-8 |
Rtsne | 0.16 | Rttf2pt1 | 1.3.12 |
rucrdtw | 0.1.5 | rugarch | 1.4-9 |
ruimtehol | 0.3.1 | rules | 1.0.2 |
RUnit | 0.4.32 | runjags | 2.2.2-1.1 |
runner | 0.4.3 | runstats | 1.1.0 |
Runuran | 0.38 | rust | 1.4.1 |
Rvcg | 0.22.1 | rversions | 2.1.2 |
rvest | 1.0.3 | Rvmmin | 2018-4.17.1 |
Rwave | 2.6-5 | RWeka | 0.4-46 |
RWekajars | 3.9.3-2 | rworldmap | 1.3-6 |
rworldxtra | 1.01 | rxode2 | 2.0.13 |
rxode2et | 2.0.10 | rxode2ll | 2.0.11 |
rxode2parse | 2.0.16 | rxode2random | 2.0.11 |
s2 | 1.1.4 | S4Vectors | 0.38.1 |
sae | 1.3 | saeRobust | 0.4.0 |
saeSim | 0.11.0 | SAEval | 1.0.0 |
samadb | 0.2.6 | samplesize | 0.2-4 |
sampling | 2.9 | SamplingBigData | 1.0.0 |
samplingbook | 1.2.4 | SamplingStrata | 1.5-4 |
samplingVarEst | 1.5 | sandwich | 3.0-2 |
sarima | 0.9.1 | sass | 0.4.7 |
satellite | 1.0.4 | sazedR | 2.0.2 |
sbgcop | 0.980 | scales | 1.2.1 |
scalreg | 1.0.1 | scam | 1.2-14 |
scatterplot3d | 0.3-44 | scoringRules | 1.1.1 |
scoringutils | 1.1.0 | ScottKnott | 1.3-2 |
scs | 3.2.4 | SDaA | 0.1-5 |
sdcHierarchies | 0.20.0 | sdcMicro | 5.7.5 |
sdcSpatial | 0.5.2 | sdcTable | 0.32.6 |
sde | 2.0.18 | sdmTMB | 0.3.0 |
sealasso | 0.1-3 | seas | 0.6-0 |
season | 0.3.15 | seasonal | 1.9.0 |
seasonalview | 0.3 | seastests | 0.15.4 |
seer | 1.1.8 | seg | 0.5-7 |
segmented | 1.6-4 | selectr | 0.4-2 |
sem | 3.1-15 | semds | 0.9-6 |
SemiPar | 1.0-4.2 | semPlot | 1.1.6 |
SEMsens | 1.5.5 | semTools | 0.5-6 |
semtree | 0.9.18 | sendmailR | 1.4-0 |
SensoMineR | 1.26 | sentencepiece | 0.2.3 |
separationplot | 1.4 | seqDesign | 1.2 |
seqinr | 4.2-30 | seriation | 1.5.1 |
servr | 0.27 | sessioninfo | 1.2.2 |
setartree | 0.2.1 | setRNG | 2022.4-1 |
sets | 1.0-24 | settings | 0.2.7 |
sf | 1.0-14 | sFFLHD | 0.1.2 |
sfheaders | 0.4.3 | sfsmisc | 1.1-16 |
sftime | 0.2-0 | sgd | 1.1.1 |
sgeostat | 1.0-27 | shades | 1.4.0 |
shape | 1.4.6 | shapefiles | 0.7.2 |
shapes | 1.2.7 | SharpeR | 1.3.0 |
shiny | 1.7.5 | shiny.semantic | 0.4.3 |
shinyAce | 0.4.2 | shinyalert | 3.0.0 |
shinybrms | 1.8.0 | shinyBS | 0.61.1 |
shinycssloaders | 1.0.0 | shinydashboard | 0.7.2 |
shinydashboardPlus | 2.0.3 | shinyFiles | 0.9.3 |
ShinyItemAnalysis | 1.5.0 | shinyjqui | 0.4.1 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinytest | 1.5.3 | shinythemes | 1.2.0 |
shinyTree | 0.3.1 | shinyWidgets | 0.8.0 |
showimage | 1.0.0 | sigmoid | 1.4.0 |
signal | 0.7-7 | signs | 0.1.2 |
Sim.DiffProc | 4.8 | simcdm | 0.1.1 |
SimComp | 3.3 | simex | 1.8 |
simfinapi | 0.2.4 | simglm | 0.8.9 |
SimilarityMeasures | 1.4 | SimInf | 9.5.0 |
simPop | 2.1.2 | simputation | 0.2.8 |
simrel | 2.1.0 | SiMRiv | 1.0.6 |
simsem | 0.5-16 | SimSurvey | 0.1.5 |
singleRcapture | 0.2.0 | siplab | 1.6 |
sirt | 3.13-228 | sitmo | 2.0.2 |
sits | 1.4.1 | SkewHyperbolic | 0.4-0 |
skmeans | 0.2-15 | skpr | 1.4.0 |
slam | 0.1-50 | SLBDD | 0.0.4 |
sleekts | 1.0.2 | Sleuth2 | 2.0-5 |
Sleuth3 | 1.0-3 | SLHD | 2.1-1 |
slider | 0.3.0 | slippymath | 0.3.1 |
sm | 2.2-5.7.1 | smacof | 2.1-5 |
smacpod | 2.5 | SmallCountRounding | 1.0.3 |
smam | 0.7.0 | smerc | 1.8.2 |
smoof | 1.6.0.3 | smooth | 3.2.1 |
smoother | 1.1 | smoots | 1.1.4 |
smovie | 1.1.5 | SMPracticals | 1.4-3 |
sms | 2.3.1 | sn | 2.1.1 |
sna | 2.7-1 | snakecase | 0.11.1 |
snow | 0.4-4 | SnowballC | 0.7.1 |
snowfall | 1.84-6.2 | SOAs | 1.4 |
soc.ca | 0.8.0 | socialmixr | 0.2.0 |
sodium | 1.2.1 | sofa | 0.4.0 |
solaR | 0.46 | solrium | 1.2.0 |
sorvi | 0.8.21 | sourcetools | 0.1.7-1 |
sp | 2.0-0 | sp23design | 0.9-1 |
spacetime | 1.3-0 | spam | 2.9-1 |
spaMM | 4.4.0 | spant | 2.15.0 |
sparklyr | 1.8.3 | sparr | 2.3-10 |
sparseDFM | 1.0 | SparseFactorAnalysis | 1.0 |
sparseinv | 0.1.3 | SparseM | 1.81 |
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.1 |
spatialreg | 1.2-9 | spatialsample | 0.4.0 |
SpatialTools | 1.0.5 | spatialwidget | 0.2.3 |
spatstat | 3.0-6 | spatstat.data | 3.0-1 |
spatstat.explore | 3.2-3 | spatstat.geom | 3.2-5 |
spatstat.linnet | 3.1-1 | spatstat.model | 3.2-6 |
spatstat.random | 3.1-6 | spatstat.sparse | 3.0-2 |
spatstat.utils | 3.0-3 | spBayes | 0.4-6 |
spBayesSurv | 1.1.7 | Spbsampling | 1.3.5 |
spd | 2.0-1 | spData | 2.3.0 |
spdep | 1.2-8 | spec | 0.1.7 |
spectral | 2.0 | speff2trial | 1.0.5 |
sperrorest | 3.0.5 | sphet | 2.0 |
spikeslab | 1.1.6 | spikeSlabGAM | 1.1-19 |
spINAR | 0.1.0 | spind | 2.2.1 |
splancs | 2.01-44 | splines2 | 0.5.1 |
splm | 1.6-3 | spmodel | 0.4.0 |
spmoran | 0.2.2.9 | SpotSampling | 0.1.0 |
spselect | 0.0.1 | spsur | 1.0.2.5 |
spsurvey | 5.5.0 | spTimer | 3.3.2 |
sptotal | 1.0.1 | sqldf | 0.4-11 |
SqlRender | 1.15.2 | SQRL | 1.0.1 |
SQUAREM | 2021.1 | srvyr | 1.2.0 |
ssanv | 1.1 | SSBtools | 1.4.8 |
ssgraph | 1.15 | ssize.fdr | 1.3 |
ssizeRNA | 1.3.2 | ssMousetrack | 1.1.6 |
SSN | 1.1.17 | stabledist | 0.7-1 |
stabs | 0.6-4 | stampr | 0.3.0 |
StanHeaders | 2.26.28 | starma | 1.3 |
stars | 0.6-4 | STARTS | 1.3-8 |
startupmsg | 0.9.6 | statcanR | 0.2.6 |
statcodelists | 0.9.2 | statebins | 1.4.0 |
statespacer | 0.5.0 | StatMatch | 1.4.1 |
statmod | 1.5.0 | statnet.common | 4.9.0 |
StatRank | 0.0.6 | steadyICA | 1.0 |
STFTS | 0.1.0 | stinepack | 1.4 |
stlplus | 0.5.1 | stm | 1.3.6.1 |
STMedianPolish | 0.2 | stochvol | 3.2.1 |
stockAnalyst | 1.0.1 | stopwords | 2.3 |
storr | 1.2.5 | stR | 0.6 |
strand | 0.2.0 | stratification | 2.2-7 |
stringdist | 0.9.10 | stringfish | 0.15.8 |
stringi | 1.7.12 | stringr | 1.5.0 |
strucchange | 1.5-3 | strucchangeRcpp | 1.5-3-1.0.4 |
StructuralDecompose | 0.1.1 | styler | 1.10.2 |
subplex | 1.8 | subscore | 3.3 |
sufficientForecasting | 0.1.0 | sugrrants | 0.2.8 |
SuperLearner | 2.0-28.1 | superml | 0.5.6 |
SuppDists | 1.1-9.7 | support.CEs | 0.6-0 |
survcomp | 1.50.0 | surveillance | 1.21.1 |
survey | 4.2-1 | surveybootstrap | 0.0.3 |
surveydata | 0.2.7 | surveyoutliers | 0.1 |
surveyplanning | 4.0 | surveysd | 1.3.1 |
survivalROC | 1.0.3.1 | survPresmooth | 1.1-11 |
svars | 1.3.11 | svd | 0.5.4.1 |
SVDNF | 0.1.8 | svglite | 2.1.1 |
svrep | 0.6.3 | svs | 3.0.0 |
svUnit | 1.0.6 | swephR | 0.3.1 |
swirl | 2.4.5 | swirlify | 0.5.3 |
sylly | 0.1-6 | sym.arma | 1.0 |
symengine | 0.2.2 | symmoments | 1.2.1 |
synthACS | 1.7.1 | synthesis | 1.2.3 |
synthpop | 1.8-0 | sys | 3.4.2 |
systemfit | 1.1-30 | systemfonts | 1.0.4 |
tables | 0.9.17 | tabnet | 0.4.0 |
TAM | 4.1-4 | TAQMNGR | 2018.5-1 |
targets | 1.3.0 | tau | 0.0-24 |
taxize | 0.9.100 | tbrf | 0.1.5 |
tcltk2 | 1.2-11 | Tcomp | 1.0.1 |
tdigest | 0.4.1 | TeachingDemos | 2.12 |
telegram.bot | 3.0.0 | tempdisagg | 1.1.1 |
tensor | 1.5 | tensorA | 0.36.2 |
tensorflow | 2.13.0 | TensorPreAve | 1.1.0 |
tensorTS | 1.0.1 | TEQR | 6.0-0 |
tergm | 4.2.0 | terra | 1.7-46 |
tesseract | 5.1.0 | testcorr | 0.2.0 |
TestDataImputation | 2.3 | TestDesign | 1.5.1 |
tester | 0.1.7 | testit | 0.13 |
TestScorer | 1.7.2 | testthat | 3.1.10 |
TexExamRandomizer | 1.2.3 | texreg | 1.38.6 |
text2vec | 0.6.3 | textcat | 1.0-8 |
textir | 2.0-5 | textplot | 0.2.2 |
textrank | 0.3.1 | textreuse | 0.1.5 |
textshaping | 0.3.6 | textTinyR | 1.1.7 |
tfarima | 0.3.2 | tfautograph | 0.3.2 |
tfdatasets | 2.9.0 | tfio | 0.4.1 |
tfplot | 2021.6-1 | tframe | 2015.12-1.1 |
tfruns | 1.5.1 | tgp | 2.4-21 |
TH.data | 1.1-2 | theft | 0.5.3 |
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.3 | tibble | 3.2.1 |
tibbletime | 0.1.8 | tictoc | 1.2 |
Tides | 2.1 | tidyBdE | 0.3.4 |
tidycensus | 1.4.4 | tidygraph | 1.2.3 |
tidyLPA | 1.1.0 | tidymodels | 1.1.1 |
tidyquant | 1.0.7 | tidyqwi | 0.1.2 |
tidyr | 1.3.0 | tidyselect | 1.2.0 |
tidytext | 0.4.1 | tidytree | 0.4.5 |
tidyverse | 2.0.0 | tiff | 0.1-11 |
tigris | 2.0.3 | timechange | 0.2.0 |
timeDate | 4022.108 | timeSeries | 4031.107 |
timeseriesdb | 1.0.0-1.1.2 | timetk | 2.8.3 |
timsac | 1.3.8-2 | tinytex | 0.46 |
tis | 1.39 | tkrplot | 0.0-27 |
tm | 0.7-11 | tm.plugin.alceste | 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.6 |
tmvnsim | 1.0-2 | tmvtnorm | 1.5 |
tokenizers | 0.3.0 | tokenizers.bpe | 0.1.3 |
toOrdinal | 1.3-0.0 | topicdoc | 0.1.1 |
topicmodels | 0.2-14 | topicmodels.etm | 0.1.0 |
torch | 0.11.0 | torchaudio | 0.3.1.9000 |
torchdatasets | 0.3.0 | torchvision | 0.5.1 |
tpr | 0.3-3 | trackdem | 0.6 |
trackdf | 0.3.2 | trackeR | 1.5.2 |
trackeRapp | 1.2 | TrackReconstruction | 1.3 |
tractor.base | 3.3.5.1 | traipse | 0.3.0 |
trajectories | 0.2-7 | trajr | 1.5.0 |
TransPhylo | 1.4.5 | trapezoid | 2.0-2 |
tree | 1.0-43 | TreeBUGS | 1.5.0 |
treeio | 1.24.0 | treemap | 2.4-4 |
trend | 1.1.5 | 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 |
TSA | 1.3.1 | TSANN | 0.1.0 |
tsbox | 0.4.1 | tsBSS | 1.0.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 | TSEntropies | 0.9 |
tseries | 0.10-54 | tseriesChaos | 0.1-13.1 |
tseriesEntropy | 0.7-2 | tseriesTARMA | 0.3-2 |
tsfeatures | 1.1.1 | tsfknn | 0.5.2 |
tsibble | 1.1.3 | tsibbledata | 0.4.1 |
tsibbletalk | 0.1.0 | tsintermittent | 1.10 |
tsiR | 0.4.3 | TSLSTM | 0.1.0 |
tsModel | 0.6-1 | tsoutliers | 0.6-8 |
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.3 |
tswge | 2.1.0 | TTR | 0.24.3 |
tune | 1.1.2 | turner | 0.1.7 |
tvm | 0.5.2 | tweedie | 2.3.5 |
tweenr | 2.0.2 | twosamples | 2.0.1 |
tzdb | 0.4.0 | ubiquity | 2.0.0 |
ucminf | 1.2.0 | UComp | 4.0.2 |
udpipe | 0.8.11 | ufRisk | 1.0.6 |
ugatsdb | 0.2.3 | uGMAR | 3.4.5 |
UnifiedDoseFinding | 0.1.10 | units | 0.8-4 |
univOutl | 0.4 | unrepx | 1.0-2 |
uptasticsearch | 0.4.0 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
uroot | 2.1-2 | usdata | 0.2.0 |
usethis | 2.2.2 | usmap | 0.6.2 |
usmapdata | 0.1.0 | utf8 | 1.2.3 |
uuid | 1.1-1 | uwot | 0.1.16 |
V8 | 4.3.3 | validate | 1.1.3 |
validatetools | 0.5.0 | vapour | 0.9.5 |
VAR.etp | 1.1 | VARDetect | 0.1.6 |
vardiag | 0.2-1 | vardpoor | 0.20.1 |
VaRES | 1.0.2 | vars | 1.5-9 |
VARshrink | 0.3.1 | varycoef | 0.3.4 |
VCA | 1.4.5 | vcd | 1.4-11 |
vcdExtra | 0.8-5 | vctrs | 0.6.3 |
vdg | 1.2.2 | VedicDateTime | 0.1.7 |
vegan | 2.6-4 | VennDiagram | 1.7.3 |
venneuler | 1.1-3 | VGAM | 1.1-8 |
VGAMdata | 1.1-8 | vglmer | 1.0.3 |
VIM | 6.2.2 | VineCopula | 2.5.0 |
viridis | 0.6.4 | viridisLite | 0.4.2 |
visNetwork | 2.1.2 | visualize | 4.4.0 |
volatilityTrader | 1.0.1 | vpc | 1.2.2 |
vroom | 1.6.3 | vrtest | 1.2 |
waiter | 0.2.5 | waldo | 0.5.1 |
warp | 0.2.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.2 |
wCorr | 1.9.8 | WDI | 2.7.8 |
webdriver | 1.0.6 | webshot | 0.5.5 |
WeightIt | 0.14.2 | weights | 1.0.4 |
WeMix | 4.0.0 | whisker | 0.4.1 |
whitebox | 2.3.1 | widgetframe | 0.3.1 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
WikipediR | 1.5.0 | wikitaxa | 0.4.0 |
wildlifeDI | 0.5.0 | wINEQ | 1.2.0 |
withr | 2.5.0 | wk | 0.8.0 |
wktmo | 1.0.5 | wkutils | 0.1.3 |
wnl | 0.7.3 | wooldridge | 1.4-3 |
word2vec | 0.3.4 | wordcloud | 2.6 |
wordnet | 0.1-16 | workflows | 1.1.3 |
workflowsets | 1.0.1 | worrms | 0.4.3 |
wpp2017 | 1.2-3 | wpp2019 | 1.1-1 |
WrightMap | 1.3 | writexl | 1.4.2 |
wrswoR | 1.1.1 | x12 | 1.10.3 |
x13binary | 1.1.57-4 | XBRL | 0.99.19.1 |
xfun | 0.40 | xgboost | 1.7.5.1 |
xgxr | 1.1.2 | XLConnect | 1.0.7 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.14 | xml2 | 1.3.5 |
xopen | 1.0.0 | xplain | 0.2.2 |
xpose | 0.4.17 | xpose.nlmixr2 | 0.4.0 |
xpose4 | 4.7.2 | xtable | 1.8-4 |
xts | 0.13.1 | XVector | 0.40.0 |
xxIRT | 2.1.2 | yaImpute | 1.0-33 |
yaml | 2.3.7 | yardstick | 1.2.0 |
yesno | 0.1.2 | yuima | 1.15.22 |
yulab.utils | 0.0.9 | zeallot | 0.1.0 |
zic | 0.9.1 | ZIM | 1.1.0 |
ZINARp | 0.1.0 | zip | 2.3.0 |
zipfR | 0.6-70 | zlibbioc | 1.46.0 |
zoo | 1.8-12 | ZRA | 0.2 |
RStudio Server
R: 4.3.1
rstudio-server: 2023.06.2+561
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
Added packages argparse, lpSolveAPI and telegram.bot
R: 4.3.1; rstudio-server: 2023.06.2+561; 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, 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, and natural language processing.
R packages (2903)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.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 |
actuar | 3.3-2 | ada | 2.0-5 |
adagio | 0.8.5 | adaptivetau | 2.2-3 |
adaptMCMC | 1.4 | adaptr | 1.3.2 |
adaptsmoFMRI | 1.2 | adaptTest | 1.1 |
ade4 | 1.7-22 | ade4TkGUI | 0.3-1 |
adegenet | 2.1.10 | adegraphics | 1.0-18 |
adehabitatHR | 0.4.21 | adehabitatHS | 0.3.17 |
adehabitatLT | 0.3.27 | adehabitatMA | 0.3.16 |
ADGofTest | 0.3 | adimpro | 0.9.6 |
admisc | 0.33 | AdMit | 2.1.9 |
ads | 1.5-9 | AER | 1.2-10 |
affy | 1.78.0 | affyio | 1.70.0 |
africamonitor | 0.2.3 | agricolae | 1.3-6 |
agricolaeplotr | 0.3.1 | agridat | 1.22 |
airports | 0.1.0 | akima | 0.6-3.4 |
alabama | 2023.1.0 | AlgDesign | 1.2.1 |
almanac | 1.0.0 | alphavantager | 0.1.3 |
ALTopt | 0.1.2 | Amelia | 1.8.1 |
AmericanCallOpt | 0.95 | ammiBayes | 1.0-1 |
AMR | 2.1.0 | AnaCoDa | 0.1.4.4 |
anacor | 1.1-4 | anesrake | 0.80 |
animation | 2.7 | anipaths | 0.10.2 |
AnnotationDbi | 1.62.1 | anytime | 0.3.9 |
aod | 1.3.2 | aoos | 0.5.0 |
AovBay | 0.1.0 | ape | 5.7-1 |
APFr | 1.0.2 | aplot | 0.2.1 |
approximator | 1.2-8 | ARCensReg | 3.0.1 |
ArchaeoChron | 0.1 | ArchaeoPhases | 1.8 |
ArDec | 2.1-1 | ARDL | 0.2.4 |
ardl.nardl | 1.2.3 | areal | 0.1.8 |
arfima | 1.8-1 | argparse | 2.2.2 |
arm | 1.13-1 | aroma.apd | 0.7.0 |
arrangements | 1.1.9 | arrow | 13.0.0 |
ars | 0.6 | ascii | 2.4 |
asd | 2.2 | ash | 1.0-15 |
ashr | 2.2-63 | askpass | 1.2.0 |
aspect | 1.0-6 | ASSA | 2.0 |
assertthat | 0.2.1 | AssetCorr | 1.0.4 |
astsa | 2.0 | asymmetry | 2.0.4 |
ata | 1.1.1 | aTSA | 3.1.2 |
attempt | 0.3.1 | attention | 0.3.0 |
AUC | 0.3.2 | audio | 0.1-11 |
autoFRK | 1.4.3 | autoimage | 2.2.3 |
automap | 1.1-9 | autostsm | 3.1.0 |
av | 0.8.4 | aweek | 1.0.3 |
aws | 2.5-3 | awsMethods | 1.1-1 |
BACCO | 2.1-0 | BACCT | 1.0 |
backports | 1.4.1 | backtest | 0.3-4 |
baggr | 0.7.6 | bain | 0.2.9 |
BalancedSampling | 1.6.3 | BaM | 1.0.3 |
bama | 1.3.0 | bamdit | 3.4.0 |
bamlss | 1.2-1 | bang | 1.0.2 |
BANOVA | 1.2.1 | BART | 2.9.4 |
bartBMA | 1.0 | bartCause | 1.0-6 |
bartMachine | 1.3.4.1 | bartMachineJARs | 1.2.1 |
BAS | 1.6.4 | basad | 0.3.0 |
base64 | 2.0.1 | base64enc | 0.1-3 |
base64url | 1.4 | basicMCMCplots | 0.2.7 |
BaSkePro | 0.1.0 | BASS | 1.3.1 |
BatchExperiments | 1.4.3 | BatchJobs | 1.9 |
batchmeans | 1.0-4 | baycn | 1.2.0 |
bayefdr | 0.2.1 | bayes4psy | 1.2.11 |
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-8 |
BayesCR | 2.1 | bayesCT | 0.99.3 |
BayesCTDesign | 0.6.1 | BayesDA | 2012.04-1 |
bayesDccGarch | 3.0.4 | bayesdfa | 1.2.0 |
bayesdistreg | 0.1.0 | bayesDP | 1.3.6 |
BayesFactor | 0.9.12-4.4 | 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.1-1 |
bayeslincom | 1.3.0 | BayesLN | 0.2.8 |
BayesLogit | 2.1 | bayesloglin | 1.0.1 |
bayeslongitudinal | 0.1.0 | bayesm | 3.1-5 |
BayesMallows | 1.3.2 | BayesMassBal | 1.1.0 |
bayesmeta | 3.3 | bayesmix | 0.7-6 |
bayesnec | 2.1.0.3 | bayesplot | 1.10.0 |
bayesQR | 2.4 | BayesSAE | 1.0-2 |
bayestestR | 0.13.1 | bayesTFR | 7.4-0 |
BayesTools | 0.2.16 | BayesTree | 0.3-1.4 |
BayesVarSel | 2.2.5 | BayesX | 0.3-2 |
BAYSTAR | 0.2-10 | BB | 2019.10-1 |
BBmisc | 1.13 | BCBCSF | 1.0-1 |
BCC1997 | 0.1.1 | BCE | 2.2.0 |
Bchron | 4.7.6 | bcp | 4.0.3 |
bcpa | 1.3.2 | bcrm | 0.5.4 |
BDgraph | 2.72 | bdsmatrix | 1.3-6 |
BE | 0.2.4 | beadarray | 2.50.0 |
BeadDataPackR | 1.52.0 | bearishTrader | 1.0.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.6 | Bessel | 0.6-0 |
BEST | 0.5.4 | BetaBit | 2.2 |
betafunctions | 1.8.1 | 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.0.0 | BGGM | 2.0.4 |
BGLR | 1.1.0 | BGVAR | 2.5.2 |
BH | 1.81.0-1 | BHH2 | 2016.05.31 |
BiasedUrn | 2.0.11 | bibtex | 0.5.1 |
bidask | 1.0.0 | BIFIEsurvey | 3.4-15 |
biganalytics | 1.1.21 | bigD | 0.2.0 |
biglm | 0.9-2.1 | bigmemory | 4.6.1 |
bigmemory.sri | 0.1.6 | bigrquery | 1.4.2 |
bigsplines | 1.1-1 | bigtime | 0.2.3 |
BigVAR | 1.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | binom | 1.1-1.1 |
binomSamSize | 0.1-5 | binr | 1.1.1 |
binseqtest | 1.0.4 | Biobase | 2.60.0 |
BiocGenerics | 0.46.0 | BiocManager | 1.30.22 |
BiocParallel | 1.34.1 | BiocVersion | 3.17.1 |
bioinactivation | 1.2.3 | biomformat | 1.28.0 |
bioOED | 0.2.1 | Biostrings | 2.68.0 |
birtr | 1.0.0 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
biwavelet | 0.20.21 | bizdays | 1.0.13 |
bkmr | 0.2.2 | blaise | 1.3.10 |
blastula | 0.3.3 | blavaan | 0.5-1 |
BLModel | 1.0.2 | blob | 1.2.4 |
blocklength | 0.1.5 | blockrand | 1.5 |
blocksdesign | 4.9 | blockTools | 0.6.4 |
BLR | 1.6 | BMA | 3.18.17 |
bmgarch | 2.0.0 | bmixture | 1.7 |
BMS | 0.3.5 | BMTAR | 0.1.1 |
bnlearn | 4.9 | BNPTSclust | 2.0 |
BNSP | 2.2.3 | 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.35 | Boom | 0.9.11 |
BoomSpikeSlab | 1.2.5 | bootnet | 1.5.5 |
BootPR | 1.0 | bootstrap | 2019.6 |
bootUR | 1.0.2 | bpca | 1.3-4 |
bqtl | 1.0-35 | BradleyTerry2 | 1.1-2 |
brainR | 1.6.0 | breakfast | 2.3 |
brew | 1.0-8 | brglm | 0.7.2 |
brglm2 | 0.9 | bridgesampling | 1.1-2 |
brio | 1.1.3 | brms | 2.20.3 |
Brobdingnag | 1.2-9 | broman | 0.80 |
broom | 1.0.5 | bsam | 1.1.3 |
bsamGP | 1.2.4 | bslib | 0.5.1 |
BsMD | 2023.707 | bspec | 1.6 |
bspmma | 0.1-2 | bssm | 2.0.1 |
BSSprep | 0.1 | bsts | 0.9.9 |
bsvars | 1.0.0 | BTLLasso | 0.1-11 |
BTM | 0.3.7 | bullishTrader | 1.0.1 |
bundesbank | 0.1-9 | BurStFin | 1.3 |
BurStMisc | 1.1 | BVAR | 1.0.4 |
bvartools | 0.2.3 | ca | 0.71.1 |
cabootcrs | 2.1.0 | cachem | 1.0.8 |
cacIRT | 1.4 | CADFtest | 0.3-3 |
caffsim | 0.2.2 | Cairo | 1.6-1 |
calculus | 1.0.1 | CalibrateSSB | 1.3.0 |
calibrator | 1.2-8 | callr | 3.7.3 |
cancensus | 0.5.5 | candisc | 0.8-6 |
CANSIM2R | 1.14.1 | car | 3.1-2 |
CARBayes | 6.0 | CARBayesdata | 3.0 |
CARBayesST | 3.3.1 | carData | 3.0-5 |
caret | 6.0-94 | carfima | 2.0.2 |
caribou | 1.1-1 | cartogram | 0.3.0 |
caTools | 1.18.2 | catR | 3.17 |
causact | 0.5.3 | CausalImpact | 1.3.0 |
CAvariants | 5.9 | cbsodataR | 0.5.1 |
cccp | 0.2-9 | cdlTools | 0.15 |
CDM | 8.2-6 | cds | 1.0.3 |
CellNOptR | 1.46.0 | cellranger | 1.1.0 |
censusapi | 0.8.0 | CFtime | 1.0.0 |
ChainLadder | 0.2.18 | chandwich | 1.1.6 |
changepoint | 2.2.4 | changepoint.geo | 1.0.1 |
changepoint.np | 1.0.5 | checkLuhn | 1.1.0 |
checkmate | 2.2.0 | cherryblossom | 0.1.0 |
chilemapas | 0.3.0 | chk | 0.9.0 |
choiceDes | 0.9-3 | CholWishart | 1.1.2 |
chron | 2.3-61 | cifti | 0.4.5 |
cinterpolate | 1.0.0 | CircSpaceTime | 0.9.0 |
CircStats | 0.2-6 | circular | 0.5-0 |
ciTools | 0.6.1 | classInt | 0.4-10 |
cli | 3.6.1 | clime | 0.5.0 |
clinDR | 2.4.1 | clinfun | 1.1.3 |
clinicalsignificance | 1.2.0 | clinPK | 0.11.1 |
clinsig | 1.2 | clipr | 0.8.0 |
clisymbols | 1.2.0 | clock | 0.7.0 |
clue | 0.3-64 | clustDRM | 0.1-0 |
clusterGeneration | 1.3.8 | clusterPower | 0.7.0 |
ClustVarLV | 2.1.1 | clv | 0.3-2.3 |
cmaes | 1.0-12 | CMLS | 1.0-1 |
cmm | 1.0 | cmocean | 0.3-1 |
cmprsk | 2.2-11 | cmrutils | 1.3.1 |
cNORM | 3.0.3 | CNORode | 1.42.0 |
coalescentMCMC | 0.4-4 | coalitions | 0.6.24 |
coarseDataTools | 0.6-6 | cobalt | 4.5.1 |
coconots | 1.1.2 | cocor | 1.1-4 |
cocorresp | 0.4-3 | cocron | 1.0-1 |
coda | 0.19-4 | coin | 1.4-2 |
cointReg | 0.2.0 | collapse | 1.9.6 |
collapsibleTree | 0.1.7 | colorRamps | 2.3.1 |
colorspace | 2.1-0 | colourpicker | 1.3.0 |
colourvalues | 0.3.9 | combinat | 0.0-8 |
CombinS | 1.1-1 | CommonJavaJars | 1.0-6 |
commonmark | 1.9.0 | compare | 0.2-6 |
CompQuadForm | 1.4.3 | conditionz | 0.1.0 |
conf.design | 2.0.0 | config | 0.3.2 |
conflicted | 1.2.0 | conquer | 1.3.3 |
conquestr | 1.0.7 | contactdata | 1.0.0 |
contfrac | 1.1-12 | convey | 0.2.5 |
cops | 1.3-1 | copula | 1.1-2 |
copulaData | 0.0-1 | cordillera | 1.0-0 |
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 | costat | 2.4.1 |
countrycode | 1.5.0 | COVID19 | 3.0.3 |
covid19.analytics | 2.1.3.1 | covid19br | 0.1.6 |
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.1 |
CPBayes | 1.1.0 | cpk | 1.3-1 |
cplm | 0.7-11 | cpp11 | 0.4.6 |
crawl | 2.3.0 | crayon | 1.5.2 |
credentials | 2.0.1 | credule | 0.1.4 |
crfsuite | 0.4.1 | CRM | 1.2.4 |
crmPack | 1.0.3 | crossdes | 1.1-2 |
Crossover | 0.1-21 | crosstalk | 1.2.0 |
crs | 0.15-37 | crseEventStudy | 1.2.2 |
crsmeta | 0.3.0 | crul | 1.4.0 |
cSEM | 0.5.0 | 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.1.0 |
ctrdata | 1.15.1 | CTT | 2.3.3 |
CTTShiny | 0.1 | ctv | 0.9-5 |
cubature | 2.1.0 | cubble | 0.3.0 |
Cubist | 0.4.2.1 | curl | 5.0.2 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-11 |
d3Network | 0.5.2.1 | DAAG | 1.25.4 |
dae | 3.2.19 | daewr | 1.2-11 |
dagitty | 0.3-1 | DAKS | 2.1-3 |
DALEX | 2.4.3 | data.table | 1.14.8 |
data.tree | 1.0.0 | DatabaseConnector | 6.2.4 |
DataExplorer | 0.8.2 | datapasta | 3.1.0 |
dataseries | 0.2.0 | datawizard | 0.9.0 |
date | 1.2-42 | datetimeutils | 0.6-1 |
dbarts | 0.9-23 | DBI | 1.1.3 |
DBItest | 1.7.3 | dbmss | 2.8-2 |
dbparser | 2.0.1 | dbplyr | 2.3.3 |
dbscan | 1.1-11 | dbx | 0.2.8 |
DChaos | 0.1-7 | dclone | 2.3-2 |
DCluster | 0.2-9 | DClusterm | 1.0-1 |
dcov | 0.1.1 | dCovTS | 1.3 |
dcurver | 0.9.2 | dde | 1.0.4 |
deBInfer | 0.4.4 | debugme | 1.1.0 |
deducorrect | 1.3.7 | deductive | 1.0.0 |
deldir | 1.0-9 | deltaPlotR | 1.6 |
dendextend | 1.17.1 | densEstBayes | 1.0-2.2 |
DEoptim | 2.2-8 | DEoptimR | 1.1-2 |
depmix | 0.9.16 | depmixS4 | 1.5-0 |
DepthProc | 2.1.5 | Deriv | 4.1.3 |
derivmkts | 0.2.5 | desc | 1.4.2 |
DescTools | 0.99.50 | designmatch | 0.5.4 |
desirability | 2.1 | deSolve | 1.38 |
desplot | 1.10 | devtools | 2.4.5 |
dexter | 1.2.2 | dextergui | 0.2.6 |
dexterMST | 0.9.3 | 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 |
DHARMa | 0.4.6 | DHS.rates | 0.9.1 |
diagis | 0.2.3 | diagonals | 6.4.0 |
diagram | 1.6.5 | DiagrammeR | 1.0.10 |
dials | 1.2.0 | DiceDesign | 1.9 |
DiceEval | 1.5.1 | DiceKriging | 1.6.0 |
DiceView | 2.1-0 | dichromat | 2.0-0.1 |
DICOMread | 0.0.0.3 | DIFboost | 0.3 |
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.33 | DIMORA | 0.3.5 |
dimRed | 0.2.6 | dina | 2.0.0 |
dipsaus | 0.2.8 | diptest | 0.76-0 |
Dire | 2.1.1 | DIRECT | 1.1.0 |
directlabels | 2023.8.25 | dirichletprocess | 0.4.2 |
disaggR | 1.0.5 | discretization | 1.0-1.1 |
DistatisR | 1.1.1 | distcrete | 1.0.3 |
distfree.cr | 1.5.1 | distr | 2.9.2 |
distrEx | 2.9.0 | distributional | 0.3.2 |
distributions3 | 0.2.1 | DistributionUtils | 0.6-1 |
distrom | 1.0.1 | distrTeach | 2.9.0 |
dittodb | 0.1.7 | divest | 0.10.3 |
divseg | 0.0.5 | dLagM | 1.1.12 |
dlm | 1.1-6 | dlnm | 2.4.7 |
dlstats | 0.1.7 | dmri.tracking | 0.1.0 |
doBy | 4.6.18 | doc2vec | 0.2.0 |
docopulae | 0.4.0 | DoE.base | 1.2-2 |
DoE.MIParray | 1.0-1 | DoE.wrapper | 0.12 |
doMC | 1.3.8 | doParallel | 1.0.17 |
doRNG | 1.8.6 | DoseFinding | 1.0-5 |
doSNOW | 1.0.20 | DOSPortfolio | 0.1.0 |
dotCall64 | 1.0-2 | Dowd | 0.12 |
downlit | 0.4.3 | downloader | 0.4 |
dparser | 1.3.1-10 | dplyr | 1.1.3 |
dqrng | 0.3.1 | dr4pl | 2.0.0 |
DriftBurstHypothesis | 0.4.0.1 | DRR | 0.0.4 |
dsa | 1.0.12 | DSAIDE | 0.9.6 |
dse | 2020.2-1 | DSI | 1.5.0 |
DSL | 0.1-7 | DT | 0.29 |
DTAT | 0.3-6 | DtD | 0.2.2 |
dti | 1.5.4 | dtplyr | 1.3.1 |
DTSg | 1.1.1 | dtt | 0.1-2 |
dtts | 0.1.1 | dtw | 1.23-1 |
dtwclust | 5.5.12 | duckdb | 0.8.1-3 |
dygraphs | 1.1.1.6 | dyn | 0.2-9.6 |
dynamicTreeCut | 1.63-1 | dynaTree | 1.2-16 |
dynlm | 0.3-6 | e1071 | 1.7-13 |
earlyR | 0.0.5 | earth | 5.3.2 |
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.3 | ecb | 0.4.2 |
Ecdat | 0.4-2 | ecespa | 1.1-17 |
Ecfun | 0.3-2 | ecm | 7.0.0 |
ecodist | 2.0.9 | ECOSolveR | 0.5.5 |
ecp | 3.1.5 | 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.1 |
eegkit | 1.0-4 | eegkitdata | 1.1 |
EFAutilities | 2.1.3 | effects | 4.2-2 |
EGAnet | 2.0.1 | egg | 0.4.5 |
egor | 1.23.3 | eha | 2.11.0 |
eigenmodel | 1.11 | elastic | 1.2.0 |
elasticnet | 1.3 | elevatr | 0.99.0 |
ellipse | 0.5.0 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | EMbC | 2.0.3 |
EMD | 1.5.9 | emdi | 2.2.0 |
emg | 1.0.9 | emmeans | 1.8.8 |
emulator | 1.2-21 | encode | 0.3.6 |
endtoend | 2.29 | energy | 1.7-11 |
EngrExpt | 0.1-8 | enrichwith | 0.3.1 |
ensembleBMA | 5.1.8 | EntropyMCMC | 1.0.4 |
EnvStats | 2.8.1 | 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.8 |
epiR | 2.0.63 | EpiReport | 1.0.2 |
episensr | 1.3.0 | epitools | 0.5-10.1 |
epitrix | 0.4.0 | equate | 2.0.8 |
equateIRT | 2.3.0 | equateMultiple | 0.1.1 |
equivalence | 0.7.2 | era | 0.4.1 |
ergm | 4.5.0 | ergm.ego | 1.1.0 |
ergm.multi | 0.2.0 | eRm | 1.0-2 |
errorlocate | 1.1 | errum | 0.0.3 |
esaBcv | 1.2.1.1 | esemifar | 1.0.1 |
ESG | 1.3 | EstCRM | 1.6 |
estimability | 1.4.1 | EstimateGroupNetwork | 0.3.1 |
ETLUtils | 1.5 | etm | 1.1.1 |
etrm | 1.0.1 | etrunct | 0.1 |
eurostat | 3.8.2 | evaluate | 0.21 |
evd | 2.3-6.1 | evgam | 1.0.0 |
ewoc | 0.3.0 | Exact | 3.2 |
exactextractr | 0.9.1 | exams | 2.4-0 |
ExceedanceTools | 1.3.6 | exdex | 1.2.2 |
experiment | 1.2.1 | expint | 0.1-8 |
expm | 0.999-7 | ExPosition | 2.8.23 |
expsmooth | 2.3 | extraDistr | 1.9.1 |
extrafont | 0.19 | extrafontdb | 1.0 |
extraoperators | 0.1.1 | eyelinker | 0.2.1 |
ez | 4.4-0 | fable | 0.3.3 |
fable.prophet | 0.1.0 | fabletools | 0.3.3 |
FactoClass | 1.2.8 | FactoMineR | 2.8 |
factorstochvol | 1.0.2 | fanplot | 4.0.0 |
fansi | 1.0.4 | FAOSTAT | 2.3.0 |
faoutlier | 0.7.6 | faraway | 1.0.8 |
farver | 2.1.1 | fAssets | 4023.85 |
fastcluster | 1.2.3 | fastDummies | 1.7.3 |
fastGHQuad | 1.0.1 | fastICA | 1.2-3 |
fastLink | 0.6.0 | fastmap | 1.1.1 |
fastmatch | 1.1-4 | fasttime | 1.1-0 |
FatTailsR | 1.8-0 | FAVAR | 0.1.3 |
fBasics | 4022.94 | fBonds | 3042.78 |
fCopulae | 4022.85 | fda | 6.1.4 |
fdaACF | 1.0.0 | fdapace | 0.5.9 |
fdrtool | 1.2.17 | fds | 1.8 |
fdth | 1.2-6 | feasts | 0.3.1 |
fechner | 1.0-3 | FeedbackTS | 1.5 |
fExtremes | 4021.83 | ff | 4.0.9 |
FFD | 1.0-9 | fftwtools | 0.9-11 |
fGarch | 4022.89 | fHMM | 1.1.0 |
FielDHub | 1.3.1 | fields | 15.2 |
filearray | 0.1.6 | filehash | 2.4-5 |
filehashSQLite | 0.2-6 | filelock | 1.0.2 |
filematrix | 1.3 | fImport | 4021.86 |
FinancialMath | 0.1.1 | FinAsym | 1.0 |
findpython | 1.0.8 | finnts | 0.3.0 |
finreportr | 1.0.4 | FinTS | 0.4-6 |
fishMod | 0.29 | fitdistrplus | 1.1-11 |
FKF | 0.2.4 | FKF.SP | 0.3.1 |
flashClust | 1.01-2 | flexclust | 1.4-1 |
flexdashboard | 0.6.2 | flexmix | 2.3-19 |
FlexScan | 0.2.2 | flextable | 0.9.3 |
float | 0.3-1 | fma | 2.5 |
FMC | 1.0.1 | fmdates | 0.1.4 |
FME | 1.3.6.3 | fmri | 1.9.12 |
fMultivar | 4031.84 | fnets | 0.1.5 |
FNN | 1.1.3.2 | fNonlinear | 4021.81 |
fontawesome | 0.5.2 | fontBitstreamVera | 0.1.1 |
fontLiberation | 0.1.0 | fontquiver | 0.2.1 |
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 |
fourPNO | 1.1.0 | fpc | 2.2-10 |
fpcb | 0.1.0 | fPortfolio | 4023.84 |
fpp2 | 2.5 | fpp3 | 0.5 |
fracdiff | 1.5-2 | Frames2 | 0.2.1 |
FRAPO | 0.4-1 | fredr | 2.1.0 |
freecurrencyapi | 0.1.0 | freesurferformats | 0.1.17 |
fRegression | 4021.83 | frenchdata | 0.2.0 |
freqdom | 2.0.3 | freqdom.fda | 1.0.1 |
fresh | 0.2.0 | FrF2 | 2.3-2 |
FrF2.catlg128 | 1.2-2 | FRK | 2.1.5 |
fs | 1.6.3 | fslr | 2.25.2 |
fsMTS | 0.1.7 | fst | 0.9.8 |
fstcore | 0.9.14 | fTrading | 3042.79 |
ftsa | 6.3 | functional | 0.6 |
funtimes | 9.1 | furrr | 0.3.1 |
futile.logger | 1.4.3 | futile.options | 1.0.1 |
future | 1.33.0 | future.apply | 1.11.0 |
fuzzyjoin | 0.1.6 | GA | 3.2.3 |
GAD | 1.1.1 | gam | 1.22-2 |
gamlr | 1.13-8 | gamlss | 5.4-18 |
gamlss.data | 6.0-2 | gamlss.dist | 6.1-1 |
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.5.1 | gaussquad | 1.0-3 |
GaussSuppression | 0.7.0 | gbm | 2.1.8.1 |
gbutils | 0.5 | gclus | 1.3.2 |
GCPM | 1.2.2 | gdalcubes | 0.6.4 |
gdalraster | 1.4.0 | gdalUtilities | 1.2.5 |
gdata | 2.19.0 | GDINA | 2.9.4 |
gdistance | 1.6.4 | gdpc | 1.1.3 |
gdtools | 0.3.3 | gear | 0.3.4 |
gee | 4.13-25 | geepack | 1.3.9 |
genalg | 0.2.1 | gender | 0.6.0 |
GeneralizedHyperbolic | 0.8-4 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | GenomeInfoDb | 1.36.0 |
GenomeInfoDbData | 1.2.10 | GenomicRanges | 1.52.0 |
GenSA | 1.1.10 | 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.3 |
geometry | 0.4.7 | geonames | 0.999 |
geonapi | 0.7 | GEOquery | 2.68.0 |
geoR | 1.9-2 | geos | 0.2.3 |
geosapi | 0.6-6 | geosphere | 1.5-18 |
geospt | 1.0-2 | geostan | 0.5.1 |
geouy | 0.2.8 | gert | 1.9.3 |
getPass | 0.2-2 | gets | 0.37 |
GetTDData | 1.5.4 | gfonts | 0.2.0 |
GGally | 2.1.2 | ggalt | 0.4.0 |
gganimate | 1.0.8 | ggdag | 0.2.10 |
ggdemetra | 0.2.5 | ggdendro | 0.1.23 |
ggdist | 3.3.0 | ggExtra | 0.10.1 |
ggforce | 0.4.1 | ggformula | 0.10.4 |
ggfun | 0.1.3 | gghalves | 0.1.4 |
ggmap | 3.0.2 | ggmcmc | 1.5.1.1 |
ggnewscale | 0.4.9 | ggplot2 | 3.4.3 |
ggplotify | 0.1.2 | ggpubr | 0.6.0 |
ggraph | 2.1.0 | ggrepel | 0.9.3 |
ggridges | 0.5.4 | ggsci | 3.0.0 |
ggseas | 0.5.4 | ggsignif | 0.6.4 |
ggsn | 0.5.0 | ggspatial | 1.1.9 |
ggstance | 0.3.6 | ggtext | 0.1.2 |
ggthemes | 4.2.4 | ggtree | 3.8.0 |
ggvis | 0.4.8 | gh | 1.4.0 |
ghyp | 1.6.4 | Gifi | 0.4-0 |
gifti | 0.8.0 | GIGrvg | 0.8 |
gimme | 0.7-15 | giscoR | 0.3.5 |
git2r | 0.32.0 | gitcreds | 0.1.2 |
glarma | 1.6-0 | GlarmaVarSel | 1.0 |
glasso | 1.11 | glassoFast | 1.0.1 |
gld | 2.6.6 | glm2 | 1.2.1 |
GLMMRR | 0.5.0 | glmmTMB | 1.1.7 |
glmnet | 4.1-8 | globals | 0.16.2 |
glpkAPI | 1.3.4 | glue | 1.6.2 |
GMDH | 1.6 | Gmedian | 1.2.7 |
gmm | 1.8 | gmodels | 2.18.1.1 |
gmp | 0.7-2 | gmt | 2.0.3 |
gmvarkit | 2.0.10 | GNAR | 1.1.2 |
gnm | 1.1-4 | GO.db | 3.17.0 |
goftest | 1.2-3 | gogarch | 0.7-5 |
golem | 0.4.1 | googledrive | 2.1.1 |
googlePolylines | 0.8.4 | googlesheets4 | 1.1.1 |
googleVis | 0.7.1 | gower | 1.0.1 |
GPArotation | 2023.8-1 | GPCMlasso | 0.1-6 |
GPfit | 1.0-8 | gplots | 3.1.3 |
gradethis | 0.2.12.9004 | gRain | 1.3.14 |
graph | 1.78.0 | graphicalVAR | 0.3.1 |
graphlayouts | 1.0.0 | grates | 1.1.0 |
gratis | 1.0.5 | gravitas | 0.1.3 |
gRbase | 1.9.0 | greeks | 1.3 |
greta | 0.4.3 | greybox | 1.0.8 |
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.2-0 | grnn | 0.1.0 |
GroupSeq | 1.4.2 | grplasso | 0.4-7 |
gsarima | 0.1-5 | gsDesign | 3.5.0 |
gSEM | 0.4.3.4 | gsignal | 0.3-5 |
gsl | 2.1-8 | gss | 2.2-7 |
gstat | 2.1-1 | gsubfn | 0.7 |
gsw | 1.1-1 | gt | 0.9.0 |
gtable | 0.3.4 | gtheory | 0.1.2 |
gtools | 3.9.4 | gtop | 0.2.0 |
GUIDE | 1.2.7 | gustave | 0.4.4 |
gWidgets2 | 1.0-9 | GWmodel | 2.3-1 |
gwrr | 0.2-2 | HandTill2001 | 1.0.1 |
HaploSim | 1.8.4.2 | hardhat | 1.3.0 |
hash | 2.2.6.3 | haven | 2.5.3 |
hbsae | 1.2 | hdf5r | 1.3.8 |
hdi | 0.1-9 | HDInterval | 0.2.4 |
HDMT | 1.0.5 | hdrcde | 3.4 |
HDShOP | 0.1.3 | HDTSA | 1.0.2 |
heatmaply | 1.4.2 | heplots | 1.6.0 |
here | 1.0.1 | hett | 0.3-3 |
hexbin | 1.28.3 | hflights | 0.1 |
hglm | 2.2-1 | hglm.data | 1.0-1 |
HH | 3.1-49 | hht | 2.1.6 |
highcharter | 0.9.4 | highfrequency | 1.0.0 |
highlight | 0.5.1 | highr | 0.10 |
highs | 0.1-10 | HIMA | 2.2.1 |
hipread | 0.2.3 | HKRbook | 0.1.3 |
HLMdiag | 0.5.0 | Hmisc | 5.1-1 |
HMMpa | 1.0.1 | hms | 1.1.3 |
hoardr | 0.5.3 | homals | 1.0-10 |
hommel | 1.6 | hpfilter | 1.0.2 |
HSAUR3 | 1.0-14 | htmlTable | 2.4.1 |
htmltools | 0.5.6 | htmlwidgets | 1.6.2 |
hts | 6.0.2 | httpcode | 0.3.0 |
httpuv | 1.6.11 | httr | 1.4.7 |
httr2 | 0.2.3 | humanize | 0.2.0 |
hunspell | 3.0.2 | hutils | 1.8.1 |
hwwntest | 1.3.2 | HydroMe | 2.0-1 |
HyperbolicDist | 0.6-4 | hypergeo | 1.2-13 |
i2extras | 0.2.1 | iarm | 0.4.3 |
ibd | 1.5 | ibdreg | 0.3.8 |
iBreakDown | 2.0.1 | IBrokers | 0.10-2 |
ica | 1.0-3 | ICAOD | 1.0.1 |
icarus | 0.3.2 | ICC | 2.4.0 |
iccbeta | 1.2.0 | Icens | 1.72.0 |
ichimoku | 1.4.9 | ICS | 1.4-0 |
ICSNP | 1.1-1 | ICtest | 0.3-5 |
idbr | 1.0 | IDE | 0.3.1 |
idefix | 1.0.3 | IDPmisc | 1.1.20 |
ids | 1.0.1 | ifaTools | 0.23 |
igraph | 1.5.1 | igraphdata | 1.0.1 |
illuminaio | 0.42.0 | imbibe | 0.1.1 |
immer | 1.4-15 | implyr | 0.4.0 |
impute | 1.74.1 | imputeTestbench | 3.0.3 |
imputeTS | 3.3 | inca | 0.0.4 |
IncDTW | 1.1.4.4 | incidence | 1.7.3 |
incidence2 | 2.2.1 | inegiR | 3.0.0 |
ineq | 0.2-13 | infer | 1.0.5 |
influence.SEM | 2.3 | influenceR | 0.1.5 |
influxdbr | 0.14.2 | InfoTrad | 1.2 |
ingredients | 2.3.0 | ini | 0.3.1 |
inline | 0.3.19 | insee | 1.1.5 |
insight | 0.19.5 | InspectChangepoint | 1.2 |
intamap | 1.5-6 | interp | 1.1-4 |
intervals | 0.15.4 | inum | 1.0-5 |
invgamma | 1.1 | iotables | 0.9.1 |
iotools | 0.3-2 | ipdw | 2.0-0 |
ipfp | 1.0.2 | ipred | 0.9-14 |
ipumsr | 0.6.3 | 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 |
IsingFit | 0.3.1 | IsingSampler | 0.2.3 |
Iso | 0.0-18.1 | isoband | 0.2.7 |
ISOcodes | 2022.09.29 | IsoGene | 1.0-24 |
ISOweek | 0.6-2 | ISwR | 2.0-8 |
iterators | 1.0.14 | iterLap | 1.1-3 |
itertools | 0.1-3 | itsmr | 1.10 |
JADE | 2.0-3 | jalcal | 0.1.0 |
janeaustenr | 1.0.0 | janitor | 2.2.0 |
JavaGD | 0.6-5 | jiebaR | 0.11 |
jiebaRD | 0.1 | jjb | 0.1.1 |
JMdesign | 1.3 | jomo | 2.7-6 |
JoSAE | 0.3.0 | jpeg | 0.1-10 |
jqr | 1.2.3 | jquerylib | 0.1.4 |
jrt | 1.1.2 | jsonify | 1.2.2 |
jsonlite | 1.8.7 | juicyjuice | 0.1.0 |
JuliaConnectoR | 1.1.1 | JWileymisc | 1.4.0 |
kableExtra | 1.3.4 | kalmanfilter | 2.0.1 |
kappaSize | 1.2 | KEGGREST | 1.40.0 |
Kendall | 2.2.1 | kequate | 1.6.4 |
keras | 2.13.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-32 | keyring | 1.3.1 |
KFAS | 1.5.1 | klaR | 1.7-2 |
km.ci | 0.5-6 | knitr | 1.44 |
koRpus | 0.13-8 | ks | 1.14.1 |
kst | 0.5-4 | kutils | 1.72 |
kza | 4.1.0.1 | labdsv | 2.1-0 |
label.switching | 1.8 | labeling | 0.4.3 |
labelled | 2.12.0 | laeken | 0.5.2 |
LaF | 0.8.4 | lagged | 0.3.2 |
Lahman | 11.0-0 | LAM | 0.6-19 |
lambda.r | 1.2.4 | lamW | 2.2.0 |
landsat | 1.1.2 | landscapemetrics | 1.5.7 |
languageR | 1.5.0 | LaplacesDemon | 16.1.6 |
lars | 1.3 | lassoshooting | 0.1.5-1.1 |
latdiag | 0.3 | later | 1.3.1 |
latex2exp | 0.9.6 | latticeExtra | 0.6-30 |
LatticeKrig | 8.4 | lava | 1.7.2.1 |
lavaan | 0.6-16 | lavaan.survey | 1.1.3.1 |
LAWBL | 1.5.0 | lazyeval | 0.2.2 |
lbfgsb3c | 2020-3.2 | LCAvarsel | 1.1 |
lcda | 0.3.1 | lctools | 0.2-8 |
lda | 1.4.2 | ldat | 0.3.3 |
ldbounds | 2.0.1 | leafem | 0.2.0 |
leaflet | 2.2.0 | leaflet.extras | 1.0.0 |
leaflet.providers | 1.13.0 | leafpm | 0.1.0 |
leafpop | 0.1.0 | leafsync | 0.1.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
learnr | 0.11.4 | legion | 0.1.2 |
lfactors | 1.0.4 | lgarch | 0.6-2 |
lgr | 0.4.4 | lgtdl | 1.1.5 |
lhs | 1.1.6 | libcoin | 1.0-9 |
libgeos | 3.11.1-1 | lidR | 4.0.4 |
lifecontingencies | 1.3.11 | lifecycle | 1.0.3 |
LIM | 1.4.7 | limma | 3.56.1 |
limSolve | 1.5.6 | linelist | 0.0.1 |
link2GI | 0.5-2 | linpk | 1.1.2 |
linprog | 0.9-4 | lintools | 0.1.7 |
lisrelToR | 0.1.5 | listenv | 0.9.0 |
liteq | 1.1.0 | lme4 | 1.1-34 |
lmerTest | 3.1-3 | lmForc | 0.1.0 |
lmm | 1.4 | lmodel2 | 1.7-3 |
lmom | 3.0 | Lmoments | 1.3-1 |
lmtest | 0.9-40 | LNIRT | 0.5.1 |
locfit | 1.5-9.8 | locits | 1.7.7 |
locpol | 0.8.0 | logging | 0.10-108 |
logitnorm | 0.8.38 | logspline | 2.1.20 |
lokern | 1.1-10 | lomb | 2.1.0 |
longCatEDA | 0.31 | longitudinalData | 2.4.5 |
longmemo | 1.1-2 | LongMemoryTS | 0.1.0 |
longpower | 1.0.24 | loo | 2.6.0 |
lordif | 0.3-3 | lotri | 0.4.3 |
lpacf | 1.0.1 | lpSolve | 5.6.19 |
lpSolveAPI | 5.5.2.0-17.10 | lsa | 0.73.3 |
lsl | 0.5.6 | lslx | 0.6.11 |
LSMonteCarlo | 1.0 | LSMRealOptions | 0.2.1 |
LSTS | 2.1 | LSWPlib | 0.1.0 |
ltm | 1.2-0 | ltsa | 1.4.6 |
lubridate | 1.9.2 | luz | 0.4.0 |
lvec | 0.2.5 | lvnet | 0.3.5 |
lvplot | 0.2.1 | lwgeom | 0.2-13 |
m5 | 0.1.1 | maat | 1.1.0 |
magclass | 6.10.0 | magic | 1.6-1 |
magick | 2.7.5 | magrittr | 2.0.3 |
MAMS | 2.0.1 | manipulate | 1.0.1 |
manipulateWidget | 0.11.1 | MAPA | 2.0.5 |
mapdata | 2.3.1 | mapdeck | 0.3.4 |
mapedit | 0.6.0 | mapme.biodiversity | 0.4.0 |
mapmisc | 2.0.0 | mapproj | 1.2.11 |
maps | 3.4.1 | mapsf | 0.7.1 |
mapSpain | 0.8.0 | maptools | 1.1-8 |
maptree | 1.4-8 | mapview | 2.11.0 |
mAr | 1.2-0 | mar1s | 2.1.1 |
marcher | 0.0-2 | markdown | 1.8 |
markovchain | 0.9.4 | MarkowitzR | 1.0.3 |
marmap | 1.0.10 | MARSS | 3.11.8 |
MassSpecWavelet | 1.66.0 | Matching | 4.10-14 |
MatchIt | 4.5.4 | MatchThem | 1.1.0 |
mathjaxr | 1.6-0 | matlabr | 1.5.2 |
matrixcalc | 1.0-6 | MatrixExtra | 0.1.14 |
MatrixModels | 0.5-2 | matrixStats | 1.0.0 |
maxLik | 1.5-2 | MaxPro | 4.1-2 |
MBA | 0.1-0 | MBHdesign | 2.2.2 |
mboost | 2.9-8 | mbsts | 3.0 |
mc2d | 0.2.0 | MCAvariants | 2.6.1 |
mclcar | 0.2-0 | mclust | 6.0.0 |
mcmc | 0.9-7 | mcmcensemble | 3.0.0 |
MCMCglmm | 2.35 | MCMCpack | 1.6-3 |
mcmcse | 1.5-0 | MCMCvis | 0.16.2 |
mco | 1.15.6 | Mcomp | 2.8 |
mcompanion | 0.5.7 | MCPMod | 1.0-10.1 |
mdftracks | 0.2.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.6 | memoise | 2.0.1 |
MEMSS | 0.9-3 | memuse | 4.2-3 |
meta | 6.5-0 | metadat | 1.2-0 |
metafor | 4.2-0 | metaplot | 0.8.3 |
metaSEM | 1.3.1 | metasens | 1.5-2 |
Metrics | 0.1.4 | metRology | 0.9-28-1 |
mFilter | 0.1-5 | mgm | 1.2-14 |
mi | 1.1 | mice | 3.16.0 |
miceadds | 3.16-18 | micEconIndex | 0.1-8 |
microbenchmark | 1.4.10 | micromap | 1.9.7 |
microsamplingDesign | 1.0.8 | MicSim | 2.0.0 |
MIIVsem | 0.5.8 | mime | 0.12 |
mind | 1.1.0 | MinEDfind | 0.1.3 |
minimalRSD | 1.0.0 | minimaxdesign | 0.1.5 |
miniUI | 0.1.1.1 | minpack.lm | 1.2-4 |
minqa | 1.2.6 | mipfp | 3.2.1 |
mirt | 1.40 | mirtCAT | 1.12.2 |
misc3d | 0.9-1 | miscTools | 0.6-28 |
missForest | 1.5 | missMDA | 1.18 |
mitml | 0.4-5 | mitools | 2.4 |
mix | 1.0-11 | mixAR | 0.22.7 |
MixedPsy | 1.1.0 | mixexp | 1.2.7 |
mixOmics | 6.24.0 | mixsqp | 0.3-48 |
mixtools | 2.0.0 | mkssd | 1.2 |
mlapi | 0.1.1 | mlbench | 2.1-3.1 |
MLCIRTwithin | 2.1.1 | MLDS | 0.5.1 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlogitBMA | 0.1-7 | mlr | 2.19.1 |
mlr3 | 0.16.1 | mlr3measures | 0.5.0 |
mlr3misc | 0.12.0 | mlr3spatiotempcv | 2.1.0 |
mlrMBO | 1.1.5.1 | mlVAR | 0.5.1 |
mma | 10.7-1 | mmand | 1.6.3 |
mmrm | 0.2.2 | mnormt | 2.1.1 |
MNP | 3.1-4 | modeldata | 1.2.0 |
modelenv | 0.1.1 | ModelMap | 3.4.0.4 |
ModelMetrics | 1.2.2.2 | modelr | 0.1.11 |
modeltime | 1.2.8 | modeltime.ensemble | 1.0.3 |
modeltime.resample | 0.2.3 | modeltools | 0.2-23 |
moderndive | 0.5.5 | modules | 0.12.0 |
mokken | 3.1.0 | mombf | 3.4.1 |
moments | 0.14.1 | momentuHMM | 1.5.5 |
mondate | 0.10.02 | mongolite | 2.7.2 |
mongopipe | 0.1.1 | monmlp | 1.1.5 |
monobin | 0.2.4 | Morpho | 2.11 |
mosaic | 1.8.4.2 | mosaicCore | 0.9.2.1 |
mosaicData | 0.20.3 | mousetrap | 3.2.1 |
move | 4.2.4 | movecost | 2.0 |
moveHMM | 1.9 | moveWindSpeed | 0.2.4 |
movMF | 0.2-7 | MPDiR | 0.2 |
MplusAutomation | 1.1.0 | mpmi | 0.43.2.1 |
mpt | 0.8-0 | MPTinR | 1.14.1 |
MPV | 1.63 | mratios | 1.4.2 |
mrf | 0.1.6 | mrgsolve | 1.1.1 |
mritc | 0.5-3 | mscstexta4r | 0.1.2 |
mscsweblm4r | 0.1.2 | MSGARCH | 2.51 |
msm | 1.7 | 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-9 | multDM | 1.1.4 |
multicool | 0.1-12 | MultiGlarmaVarSel | 1.0 |
MultiLCIRT | 2.11 | MultipleBubbles | 0.2.0 |
multiplex | 3.1.0 | multipol | 1.0-9 |
multitaper | 1.0-17 | multiway | 1.0-6 |
multtest | 2.56.0 | MuMIn | 1.47.5 |
munfold | 0.3.5 | munsell | 0.5.0 |
mvLSW | 1.2.5 | mvMORPH | 1.1.7 |
mvnfast | 0.2.8 | mvnormtest | 0.1-9 |
mvQuad | 1.0-6 | mvtnorm | 1.2-3 |
mvtsplot | 1.0-4 | mxkssd | 1.2 |
n1qn1 | 6.0.1-11 | nabor | 0.5.0 |
NADA | 1.6-1.1 | NAEPirtparams | 1.0.0 |
NAEPprimer | 1.0.1 | nanoarrow | 0.2.0.2 |
nanonext | 0.10.0 | nanotime | 0.3.7 |
nardl | 0.1.6 | natserv | 1.0.0 |
nbTransmission | 1.1.2 | ncappc | 0.3.0 |
ncar | 0.4.5 | ncdf4 | 1.21 |
ncf | 1.3-2 | ncvreg | 3.14.1 |
nets | 0.9.1 | network | 1.18.1 |
NetworkChange | 0.8 | NetworkComparisonTest | 2.2.2 |
networkD3 | 0.4 | networkDynamic | 0.11.3 |
networkLite | 1.0.5 | NetworkRiskMeasures | 0.1.4 |
NetworkToolbox | 1.4.2 | networktools | 1.5.1 |
networktree | 1.0.1 | neuralnet | 1.44.2 |
neurobase | 1.32.3 | neuroim | 0.0.6 |
neuRosim | 0.2-13 | nFactors | 2.4.1.1 |
NFCP | 1.2.1 | ngspatial | 1.2-2 |
nhanesA | 0.7.4 | nifti.io | 1.0.0 |
nimble | 1.0.1 | NISTnls | 0.9-13 |
NlcOptim | 0.6 | nleqslv | 3.3.4 |
NlinTS | 1.4.5 | nlmeVPC | 2.6 |
nlmixr2 | 2.0.9 | nlmixr2data | 2.0.8 |
nlmixr2est | 2.1.6 | nlmixr2extra | 2.0.8 |
nlmixr2plot | 2.0.7 | nlmixr2rpt | 0.2.0 |
nloptr | 2.0.3 | NLP | 0.2-1 |
nls2 | 0.3-3 | nlsem | 0.8-1 |
nlstools | 2.0-1 | nlts | 1.0-2 |
NMOF | 2.7-1 | nmw | 0.1.5 |
nnfor | 0.9.8 | nnls | 1.5 |
nodbi | 0.9.6 | nomisr | 0.4.7 |
NonCompart | 0.6.0 | nonlinearTseries | 0.2.12 |
nonmemica | 1.0.7 | nonnest2 | 0.5-6 |
norm | 1.0-11.1 | nortest | 1.0-4 |
nosoi | 1.1.0 | np | 0.60-17 |
NPflow | 0.13.3 | npi | 0.2.0 |
nppbib | 1.2-0 | nsarfima | 0.2.0.0 |
nsprcomp | 0.5.1-2 | numbers | 0.8-5 |
numDeriv | 2016.8-1.1 | nvmix | 0.1-0 |
o2geosocial | 1.1.0 | oai | 0.4.0 |
OasisR | 3.1.0 | obAnalytics | 0.1.1 |
OBsMD | 6.1 | occ | 1.1 |
oce | 1.8-1 | octopus | 0.3.0 |
odbc | 1.3.5 | odin | 1.2.4 |
odpc | 2.0.5 | odr | 1.4.4 |
OECD | 0.2.5 | officer | 0.6.2 |
ohoegdm | 0.1.0 | onbrand | 1.0.3 |
onlineforecast | 1.0.1 | opdisDownsampling | 0.8.2 |
OPDOE | 1.0-10 | openair | 2.17-0 |
openEBGM | 0.9.1 | openintro | 2.4.0 |
OpenMx | 2.21.8 | openNLP | 0.2-7 |
openNLPdata | 1.5.3-4 | openssl | 2.1.0 |
OpenStreetMap | 0.3.4 | openxlsx | 4.2.5.2 |
opera | 1.2.0 | operator.tools | 1.6.3 |
optextras | 2019-12.4 | OptGS | 1.1.1 |
OptHedging | 1.0 | OptimalDesign | 1.0.1 |
OptimaRegion | 1.2 | optimParallel | 1.0-2 |
optimx | 2023-8.13 | OptionPricing | 0.1.1 |
optiscale | 1.2.2 | ORCME | 2.0.2 |
ordinal | 2022.11-16 | ore | 1.7.3.1 |
ORIClust | 1.0-2 | oro.dicom | 0.5.3 |
oro.nifti | 0.11.4 | oro.pet | 0.2.7 |
orthopolynom | 1.0-6.1 | osDesign | 1.8 |
osmdata | 0.2.5 | osmextract | 0.5.0 |
osqp | 0.6.0.8 | otsad | 0.2.0 |
otsfeatures | 1.0.0 | outbreaker2 | 1.1.3 |
outbreaks | 1.9.0 | outliers | 0.15 |
overlapping | 2.1 | ows4R | 0.3-6 |
pa | 1.2-4 | packcircles | 0.3.6 |
padr | 0.6.2 | PairedData | 1.1.1 |
pairwise | 0.6.1-0 | paleoTS | 0.5.3 |
palmerpenguins | 0.1.1 | pan | 1.9 |
pander | 0.6.5 | panelaggregation | 0.1.1 |
paradox | 0.11.1 | parallelly | 1.36.0 |
parallelMap | 1.5.1 | ParamHelpers | 1.14.1 |
paran | 1.5.2 | parma | 1.7 |
parsedate | 1.3.1 | parsnip | 1.1.1 |
partitions | 1.10-7 | partsm | 1.1-3 |
party | 1.3-13 | partykit | 1.2-20 |
pastecs | 1.3.21 | patchwork | 1.1.3 |
paws | 0.4.0 | paws.analytics | 0.4.0 |
paws.application.integration | 0.4.0 | paws.common | 0.6.0 |
paws.compute | 0.4.0 | paws.cost.management | 0.4.0 |
paws.customer.engagement | 0.4.0 | paws.database | 0.4.0 |
paws.developer.tools | 0.4.0 | paws.end.user.computing | 0.4.0 |
paws.machine.learning | 0.4.0 | paws.management | 0.4.0 |
paws.networking | 0.4.0 | paws.security.identity | 0.4.0 |
paws.storage | 0.4.0 | pbapply | 1.7-2 |
pbdZMQ | 0.3-10 | PBIBD | 1.3 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
pbmcapply | 1.5.1 | pbo | 1.3.5 |
pbs | 1.1 | PBSddesolve | 1.13.3 |
PBSmapping | 2.73.2 | PBSmodelling | 2.68.8 |
pbv | 0.4-22 | PCA4TS | 0.1 |
pcaMethods | 1.92.0 | pcaPP | 2.0-3 |
pcdpca | 0.4 | pcFactorStan | 1.5.4 |
pcIRT | 0.2.4 | PCMRS | 0.1-4 |
pcts | 0.15.5 | pdc | 1.0.3 |
pdfCluster | 1.0-4 | pdfetch | 0.2.8 |
pdftools | 3.3.3 | pdist | 1.2.1 |
pedigree | 1.4.2 | PeerPerformance | 2.2.5 |
penalized | 0.9-52 | performance | 0.10.5 |
PerformanceAnalytics | 2.0.4 | permute | 0.9-7 |
PGM2 | 1.0-1 | ph2bayes | 0.0.2 |
ph2bye | 0.1.4 | phangorn | 2.11.1 |
pheatmap | 1.0.12 | phonics | 1.3.10 |
phyloseq | 1.44.0 | phytools | 1.9-16 |
picasso | 1.3.1 | pid | 0.50 |
piecewiseSEM | 2.3.0 | pillar | 1.9.0 |
pingr | 2.0.2 | pins | 1.2.2 |
pipe.design | 0.5.1 | pipeR | 0.6.1.3 |
pixmap | 0.4-12 | PK | 1.3-6 |
PKconverter | 1.5 | pkdata | 0.1.0 |
pkgbuild | 1.4.2 | pkgconfig | 2.0.3 |
pkgdown | 2.0.7 | pkgfilecache | 0.1.4 |
pkgload | 1.3.2.1 | PKNCA | 0.10.2 |
pkr | 0.1.3 | pks | 0.6-0 |
PlackettLuce | 0.4.3 | plgp | 1.1-12 |
plink | 1.5-1 | plm | 2.6-3 |
PLMIX | 2.1.1 | PLmixed | 0.1.7 |
plogr | 0.2.0 | plot3D | 1.4 |
plotdap | 1.0.2 | plotly | 4.10.2 |
plotMCMC | 2.0.1 | plotmo | 3.6.2 |
plotrix | 3.8-2 | plotSEMM | 2.4 |
pls | 2.8-2 | plyr | 1.8.8 |
pmr | 1.2.5.1 | pmxTools | 1.3 |
png | 0.1-8 | pointblank | 0.11.4 |
poisbinom | 1.0.1 | poLCA | 1.6.0.1 |
polspline | 1.1.23 | polyclip | 1.10-4 |
polycor | 0.8-1 | polyCub | 0.8.1 |
polynom | 1.4-1 | PolynomF | 2.0-5 |
polyreg | 0.8.0 | pomp | 5.4 |
pool | 1.0.1 | PopED | 0.6.0 |
popEpi | 0.4.11 | PortfolioOptim | 1.1.1 |
PortRisk | 1.1.0 | posterior | 1.4.1 |
powerbydesign | 1.0.5 | powerGWASinteraction | 1.1.3 |
powerSurvEpi | 0.1.3 | PowerTOST | 1.5-4 |
PowerUpR | 1.1.0 | PP | 0.6.3-11 |
ppcor | 1.1 | PPRL | 0.3.8 |
pps | 1.0 | prabclus | 2.3-2 |
pracma | 2.4.2 | PracTools | 1.4 |
praise | 1.0.0 | PreciseSums | 0.6 |
prefmod | 0.8-35 | PReMiuM | 3.2.10 |
preprocessCore | 1.62.1 | PresenceAbsence | 1.1.11 |
presize | 0.3.7 | prettydoc | 0.4.1 |
prettyGraphs | 2.1.6 | prettymapr | 0.2.4 |
prettyunits | 1.1.1 | prevalence | 0.4.1 |
prevR | 5.0.0 | princurve | 2.1.6 |
ProbitSpatial | 1.1 | pROC | 1.18.4 |
processx | 3.8.2 | prodlim | 2023.08.28 |
ProfessR | 2.4-3 | profileModel | 0.6.1 |
profileR | 0.3-5 | profoc | 1.2.1 |
profvis | 0.3.8 | progress | 1.2.2 |
progressr | 0.14.0 | PROJ | 0.4.0 |
proj4 | 1.0-13 | promises | 1.2.1 |
prophet | 1.0 | PROsetta | 0.4.1 |
proto | 1.0.0 | protolite | 2.2.0 |
proxy | 0.4-27 | PRROC | 1.3.1 |
ps | 1.7.5 | pscl | 1.5.5.1 |
psd | 2.1.1 | PSF | 0.5 |
pso | 1.0.4 | pspline | 1.0-19 |
psy | 1.2 | psych | 2.3.6 |
psychomix | 1.1-8 | psychonetrics | 0.11 |
psychotools | 0.7-3 | psychotree | 0.16-0 |
psychTools | 2.3.6 | psyphy | 0.3 |
PTAk | 2.0.0 | PTSR | 0.1.2 |
ptw | 1.9-16 | purrr | 1.0.2 |
pwr | 1.3-0 | PwrGSD | 2.3.6 |
pwrRasch | 0.1-2 | pxweb | 0.16.2 |
PxWebApiData | 0.8.0 | qap | 0.1-2 |
Qardl | 0.1.1 | qcv | 1.0 |
qdap | 2.4.6 | qdapDictionaries | 1.0.7 |
qdapRegex | 0.7.5 | qdapTools | 1.3.7 |
qgam | 1.3.4 | qgisprocess | 0.1.0 |
qgraph | 1.9.5 | qicharts2 | 0.7.4 |
qlcal | 0.0.7 | qMRI | 1.2.6 |
qpdf | 1.3.2 | qpNCA | 1.1.6 |
qqconf | 1.3.2 | qqplotr | 0.0.6 |
qrmdata | 2022-05-31-1 | qrmtools | 0.0-16 |
qrng | 0.0-9 | qs | 0.25.5 |
qtl | 1.60 | quadprog | 1.5-8 |
qualmap | 0.2.1 | Quandl | 2.11.0 |
quanteda | 3.3.1 | quantification | 0.2.0 |
quantmod | 0.4.25 | quantreg | 5.97 |
quantspec | 1.2-3 | questionr | 0.7.8 |
QuickJSR | 1.0.6 | quickpsy | 0.1.5.1 |
qvalue | 2.32.0 | qvcalc | 1.0.3 |
R.cache | 0.16.0 | R.devices | 2.17.1 |
R.filesets | 2.15.0 | R.huge | 0.10.0 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.25.0 | R.rsp | 0.45.0 |
R.utils | 2.12.2 | R0 | 1.2-10 |
R2BEAT | 1.0.5 | r2d3 | 0.2.6 |
R2HTML | 2.3.3 | R2jags | 0.7-1 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R4CouchDB | 0.7.5 | R6 | 2.5.1 |
radarchart | 0.3.1 | ragg | 1.2.5 |
ragtop | 1.1.1 | rainbow | 3.7 |
rakeR | 0.2.1 | rAmCharts | 2.1.15 |
ramcmc | 0.1.2 | ramps | 0.6.18 |
randomForest | 4.7-1.1 | randomForestSRC | 3.2.2 |
randomizeR | 3.0.1 | randomLCA | 1.1-3 |
randtoolbox | 2.0.4 | ranger | 0.15.1 |
rankdist | 1.1.4 | RANN | 2.6.1 |
rapidjsonr | 1.2.0 | RApiSerialize | 0.1.2 |
rappdirs | 0.3.3 | rARPACK | 0.11-0 |
RaschSampler | 0.8-9 | raster | 3.6-23 |
rasterImage | 0.4.0 | rasterVis | 0.51.5 |
ratelimitr | 0.4.1 | raveio | 0.9.0 |
ravetools | 0.1.2 | Rbeast | 0.9.9 |
rbenchmark | 1.0.0 | RBGL | 1.76.0 |
rbibutils | 2.2.15 | Rblpapi | 0.3.14 |
rbmi | 1.2.3 | rcartocolor | 2.1.1 |
Rcatch22 | 0.2.1 | rcdd | 1.5-2 |
Rcgmin | 2022-4.30 | rcmdcheck | 1.4.0 |
Rcmdr | 2.9-0 | RcmdrMisc | 2.9-0 |
RcmdrPlugin.DoE | 0.12-4 | RcmdrPlugin.temis | 0.7.10 |
RColorBrewer | 1.1-3 | Rcpp | 1.0.11 |
RcppAnnoy | 0.0.21 | RcppArmadillo | 0.12.6.4.0 |
RcppCCTZ | 0.2.12 | RcppDate | 0.0.3 |
RcppDE | 0.1.7 | RcppDist | 0.1.1 |
RcppEigen | 0.3.3.9.3 | RcppGSL | 0.3.13 |
RcppParallel | 5.1.7 | RcppProgress | 0.4.2 |
RcppQuantuccia | 0.1.1 | RcppRedis | 0.2.4 |
RcppRoll | 0.3.0 | RcppSimdJson | 0.1.10 |
RcppThread | 2.1.5 | RcppTN | 0.2-2 |
RcppTOML | 0.2.2 | RcppZiggurat | 0.1.6 |
Rcsdp | 0.1.57.5 | RCurl | 1.98-1.12 |
RCzechia | 1.11.1 | rdbnomics | 0.6.4 |
rdhs | 0.7.6 | Rdpack | 2.5 |
Rdsdp | 1.0.5.2.1 | re2 | 0.1.2 |
reactable | 0.4.4 | reactR | 0.4.4 |
readabs | 0.4.14 | readODS | 2.1.0 |
readr | 2.1.4 | readsdmx | 0.3.1 |
readstata13 | 0.10.1 | readxl | 1.4.3 |
REBayes | 2.54 | recipes | 1.0.8 |
reclin | 0.1.2 | recmap | 1.0.15 |
RecordLinkage | 0.4-12.4 | redux | 1.1.3 |
RefManageR | 1.4.0 | refugees | 2022.12.1 |
regions | 0.1.8 | registry | 0.5-1 |
regress | 1.3-21 | RegSDC | 0.7.0 |
regsem | 1.9.5 | regspec | 2.6 |
regtools | 1.7.0 | reinsureR | 0.1.0 |
relations | 0.6-13 | relimp | 1.0-5 |
rematch | 2.0.0 | rematch2 | 2.1.2 |
remotes | 2.4.2.1 | rentrez | 1.2.3 |
renv | 1.0.2 | replicateBE | 1.1.3 |
reportr | 1.3.0 | repr | 1.1.6 |
reprex | 2.0.2 | reproj | 0.4.3 |
REQS | 0.8-13 | rerddap | 1.0.4 |
rerddapXtracto | 1.1.5 | resampledata | 0.3.1 |
resde | 1.1 | reshape | 0.8.9 |
reshape2 | 1.4.4 | restimizeapi | 1.0.0 |
reticulate | 1.32.0 | retry | 0.1.0 |
revdbayes | 1.5.2 | rex | 1.2.1 |
Rfast | 2.0.8 | Rfast2 | 0.1.5.1 |
rflexscan | 1.1.0 | rgbif | 3.7.8 |
rgdal | 1.6-7 | rgee | 1.1.5 |
rgen | 0.0.1 | RGENERATE | 1.3.7 |
rgenoud | 5.9-0.3 | rgeoda | 0.0.10-4 |
rgeos | 0.6-4 | rgl | 1.2.1 |
Rglpk | 0.6-5 | RgoogleMaps | 1.4.5.3 |
RGraphics | 3.0-2 | Rgraphviz | 2.44.0 |
rgrass | 0.3-9 | rgrass7 | 0.2-13 |
RGreenplum | 0.1.2 | rgugik | 0.4.0 |
RH2 | 0.2.4 | rhandsontable | 0.3.8 |
rhdf5 | 2.44.0 | rhdf5filters | 1.12.1 |
Rhdf5lib | 1.22.0 | rhosa | 0.2.0 |
RhpcBLASctl | 0.23-42 | rib | 0.19.0 |
riingo | 0.3.1 | Rilostat | 1.1.8 |
ring | 1.0.4 | RInside | 0.2.18 |
rintrojs | 0.3.2 | rio | 1.0.0 |
Rirt | 0.0.2 | Risk | 1.0 |
riskCommunicator | 1.0.1 | riskParityPortfolio | 0.2.2 |
RiskPortfolios | 2.1.7 | riskSimul | 0.1.1 |
ritis | 1.0.0 | riverdist | 0.16.1 |
rjags | 4-14 | rJava | 1.0-6 |
RJDBC | 0.2-10 | RJDemetra | 0.2.3 |
rje | 1.12.1 | rjson | 0.2.21 |
RJSONIO | 1.3-1.8 | rjstat | 0.4.3 |
RKEA | 0.0-6 | RKEAjars | 5.0-4 |
rlang | 1.1.1 | rlas | 1.6.3 |
rle | 0.9.2 | rlecuyer | 0.3-7 |
Rlgt | 0.2-1 | Rlibeemd | 1.4.3 |
rLiDAR | 0.1.5 | rlist | 0.4.6.2 |
RM2006 | 0.1.1 | rmapshaper | 0.5.0 |
RMariaDB | 1.2.2 | rmarkdown | 2.24 |
rmatio | 0.18.0 | RMAWGEN | 1.3.7 |
rmeta | 3.0 | rmgarch | 1.3-9 |
Rmpfr | 0.9-3 | rms | 6.7-1 |
rmutil | 1.1.10 | RMySQL | 0.10.25 |
rnaturalearth | 0.3.4 | rnaturalearthdata | 0.1.0 |
rncl | 0.8.7 | RND | 1.2 |
rneos | 0.4-0 | RNetCDF | 2.6-2 |
rngtools | 1.5.2 | rngWELL | 0.10-9 |
RNifti | 1.5.0 | RNiftyReg | 2.8.1 |
rnn | 1.9.0 | robfilter | 4.1.3 |
RobKF | 1.0.2 | RoBMA | 3.1.0 |
robsurvey | 0.5-2 | robustbase | 0.99-0 |
rockchalk | 1.8.157 | rocker | 0.3.1 |
ROCR | 1.0-11 | RODBC | 1.3-21 |
rodd | 0.2-1 | ROI | 1.0-1 |
roll | 1.1.6 | Rook | 1.2 |
ROOPSD | 0.3.9 | rootSolve | 1.8.2.3 |
roptim | 0.1.6 | rosm | 0.3.0 |
rotl | 3.1.0 | roxygen2 | 7.2.3 |
rpact | 3.4.0 | rpanel | 1.1-5.2 |
rpart.plot | 3.1.1 | rpf | 1.0.14 |
RPMG | 2.2-7 | rpms | 0.5.1 |
rpostgis | 1.4.4 | RPostgres | 1.4.5 |
RPostgreSQL | 0.7-5 | RPPairwiseDesign | 1.0 |
RPresto | 1.4.5 | rprojroot | 2.0.3 |
RPyGeo | 1.0.0 | rpymat | 0.1.7 |
RQuantLib | 0.4.17 | rrcov | 1.7-4 |
rredlist | 0.7.1 | RRreg | 0.7.5 |
RRTCS | 0.0.4 | rrum | 0.2.0 |
rsae | 0.2 | RSAGA | 1.4.0 |
Rsagacmd | 0.4.1 | rsample | 1.2.0 |
rsdmx | 0.6-3 | RSEIS | 4.1-6 |
rsem | 0.5.1 | Rsfar | 0.0.1 |
RSGHB | 1.2.2 | rsm | 2.10.3 |
Rsolnp | 1.16 | rspa | 0.2.8 |
rsparse | 0.5.1 | RSpectra | 0.16-1 |
RSQLite | 2.3.1 | Rssa | 1.0.5 |
rstac | 0.9.2-4 | rstan | 2.26.23 |
rstanarm | 2.26.1 | rstantools | 2.3.1.1 |
rstatix | 0.7.2 | rstiefel | 1.0.1 |
rstudioapi | 0.15.0 | rsurface | 1.1.0 |
RSurveillance | 0.2.1 | Rsymphony | 0.1-33 |
rTensor | 1.4.8 | rtf | 0.4-14.1 |
RTFA | 0.1.0 | rticles | 0.25 |
RTL | 1.3.3 | rtop | 0.6-6 |
RTransferEntropy | 0.2.21 | rtrim | 2.1.1 |
rts | 1.1-8 | Rtsne | 0.16 |
Rttf2pt1 | 1.3.12 | rucrdtw | 0.1.5 |
rugarch | 1.4-9 | ruimtehol | 0.3.1 |
rules | 1.0.2 | RUnit | 0.4.32 |
runjags | 2.2.2-1.1 | runner | 0.4.3 |
runstats | 1.1.0 | Runuran | 0.38 |
rust | 1.4.1 | Rvcg | 0.22.1 |
rversions | 2.1.2 | rvest | 1.0.3 |
Rvmmin | 2018-4.17.1 | Rwave | 2.6-5 |
RWeka | 0.4-46 | RWekajars | 3.9.3-2 |
rworldmap | 1.3-6 | rworldxtra | 1.01 |
rxode2 | 2.0.13 | rxode2et | 2.0.10 |
rxode2ll | 2.0.11 | rxode2parse | 2.0.16 |
rxode2random | 2.0.11 | s2 | 1.1.4 |
S4Vectors | 0.38.1 | sae | 1.3 |
saeRobust | 0.4.0 | saeSim | 0.11.0 |
SAEval | 1.0.0 | samadb | 0.2.6 |
samplesize | 0.2-4 | sampling | 2.9 |
SamplingBigData | 1.0.0 | samplingbook | 1.2.4 |
SamplingStrata | 1.5-4 | samplingVarEst | 1.5 |
sandwich | 3.0-2 | sarima | 0.9.1 |
sass | 0.4.7 | satellite | 1.0.4 |
sazedR | 2.0.2 | sbgcop | 0.980 |
scales | 1.2.1 | scalreg | 1.0.1 |
scam | 1.2-14 | scatterplot3d | 0.3-44 |
scoringRules | 1.1.1 | scoringutils | 1.1.0 |
ScottKnott | 1.3-2 | scs | 3.2.4 |
SDaA | 0.1-5 | sdcHierarchies | 0.20.0 |
sdcMicro | 5.7.5 | sdcSpatial | 0.5.2 |
sdcTable | 0.32.6 | sde | 2.0.18 |
sdmTMB | 0.3.0 | sealasso | 0.1-3 |
seas | 0.6-0 | season | 0.3.15 |
seasonal | 1.9.0 | seasonalview | 0.3 |
seastests | 0.15.4 | seer | 1.1.8 |
seg | 0.5-7 | segmented | 1.6-4 |
selectr | 0.4-2 | sem | 3.1-15 |
semds | 0.9-6 | SemiPar | 1.0-4.2 |
semPlot | 1.1.6 | SEMsens | 1.5.5 |
semTools | 0.5-6 | semtree | 0.9.18 |
sendmailR | 1.4-0 | SensoMineR | 1.26 |
sentencepiece | 0.2.3 | separationplot | 1.4 |
seqDesign | 1.2 | seqinr | 4.2-30 |
seriation | 1.5.1 | servr | 0.27 |
sessioninfo | 1.2.2 | setartree | 0.2.1 |
setRNG | 2022.4-1 | sets | 1.0-24 |
settings | 0.2.7 | sf | 1.0-14 |
sFFLHD | 0.1.2 | sfheaders | 0.4.3 |
sfsmisc | 1.1-16 | sftime | 0.2-0 |
sgd | 1.1.1 | sgeostat | 1.0-27 |
shades | 1.4.0 | shape | 1.4.6 |
shapefiles | 0.7.2 | shapes | 1.2.7 |
SharpeR | 1.3.0 | shiny | 1.7.5 |
shiny.semantic | 0.4.3 | shinyAce | 0.4.2 |
shinyalert | 3.0.0 | shinybrms | 1.8.0 |
shinyBS | 0.61.1 | shinycssloaders | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.0 |
shinyjqui | 0.4.1 | shinyjs | 2.1.0 |
shinystan | 2.6.0 | shinytest | 1.5.3 |
shinythemes | 1.2.0 | shinyTree | 0.3.1 |
shinyWidgets | 0.8.0 | showimage | 1.0.0 |
sigmoid | 1.4.0 | signal | 0.7-7 |
signs | 0.1.2 | Sim.DiffProc | 4.8 |
simcdm | 0.1.1 | SimComp | 3.3 |
simex | 1.8 | simfinapi | 0.2.4 |
simglm | 0.8.9 | SimilarityMeasures | 1.4 |
SimInf | 9.5.0 | simPop | 2.1.2 |
simputation | 0.2.8 | simrel | 2.1.0 |
SiMRiv | 1.0.6 | simsem | 0.5-16 |
SimSurvey | 0.1.5 | singleRcapture | 0.2.0 |
siplab | 1.6 | sirt | 3.13-228 |
sitmo | 2.0.2 | sits | 1.4.1 |
SkewHyperbolic | 0.4-0 | skmeans | 0.2-15 |
skpr | 1.4.0 | slam | 0.1-50 |
SLBDD | 0.0.4 | sleekts | 1.0.2 |
Sleuth2 | 2.0-5 | Sleuth3 | 1.0-3 |
SLHD | 2.1-1 | slider | 0.3.0 |
slippymath | 0.3.1 | sm | 2.2-5.7.1 |
smacof | 2.1-5 | smacpod | 2.5 |
SmallCountRounding | 1.0.3 | smam | 0.7.0 |
smerc | 1.8.2 | smoof | 1.6.0.3 |
smooth | 3.2.1 | smoother | 1.1 |
smoots | 1.1.4 | smovie | 1.1.5 |
SMPracticals | 1.4-3 | sms | 2.3.1 |
sn | 2.1.1 | sna | 2.7-1 |
snakecase | 0.11.1 | snow | 0.4-4 |
SnowballC | 0.7.1 | snowfall | 1.84-6.2 |
SOAs | 1.4 | soc.ca | 0.8.0 |
socialmixr | 0.2.0 | sodium | 1.2.1 |
sofa | 0.4.0 | solaR | 0.46 |
solrium | 1.2.0 | sorvi | 0.8.21 |
sourcetools | 0.1.7-1 | sp | 2.0-0 |
sp23design | 0.9-1 | spacetime | 1.3-0 |
spam | 2.9-1 | spaMM | 4.4.0 |
spant | 2.15.0 | sparklyr | 1.8.3 |
sparr | 2.3-10 | sparseDFM | 1.0 |
SparseFactorAnalysis | 1.0 | sparseinv | 0.1.3 |
SparseM | 1.81 | 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.1 | spatialreg | 1.2-9 |
spatialsample | 0.4.0 | SpatialTools | 1.0.5 |
spatialwidget | 0.2.3 | spatstat | 3.0-6 |
spatstat.data | 3.0-1 | spatstat.explore | 3.2-3 |
spatstat.geom | 3.2-5 | spatstat.linnet | 3.1-1 |
spatstat.model | 3.2-6 | spatstat.random | 3.1-6 |
spatstat.sparse | 3.0-2 | spatstat.utils | 3.0-3 |
spBayes | 0.4-6 | spBayesSurv | 1.1.7 |
Spbsampling | 1.3.5 | spd | 2.0-1 |
spData | 2.3.0 | spdep | 1.2-8 |
spec | 0.1.7 | spectral | 2.0 |
speff2trial | 1.0.5 | sperrorest | 3.0.5 |
sphet | 2.0 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-19 | spINAR | 0.1.0 |
spind | 2.2.1 | splancs | 2.01-44 |
splines2 | 0.5.1 | splm | 1.6-3 |
spmodel | 0.4.0 | spmoran | 0.2.2.9 |
SpotSampling | 0.1.0 | spselect | 0.0.1 |
spsur | 1.0.2.5 | spsurvey | 5.5.0 |
spTimer | 3.3.2 | sptotal | 1.0.1 |
sqldf | 0.4-11 | SqlRender | 1.15.2 |
SQRL | 1.0.1 | SQUAREM | 2021.1 |
srvyr | 1.2.0 | ssanv | 1.1 |
SSBtools | 1.4.8 | ssgraph | 1.15 |
ssize.fdr | 1.3 | ssizeRNA | 1.3.2 |
ssMousetrack | 1.1.6 | SSN | 1.1.17 |
stabledist | 0.7-1 | stabs | 0.6-4 |
stampr | 0.3.0 | StanHeaders | 2.26.28 |
starma | 1.3 | stars | 0.6-4 |
STARTS | 1.3-8 | startupmsg | 0.9.6 |
statcanR | 0.2.6 | statcodelists | 0.9.2 |
statebins | 1.4.0 | statespacer | 0.5.0 |
StatMatch | 1.4.1 | statmod | 1.5.0 |
statnet.common | 4.9.0 | StatRank | 0.0.6 |
steadyICA | 1.0 | STFTS | 0.1.0 |
stinepack | 1.4 | stlplus | 0.5.1 |
stm | 1.3.6.1 | STMedianPolish | 0.2 |
stochvol | 3.2.1 | stockAnalyst | 1.0.1 |
stopwords | 2.3 | storr | 1.2.5 |
stR | 0.6 | strand | 0.2.0 |
stratification | 2.2-7 | stringdist | 0.9.10 |
stringfish | 0.15.8 | stringi | 1.7.12 |
stringr | 1.5.0 | strucchange | 1.5-3 |
strucchangeRcpp | 1.5-3-1.0.4 | StructuralDecompose | 0.1.1 |
styler | 1.10.2 | subplex | 1.8 |
subscore | 3.3 | sufficientForecasting | 0.1.0 |
sugrrants | 0.2.8 | SuperLearner | 2.0-28.1 |
superml | 0.5.6 | SuppDists | 1.1-9.7 |
support.CEs | 0.6-0 | survcomp | 1.50.0 |
surveillance | 1.21.1 | survey | 4.2-1 |
surveybootstrap | 0.0.3 | surveydata | 0.2.7 |
surveyoutliers | 0.1 | surveyplanning | 4.0 |
surveysd | 1.3.1 | survivalROC | 1.0.3.1 |
survPresmooth | 1.1-11 | svars | 1.3.11 |
svd | 0.5.4.1 | SVDNF | 0.1.8 |
svglite | 2.1.1 | svrep | 0.6.3 |
svs | 3.0.0 | svUnit | 1.0.6 |
swephR | 0.3.1 | swirl | 2.4.5 |
swirlify | 0.5.3 | sylly | 0.1-6 |
sym.arma | 1.0 | symengine | 0.2.2 |
symmoments | 1.2.1 | synthACS | 1.7.1 |
synthesis | 1.2.3 | synthpop | 1.8-0 |
sys | 3.4.2 | systemfit | 1.1-30 |
systemfonts | 1.0.4 | tables | 0.9.17 |
tabnet | 0.4.0 | TAM | 4.1-4 |
TAQMNGR | 2018.5-1 | targets | 1.3.0 |
tau | 0.0-24 | taxize | 0.9.100 |
tbrf | 0.1.5 | tcltk2 | 1.2-11 |
Tcomp | 1.0.1 | tdigest | 0.4.1 |
TeachingDemos | 2.12 | telegram.bot | 3.0.0 |
tempdisagg | 1.1.1 | tensor | 1.5 |
tensorA | 0.36.2 | tensorflow | 2.13.0 |
TensorPreAve | 1.1.0 | tensorTS | 1.0.1 |
TEQR | 6.0-0 | tergm | 4.2.0 |
terra | 1.7-46 | tesseract | 5.1.0 |
testcorr | 0.2.0 | TestDataImputation | 2.3 |
TestDesign | 1.5.1 | tester | 0.1.7 |
testit | 0.13 | TestScorer | 1.7.2 |
testthat | 3.1.10 | TexExamRandomizer | 1.2.3 |
texreg | 1.38.6 | text2vec | 0.6.3 |
textcat | 1.0-8 | textir | 2.0-5 |
textplot | 0.2.2 | textrank | 0.3.1 |
textreuse | 0.1.5 | textshaping | 0.3.6 |
textTinyR | 1.1.7 | tfarima | 0.3.2 |
tfautograph | 0.3.2 | tfdatasets | 2.9.0 |
tfio | 0.4.1 | tfplot | 2021.6-1 |
tframe | 2015.12-1.1 | tfruns | 1.5.1 |
tgp | 2.4-21 | TH.data | 1.1-2 |
theft | 0.5.3 | 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.3 |
tibble | 3.2.1 | tibbletime | 0.1.8 |
tictoc | 1.2 | Tides | 2.1 |
tidyBdE | 0.3.4 | tidycensus | 1.4.4 |
tidygraph | 1.2.3 | tidyLPA | 1.1.0 |
tidymodels | 1.1.1 | tidyquant | 1.0.7 |
tidyqwi | 0.1.2 | tidyr | 1.3.0 |
tidyselect | 1.2.0 | tidytext | 0.4.1 |
tidytree | 0.4.5 | tidyverse | 2.0.0 |
tiff | 0.1-11 | tigris | 2.0.3 |
timechange | 0.2.0 | timeDate | 4022.108 |
timeSeries | 4031.107 | timeseriesdb | 1.0.0-1.1.2 |
timetk | 2.8.3 | timsac | 1.3.8-2 |
tinytex | 0.46 | tis | 1.39 |
tkrplot | 0.0-27 | tm | 0.7-11 |
tm.plugin.alceste | 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.6 | tmvnsim | 1.0-2 |
tmvtnorm | 1.5 | tokenizers | 0.3.0 |
tokenizers.bpe | 0.1.3 | toOrdinal | 1.3-0.0 |
topicdoc | 0.1.1 | topicmodels | 0.2-14 |
topicmodels.etm | 0.1.0 | torch | 0.11.0 |
torchaudio | 0.3.1.9000 | torchdatasets | 0.3.0 |
torchvision | 0.5.1 | tpr | 0.3-3 |
trackdem | 0.6 | trackdf | 0.3.2 |
trackeR | 1.5.2 | trackeRapp | 1.2 |
TrackReconstruction | 1.3 | tractor.base | 3.3.5.1 |
traipse | 0.3.0 | trajectories | 0.2-7 |
trajr | 1.5.0 | TransPhylo | 1.4.5 |
trapezoid | 2.0-2 | tree | 1.0-43 |
TreeBUGS | 1.5.0 | treeio | 1.24.0 |
treemap | 2.4-4 | trend | 1.1.5 |
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 | TSA | 1.3.1 |
TSANN | 0.1.0 | tsbox | 0.4.1 |
tsBSS | 1.0.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 |
TSEntropies | 0.9 | tseries | 0.10-54 |
tseriesChaos | 0.1-13.1 | tseriesEntropy | 0.7-2 |
tseriesTARMA | 0.3-2 | tsfeatures | 1.1.1 |
tsfknn | 0.5.2 | tsibble | 1.1.3 |
tsibbledata | 0.4.1 | tsibbletalk | 0.1.0 |
tsintermittent | 1.10 | tsiR | 0.4.3 |
TSLSTM | 0.1.0 | tsModel | 0.6-1 |
tsoutliers | 0.6-8 | 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.3 | tswge | 2.1.0 |
TTR | 0.24.3 | tune | 1.1.2 |
turner | 0.1.7 | tvm | 0.5.2 |
tweedie | 2.3.5 | tweenr | 2.0.2 |
twosamples | 2.0.1 | tzdb | 0.4.0 |
ubiquity | 2.0.0 | ucminf | 1.2.0 |
UComp | 4.0.2 | udpipe | 0.8.11 |
ufRisk | 1.0.6 | ugatsdb | 0.2.3 |
uGMAR | 3.4.5 | UnifiedDoseFinding | 0.1.10 |
units | 0.8-4 | univOutl | 0.4 |
unrepx | 1.0-2 | uptasticsearch | 0.4.0 |
urca | 1.3-3 | urlchecker | 1.0.1 |
urltools | 1.7.3 | uroot | 2.1-2 |
usdata | 0.2.0 | usethis | 2.2.2 |
usmap | 0.6.2 | usmapdata | 0.1.0 |
utf8 | 1.2.3 | uuid | 1.1-1 |
uwot | 0.1.16 | V8 | 4.3.3 |
validate | 1.1.3 | validatetools | 0.5.0 |
vapour | 0.9.5 | VAR.etp | 1.1 |
VARDetect | 0.1.6 | vardiag | 0.2-1 |
vardpoor | 0.20.1 | VaRES | 1.0.2 |
vars | 1.5-9 | VARshrink | 0.3.1 |
varycoef | 0.3.4 | VCA | 1.4.5 |
vcd | 1.4-11 | vcdExtra | 0.8-5 |
vctrs | 0.6.3 | vdg | 1.2.2 |
VedicDateTime | 0.1.7 | vegan | 2.6-4 |
VennDiagram | 1.7.3 | venneuler | 1.1-3 |
VGAM | 1.1-8 | VGAMdata | 1.1-8 |
vglmer | 1.0.3 | VIM | 6.2.2 |
VineCopula | 2.5.0 | viridis | 0.6.4 |
viridisLite | 0.4.2 | visNetwork | 2.1.2 |
visualize | 4.4.0 | volatilityTrader | 1.0.1 |
vpc | 1.2.2 | vroom | 1.6.3 |
vrtest | 1.2 | waiter | 0.2.5 |
waldo | 0.5.1 | warp | 0.2.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.2 | wCorr | 1.9.8 |
WDI | 2.7.8 | webdriver | 1.0.6 |
webshot | 0.5.5 | WeightIt | 0.14.2 |
weights | 1.0.4 | WeMix | 4.0.0 |
whisker | 0.4.1 | whitebox | 2.3.1 |
widgetframe | 0.3.1 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | WikipediR | 1.5.0 |
wikitaxa | 0.4.0 | wildlifeDI | 0.5.0 |
wINEQ | 1.2.0 | withr | 2.5.0 |
wk | 0.8.0 | wktmo | 1.0.5 |
wkutils | 0.1.3 | wnl | 0.7.3 |
wooldridge | 1.4-3 | word2vec | 0.3.4 |
wordcloud | 2.6 | wordnet | 0.1-16 |
workflows | 1.1.3 | workflowsets | 1.0.1 |
worrms | 0.4.3 | wpp2017 | 1.2-3 |
wpp2019 | 1.1-1 | WrightMap | 1.3 |
writexl | 1.4.2 | wrswoR | 1.1.1 |
x12 | 1.10.3 | x13binary | 1.1.57-4 |
XBRL | 0.99.19.1 | xfun | 0.40 |
xgboost | 1.7.5.1 | xgxr | 1.1.2 |
XLConnect | 1.0.7 | xlsx | 0.6.5 |
xlsxjars | 0.6.1 | XML | 3.99-0.14 |
xml2 | 1.3.5 | xopen | 1.0.0 |
xplain | 0.2.2 | xpose | 0.4.17 |
xpose.nlmixr2 | 0.4.0 | xpose4 | 4.7.2 |
xtable | 1.8-4 | xts | 0.13.1 |
XVector | 0.40.0 | xxIRT | 2.1.2 |
yaImpute | 1.0-33 | yaml | 2.3.7 |
yardstick | 1.2.0 | yesno | 0.1.2 |
yuima | 1.15.22 | yulab.utils | 0.0.9 |
zeallot | 0.1.0 | zic | 0.9.1 |
ZIM | 1.1.0 | ZINARp | 0.1.0 |
zip | 2.3.0 | zipfR | 0.6-70 |
zlibbioc | 1.46.0 | zoo | 1.8-12 |
ZRA | 0.2 |
RStudio Server
R: 4.3.1
rstudio-server: 2023.06.2+561
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
Applied security patching; Updated R packages to newer versions; Added R packages for spatial and spatiotemporal analysis; Updated rstudio-server to 2023.06.2+561
R: 4.3.1; rstudio-server: 2023.06.2+561; 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, 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, and natural language processing.
R packages (2900)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.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 |
actuar | 3.3-2 | ada | 2.0-5 |
adagio | 0.8.5 | adaptivetau | 2.2-3 |
adaptMCMC | 1.4 | adaptr | 1.3.2 |
adaptsmoFMRI | 1.2 | adaptTest | 1.1 |
ade4 | 1.7-22 | ade4TkGUI | 0.3-1 |
adegenet | 2.1.10 | adegraphics | 1.0-18 |
adehabitatHR | 0.4.21 | adehabitatHS | 0.3.17 |
adehabitatLT | 0.3.27 | adehabitatMA | 0.3.16 |
ADGofTest | 0.3 | adimpro | 0.9.6 |
admisc | 0.33 | AdMit | 2.1.9 |
ads | 1.5-9 | AER | 1.2-10 |
affy | 1.78.0 | affyio | 1.70.0 |
africamonitor | 0.2.3 | agricolae | 1.3-6 |
agricolaeplotr | 0.3.1 | agridat | 1.22 |
airports | 0.1.0 | akima | 0.6-3.4 |
alabama | 2023.1.0 | AlgDesign | 1.2.1 |
almanac | 1.0.0 | alphavantager | 0.1.3 |
ALTopt | 0.1.2 | Amelia | 1.8.1 |
AmericanCallOpt | 0.95 | ammiBayes | 1.0-1 |
AMR | 2.1.0 | AnaCoDa | 0.1.4.4 |
anacor | 1.1-4 | anesrake | 0.80 |
animation | 2.7 | anipaths | 0.10.2 |
AnnotationDbi | 1.62.1 | anytime | 0.3.9 |
aod | 1.3.2 | aoos | 0.5.0 |
AovBay | 0.1.0 | ape | 5.7-1 |
APFr | 1.0.2 | aplot | 0.2.1 |
approximator | 1.2-8 | ARCensReg | 3.0.1 |
ArchaeoChron | 0.1 | ArchaeoPhases | 1.8 |
ArDec | 2.1-1 | ARDL | 0.2.4 |
ardl.nardl | 1.2.3 | areal | 0.1.8 |
arfima | 1.8-1 | arm | 1.13-1 |
aroma.apd | 0.7.0 | arrangements | 1.1.9 |
arrow | 13.0.0 | ars | 0.6 |
ascii | 2.4 | asd | 2.2 |
ash | 1.0-15 | ashr | 2.2-63 |
askpass | 1.2.0 | aspect | 1.0-6 |
ASSA | 2.0 | assertthat | 0.2.1 |
AssetCorr | 1.0.4 | astsa | 2.0 |
asymmetry | 2.0.4 | ata | 1.1.1 |
aTSA | 3.1.2 | attempt | 0.3.1 |
attention | 0.3.0 | AUC | 0.3.2 |
audio | 0.1-11 | autoFRK | 1.4.3 |
autoimage | 2.2.3 | automap | 1.1-9 |
autostsm | 3.1.0 | av | 0.8.4 |
aweek | 1.0.3 | aws | 2.5-3 |
awsMethods | 1.1-1 | BACCO | 2.1-0 |
BACCT | 1.0 | backports | 1.4.1 |
backtest | 0.3-4 | baggr | 0.7.6 |
bain | 0.2.9 | BalancedSampling | 1.6.3 |
BaM | 1.0.3 | bama | 1.3.0 |
bamdit | 3.4.0 | bamlss | 1.2-1 |
bang | 1.0.2 | BANOVA | 1.2.1 |
BART | 2.9.4 | bartBMA | 1.0 |
bartCause | 1.0-6 | bartMachine | 1.3.4.1 |
bartMachineJARs | 1.2.1 | BAS | 1.6.4 |
basad | 0.3.0 | base64 | 2.0.1 |
base64enc | 0.1-3 | base64url | 1.4 |
basicMCMCplots | 0.2.7 | BaSkePro | 0.1.0 |
BASS | 1.3.1 | BatchExperiments | 1.4.3 |
BatchJobs | 1.9 | batchmeans | 1.0-4 |
baycn | 1.2.0 | bayefdr | 0.2.1 |
bayes4psy | 1.2.11 | 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-8 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.2.0 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.4 |
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.1-1 | bayeslincom | 1.3.0 |
BayesLN | 0.2.8 | BayesLogit | 2.1 |
bayesloglin | 1.0.1 | bayeslongitudinal | 0.1.0 |
bayesm | 3.1-5 | BayesMallows | 1.3.2 |
BayesMassBal | 1.1.0 | bayesmeta | 3.3 |
bayesmix | 0.7-6 | bayesnec | 2.1.0.3 |
bayesplot | 1.10.0 | bayesQR | 2.4 |
BayesSAE | 1.0-2 | bayestestR | 0.13.1 |
bayesTFR | 7.4-0 | BayesTools | 0.2.16 |
BayesTree | 0.3-1.4 | BayesVarSel | 2.2.5 |
BayesX | 0.3-2 | BAYSTAR | 0.2-10 |
BB | 2019.10-1 | BBmisc | 1.13 |
BCBCSF | 1.0-1 | BCC1997 | 0.1.1 |
BCE | 2.2.0 | Bchron | 4.7.6 |
bcp | 4.0.3 | bcpa | 1.3.2 |
bcrm | 0.5.4 | BDgraph | 2.72 |
bdsmatrix | 1.3-6 | BE | 0.2.4 |
beadarray | 2.50.0 | BeadDataPackR | 1.52.0 |
bearishTrader | 1.0.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.6 |
Bessel | 0.6-0 | BEST | 0.5.4 |
BetaBit | 2.2 | betafunctions | 1.8.1 |
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.0.0 |
BGGM | 2.0.4 | BGLR | 1.1.0 |
BGVAR | 2.5.2 | BH | 1.81.0-1 |
BHH2 | 2016.05.31 | BiasedUrn | 2.0.11 |
bibtex | 0.5.1 | bidask | 1.0.0 |
BIFIEsurvey | 3.4-15 | biganalytics | 1.1.21 |
bigD | 0.2.0 | biglm | 0.9-2.1 |
bigmemory | 4.6.1 | bigmemory.sri | 0.1.6 |
bigrquery | 1.4.2 | bigsplines | 1.1-1 |
bigtime | 0.2.3 | BigVAR | 1.1.2 |
bindr | 0.1.1 | bindrcpp | 0.2.2 |
binom | 1.1-1.1 | binomSamSize | 0.1-5 |
binr | 1.1.1 | binseqtest | 1.0.4 |
Biobase | 2.60.0 | BiocGenerics | 0.46.0 |
BiocManager | 1.30.22 | BiocParallel | 1.34.1 |
BiocVersion | 3.17.1 | bioinactivation | 1.2.3 |
biomformat | 1.28.0 | bioOED | 0.2.1 |
Biostrings | 2.68.0 | birtr | 1.0.0 |
bit | 4.0.5 | bit64 | 4.0.5 |
bitops | 1.0-7 | biwavelet | 0.20.21 |
bizdays | 1.0.13 | bkmr | 0.2.2 |
blaise | 1.3.10 | blastula | 0.3.3 |
blavaan | 0.5-1 | BLModel | 1.0.2 |
blob | 1.2.4 | blocklength | 0.1.5 |
blockrand | 1.5 | blocksdesign | 4.9 |
blockTools | 0.6.4 | BLR | 1.6 |
BMA | 3.18.17 | bmgarch | 2.0.0 |
bmixture | 1.7 | BMS | 0.3.5 |
BMTAR | 0.1.1 | bnlearn | 4.9 |
BNPTSclust | 2.0 | BNSP | 2.2.3 |
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.35 |
Boom | 0.9.11 | BoomSpikeSlab | 1.2.5 |
bootnet | 1.5.5 | BootPR | 1.0 |
bootstrap | 2019.6 | bootUR | 1.0.2 |
bpca | 1.3-4 | bqtl | 1.0-35 |
BradleyTerry2 | 1.1-2 | brainR | 1.6.0 |
breakfast | 2.3 | brew | 1.0-8 |
brglm | 0.7.2 | brglm2 | 0.9 |
bridgesampling | 1.1-2 | brio | 1.1.3 |
brms | 2.20.3 | Brobdingnag | 1.2-9 |
broman | 0.80 | broom | 1.0.5 |
bsam | 1.1.3 | bsamGP | 1.2.4 |
bslib | 0.5.1 | BsMD | 2023.707 |
bspec | 1.6 | bspmma | 0.1-2 |
bssm | 2.0.1 | BSSprep | 0.1 |
bsts | 0.9.9 | bsvars | 1.0.0 |
BTLLasso | 0.1-11 | BTM | 0.3.7 |
bullishTrader | 1.0.1 | bundesbank | 0.1-9 |
BurStFin | 1.3 | BurStMisc | 1.1 |
BVAR | 1.0.4 | bvartools | 0.2.3 |
ca | 0.71.1 | cabootcrs | 2.1.0 |
cachem | 1.0.8 | cacIRT | 1.4 |
CADFtest | 0.3-3 | caffsim | 0.2.2 |
Cairo | 1.6-1 | calculus | 1.0.1 |
CalibrateSSB | 1.3.0 | calibrator | 1.2-8 |
callr | 3.7.3 | cancensus | 0.5.5 |
candisc | 0.8-6 | CANSIM2R | 1.14.1 |
car | 3.1-2 | CARBayes | 6.0 |
CARBayesdata | 3.0 | CARBayesST | 3.3.1 |
carData | 3.0-5 | caret | 6.0-94 |
carfima | 2.0.2 | caribou | 1.1-1 |
cartogram | 0.3.0 | caTools | 1.18.2 |
catR | 3.17 | causact | 0.5.3 |
CausalImpact | 1.3.0 | CAvariants | 5.9 |
cbsodataR | 0.5.1 | cccp | 0.2-9 |
cdlTools | 0.15 | CDM | 8.2-6 |
cds | 1.0.3 | CellNOptR | 1.46.0 |
cellranger | 1.1.0 | censusapi | 0.8.0 |
CFtime | 1.0.0 | ChainLadder | 0.2.18 |
chandwich | 1.1.6 | changepoint | 2.2.4 |
changepoint.geo | 1.0.1 | changepoint.np | 1.0.5 |
checkLuhn | 1.1.0 | checkmate | 2.2.0 |
cherryblossom | 0.1.0 | chilemapas | 0.3.0 |
chk | 0.9.0 | choiceDes | 0.9-3 |
CholWishart | 1.1.2 | chron | 2.3-61 |
cifti | 0.4.5 | cinterpolate | 1.0.0 |
CircSpaceTime | 0.9.0 | CircStats | 0.2-6 |
circular | 0.5-0 | ciTools | 0.6.1 |
classInt | 0.4-10 | cli | 3.6.1 |
clime | 0.5.0 | clinDR | 2.4.1 |
clinfun | 1.1.3 | clinicalsignificance | 1.2.0 |
clinPK | 0.11.1 | clinsig | 1.2 |
clipr | 0.8.0 | clisymbols | 1.2.0 |
clock | 0.7.0 | clue | 0.3-64 |
clustDRM | 0.1-0 | clusterGeneration | 1.3.8 |
clusterPower | 0.7.0 | ClustVarLV | 2.1.1 |
clv | 0.3-2.3 | cmaes | 1.0-12 |
CMLS | 1.0-1 | cmm | 1.0 |
cmocean | 0.3-1 | cmprsk | 2.2-11 |
cmrutils | 1.3.1 | cNORM | 3.0.3 |
CNORode | 1.42.0 | coalescentMCMC | 0.4-4 |
coalitions | 0.6.24 | coarseDataTools | 0.6-6 |
cobalt | 4.5.1 | coconots | 1.1.2 |
cocor | 1.1-4 | cocorresp | 0.4-3 |
cocron | 1.0-1 | coda | 0.19-4 |
coin | 1.4-2 | cointReg | 0.2.0 |
collapse | 1.9.6 | collapsibleTree | 0.1.7 |
colorRamps | 2.3.1 | colorspace | 2.1-0 |
colourpicker | 1.3.0 | colourvalues | 0.3.9 |
combinat | 0.0-8 | CombinS | 1.1-1 |
CommonJavaJars | 1.0-6 | commonmark | 1.9.0 |
compare | 0.2-6 | CompQuadForm | 1.4.3 |
conditionz | 0.1.0 | conf.design | 2.0.0 |
config | 0.3.2 | conflicted | 1.2.0 |
conquer | 1.3.3 | conquestr | 1.0.7 |
contactdata | 1.0.0 | contfrac | 1.1-12 |
convey | 0.2.5 | cops | 1.3-1 |
copula | 1.1-2 | copulaData | 0.0-1 |
cordillera | 1.0-0 | 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 |
costat | 2.4.1 | countrycode | 1.5.0 |
COVID19 | 3.0.3 | covid19.analytics | 2.1.3.1 |
covid19br | 0.1.6 | 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.1 | CPBayes | 1.1.0 |
cpk | 1.3-1 | cplm | 0.7-11 |
cpp11 | 0.4.6 | crawl | 2.3.0 |
crayon | 1.5.2 | credentials | 2.0.1 |
credule | 0.1.4 | crfsuite | 0.4.1 |
CRM | 1.2.4 | crmPack | 1.0.3 |
crossdes | 1.1-2 | Crossover | 0.1-21 |
crosstalk | 1.2.0 | crs | 0.15-37 |
crseEventStudy | 1.2.2 | crsmeta | 0.3.0 |
crul | 1.4.0 | cSEM | 0.5.0 |
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.1.0 | ctrdata | 1.15.1 |
CTT | 2.3.3 | CTTShiny | 0.1 |
ctv | 0.9-5 | cubature | 2.1.0 |
cubble | 0.3.0 | Cubist | 0.4.2.1 |
curl | 5.0.2 | cvar | 0.5 |
cvAUC | 1.1.4 | CVST | 0.2-3 |
CVXR | 1.0-11 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | dae | 3.2.19 |
daewr | 1.2-11 | dagitty | 0.3-1 |
DAKS | 2.1-3 | DALEX | 2.4.3 |
data.table | 1.14.8 | data.tree | 1.0.0 |
DatabaseConnector | 6.2.4 | DataExplorer | 0.8.2 |
datapasta | 3.1.0 | dataseries | 0.2.0 |
datawizard | 0.9.0 | date | 1.2-42 |
datetimeutils | 0.6-1 | dbarts | 0.9-23 |
DBI | 1.1.3 | DBItest | 1.7.3 |
dbmss | 2.8-2 | dbparser | 2.0.1 |
dbplyr | 2.3.3 | dbscan | 1.1-11 |
dbx | 0.2.8 | DChaos | 0.1-7 |
dclone | 2.3-2 | DCluster | 0.2-9 |
DClusterm | 1.0-1 | dcov | 0.1.1 |
dCovTS | 1.3 | dcurver | 0.9.2 |
dde | 1.0.4 | deBInfer | 0.4.4 |
debugme | 1.1.0 | deducorrect | 1.3.7 |
deductive | 1.0.0 | deldir | 1.0-9 |
deltaPlotR | 1.6 | dendextend | 1.17.1 |
densEstBayes | 1.0-2.2 | DEoptim | 2.2-8 |
DEoptimR | 1.1-2 | depmix | 0.9.16 |
depmixS4 | 1.5-0 | DepthProc | 2.1.5 |
Deriv | 4.1.3 | derivmkts | 0.2.5 |
desc | 1.4.2 | DescTools | 0.99.50 |
designmatch | 0.5.4 | desirability | 2.1 |
deSolve | 1.38 | desplot | 1.10 |
devtools | 2.4.5 | dexter | 1.2.2 |
dextergui | 0.2.6 | dexterMST | 0.9.3 |
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 | DHARMa | 0.4.6 |
DHS.rates | 0.9.1 | diagis | 0.2.3 |
diagonals | 6.4.0 | diagram | 1.6.5 |
DiagrammeR | 1.0.10 | dials | 1.2.0 |
DiceDesign | 1.9 | DiceEval | 1.5.1 |
DiceKriging | 1.6.0 | DiceView | 2.1-0 |
dichromat | 2.0-0.1 | DICOMread | 0.0.0.3 |
DIFboost | 0.3 | 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.33 |
DIMORA | 0.3.5 | dimRed | 0.2.6 |
dina | 2.0.0 | dipsaus | 0.2.8 |
diptest | 0.76-0 | Dire | 2.1.1 |
DIRECT | 1.1.0 | directlabels | 2023.8.25 |
dirichletprocess | 0.4.2 | disaggR | 1.0.5 |
discretization | 1.0-1.1 | DistatisR | 1.1.1 |
distcrete | 1.0.3 | distfree.cr | 1.5.1 |
distr | 2.9.2 | distrEx | 2.9.0 |
distributional | 0.3.2 | distributions3 | 0.2.1 |
DistributionUtils | 0.6-1 | distrom | 1.0.1 |
distrTeach | 2.9.0 | dittodb | 0.1.7 |
divest | 0.10.3 | divseg | 0.0.5 |
dLagM | 1.1.12 | dlm | 1.1-6 |
dlnm | 2.4.7 | dlstats | 0.1.7 |
dmri.tracking | 0.1.0 | doBy | 4.6.18 |
doc2vec | 0.2.0 | docopulae | 0.4.0 |
DoE.base | 1.2-2 | DoE.MIParray | 1.0-1 |
DoE.wrapper | 0.12 | doMC | 1.3.8 |
doParallel | 1.0.17 | doRNG | 1.8.6 |
DoseFinding | 1.0-5 | doSNOW | 1.0.20 |
DOSPortfolio | 0.1.0 | dotCall64 | 1.0-2 |
Dowd | 0.12 | downlit | 0.4.3 |
downloader | 0.4 | dparser | 1.3.1-10 |
dplyr | 1.1.3 | dqrng | 0.3.1 |
dr4pl | 2.0.0 | DriftBurstHypothesis | 0.4.0.1 |
DRR | 0.0.4 | dsa | 1.0.12 |
DSAIDE | 0.9.6 | dse | 2020.2-1 |
DSI | 1.5.0 | DSL | 0.1-7 |
DT | 0.29 | DTAT | 0.3-6 |
DtD | 0.2.2 | dti | 1.5.4 |
dtplyr | 1.3.1 | DTSg | 1.1.1 |
dtt | 0.1-2 | dtts | 0.1.1 |
dtw | 1.23-1 | dtwclust | 5.5.12 |
duckdb | 0.8.1-3 | dygraphs | 1.1.1.6 |
dyn | 0.2-9.6 | dynamicTreeCut | 1.63-1 |
dynaTree | 1.2-16 | dynlm | 0.3-6 |
e1071 | 1.7-13 | earlyR | 0.0.5 |
earth | 5.3.2 | 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.3 |
ecb | 0.4.2 | Ecdat | 0.4-2 |
ecespa | 1.1-17 | Ecfun | 0.3-2 |
ecm | 7.0.0 | ecodist | 2.0.9 |
ECOSolveR | 0.5.5 | ecp | 3.1.5 |
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.1 | eegkit | 1.0-4 |
eegkitdata | 1.1 | EFAutilities | 2.1.3 |
effects | 4.2-2 | EGAnet | 2.0.1 |
egg | 0.4.5 | egor | 1.23.3 |
eha | 2.11.0 | eigenmodel | 1.11 |
elastic | 1.2.0 | elasticnet | 1.3 |
elevatr | 0.99.0 | ellipse | 0.5.0 |
ellipsis | 0.3.2 | elliptic | 1.4-0 |
EMbC | 2.0.3 | EMD | 1.5.9 |
emdi | 2.2.0 | emg | 1.0.9 |
emmeans | 1.8.8 | emulator | 1.2-21 |
encode | 0.3.6 | endtoend | 2.29 |
energy | 1.7-11 | EngrExpt | 0.1-8 |
enrichwith | 0.3.1 | ensembleBMA | 5.1.8 |
EntropyMCMC | 1.0.4 | EnvStats | 2.8.1 |
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.8 | epiR | 2.0.63 |
EpiReport | 1.0.2 | episensr | 1.3.0 |
epitools | 0.5-10.1 | epitrix | 0.4.0 |
equate | 2.0.8 | equateIRT | 2.3.0 |
equateMultiple | 0.1.1 | equivalence | 0.7.2 |
era | 0.4.1 | ergm | 4.5.0 |
ergm.ego | 1.1.0 | ergm.multi | 0.2.0 |
eRm | 1.0-2 | errorlocate | 1.1 |
errum | 0.0.3 | esaBcv | 1.2.1.1 |
esemifar | 1.0.1 | ESG | 1.3 |
EstCRM | 1.6 | estimability | 1.4.1 |
EstimateGroupNetwork | 0.3.1 | ETLUtils | 1.5 |
etm | 1.1.1 | etrm | 1.0.1 |
etrunct | 0.1 | eurostat | 3.8.2 |
evaluate | 0.21 | evd | 2.3-6.1 |
evgam | 1.0.0 | ewoc | 0.3.0 |
Exact | 3.2 | exactextractr | 0.9.1 |
exams | 2.4-0 | ExceedanceTools | 1.3.6 |
exdex | 1.2.2 | experiment | 1.2.1 |
expint | 0.1-8 | expm | 0.999-7 |
ExPosition | 2.8.23 | expsmooth | 2.3 |
extraDistr | 1.9.1 | extrafont | 0.19 |
extrafontdb | 1.0 | extraoperators | 0.1.1 |
eyelinker | 0.2.1 | ez | 4.4-0 |
fable | 0.3.3 | fable.prophet | 0.1.0 |
fabletools | 0.3.3 | FactoClass | 1.2.8 |
FactoMineR | 2.8 | factorstochvol | 1.0.2 |
fanplot | 4.0.0 | fansi | 1.0.4 |
FAOSTAT | 2.3.0 | faoutlier | 0.7.6 |
faraway | 1.0.8 | farver | 2.1.1 |
fAssets | 4023.85 | fastcluster | 1.2.3 |
fastDummies | 1.7.3 | fastGHQuad | 1.0.1 |
fastICA | 1.2-3 | fastLink | 0.6.0 |
fastmap | 1.1.1 | fastmatch | 1.1-4 |
fasttime | 1.1-0 | FatTailsR | 1.8-0 |
FAVAR | 0.1.3 | fBasics | 4022.94 |
fBonds | 3042.78 | fCopulae | 4022.85 |
fda | 6.1.4 | fdaACF | 1.0.0 |
fdapace | 0.5.9 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
feasts | 0.3.1 | fechner | 1.0-3 |
FeedbackTS | 1.5 | fExtremes | 4021.83 |
ff | 4.0.9 | FFD | 1.0-9 |
fftwtools | 0.9-11 | fGarch | 4022.89 |
fHMM | 1.1.0 | FielDHub | 1.3.1 |
fields | 15.2 | filearray | 0.1.6 |
filehash | 2.4-5 | filehashSQLite | 0.2-6 |
filelock | 1.0.2 | filematrix | 1.3 |
fImport | 4021.86 | FinancialMath | 0.1.1 |
FinAsym | 1.0 | finnts | 0.3.0 |
finreportr | 1.0.4 | FinTS | 0.4-6 |
fishMod | 0.29 | fitdistrplus | 1.1-11 |
FKF | 0.2.4 | FKF.SP | 0.3.1 |
flashClust | 1.01-2 | flexclust | 1.4-1 |
flexdashboard | 0.6.2 | flexmix | 2.3-19 |
FlexScan | 0.2.2 | flextable | 0.9.3 |
float | 0.3-1 | fma | 2.5 |
FMC | 1.0.1 | fmdates | 0.1.4 |
FME | 1.3.6.3 | fmri | 1.9.12 |
fMultivar | 4031.84 | fnets | 0.1.5 |
FNN | 1.1.3.2 | fNonlinear | 4021.81 |
fontawesome | 0.5.2 | fontBitstreamVera | 0.1.1 |
fontLiberation | 0.1.0 | fontquiver | 0.2.1 |
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 |
fourPNO | 1.1.0 | fpc | 2.2-10 |
fpcb | 0.1.0 | fPortfolio | 4023.84 |
fpp2 | 2.5 | fpp3 | 0.5 |
fracdiff | 1.5-2 | Frames2 | 0.2.1 |
FRAPO | 0.4-1 | fredr | 2.1.0 |
freecurrencyapi | 0.1.0 | freesurferformats | 0.1.17 |
fRegression | 4021.83 | frenchdata | 0.2.0 |
freqdom | 2.0.3 | freqdom.fda | 1.0.1 |
fresh | 0.2.0 | FrF2 | 2.3-2 |
FrF2.catlg128 | 1.2-2 | FRK | 2.1.5 |
fs | 1.6.3 | fslr | 2.25.2 |
fsMTS | 0.1.7 | fst | 0.9.8 |
fstcore | 0.9.14 | fTrading | 3042.79 |
ftsa | 6.3 | functional | 0.6 |
funtimes | 9.1 | furrr | 0.3.1 |
futile.logger | 1.4.3 | futile.options | 1.0.1 |
future | 1.33.0 | future.apply | 1.11.0 |
fuzzyjoin | 0.1.6 | GA | 3.2.3 |
GAD | 1.1.1 | gam | 1.22-2 |
gamlr | 1.13-8 | gamlss | 5.4-18 |
gamlss.data | 6.0-2 | gamlss.dist | 6.1-1 |
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.5.1 | gaussquad | 1.0-3 |
GaussSuppression | 0.7.0 | gbm | 2.1.8.1 |
gbutils | 0.5 | gclus | 1.3.2 |
GCPM | 1.2.2 | gdalcubes | 0.6.4 |
gdalraster | 1.4.0 | gdalUtilities | 1.2.5 |
gdata | 2.19.0 | GDINA | 2.9.4 |
gdistance | 1.6.4 | gdpc | 1.1.3 |
gdtools | 0.3.3 | gear | 0.3.4 |
gee | 4.13-25 | geepack | 1.3.9 |
genalg | 0.2.1 | gender | 0.6.0 |
GeneralizedHyperbolic | 0.8-4 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | GenomeInfoDb | 1.36.0 |
GenomeInfoDbData | 1.2.10 | GenomicRanges | 1.52.0 |
GenSA | 1.1.10 | 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.3 |
geometry | 0.4.7 | geonames | 0.999 |
geonapi | 0.7 | GEOquery | 2.68.0 |
geoR | 1.9-2 | geos | 0.2.3 |
geosapi | 0.6-6 | geosphere | 1.5-18 |
geospt | 1.0-2 | geostan | 0.5.1 |
geouy | 0.2.8 | gert | 1.9.3 |
getPass | 0.2-2 | gets | 0.37 |
GetTDData | 1.5.4 | gfonts | 0.2.0 |
GGally | 2.1.2 | ggalt | 0.4.0 |
gganimate | 1.0.8 | ggdag | 0.2.10 |
ggdemetra | 0.2.5 | ggdendro | 0.1.23 |
ggdist | 3.3.0 | ggExtra | 0.10.1 |
ggforce | 0.4.1 | ggformula | 0.10.4 |
ggfun | 0.1.3 | gghalves | 0.1.4 |
ggmap | 3.0.2 | ggmcmc | 1.5.1.1 |
ggnewscale | 0.4.9 | ggplot2 | 3.4.3 |
ggplotify | 0.1.2 | ggpubr | 0.6.0 |
ggraph | 2.1.0 | ggrepel | 0.9.3 |
ggridges | 0.5.4 | ggsci | 3.0.0 |
ggseas | 0.5.4 | ggsignif | 0.6.4 |
ggsn | 0.5.0 | ggspatial | 1.1.9 |
ggstance | 0.3.6 | ggtext | 0.1.2 |
ggthemes | 4.2.4 | ggtree | 3.8.0 |
ggvis | 0.4.8 | gh | 1.4.0 |
ghyp | 1.6.4 | Gifi | 0.4-0 |
gifti | 0.8.0 | GIGrvg | 0.8 |
gimme | 0.7-15 | giscoR | 0.3.5 |
git2r | 0.32.0 | gitcreds | 0.1.2 |
glarma | 1.6-0 | GlarmaVarSel | 1.0 |
glasso | 1.11 | glassoFast | 1.0.1 |
gld | 2.6.6 | glm2 | 1.2.1 |
GLMMRR | 0.5.0 | glmmTMB | 1.1.7 |
glmnet | 4.1-8 | globals | 0.16.2 |
glpkAPI | 1.3.4 | glue | 1.6.2 |
GMDH | 1.6 | Gmedian | 1.2.7 |
gmm | 1.8 | gmodels | 2.18.1.1 |
gmp | 0.7-2 | gmt | 2.0.3 |
gmvarkit | 2.0.10 | GNAR | 1.1.2 |
gnm | 1.1-4 | GO.db | 3.17.0 |
goftest | 1.2-3 | gogarch | 0.7-5 |
golem | 0.4.1 | googledrive | 2.1.1 |
googlePolylines | 0.8.4 | googlesheets4 | 1.1.1 |
googleVis | 0.7.1 | gower | 1.0.1 |
GPArotation | 2023.8-1 | GPCMlasso | 0.1-6 |
GPfit | 1.0-8 | gplots | 3.1.3 |
gradethis | 0.2.12.9004 | gRain | 1.3.14 |
graph | 1.78.0 | graphicalVAR | 0.3.1 |
graphlayouts | 1.0.0 | grates | 1.1.0 |
gratis | 1.0.5 | gravitas | 0.1.3 |
gRbase | 1.9.0 | greeks | 1.3 |
greta | 0.4.3 | greybox | 1.0.8 |
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.2-0 | grnn | 0.1.0 |
GroupSeq | 1.4.2 | grplasso | 0.4-7 |
gsarima | 0.1-5 | gsDesign | 3.5.0 |
gSEM | 0.4.3.4 | gsignal | 0.3-5 |
gsl | 2.1-8 | gss | 2.2-7 |
gstat | 2.1-1 | gsubfn | 0.7 |
gsw | 1.1-1 | gt | 0.9.0 |
gtable | 0.3.4 | gtheory | 0.1.2 |
gtools | 3.9.4 | gtop | 0.2.0 |
GUIDE | 1.2.7 | gustave | 0.4.4 |
gWidgets2 | 1.0-9 | GWmodel | 2.3-1 |
gwrr | 0.2-2 | HandTill2001 | 1.0.1 |
HaploSim | 1.8.4.2 | hardhat | 1.3.0 |
hash | 2.2.6.3 | haven | 2.5.3 |
hbsae | 1.2 | hdf5r | 1.3.8 |
hdi | 0.1-9 | HDInterval | 0.2.4 |
HDMT | 1.0.5 | hdrcde | 3.4 |
HDShOP | 0.1.3 | HDTSA | 1.0.2 |
heatmaply | 1.4.2 | heplots | 1.6.0 |
here | 1.0.1 | hett | 0.3-3 |
hexbin | 1.28.3 | hflights | 0.1 |
hglm | 2.2-1 | hglm.data | 1.0-1 |
HH | 3.1-49 | hht | 2.1.6 |
highcharter | 0.9.4 | highfrequency | 1.0.0 |
highlight | 0.5.1 | highr | 0.10 |
highs | 0.1-10 | HIMA | 2.2.1 |
hipread | 0.2.3 | HKRbook | 0.1.3 |
HLMdiag | 0.5.0 | Hmisc | 5.1-1 |
HMMpa | 1.0.1 | hms | 1.1.3 |
hoardr | 0.5.3 | homals | 1.0-10 |
hommel | 1.6 | hpfilter | 1.0.2 |
HSAUR3 | 1.0-14 | htmlTable | 2.4.1 |
htmltools | 0.5.6 | htmlwidgets | 1.6.2 |
hts | 6.0.2 | httpcode | 0.3.0 |
httpuv | 1.6.11 | httr | 1.4.7 |
httr2 | 0.2.3 | humanize | 0.2.0 |
hunspell | 3.0.2 | hutils | 1.8.1 |
hwwntest | 1.3.2 | HydroMe | 2.0-1 |
HyperbolicDist | 0.6-4 | hypergeo | 1.2-13 |
i2extras | 0.2.1 | iarm | 0.4.3 |
ibd | 1.5 | ibdreg | 0.3.8 |
iBreakDown | 2.0.1 | IBrokers | 0.10-2 |
ica | 1.0-3 | ICAOD | 1.0.1 |
icarus | 0.3.2 | ICC | 2.4.0 |
iccbeta | 1.2.0 | Icens | 1.72.0 |
ichimoku | 1.4.9 | ICS | 1.4-0 |
ICSNP | 1.1-1 | ICtest | 0.3-5 |
idbr | 1.0 | IDE | 0.3.1 |
idefix | 1.0.3 | IDPmisc | 1.1.20 |
ids | 1.0.1 | ifaTools | 0.23 |
igraph | 1.5.1 | igraphdata | 1.0.1 |
illuminaio | 0.42.0 | imbibe | 0.1.1 |
immer | 1.4-15 | implyr | 0.4.0 |
impute | 1.74.1 | imputeTestbench | 3.0.3 |
imputeTS | 3.3 | inca | 0.0.4 |
IncDTW | 1.1.4.4 | incidence | 1.7.3 |
incidence2 | 2.2.1 | inegiR | 3.0.0 |
ineq | 0.2-13 | infer | 1.0.5 |
influence.SEM | 2.3 | influenceR | 0.1.5 |
influxdbr | 0.14.2 | InfoTrad | 1.2 |
ingredients | 2.3.0 | ini | 0.3.1 |
inline | 0.3.19 | insee | 1.1.5 |
insight | 0.19.5 | InspectChangepoint | 1.2 |
intamap | 1.5-6 | interp | 1.1-4 |
intervals | 0.15.4 | inum | 1.0-5 |
invgamma | 1.1 | iotables | 0.9.1 |
iotools | 0.3-2 | ipdw | 2.0-0 |
ipfp | 1.0.2 | ipred | 0.9-14 |
ipumsr | 0.6.3 | 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 |
IsingFit | 0.3.1 | IsingSampler | 0.2.3 |
Iso | 0.0-18.1 | isoband | 0.2.7 |
ISOcodes | 2022.09.29 | IsoGene | 1.0-24 |
ISOweek | 0.6-2 | ISwR | 2.0-8 |
iterators | 1.0.14 | iterLap | 1.1-3 |
itertools | 0.1-3 | itsmr | 1.10 |
JADE | 2.0-3 | jalcal | 0.1.0 |
janeaustenr | 1.0.0 | janitor | 2.2.0 |
JavaGD | 0.6-5 | jiebaR | 0.11 |
jiebaRD | 0.1 | jjb | 0.1.1 |
JMdesign | 1.3 | jomo | 2.7-6 |
JoSAE | 0.3.0 | jpeg | 0.1-10 |
jqr | 1.2.3 | jquerylib | 0.1.4 |
jrt | 1.1.2 | jsonify | 1.2.2 |
jsonlite | 1.8.7 | juicyjuice | 0.1.0 |
JuliaConnectoR | 1.1.1 | JWileymisc | 1.4.0 |
kableExtra | 1.3.4 | kalmanfilter | 2.0.1 |
kappaSize | 1.2 | KEGGREST | 1.40.0 |
Kendall | 2.2.1 | kequate | 1.6.4 |
keras | 2.13.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-32 | keyring | 1.3.1 |
KFAS | 1.5.1 | klaR | 1.7-2 |
km.ci | 0.5-6 | knitr | 1.44 |
koRpus | 0.13-8 | ks | 1.14.1 |
kst | 0.5-4 | kutils | 1.72 |
kza | 4.1.0.1 | labdsv | 2.1-0 |
label.switching | 1.8 | labeling | 0.4.3 |
labelled | 2.12.0 | laeken | 0.5.2 |
LaF | 0.8.4 | lagged | 0.3.2 |
Lahman | 11.0-0 | LAM | 0.6-19 |
lambda.r | 1.2.4 | lamW | 2.2.0 |
landsat | 1.1.2 | landscapemetrics | 1.5.7 |
languageR | 1.5.0 | LaplacesDemon | 16.1.6 |
lars | 1.3 | lassoshooting | 0.1.5-1.1 |
latdiag | 0.3 | later | 1.3.1 |
latex2exp | 0.9.6 | latticeExtra | 0.6-30 |
LatticeKrig | 8.4 | lava | 1.7.2.1 |
lavaan | 0.6-16 | lavaan.survey | 1.1.3.1 |
LAWBL | 1.5.0 | lazyeval | 0.2.2 |
lbfgsb3c | 2020-3.2 | LCAvarsel | 1.1 |
lcda | 0.3.1 | lctools | 0.2-8 |
lda | 1.4.2 | ldat | 0.3.3 |
ldbounds | 2.0.1 | leafem | 0.2.0 |
leaflet | 2.2.0 | leaflet.extras | 1.0.0 |
leaflet.providers | 1.13.0 | leafpm | 0.1.0 |
leafpop | 0.1.0 | leafsync | 0.1.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
learnr | 0.11.4 | legion | 0.1.2 |
lfactors | 1.0.4 | lgarch | 0.6-2 |
lgr | 0.4.4 | lgtdl | 1.1.5 |
lhs | 1.1.6 | libcoin | 1.0-9 |
libgeos | 3.11.1-1 | lidR | 4.0.4 |
lifecontingencies | 1.3.11 | lifecycle | 1.0.3 |
LIM | 1.4.7 | limma | 3.56.1 |
limSolve | 1.5.6 | linelist | 0.0.1 |
link2GI | 0.5-2 | linpk | 1.1.2 |
linprog | 0.9-4 | lintools | 0.1.7 |
lisrelToR | 0.1.5 | listenv | 0.9.0 |
liteq | 1.1.0 | lme4 | 1.1-34 |
lmerTest | 3.1-3 | lmForc | 0.1.0 |
lmm | 1.4 | lmodel2 | 1.7-3 |
lmom | 3.0 | Lmoments | 1.3-1 |
lmtest | 0.9-40 | LNIRT | 0.5.1 |
locfit | 1.5-9.8 | locits | 1.7.7 |
locpol | 0.8.0 | logging | 0.10-108 |
logitnorm | 0.8.38 | logspline | 2.1.20 |
lokern | 1.1-10 | lomb | 2.1.0 |
longCatEDA | 0.31 | longitudinalData | 2.4.5 |
longmemo | 1.1-2 | LongMemoryTS | 0.1.0 |
longpower | 1.0.24 | loo | 2.6.0 |
lordif | 0.3-3 | lotri | 0.4.3 |
lpacf | 1.0.1 | lpSolve | 5.6.19 |
lpSolveAPI | 5.5.2.0-17.10 | lsa | 0.73.3 |
lsl | 0.5.6 | lslx | 0.6.11 |
LSMonteCarlo | 1.0 | LSMRealOptions | 0.2.1 |
LSTS | 2.1 | LSWPlib | 0.1.0 |
ltm | 1.2-0 | ltsa | 1.4.6 |
lubridate | 1.9.2 | luz | 0.4.0 |
lvec | 0.2.5 | lvnet | 0.3.5 |
lvplot | 0.2.1 | lwgeom | 0.2-13 |
m5 | 0.1.1 | maat | 1.1.0 |
magclass | 6.10.0 | magic | 1.6-1 |
magick | 2.7.5 | magrittr | 2.0.3 |
MAMS | 2.0.1 | manipulate | 1.0.1 |
manipulateWidget | 0.11.1 | MAPA | 2.0.5 |
mapdata | 2.3.1 | mapdeck | 0.3.4 |
mapedit | 0.6.0 | mapme.biodiversity | 0.4.0 |
mapmisc | 2.0.0 | mapproj | 1.2.11 |
maps | 3.4.1 | mapsf | 0.7.1 |
mapSpain | 0.8.0 | maptools | 1.1-8 |
maptree | 1.4-8 | mapview | 2.11.0 |
mAr | 1.2-0 | mar1s | 2.1.1 |
marcher | 0.0-2 | markdown | 1.8 |
markovchain | 0.9.4 | MarkowitzR | 1.0.3 |
marmap | 1.0.10 | MARSS | 3.11.8 |
MassSpecWavelet | 1.66.0 | Matching | 4.10-14 |
MatchIt | 4.5.4 | MatchThem | 1.1.0 |
mathjaxr | 1.6-0 | matlabr | 1.5.2 |
matrixcalc | 1.0-6 | MatrixExtra | 0.1.14 |
MatrixModels | 0.5-2 | matrixStats | 1.0.0 |
maxLik | 1.5-2 | MaxPro | 4.1-2 |
MBA | 0.1-0 | MBHdesign | 2.2.2 |
mboost | 2.9-8 | mbsts | 3.0 |
mc2d | 0.2.0 | MCAvariants | 2.6.1 |
mclcar | 0.2-0 | mclust | 6.0.0 |
mcmc | 0.9-7 | mcmcensemble | 3.0.0 |
MCMCglmm | 2.35 | MCMCpack | 1.6-3 |
mcmcse | 1.5-0 | MCMCvis | 0.16.2 |
mco | 1.15.6 | Mcomp | 2.8 |
mcompanion | 0.5.7 | MCPMod | 1.0-10.1 |
mdftracks | 0.2.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.6 | memoise | 2.0.1 |
MEMSS | 0.9-3 | memuse | 4.2-3 |
meta | 6.5-0 | metadat | 1.2-0 |
metafor | 4.2-0 | metaplot | 0.8.3 |
metaSEM | 1.3.1 | metasens | 1.5-2 |
Metrics | 0.1.4 | metRology | 0.9-28-1 |
mFilter | 0.1-5 | mgm | 1.2-14 |
mi | 1.1 | mice | 3.16.0 |
miceadds | 3.16-18 | micEconIndex | 0.1-8 |
microbenchmark | 1.4.10 | micromap | 1.9.7 |
microsamplingDesign | 1.0.8 | MicSim | 2.0.0 |
MIIVsem | 0.5.8 | mime | 0.12 |
mind | 1.1.0 | MinEDfind | 0.1.3 |
minimalRSD | 1.0.0 | minimaxdesign | 0.1.5 |
miniUI | 0.1.1.1 | minpack.lm | 1.2-4 |
minqa | 1.2.6 | mipfp | 3.2.1 |
mirt | 1.40 | mirtCAT | 1.12.2 |
misc3d | 0.9-1 | miscTools | 0.6-28 |
missForest | 1.5 | missMDA | 1.18 |
mitml | 0.4-5 | mitools | 2.4 |
mix | 1.0-11 | mixAR | 0.22.7 |
MixedPsy | 1.1.0 | mixexp | 1.2.7 |
mixOmics | 6.24.0 | mixsqp | 0.3-48 |
mixtools | 2.0.0 | mkssd | 1.2 |
mlapi | 0.1.1 | mlbench | 2.1-3.1 |
MLCIRTwithin | 2.1.1 | MLDS | 0.5.1 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlogitBMA | 0.1-7 | mlr | 2.19.1 |
mlr3 | 0.16.1 | mlr3measures | 0.5.0 |
mlr3misc | 0.12.0 | mlr3spatiotempcv | 2.1.0 |
mlrMBO | 1.1.5.1 | mlVAR | 0.5.1 |
mma | 10.7-1 | mmand | 1.6.3 |
mmrm | 0.2.2 | mnormt | 2.1.1 |
MNP | 3.1-4 | modeldata | 1.2.0 |
modelenv | 0.1.1 | ModelMap | 3.4.0.4 |
ModelMetrics | 1.2.2.2 | modelr | 0.1.11 |
modeltime | 1.2.8 | modeltime.ensemble | 1.0.3 |
modeltime.resample | 0.2.3 | modeltools | 0.2-23 |
moderndive | 0.5.5 | modules | 0.12.0 |
mokken | 3.1.0 | mombf | 3.4.1 |
moments | 0.14.1 | momentuHMM | 1.5.5 |
mondate | 0.10.02 | mongolite | 2.7.2 |
mongopipe | 0.1.1 | monmlp | 1.1.5 |
monobin | 0.2.4 | Morpho | 2.11 |
mosaic | 1.8.4.2 | mosaicCore | 0.9.2.1 |
mosaicData | 0.20.3 | mousetrap | 3.2.1 |
move | 4.2.4 | movecost | 2.0 |
moveHMM | 1.9 | moveWindSpeed | 0.2.4 |
movMF | 0.2-7 | MPDiR | 0.2 |
MplusAutomation | 1.1.0 | mpmi | 0.43.2.1 |
mpt | 0.8-0 | MPTinR | 1.14.1 |
MPV | 1.63 | mratios | 1.4.2 |
mrf | 0.1.6 | mrgsolve | 1.1.1 |
mritc | 0.5-3 | mscstexta4r | 0.1.2 |
mscsweblm4r | 0.1.2 | MSGARCH | 2.51 |
msm | 1.7 | 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-9 | multDM | 1.1.4 |
multicool | 0.1-12 | MultiGlarmaVarSel | 1.0 |
MultiLCIRT | 2.11 | MultipleBubbles | 0.2.0 |
multiplex | 3.1.0 | multipol | 1.0-9 |
multitaper | 1.0-17 | multiway | 1.0-6 |
multtest | 2.56.0 | MuMIn | 1.47.5 |
munfold | 0.3.5 | munsell | 0.5.0 |
mvLSW | 1.2.5 | mvMORPH | 1.1.7 |
mvnfast | 0.2.8 | mvnormtest | 0.1-9 |
mvQuad | 1.0-6 | mvtnorm | 1.2-3 |
mvtsplot | 1.0-4 | mxkssd | 1.2 |
n1qn1 | 6.0.1-11 | nabor | 0.5.0 |
NADA | 1.6-1.1 | NAEPirtparams | 1.0.0 |
NAEPprimer | 1.0.1 | nanoarrow | 0.2.0.2 |
nanonext | 0.10.0 | nanotime | 0.3.7 |
nardl | 0.1.6 | natserv | 1.0.0 |
nbTransmission | 1.1.2 | ncappc | 0.3.0 |
ncar | 0.4.5 | ncdf4 | 1.21 |
ncf | 1.3-2 | ncvreg | 3.14.1 |
nets | 0.9.1 | network | 1.18.1 |
NetworkChange | 0.8 | NetworkComparisonTest | 2.2.2 |
networkD3 | 0.4 | networkDynamic | 0.11.3 |
networkLite | 1.0.5 | NetworkRiskMeasures | 0.1.4 |
NetworkToolbox | 1.4.2 | networktools | 1.5.1 |
networktree | 1.0.1 | neuralnet | 1.44.2 |
neurobase | 1.32.3 | neuroim | 0.0.6 |
neuRosim | 0.2-13 | nFactors | 2.4.1.1 |
NFCP | 1.2.1 | ngspatial | 1.2-2 |
nhanesA | 0.7.4 | nifti.io | 1.0.0 |
nimble | 1.0.1 | NISTnls | 0.9-13 |
NlcOptim | 0.6 | nleqslv | 3.3.4 |
NlinTS | 1.4.5 | nlmeVPC | 2.6 |
nlmixr2 | 2.0.9 | nlmixr2data | 2.0.8 |
nlmixr2est | 2.1.6 | nlmixr2extra | 2.0.8 |
nlmixr2plot | 2.0.7 | nlmixr2rpt | 0.2.0 |
nloptr | 2.0.3 | NLP | 0.2-1 |
nls2 | 0.3-3 | nlsem | 0.8-1 |
nlstools | 2.0-1 | nlts | 1.0-2 |
NMOF | 2.7-1 | nmw | 0.1.5 |
nnfor | 0.9.8 | nnls | 1.5 |
nodbi | 0.9.6 | nomisr | 0.4.7 |
NonCompart | 0.6.0 | nonlinearTseries | 0.2.12 |
nonmemica | 1.0.7 | nonnest2 | 0.5-6 |
norm | 1.0-11.1 | nortest | 1.0-4 |
nosoi | 1.1.0 | np | 0.60-17 |
NPflow | 0.13.3 | npi | 0.2.0 |
nppbib | 1.2-0 | nsarfima | 0.2.0.0 |
nsprcomp | 0.5.1-2 | numbers | 0.8-5 |
numDeriv | 2016.8-1.1 | nvmix | 0.1-0 |
o2geosocial | 1.1.0 | oai | 0.4.0 |
OasisR | 3.1.0 | obAnalytics | 0.1.1 |
OBsMD | 6.1 | occ | 1.1 |
oce | 1.8-1 | octopus | 0.3.0 |
odbc | 1.3.5 | odin | 1.2.4 |
odpc | 2.0.5 | odr | 1.4.4 |
OECD | 0.2.5 | officer | 0.6.2 |
ohoegdm | 0.1.0 | onbrand | 1.0.3 |
onlineforecast | 1.0.1 | opdisDownsampling | 0.8.2 |
OPDOE | 1.0-10 | openair | 2.17-0 |
openEBGM | 0.9.1 | openintro | 2.4.0 |
OpenMx | 2.21.8 | openNLP | 0.2-7 |
openNLPdata | 1.5.3-4 | openssl | 2.1.0 |
OpenStreetMap | 0.3.4 | openxlsx | 4.2.5.2 |
opera | 1.2.0 | operator.tools | 1.6.3 |
optextras | 2019-12.4 | OptGS | 1.1.1 |
OptHedging | 1.0 | OptimalDesign | 1.0.1 |
OptimaRegion | 1.2 | optimParallel | 1.0-2 |
optimx | 2023-8.13 | OptionPricing | 0.1.1 |
optiscale | 1.2.2 | ORCME | 2.0.2 |
ordinal | 2022.11-16 | ore | 1.7.3.1 |
ORIClust | 1.0-2 | oro.dicom | 0.5.3 |
oro.nifti | 0.11.4 | oro.pet | 0.2.7 |
orthopolynom | 1.0-6.1 | osDesign | 1.8 |
osmdata | 0.2.5 | osmextract | 0.5.0 |
osqp | 0.6.0.8 | otsad | 0.2.0 |
otsfeatures | 1.0.0 | outbreaker2 | 1.1.3 |
outbreaks | 1.9.0 | outliers | 0.15 |
overlapping | 2.1 | ows4R | 0.3-6 |
pa | 1.2-4 | packcircles | 0.3.6 |
padr | 0.6.2 | PairedData | 1.1.1 |
pairwise | 0.6.1-0 | paleoTS | 0.5.3 |
palmerpenguins | 0.1.1 | pan | 1.9 |
pander | 0.6.5 | panelaggregation | 0.1.1 |
paradox | 0.11.1 | parallelly | 1.36.0 |
parallelMap | 1.5.1 | ParamHelpers | 1.14.1 |
paran | 1.5.2 | parma | 1.7 |
parsedate | 1.3.1 | parsnip | 1.1.1 |
partitions | 1.10-7 | partsm | 1.1-3 |
party | 1.3-13 | partykit | 1.2-20 |
pastecs | 1.3.21 | patchwork | 1.1.3 |
paws | 0.4.0 | paws.analytics | 0.4.0 |
paws.application.integration | 0.4.0 | paws.common | 0.6.0 |
paws.compute | 0.4.0 | paws.cost.management | 0.4.0 |
paws.customer.engagement | 0.4.0 | paws.database | 0.4.0 |
paws.developer.tools | 0.4.0 | paws.end.user.computing | 0.4.0 |
paws.machine.learning | 0.4.0 | paws.management | 0.4.0 |
paws.networking | 0.4.0 | paws.security.identity | 0.4.0 |
paws.storage | 0.4.0 | pbapply | 1.7-2 |
pbdZMQ | 0.3-10 | PBIBD | 1.3 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
pbmcapply | 1.5.1 | pbo | 1.3.5 |
pbs | 1.1 | PBSddesolve | 1.13.3 |
PBSmapping | 2.73.2 | PBSmodelling | 2.68.8 |
pbv | 0.4-22 | PCA4TS | 0.1 |
pcaMethods | 1.92.0 | pcaPP | 2.0-3 |
pcdpca | 0.4 | pcFactorStan | 1.5.4 |
pcIRT | 0.2.4 | PCMRS | 0.1-4 |
pcts | 0.15.5 | pdc | 1.0.3 |
pdfCluster | 1.0-4 | pdfetch | 0.2.8 |
pdftools | 3.3.3 | pdist | 1.2.1 |
pedigree | 1.4.2 | PeerPerformance | 2.2.5 |
penalized | 0.9-52 | performance | 0.10.5 |
PerformanceAnalytics | 2.0.4 | permute | 0.9-7 |
PGM2 | 1.0-1 | ph2bayes | 0.0.2 |
ph2bye | 0.1.4 | phangorn | 2.11.1 |
pheatmap | 1.0.12 | phonics | 1.3.10 |
phyloseq | 1.44.0 | phytools | 1.9-16 |
picasso | 1.3.1 | pid | 0.50 |
piecewiseSEM | 2.3.0 | pillar | 1.9.0 |
pingr | 2.0.2 | pins | 1.2.2 |
pipe.design | 0.5.1 | pipeR | 0.6.1.3 |
pixmap | 0.4-12 | PK | 1.3-6 |
PKconverter | 1.5 | pkdata | 0.1.0 |
pkgbuild | 1.4.2 | pkgconfig | 2.0.3 |
pkgdown | 2.0.7 | pkgfilecache | 0.1.4 |
pkgload | 1.3.2.1 | PKNCA | 0.10.2 |
pkr | 0.1.3 | pks | 0.6-0 |
PlackettLuce | 0.4.3 | plgp | 1.1-12 |
plink | 1.5-1 | plm | 2.6-3 |
PLMIX | 2.1.1 | PLmixed | 0.1.7 |
plogr | 0.2.0 | plot3D | 1.4 |
plotdap | 1.0.2 | plotly | 4.10.2 |
plotMCMC | 2.0.1 | plotmo | 3.6.2 |
plotrix | 3.8-2 | plotSEMM | 2.4 |
pls | 2.8-2 | plyr | 1.8.8 |
pmr | 1.2.5.1 | pmxTools | 1.3 |
png | 0.1-8 | pointblank | 0.11.4 |
poisbinom | 1.0.1 | poLCA | 1.6.0.1 |
polspline | 1.1.23 | polyclip | 1.10-4 |
polycor | 0.8-1 | polyCub | 0.8.1 |
polynom | 1.4-1 | PolynomF | 2.0-5 |
polyreg | 0.8.0 | pomp | 5.4 |
pool | 1.0.1 | PopED | 0.6.0 |
popEpi | 0.4.11 | PortfolioOptim | 1.1.1 |
PortRisk | 1.1.0 | posterior | 1.4.1 |
powerbydesign | 1.0.5 | powerGWASinteraction | 1.1.3 |
powerSurvEpi | 0.1.3 | PowerTOST | 1.5-4 |
PowerUpR | 1.1.0 | PP | 0.6.3-11 |
ppcor | 1.1 | PPRL | 0.3.8 |
pps | 1.0 | prabclus | 2.3-2 |
pracma | 2.4.2 | PracTools | 1.4 |
praise | 1.0.0 | PreciseSums | 0.6 |
prefmod | 0.8-35 | PReMiuM | 3.2.10 |
preprocessCore | 1.62.1 | PresenceAbsence | 1.1.11 |
presize | 0.3.7 | prettydoc | 0.4.1 |
prettyGraphs | 2.1.6 | prettymapr | 0.2.4 |
prettyunits | 1.1.1 | prevalence | 0.4.1 |
prevR | 5.0.0 | princurve | 2.1.6 |
ProbitSpatial | 1.1 | pROC | 1.18.4 |
processx | 3.8.2 | prodlim | 2023.08.28 |
ProfessR | 2.4-3 | profileModel | 0.6.1 |
profileR | 0.3-5 | profoc | 1.2.1 |
profvis | 0.3.8 | progress | 1.2.2 |
progressr | 0.14.0 | PROJ | 0.4.0 |
proj4 | 1.0-13 | promises | 1.2.1 |
prophet | 1.0 | PROsetta | 0.4.1 |
proto | 1.0.0 | protolite | 2.2.0 |
proxy | 0.4-27 | PRROC | 1.3.1 |
ps | 1.7.5 | pscl | 1.5.5.1 |
psd | 2.1.1 | PSF | 0.5 |
pso | 1.0.4 | pspline | 1.0-19 |
psy | 1.2 | psych | 2.3.6 |
psychomix | 1.1-8 | psychonetrics | 0.11 |
psychotools | 0.7-3 | psychotree | 0.16-0 |
psychTools | 2.3.6 | psyphy | 0.3 |
PTAk | 2.0.0 | PTSR | 0.1.2 |
ptw | 1.9-16 | purrr | 1.0.2 |
pwr | 1.3-0 | PwrGSD | 2.3.6 |
pwrRasch | 0.1-2 | pxweb | 0.16.2 |
PxWebApiData | 0.8.0 | qap | 0.1-2 |
Qardl | 0.1.1 | qcv | 1.0 |
qdap | 2.4.6 | qdapDictionaries | 1.0.7 |
qdapRegex | 0.7.5 | qdapTools | 1.3.7 |
qgam | 1.3.4 | qgisprocess | 0.1.0 |
qgraph | 1.9.5 | qicharts2 | 0.7.4 |
qlcal | 0.0.7 | qMRI | 1.2.6 |
qpdf | 1.3.2 | qpNCA | 1.1.6 |
qqconf | 1.3.2 | qqplotr | 0.0.6 |
qrmdata | 2022-05-31-1 | qrmtools | 0.0-16 |
qrng | 0.0-9 | qs | 0.25.5 |
qtl | 1.60 | quadprog | 1.5-8 |
qualmap | 0.2.1 | Quandl | 2.11.0 |
quanteda | 3.3.1 | quantification | 0.2.0 |
quantmod | 0.4.25 | quantreg | 5.97 |
quantspec | 1.2-3 | questionr | 0.7.8 |
QuickJSR | 1.0.6 | quickpsy | 0.1.5.1 |
qvalue | 2.32.0 | qvcalc | 1.0.3 |
R.cache | 0.16.0 | R.devices | 2.17.1 |
R.filesets | 2.15.0 | R.huge | 0.10.0 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.25.0 | R.rsp | 0.45.0 |
R.utils | 2.12.2 | R0 | 1.2-10 |
R2BEAT | 1.0.5 | r2d3 | 0.2.6 |
R2HTML | 2.3.3 | R2jags | 0.7-1 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R4CouchDB | 0.7.5 | R6 | 2.5.1 |
radarchart | 0.3.1 | ragg | 1.2.5 |
ragtop | 1.1.1 | rainbow | 3.7 |
rakeR | 0.2.1 | rAmCharts | 2.1.15 |
ramcmc | 0.1.2 | ramps | 0.6.18 |
randomForest | 4.7-1.1 | randomForestSRC | 3.2.2 |
randomizeR | 3.0.1 | randomLCA | 1.1-3 |
randtoolbox | 2.0.4 | ranger | 0.15.1 |
rankdist | 1.1.4 | RANN | 2.6.1 |
rapidjsonr | 1.2.0 | RApiSerialize | 0.1.2 |
rappdirs | 0.3.3 | rARPACK | 0.11-0 |
RaschSampler | 0.8-9 | raster | 3.6-23 |
rasterImage | 0.4.0 | rasterVis | 0.51.5 |
ratelimitr | 0.4.1 | raveio | 0.9.0 |
ravetools | 0.1.2 | Rbeast | 0.9.9 |
rbenchmark | 1.0.0 | RBGL | 1.76.0 |
rbibutils | 2.2.15 | Rblpapi | 0.3.14 |
rbmi | 1.2.3 | rcartocolor | 2.1.1 |
Rcatch22 | 0.2.1 | rcdd | 1.5-2 |
Rcgmin | 2022-4.30 | rcmdcheck | 1.4.0 |
Rcmdr | 2.9-0 | RcmdrMisc | 2.9-0 |
RcmdrPlugin.DoE | 0.12-4 | RcmdrPlugin.temis | 0.7.10 |
RColorBrewer | 1.1-3 | Rcpp | 1.0.11 |
RcppAnnoy | 0.0.21 | RcppArmadillo | 0.12.6.4.0 |
RcppCCTZ | 0.2.12 | RcppDate | 0.0.3 |
RcppDE | 0.1.7 | RcppDist | 0.1.1 |
RcppEigen | 0.3.3.9.3 | RcppGSL | 0.3.13 |
RcppParallel | 5.1.7 | RcppProgress | 0.4.2 |
RcppQuantuccia | 0.1.1 | RcppRedis | 0.2.4 |
RcppRoll | 0.3.0 | RcppSimdJson | 0.1.10 |
RcppThread | 2.1.5 | RcppTN | 0.2-2 |
RcppTOML | 0.2.2 | RcppZiggurat | 0.1.6 |
Rcsdp | 0.1.57.5 | RCurl | 1.98-1.12 |
RCzechia | 1.11.1 | rdbnomics | 0.6.4 |
rdhs | 0.7.6 | Rdpack | 2.5 |
Rdsdp | 1.0.5.2.1 | re2 | 0.1.2 |
reactable | 0.4.4 | reactR | 0.4.4 |
readabs | 0.4.14 | readODS | 2.1.0 |
readr | 2.1.4 | readsdmx | 0.3.1 |
readstata13 | 0.10.1 | readxl | 1.4.3 |
REBayes | 2.54 | recipes | 1.0.8 |
reclin | 0.1.2 | recmap | 1.0.15 |
RecordLinkage | 0.4-12.4 | redux | 1.1.3 |
RefManageR | 1.4.0 | refugees | 2022.12.1 |
regions | 0.1.8 | registry | 0.5-1 |
regress | 1.3-21 | RegSDC | 0.7.0 |
regsem | 1.9.5 | regspec | 2.6 |
regtools | 1.7.0 | reinsureR | 0.1.0 |
relations | 0.6-13 | relimp | 1.0-5 |
rematch | 2.0.0 | rematch2 | 2.1.2 |
remotes | 2.4.2.1 | rentrez | 1.2.3 |
renv | 1.0.2 | replicateBE | 1.1.3 |
reportr | 1.3.0 | repr | 1.1.6 |
reprex | 2.0.2 | reproj | 0.4.3 |
REQS | 0.8-13 | rerddap | 1.0.4 |
rerddapXtracto | 1.1.5 | resampledata | 0.3.1 |
resde | 1.1 | reshape | 0.8.9 |
reshape2 | 1.4.4 | restimizeapi | 1.0.0 |
reticulate | 1.32.0 | retry | 0.1.0 |
revdbayes | 1.5.2 | rex | 1.2.1 |
Rfast | 2.0.8 | Rfast2 | 0.1.5.1 |
rflexscan | 1.1.0 | rgbif | 3.7.8 |
rgdal | 1.6-7 | rgee | 1.1.5 |
rgen | 0.0.1 | RGENERATE | 1.3.7 |
rgenoud | 5.9-0.3 | rgeoda | 0.0.10-4 |
rgeos | 0.6-4 | rgl | 1.2.1 |
Rglpk | 0.6-5 | RgoogleMaps | 1.4.5.3 |
RGraphics | 3.0-2 | Rgraphviz | 2.44.0 |
rgrass | 0.3-9 | rgrass7 | 0.2-13 |
RGreenplum | 0.1.2 | rgugik | 0.4.0 |
RH2 | 0.2.4 | rhandsontable | 0.3.8 |
rhdf5 | 2.44.0 | rhdf5filters | 1.12.1 |
Rhdf5lib | 1.22.0 | rhosa | 0.2.0 |
RhpcBLASctl | 0.23-42 | rib | 0.19.0 |
riingo | 0.3.1 | Rilostat | 1.1.8 |
ring | 1.0.4 | RInside | 0.2.18 |
rintrojs | 0.3.2 | rio | 1.0.0 |
Rirt | 0.0.2 | Risk | 1.0 |
riskCommunicator | 1.0.1 | riskParityPortfolio | 0.2.2 |
RiskPortfolios | 2.1.7 | riskSimul | 0.1.1 |
ritis | 1.0.0 | riverdist | 0.16.1 |
rjags | 4-14 | rJava | 1.0-6 |
RJDBC | 0.2-10 | RJDemetra | 0.2.3 |
rje | 1.12.1 | rjson | 0.2.21 |
RJSONIO | 1.3-1.8 | rjstat | 0.4.3 |
RKEA | 0.0-6 | RKEAjars | 5.0-4 |
rlang | 1.1.1 | rlas | 1.6.3 |
rle | 0.9.2 | rlecuyer | 0.3-7 |
Rlgt | 0.2-1 | Rlibeemd | 1.4.3 |
rLiDAR | 0.1.5 | rlist | 0.4.6.2 |
RM2006 | 0.1.1 | rmapshaper | 0.5.0 |
RMariaDB | 1.2.2 | rmarkdown | 2.24 |
rmatio | 0.18.0 | RMAWGEN | 1.3.7 |
rmeta | 3.0 | rmgarch | 1.3-9 |
Rmpfr | 0.9-3 | rms | 6.7-1 |
rmutil | 1.1.10 | RMySQL | 0.10.25 |
rnaturalearth | 0.3.4 | rnaturalearthdata | 0.1.0 |
rncl | 0.8.7 | RND | 1.2 |
rneos | 0.4-0 | RNetCDF | 2.6-2 |
rngtools | 1.5.2 | rngWELL | 0.10-9 |
RNifti | 1.5.0 | RNiftyReg | 2.8.1 |
rnn | 1.9.0 | robfilter | 4.1.3 |
RobKF | 1.0.2 | RoBMA | 3.1.0 |
robsurvey | 0.5-2 | robustbase | 0.99-0 |
rockchalk | 1.8.157 | rocker | 0.3.1 |
ROCR | 1.0-11 | RODBC | 1.3-21 |
rodd | 0.2-1 | ROI | 1.0-1 |
roll | 1.1.6 | Rook | 1.2 |
ROOPSD | 0.3.9 | rootSolve | 1.8.2.3 |
roptim | 0.1.6 | rosm | 0.3.0 |
rotl | 3.1.0 | roxygen2 | 7.2.3 |
rpact | 3.4.0 | rpanel | 1.1-5.2 |
rpart.plot | 3.1.1 | rpf | 1.0.14 |
RPMG | 2.2-7 | rpms | 0.5.1 |
rpostgis | 1.4.4 | RPostgres | 1.4.5 |
RPostgreSQL | 0.7-5 | RPPairwiseDesign | 1.0 |
RPresto | 1.4.5 | rprojroot | 2.0.3 |
RPyGeo | 1.0.0 | rpymat | 0.1.7 |
RQuantLib | 0.4.17 | rrcov | 1.7-4 |
rredlist | 0.7.1 | RRreg | 0.7.5 |
RRTCS | 0.0.4 | rrum | 0.2.0 |
rsae | 0.2 | RSAGA | 1.4.0 |
Rsagacmd | 0.4.1 | rsample | 1.2.0 |
rsdmx | 0.6-3 | RSEIS | 4.1-6 |
rsem | 0.5.1 | Rsfar | 0.0.1 |
RSGHB | 1.2.2 | rsm | 2.10.3 |
Rsolnp | 1.16 | rspa | 0.2.8 |
rsparse | 0.5.1 | RSpectra | 0.16-1 |
RSQLite | 2.3.1 | Rssa | 1.0.5 |
rstac | 0.9.2-4 | rstan | 2.26.23 |
rstanarm | 2.26.1 | rstantools | 2.3.1.1 |
rstatix | 0.7.2 | rstiefel | 1.0.1 |
rstudioapi | 0.15.0 | rsurface | 1.1.0 |
RSurveillance | 0.2.1 | Rsymphony | 0.1-33 |
rTensor | 1.4.8 | rtf | 0.4-14.1 |
RTFA | 0.1.0 | rticles | 0.25 |
RTL | 1.3.3 | rtop | 0.6-6 |
RTransferEntropy | 0.2.21 | rtrim | 2.1.1 |
rts | 1.1-8 | Rtsne | 0.16 |
Rttf2pt1 | 1.3.12 | rucrdtw | 0.1.5 |
rugarch | 1.4-9 | ruimtehol | 0.3.1 |
rules | 1.0.2 | RUnit | 0.4.32 |
runjags | 2.2.2-1.1 | runner | 0.4.3 |
runstats | 1.1.0 | Runuran | 0.38 |
rust | 1.4.1 | Rvcg | 0.22.1 |
rversions | 2.1.2 | rvest | 1.0.3 |
Rvmmin | 2018-4.17.1 | Rwave | 2.6-5 |
RWeka | 0.4-46 | RWekajars | 3.9.3-2 |
rworldmap | 1.3-6 | rworldxtra | 1.01 |
rxode2 | 2.0.13 | rxode2et | 2.0.10 |
rxode2ll | 2.0.11 | rxode2parse | 2.0.16 |
rxode2random | 2.0.11 | s2 | 1.1.4 |
S4Vectors | 0.38.1 | sae | 1.3 |
saeRobust | 0.4.0 | saeSim | 0.11.0 |
SAEval | 1.0.0 | samadb | 0.2.6 |
samplesize | 0.2-4 | sampling | 2.9 |
SamplingBigData | 1.0.0 | samplingbook | 1.2.4 |
SamplingStrata | 1.5-4 | samplingVarEst | 1.5 |
sandwich | 3.0-2 | sarima | 0.9.1 |
sass | 0.4.7 | satellite | 1.0.4 |
sazedR | 2.0.2 | sbgcop | 0.980 |
scales | 1.2.1 | scalreg | 1.0.1 |
scam | 1.2-14 | scatterplot3d | 0.3-44 |
scoringRules | 1.1.1 | scoringutils | 1.1.0 |
ScottKnott | 1.3-2 | scs | 3.2.4 |
SDaA | 0.1-5 | sdcHierarchies | 0.20.0 |
sdcMicro | 5.7.5 | sdcSpatial | 0.5.2 |
sdcTable | 0.32.6 | sde | 2.0.18 |
sdmTMB | 0.3.0 | sealasso | 0.1-3 |
seas | 0.6-0 | season | 0.3.15 |
seasonal | 1.9.0 | seasonalview | 0.3 |
seastests | 0.15.4 | seer | 1.1.8 |
seg | 0.5-7 | segmented | 1.6-4 |
selectr | 0.4-2 | sem | 3.1-15 |
semds | 0.9-6 | SemiPar | 1.0-4.2 |
semPlot | 1.1.6 | SEMsens | 1.5.5 |
semTools | 0.5-6 | semtree | 0.9.18 |
sendmailR | 1.4-0 | SensoMineR | 1.26 |
sentencepiece | 0.2.3 | separationplot | 1.4 |
seqDesign | 1.2 | seqinr | 4.2-30 |
seriation | 1.5.1 | servr | 0.27 |
sessioninfo | 1.2.2 | setartree | 0.2.1 |
setRNG | 2022.4-1 | sets | 1.0-24 |
settings | 0.2.7 | sf | 1.0-14 |
sFFLHD | 0.1.2 | sfheaders | 0.4.3 |
sfsmisc | 1.1-16 | sftime | 0.2-0 |
sgd | 1.1.1 | sgeostat | 1.0-27 |
shades | 1.4.0 | shape | 1.4.6 |
shapefiles | 0.7.2 | shapes | 1.2.7 |
SharpeR | 1.3.0 | shiny | 1.7.5 |
shiny.semantic | 0.4.3 | shinyAce | 0.4.2 |
shinyalert | 3.0.0 | shinybrms | 1.8.0 |
shinyBS | 0.61.1 | shinycssloaders | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.0 |
shinyjqui | 0.4.1 | shinyjs | 2.1.0 |
shinystan | 2.6.0 | shinytest | 1.5.3 |
shinythemes | 1.2.0 | shinyTree | 0.3.1 |
shinyWidgets | 0.8.0 | showimage | 1.0.0 |
sigmoid | 1.4.0 | signal | 0.7-7 |
signs | 0.1.2 | Sim.DiffProc | 4.8 |
simcdm | 0.1.1 | SimComp | 3.3 |
simex | 1.8 | simfinapi | 0.2.4 |
simglm | 0.8.9 | SimilarityMeasures | 1.4 |
SimInf | 9.5.0 | simPop | 2.1.2 |
simputation | 0.2.8 | simrel | 2.1.0 |
SiMRiv | 1.0.6 | simsem | 0.5-16 |
SimSurvey | 0.1.5 | singleRcapture | 0.2.0 |
siplab | 1.6 | sirt | 3.13-228 |
sitmo | 2.0.2 | sits | 1.4.1 |
SkewHyperbolic | 0.4-0 | skmeans | 0.2-15 |
skpr | 1.4.0 | slam | 0.1-50 |
SLBDD | 0.0.4 | sleekts | 1.0.2 |
Sleuth2 | 2.0-5 | Sleuth3 | 1.0-3 |
SLHD | 2.1-1 | slider | 0.3.0 |
slippymath | 0.3.1 | sm | 2.2-5.7.1 |
smacof | 2.1-5 | smacpod | 2.5 |
SmallCountRounding | 1.0.3 | smam | 0.7.0 |
smerc | 1.8.2 | smoof | 1.6.0.3 |
smooth | 3.2.1 | smoother | 1.1 |
smoots | 1.1.4 | smovie | 1.1.5 |
SMPracticals | 1.4-3 | sms | 2.3.1 |
sn | 2.1.1 | sna | 2.7-1 |
snakecase | 0.11.1 | snow | 0.4-4 |
SnowballC | 0.7.1 | snowfall | 1.84-6.2 |
SOAs | 1.4 | soc.ca | 0.8.0 |
socialmixr | 0.2.0 | sodium | 1.2.1 |
sofa | 0.4.0 | solaR | 0.46 |
solrium | 1.2.0 | sorvi | 0.8.21 |
sourcetools | 0.1.7-1 | sp | 2.0-0 |
sp23design | 0.9-1 | spacetime | 1.3-0 |
spam | 2.9-1 | spaMM | 4.4.0 |
spant | 2.15.0 | sparklyr | 1.8.3 |
sparr | 2.3-10 | sparseDFM | 1.0 |
SparseFactorAnalysis | 1.0 | sparseinv | 0.1.3 |
SparseM | 1.81 | 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.1 | spatialreg | 1.2-9 |
spatialsample | 0.4.0 | SpatialTools | 1.0.5 |
spatialwidget | 0.2.3 | spatstat | 3.0-6 |
spatstat.data | 3.0-1 | spatstat.explore | 3.2-3 |
spatstat.geom | 3.2-5 | spatstat.linnet | 3.1-1 |
spatstat.model | 3.2-6 | spatstat.random | 3.1-6 |
spatstat.sparse | 3.0-2 | spatstat.utils | 3.0-3 |
spBayes | 0.4-6 | spBayesSurv | 1.1.7 |
Spbsampling | 1.3.5 | spd | 2.0-1 |
spData | 2.3.0 | spdep | 1.2-8 |
spec | 0.1.7 | spectral | 2.0 |
speff2trial | 1.0.5 | sperrorest | 3.0.5 |
sphet | 2.0 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-19 | spINAR | 0.1.0 |
spind | 2.2.1 | splancs | 2.01-44 |
splines2 | 0.5.1 | splm | 1.6-3 |
spmodel | 0.4.0 | spmoran | 0.2.2.9 |
SpotSampling | 0.1.0 | spselect | 0.0.1 |
spsur | 1.0.2.5 | spsurvey | 5.5.0 |
spTimer | 3.3.2 | sptotal | 1.0.1 |
sqldf | 0.4-11 | SqlRender | 1.15.2 |
SQRL | 1.0.1 | SQUAREM | 2021.1 |
srvyr | 1.2.0 | ssanv | 1.1 |
SSBtools | 1.4.8 | ssgraph | 1.15 |
ssize.fdr | 1.3 | ssizeRNA | 1.3.2 |
ssMousetrack | 1.1.6 | SSN | 1.1.17 |
stabledist | 0.7-1 | stabs | 0.6-4 |
stampr | 0.3.0 | StanHeaders | 2.26.28 |
starma | 1.3 | stars | 0.6-4 |
STARTS | 1.3-8 | startupmsg | 0.9.6 |
statcanR | 0.2.6 | statcodelists | 0.9.2 |
statebins | 1.4.0 | statespacer | 0.5.0 |
StatMatch | 1.4.1 | statmod | 1.5.0 |
statnet.common | 4.9.0 | StatRank | 0.0.6 |
steadyICA | 1.0 | STFTS | 0.1.0 |
stinepack | 1.4 | stlplus | 0.5.1 |
stm | 1.3.6.1 | STMedianPolish | 0.2 |
stochvol | 3.2.1 | stockAnalyst | 1.0.1 |
stopwords | 2.3 | storr | 1.2.5 |
stR | 0.6 | strand | 0.2.0 |
stratification | 2.2-7 | stringdist | 0.9.10 |
stringfish | 0.15.8 | stringi | 1.7.12 |
stringr | 1.5.0 | strucchange | 1.5-3 |
strucchangeRcpp | 1.5-3-1.0.4 | StructuralDecompose | 0.1.1 |
styler | 1.10.2 | subplex | 1.8 |
subscore | 3.3 | sufficientForecasting | 0.1.0 |
sugrrants | 0.2.8 | SuperLearner | 2.0-28.1 |
superml | 0.5.6 | SuppDists | 1.1-9.7 |
support.CEs | 0.6-0 | survcomp | 1.50.0 |
surveillance | 1.21.1 | survey | 4.2-1 |
surveybootstrap | 0.0.3 | surveydata | 0.2.7 |
surveyoutliers | 0.1 | surveyplanning | 4.0 |
surveysd | 1.3.1 | survivalROC | 1.0.3.1 |
survPresmooth | 1.1-11 | svars | 1.3.11 |
svd | 0.5.4.1 | SVDNF | 0.1.8 |
svglite | 2.1.1 | svrep | 0.6.3 |
svs | 3.0.0 | svUnit | 1.0.6 |
swephR | 0.3.1 | swirl | 2.4.5 |
swirlify | 0.5.3 | sylly | 0.1-6 |
sym.arma | 1.0 | symengine | 0.2.2 |
symmoments | 1.2.1 | synthACS | 1.7.1 |
synthesis | 1.2.3 | synthpop | 1.8-0 |
sys | 3.4.2 | systemfit | 1.1-30 |
systemfonts | 1.0.4 | tables | 0.9.17 |
tabnet | 0.4.0 | TAM | 4.1-4 |
TAQMNGR | 2018.5-1 | targets | 1.3.0 |
tau | 0.0-24 | taxize | 0.9.100 |
tbrf | 0.1.5 | tcltk2 | 1.2-11 |
Tcomp | 1.0.1 | tdigest | 0.4.1 |
TeachingDemos | 2.12 | tempdisagg | 1.1.1 |
tensor | 1.5 | tensorA | 0.36.2 |
tensorflow | 2.13.0 | TensorPreAve | 1.1.0 |
tensorTS | 1.0.1 | TEQR | 6.0-0 |
tergm | 4.2.0 | terra | 1.7-46 |
tesseract | 5.1.0 | testcorr | 0.2.0 |
TestDataImputation | 2.3 | TestDesign | 1.5.1 |
tester | 0.1.7 | testit | 0.13 |
TestScorer | 1.7.2 | testthat | 3.1.10 |
TexExamRandomizer | 1.2.3 | texreg | 1.38.6 |
text2vec | 0.6.3 | textcat | 1.0-8 |
textir | 2.0-5 | textplot | 0.2.2 |
textrank | 0.3.1 | textreuse | 0.1.5 |
textshaping | 0.3.6 | textTinyR | 1.1.7 |
tfarima | 0.3.2 | tfautograph | 0.3.2 |
tfdatasets | 2.9.0 | tfio | 0.4.1 |
tfplot | 2021.6-1 | tframe | 2015.12-1.1 |
tfruns | 1.5.1 | tgp | 2.4-21 |
TH.data | 1.1-2 | theft | 0.5.3 |
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.3 | tibble | 3.2.1 |
tibbletime | 0.1.8 | tictoc | 1.2 |
Tides | 2.1 | tidyBdE | 0.3.4 |
tidycensus | 1.4.4 | tidygraph | 1.2.3 |
tidyLPA | 1.1.0 | tidymodels | 1.1.1 |
tidyquant | 1.0.7 | tidyqwi | 0.1.2 |
tidyr | 1.3.0 | tidyselect | 1.2.0 |
tidytext | 0.4.1 | tidytree | 0.4.5 |
tidyverse | 2.0.0 | tiff | 0.1-11 |
tigris | 2.0.3 | timechange | 0.2.0 |
timeDate | 4022.108 | timeSeries | 4031.107 |
timeseriesdb | 1.0.0-1.1.2 | timetk | 2.8.3 |
timsac | 1.3.8-2 | tinytex | 0.46 |
tis | 1.39 | tkrplot | 0.0-27 |
tm | 0.7-11 | tm.plugin.alceste | 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.6 |
tmvnsim | 1.0-2 | tmvtnorm | 1.5 |
tokenizers | 0.3.0 | tokenizers.bpe | 0.1.3 |
toOrdinal | 1.3-0.0 | topicdoc | 0.1.1 |
topicmodels | 0.2-14 | topicmodels.etm | 0.1.0 |
torch | 0.11.0 | torchaudio | 0.3.1.9000 |
torchdatasets | 0.3.0 | torchvision | 0.5.1 |
tpr | 0.3-3 | trackdem | 0.6 |
trackdf | 0.3.2 | trackeR | 1.5.2 |
trackeRapp | 1.2 | TrackReconstruction | 1.3 |
tractor.base | 3.3.5.1 | traipse | 0.3.0 |
trajectories | 0.2-7 | trajr | 1.5.0 |
TransPhylo | 1.4.5 | trapezoid | 2.0-2 |
tree | 1.0-43 | TreeBUGS | 1.5.0 |
treeio | 1.24.0 | treemap | 2.4-4 |
trend | 1.1.5 | 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 |
TSA | 1.3.1 | TSANN | 0.1.0 |
tsbox | 0.4.1 | tsBSS | 1.0.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 | TSEntropies | 0.9 |
tseries | 0.10-54 | tseriesChaos | 0.1-13.1 |
tseriesEntropy | 0.7-2 | tseriesTARMA | 0.3-2 |
tsfeatures | 1.1.1 | tsfknn | 0.5.2 |
tsibble | 1.1.3 | tsibbledata | 0.4.1 |
tsibbletalk | 0.1.0 | tsintermittent | 1.10 |
tsiR | 0.4.3 | TSLSTM | 0.1.0 |
tsModel | 0.6-1 | tsoutliers | 0.6-8 |
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.3 |
tswge | 2.1.0 | TTR | 0.24.3 |
tune | 1.1.2 | turner | 0.1.7 |
tvm | 0.5.2 | tweedie | 2.3.5 |
tweenr | 2.0.2 | twosamples | 2.0.1 |
tzdb | 0.4.0 | ubiquity | 2.0.0 |
ucminf | 1.2.0 | UComp | 4.0.2 |
udpipe | 0.8.11 | ufRisk | 1.0.6 |
ugatsdb | 0.2.3 | uGMAR | 3.4.5 |
UnifiedDoseFinding | 0.1.10 | units | 0.8-4 |
univOutl | 0.4 | unrepx | 1.0-2 |
uptasticsearch | 0.4.0 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
uroot | 2.1-2 | usdata | 0.2.0 |
usethis | 2.2.2 | usmap | 0.6.2 |
usmapdata | 0.1.0 | utf8 | 1.2.3 |
uuid | 1.1-1 | uwot | 0.1.16 |
V8 | 4.3.3 | validate | 1.1.3 |
validatetools | 0.5.0 | vapour | 0.9.5 |
VAR.etp | 1.1 | VARDetect | 0.1.6 |
vardiag | 0.2-1 | vardpoor | 0.20.1 |
VaRES | 1.0.2 | vars | 1.5-9 |
VARshrink | 0.3.1 | varycoef | 0.3.4 |
VCA | 1.4.5 | vcd | 1.4-11 |
vcdExtra | 0.8-5 | vctrs | 0.6.3 |
vdg | 1.2.2 | VedicDateTime | 0.1.7 |
vegan | 2.6-4 | VennDiagram | 1.7.3 |
venneuler | 1.1-3 | VGAM | 1.1-8 |
VGAMdata | 1.1-8 | vglmer | 1.0.3 |
VIM | 6.2.2 | VineCopula | 2.5.0 |
viridis | 0.6.4 | viridisLite | 0.4.2 |
visNetwork | 2.1.2 | visualize | 4.4.0 |
volatilityTrader | 1.0.1 | vpc | 1.2.2 |
vroom | 1.6.3 | vrtest | 1.2 |
waiter | 0.2.5 | waldo | 0.5.1 |
warp | 0.2.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.2 |
wCorr | 1.9.8 | WDI | 2.7.8 |
webdriver | 1.0.6 | webshot | 0.5.5 |
WeightIt | 0.14.2 | weights | 1.0.4 |
WeMix | 4.0.0 | whisker | 0.4.1 |
whitebox | 2.3.1 | widgetframe | 0.3.1 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
WikipediR | 1.5.0 | wikitaxa | 0.4.0 |
wildlifeDI | 0.5.0 | wINEQ | 1.2.0 |
withr | 2.5.0 | wk | 0.8.0 |
wktmo | 1.0.5 | wkutils | 0.1.3 |
wnl | 0.7.3 | wooldridge | 1.4-3 |
word2vec | 0.3.4 | wordcloud | 2.6 |
wordnet | 0.1-16 | workflows | 1.1.3 |
workflowsets | 1.0.1 | worrms | 0.4.3 |
wpp2017 | 1.2-3 | wpp2019 | 1.1-1 |
WrightMap | 1.3 | writexl | 1.4.2 |
wrswoR | 1.1.1 | x12 | 1.10.3 |
x13binary | 1.1.57-4 | XBRL | 0.99.19.1 |
xfun | 0.40 | xgboost | 1.7.5.1 |
xgxr | 1.1.2 | XLConnect | 1.0.7 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.14 | xml2 | 1.3.5 |
xopen | 1.0.0 | xplain | 0.2.2 |
xpose | 0.4.17 | xpose.nlmixr2 | 0.4.0 |
xpose4 | 4.7.2 | xtable | 1.8-4 |
xts | 0.13.1 | XVector | 0.40.0 |
xxIRT | 2.1.2 | yaImpute | 1.0-33 |
yaml | 2.3.7 | yardstick | 1.2.0 |
yesno | 0.1.2 | yuima | 1.15.22 |
yulab.utils | 0.0.9 | zeallot | 0.1.0 |
zic | 0.9.1 | ZIM | 1.1.0 |
ZINARp | 0.1.0 | zip | 2.3.0 |
zipfR | 0.6-70 | zlibbioc | 1.46.0 |
zoo | 1.8-12 | ZRA | 0.2 |
RStudio Server
R: 4.3.1
rstudio-server: 2023.06.0+421
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
Applied patching, updated R packages, and added R packages used in finance, official statistics, and survey statistics.
This AMI provides thousands of R packages covering various domains such as data science, machine learning, 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, and natural language processing.
R packages (2659)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.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.1 | acp | 2.1 |
acs | 2.1.4 | ACSWR | 1.0 |
actuar | 3.3-2 | ada | 2.0-5 |
adagio | 0.8.5 | adaptivetau | 2.2-3 |
adaptMCMC | 1.4 | adaptr | 1.3.1 |
adaptsmoFMRI | 1.2 | adaptTest | 1.1 |
ade4 | 1.7-22 | ade4TkGUI | 0.3-1 |
adegenet | 2.1.10 | adegraphics | 1.0-18 |
adehabitatLT | 0.3.27 | adehabitatMA | 0.3.16 |
ADGofTest | 0.3 | adimpro | 0.9.5 |
admisc | 0.33 | AdMit | 2.1.9 |
AER | 1.2-10 | affy | 1.78.0 |
affyio | 1.70.0 | africamonitor | 0.2.3 |
agricolae | 1.3-6 | agricolaeplotr | 0.3.1 |
agridat | 1.21 | airports | 0.1.0 |
akima | 0.6-3.4 | alabama | 2022.4-1 |
AlgDesign | 1.2.1 | almanac | 1.0.0 |
alphavantager | 0.1.3 | ALTopt | 0.1.2 |
Amelia | 1.8.1 | AmericanCallOpt | 0.95 |
ammiBayes | 1.0-1 | AMR | 2.1.0 |
AnaCoDa | 0.1.4.4 | anacor | 1.1-4 |
anesrake | 0.80 | animation | 2.7 |
AnnotationDbi | 1.62.1 | anytime | 0.3.9 |
aod | 1.3.2 | aoos | 0.5.0 |
AovBay | 0.1.0 | ape | 5.7-1 |
APFr | 1.0.2 | aplot | 0.1.10 |
approximator | 1.2-7 | ARCensReg | 2.1 |
ArchaeoChron | 0.1 | ArchaeoPhases | 1.8 |
ArDec | 2.1-1 | ARDL | 0.2.3 |
ardl.nardl | 1.2.3 | arfima | 1.8-1 |
arm | 1.13-1 | aroma.apd | 0.7.0 |
arrangements | 1.1.9 | arrow | 12.0.1.1 |
ars | 0.6 | ascii | 2.4 |
asd | 2.2 | ash | 1.0-15 |
ashr | 2.2-54 | askpass | 1.1 |
aspect | 1.0-6 | ASSA | 2.0 |
assertthat | 0.2.1 | AssetCorr | 1.0.4 |
astsa | 2.0 | asymmetry | 2.0.4 |
ata | 1.1.1 | aTSA | 3.1.2 |
attempt | 0.3.1 | attention | 0.3.0 |
AUC | 0.3.2 | audio | 0.1-10 |
automap | 1.1-9 | autostsm | 3.1.0 |
av | 0.8.3 | aweek | 1.0.3 |
aws | 2.5-3 | awsMethods | 1.1-1 |
BACCO | 2.0-9 | BACCT | 1.0 |
backports | 1.4.1 | backtest | 0.3-4 |
baggr | 0.7.6 | bain | 0.2.8 |
BalancedSampling | 1.6.3 | BaM | 1.0.3 |
bama | 1.3.0 | bamdit | 3.4.0 |
bamlss | 1.2-1 | bang | 1.0.1 |
BANOVA | 1.2.1 | BART | 2.9.4 |
bartBMA | 1.0 | bartCause | 1.0-6 |
bartMachine | 1.3.4.1 | bartMachineJARs | 1.2.1 |
BAS | 1.6.4 | basad | 0.3.0 |
base64 | 2.0.1 | base64enc | 0.1-3 |
base64url | 1.4 | basicMCMCplots | 0.2.7 |
BaSkePro | 0.1.0 | BASS | 1.3.1 |
BatchExperiments | 1.4.3 | BatchJobs | 1.9 |
baycn | 1.2.0 | bayefdr | 0.2.1 |
bayes4psy | 1.2.11 | 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-8 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.2.0 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.4 |
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.1 |
BayesianNetwork | 0.3 | BayesianTools | 0.1.8 |
bayesImageS | 0.6-1 | BayesLCA | 1.9 |
bayesLife | 5.1-1 | bayeslincom | 1.3.0 |
BayesLN | 0.2.8 | BayesLogit | 2.1 |
bayesloglin | 1.0.1 | bayeslongitudinal | 0.1.0 |
bayesm | 3.1-5 | BayesMallows | 1.3.0 |
BayesMassBal | 1.1.0 | bayesmeta | 3.3 |
bayesmix | 0.7-6 | bayesnec | 2.1.0.3 |
bayesplot | 1.10.0 | bayesQR | 2.3 |
BayesSAE | 1.0-2 | bayestestR | 0.13.1 |
bayesTFR | 7.3-2 | BayesTools | 0.2.16 |
BayesTree | 0.3-1.4 | BayesVarSel | 2.2.5 |
BayesX | 0.3-2 | BAYSTAR | 0.2-10 |
BB | 2019.10-1 | BBmisc | 1.13 |
BCBCSF | 1.0-1 | BCC1997 | 0.1.1 |
BCE | 2.2.0 | Bchron | 4.7.6 |
bcp | 4.0.3 | bcrm | 0.5.4 |
BDgraph | 2.72 | bdsmatrix | 1.3-6 |
BE | 0.2.4 | beadarray | 2.50.0 |
BeadDataPackR | 1.52.0 | bearishTrader | 1.0.2 |
beepr | 1.3 | beeswarm | 0.4.0 |
BenfordTests | 1.2.0 | bentcableAR | 0.3.1 |
Bergm | 5.0.5 | Bessel | 0.6-0 |
BEST | 0.5.4 | BetaBit | 2.1 |
betafunctions | 1.8.1 | 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 |
BGLR | 1.1.0 | BGVAR | 2.5.2 |
BH | 1.81.0-1 | BHH2 | 2016.05.31 |
BiasedUrn | 2.0.10 | bibtex | 0.5.1 |
bidask | 1.0.0 | BIFIEsurvey | 3.4-15 |
biganalytics | 1.1.21 | bigD | 0.2.0 |
biglm | 0.9-2.1 | bigmemory | 4.6.1 |
bigmemory.sri | 0.1.6 | bigrquery | 1.4.2 |
bigsplines | 1.1-1 | bigtime | 0.2.2 |
BigVAR | 1.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | binom | 1.1-1.1 |
binomSamSize | 0.1-5 | binr | 1.1.1 |
binseqtest | 1.0.3 | Biobase | 2.60.0 |
BiocGenerics | 0.46.0 | BiocManager | 1.30.21.1 |
BiocParallel | 1.34.1 | BiocVersion | 3.17.1 |
bioinactivation | 1.2.3 | biomformat | 1.28.0 |
bioOED | 0.2.1 | Biostrings | 2.68.0 |
birtr | 1.0.0 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
biwavelet | 0.20.21 | bizdays | 1.0.13 |
bkmr | 0.2.2 | blaise | 1.3.9 |
blastula | 0.3.3 | blavaan | 0.4-8 |
BLModel | 1.0.2 | blob | 1.2.4 |
blocklength | 0.1.5 | blockrand | 1.5 |
blocksdesign | 4.9 | blockTools | 0.6.4 |
BLR | 1.6 | BMA | 3.18.17 |
bmgarch | 1.1.0 | bmixture | 1.7 |
BMS | 0.3.5 | BMTAR | 0.1.1 |
bnlearn | 4.8.3 | BNPTSclust | 2.0 |
BNSP | 2.2.3 | 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.34 | Boom | 0.9.11 |
BoomSpikeSlab | 1.2.5 | bootnet | 1.5.3 |
BootPR | 0.70 | bootstrap | 2019.6 |
bootUR | 1.0.2 | bpca | 1.3-4 |
bqtl | 1.0-34 | BradleyTerry2 | 1.1-2 |
brainR | 1.6.0 | breakfast | 2.3 |
brew | 1.0-8 | brglm | 0.7.2 |
brglm2 | 0.9 | bridgesampling | 1.1-2 |
brio | 1.1.3 | brms | 2.19.0 |
Brobdingnag | 1.2-9 | broman | 0.80 |
broom | 1.0.5 | bsamGP | 1.2.4 |
bslib | 0.5.0 | BsMD | 2023.707 |
bspec | 1.6 | bspmma | 0.1-2 |
bssm | 2.0.1 | BSSprep | 0.1 |
bsts | 0.9.9 | bsvars | 1.0.0 |
BTLLasso | 0.1-11 | BTM | 0.3.7 |
bullishTrader | 1.0.1 | bundesbank | 0.1-9 |
BurStFin | 1.3 | BurStMisc | 1.1 |
BVAR | 1.0.4 | bvartools | 0.2.2 |
ca | 0.71.1 | cabootcrs | 2.1.0 |
cachem | 1.0.8 | cacIRT | 1.4 |
CADFtest | 0.3-3 | caffsim | 0.2.2 |
Cairo | 1.6-0 | calculus | 1.0.1 |
CalibrateSSB | 1.3.0 | calibrator | 1.2-8 |
callr | 3.7.3 | cancensus | 0.5.5 |
candisc | 0.8-6 | CANSIM2R | 1.14.1 |
car | 3.1-2 | CARBayes | 5.3 |
CARBayesdata | 3.0 | CARBayesST | 3.3.1 |
carData | 3.0-5 | caret | 6.0-94 |
carfima | 2.0.2 | caTools | 1.18.2 |
catR | 3.17 | causact | 0.4.2 |
CausalImpact | 1.3.0 | CAvariants | 5.9 |
cbsodataR | 0.5.1 | cccp | 0.2-9 |
cdlTools | 0.15 | CDM | 8.2-6 |
cds | 1.0.3 | CellNOptR | 1.46.0 |
cellranger | 1.1.0 | censusapi | 0.8.0 |
ChainLadder | 0.2.18 | chandwich | 1.1.5 |
changepoint | 2.2.4 | changepoint.geo | 1.0.1 |
changepoint.np | 1.0.5 | checkLuhn | 1.1.0 |
checkmate | 2.2.0 | cherryblossom | 0.1.0 |
chk | 0.9.0 | choiceDes | 0.9-3 |
CholWishart | 1.1.2 | chron | 2.3-61 |
cifti | 0.4.5 | cinterpolate | 1.0.0 |
CircSpaceTime | 0.9.0 | CircStats | 0.2-6 |
circular | 0.4-95 | ciTools | 0.6.1 |
classInt | 0.4-9 | cli | 3.6.1 |
clime | 0.5.0 | clinDR | 2.3.5 |
clinfun | 1.1.3 | clinicalsignificance | 1.2.0 |
clinPK | 0.11.1 | clinsig | 1.2 |
clipr | 0.8.0 | clisymbols | 1.2.0 |
clock | 0.7.0 | clue | 0.3-64 |
clustDRM | 0.1-0 | clusterGeneration | 1.3.7 |
clusterPower | 0.7.0 | ClustVarLV | 2.1.1 |
clv | 0.3-2.3 | cmaes | 1.0-12 |
CMLS | 1.0-1 | cmm | 0.12 |
cmprsk | 2.2-11 | cmrutils | 1.3.1 |
cNORM | 3.0.3 | CNORode | 1.42.0 |
coalescentMCMC | 0.4-4 | coalitions | 0.6.24 |
coarseDataTools | 0.6-6 | cobalt | 4.5.1 |
coconots | 1.1.1 | cocor | 1.1-4 |
cocorresp | 0.4-3 | cocron | 1.0-1 |
coda | 0.19-4 | coin | 1.4-2 |
cointReg | 0.2.0 | collapse | 1.9.6 |
collapsibleTree | 0.1.7 | colorRamps | 2.3.1 |
colorspace | 2.1-0 | colourpicker | 1.2.0 |
combinat | 0.0-8 | CombinS | 1.1-1 |
CommonJavaJars | 1.0-6 | commonmark | 1.9.0 |
compare | 0.2-6 | CompQuadForm | 1.4.3 |
conditionz | 0.1.0 | conf.design | 2.0.0 |
config | 0.3.1 | conflicted | 1.2.0 |
conquestr | 1.0.7 | contactdata | 1.0.0 |
contfrac | 1.1-12 | convey | 0.2.5 |
cops | 1.3-1 | copula | 1.1-2 |
copulaData | 0.0-1 | cordillera | 1.0-0 |
coro | 1.0.3 | corona | 0.3.0 |
coronavirus | 0.4.1 | corpcor | 1.6.10 |
corpora | 0.5-1 | corporaexplorer | 0.8.6 |
corrgram | 1.14 | corrplot | 0.92 |
cosa | 2.1.0 | costat | 2.4 |
countrycode | 1.5.0 | COVID19 | 3.0.3 |
covid19.analytics | 2.1.3.1 | covid19br | 0.1.6 |
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.1 |
CPBayes | 1.1.0 | cpk | 1.3-1 |
cplm | 0.7-11 | cpp11 | 0.4.5 |
crayon | 1.5.2 | credentials | 1.3.2 |
credule | 0.1.4 | crfsuite | 0.4.1 |
CRM | 1.2.4 | crmPack | 1.0.3 |
crossdes | 1.1-2 | Crossover | 0.1-21 |
crosstalk | 1.2.0 | crs | 0.15-37 |
crseEventStudy | 1.2.2 | crul | 1.4.0 |
cSEM | 0.5.0 | csodata | 1.4.1 |
csv | 0.6.2 | ctbi | 2.0.5 |
ctrdata | 1.14.0 | CTT | 2.3.3 |
CTTShiny | 0.1 | ctv | 0.9-5 |
cubature | 2.1.0 | Cubist | 0.4.2.1 |
curl | 5.0.1 | cvar | 0.5 |
cvAUC | 1.1.4 | CVST | 0.2-3 |
CVXR | 1.0-11 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | dae | 3.2.15 |
daewr | 1.2-10 | dagitty | 0.3-1 |
DAKS | 2.1-3 | DALEX | 2.4.3 |
data.table | 1.14.8 | data.tree | 1.0.0 |
DatabaseConnector | 6.2.3 | DataExplorer | 0.8.2 |
datapasta | 3.1.0 | dataseries | 0.2.0 |
datawizard | 0.8.0 | date | 1.2-42 |
datetimeutils | 0.6-1 | dbarts | 0.9-23 |
DBI | 1.1.3 | DBItest | 1.7.3 |
dbparser | 2.0.1 | dbplyr | 2.3.3 |
dbscan | 1.1-11 | dbx | 0.2.8 |
DChaos | 0.1-7 | dclone | 2.3-2 |
dcov | 0.1.1 | dCovTS | 1.3 |
dcurver | 0.9.2 | dde | 1.0.4 |
deBInfer | 0.4.4 | debugme | 1.1.0 |
deducorrect | 1.3.7 | deductive | 1.0.0 |
deldir | 1.0-9 | deltaPlotR | 1.6 |
dendextend | 1.17.1 | densEstBayes | 1.0-2.2 |
DEoptim | 2.2-8 | DEoptimR | 1.1-0 |
depmix | 0.9.16 | depmixS4 | 1.5-0 |
DepthProc | 2.1.5 | Deriv | 4.1.3 |
derivmkts | 0.2.5 | desc | 1.4.2 |
DescTools | 0.99.49 | designmatch | 0.5.3 |
desirability | 2.1 | deSolve | 1.36 |
desplot | 1.10 | devtools | 2.4.5 |
dexter | 1.2.2 | dextergui | 0.2.6 |
dexterMST | 0.9.3 | 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 | 2020.10-1 |
dfped | 1.1 | dfpk | 3.5.1 |
DHARMa | 0.4.6 | DHS.rates | 0.9.1 |
diagis | 0.2.2 | diagonals | 6.4.0 |
diagram | 1.6.5 | DiagrammeR | 1.0.10 |
dials | 1.2.0 | DiceDesign | 1.9 |
DiceEval | 1.5.1 | DiceKriging | 1.6.0 |
DiceView | 2.1-0 | dichromat | 2.0-0.1 |
DICOMread | 0.0.0.3 | DIFboost | 0.3 |
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.33 | DIMORA | 0.3.5 |
dimRed | 0.2.6 | dina | 2.0.0 |
dipsaus | 0.2.8 | diptest | 0.76-0 |
Dire | 2.1.1 | DIRECT | 1.0.1 |
directlabels | 2021.1.13 | dirichletprocess | 0.4.1 |
disaggR | 1.0.5 | discretization | 1.0-1.1 |
DistatisR | 1.1.1 | distcrete | 1.0.3 |
distfree.cr | 1.5.1 | distr | 2.9.2 |
distrEx | 2.9.0 | distributional | 0.3.2 |
distributions3 | 0.2.1 | DistributionUtils | 0.6-0 |
distrom | 1.0.1 | distrTeach | 2.9.0 |
dittodb | 0.1.6 | divest | 0.10.3 |
dLagM | 1.1.8 | dlm | 1.1-6 |
dlnm | 2.4.7 | dlstats | 0.1.7 |
dmri.tracking | 0.1.0 | doBy | 4.6.17 |
doc2vec | 0.2.0 | docopulae | 0.4.0 |
DoE.base | 1.2-2 | DoE.MIParray | 1.0 |
DoE.wrapper | 0.11 | doMC | 1.3.8 |
doParallel | 1.0.17 | doRNG | 1.8.6 |
DoseFinding | 1.0-5 | doSNOW | 1.0.20 |
DOSPortfolio | 0.1.0 | dotCall64 | 1.0-2 |
Dowd | 0.12 | downlit | 0.4.3 |
downloader | 0.4 | dparser | 1.3.1-10 |
dplyr | 1.1.2 | dqrng | 0.3.0 |
dr4pl | 2.0.0 | DriftBurstHypothesis | 0.4.0.1 |
DRR | 0.0.4 | dsa | 1.0.12 |
DSAIDE | 0.9.3 | dse | 2020.2-1 |
DSI | 1.5.0 | DSL | 0.1-7 |
DT | 0.28 | DTAT | 0.3-6 |
DtD | 0.2.2 | dti | 1.5.1 |
dtplyr | 1.3.1 | DTSg | 1.1.1 |
dtt | 0.1-2 | dtts | 0.1.0 |
dtw | 1.23-1 | dtwclust | 5.5.12 |
duckdb | 0.8.1-1 | dygraphs | 1.1.1.6 |
dyn | 0.2-9.6 | dynamicTreeCut | 1.63-1 |
dynaTree | 1.2-15 | dynlm | 0.3-6 |
e1071 | 1.7-13 | earlyR | 0.0.5 |
earth | 5.3.2 | easypower | 1.0.1 |
easySdcTable | 1.0.7 | eba | 1.10-0 |
EbayesThresh | 1.4-12 | ebdbNet | 1.2.7 |
EBImage | 4.42.0 | EBMAforecast | 1.0.3 |
ecb | 0.4.2 | Ecdat | 0.4-2 |
Ecfun | 0.3-2 | ecm | 6.3.0 |
ecodist | 2.0.9 | ECOSolveR | 0.5.5 |
ecp | 3.1.5 | 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.1 |
eegkit | 1.0-4 | eegkitdata | 1.1 |
EFAutilities | 2.1.3 | effects | 4.2-2 |
EGAnet | 1.2.3 | egg | 0.4.5 |
egor | 1.23.3 | eha | 2.10.3 |
eigenmodel | 1.11 | elastic | 1.2.0 |
elasticnet | 1.3 | ellipse | 0.5.0 |
ellipsis | 0.3.2 | elliptic | 1.4-0 |
EMD | 1.5.9 | emdi | 2.2.0 |
emg | 1.0.9 | emmeans | 1.8.7 |
emulator | 1.2-21 | encode | 0.3.6 |
endtoend | 2.29 | energy | 1.7-11 |
EngrExpt | 0.1-8 | enrichwith | 0.3.1 |
ensembleBMA | 5.1.8 | EntropyMCMC | 1.0.4 |
EnvStats | 2.8.0 | 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.8 |
epiR | 2.0.62 | EpiReport | 1.0.2 |
episensr | 1.2.0 | epitools | 0.5-10.1 |
epitrix | 0.4.0 | equate | 2.0.8 |
equateIRT | 2.3.0 | equateMultiple | 0.1.1 |
equivalence | 0.7.2 | era | 0.4.1 |
ergm | 4.5.0 | ergm.ego | 1.1.0 |
ergm.multi | 0.2.0 | eRm | 1.0-2 |
errorlocate | 1.1 | errum | 0.0.3 |
esaBcv | 1.2.1.1 | esemifar | 1.0.1 |
ESG | 1.2 | EstCRM | 1.6 |
estimability | 1.4.1 | EstimateGroupNetwork | 0.3.1 |
ETLUtils | 1.5 | etm | 1.1.1 |
etrm | 1.0.1 | etrunct | 0.1 |
eurostat | 3.8.2 | evaluate | 0.21 |
evd | 2.3-6.1 | evgam | 1.0.0 |
ewoc | 0.3.0 | Exact | 3.2 |
exams | 2.4-0 | exdex | 1.2.1 |
experiment | 1.2.1 | expint | 0.1-8 |
expm | 0.999-7 | ExPosition | 2.8.23 |
expsmooth | 2.3 | extraDistr | 1.9.1 |
extrafont | 0.19 | extrafontdb | 1.0 |
extraoperators | 0.1.1 | ez | 4.4-0 |
fable | 0.3.3 | fable.prophet | 0.1.0 |
fabletools | 0.3.3 | FactoClass | 1.2.7 |
FactoMineR | 2.8 | factorstochvol | 1.0.1 |
fanplot | 4.0.0 | fansi | 1.0.4 |
FAOSTAT | 2.3.0 | faoutlier | 0.7.6 |
faraway | 1.0.8 | farver | 2.1.1 |
fAssets | 4023.85 | fastcluster | 1.2.3 |
fastDummies | 1.7.3 | fastGHQuad | 1.0.1 |
fastICA | 1.2-3 | fastLink | 0.6.0 |
fastmap | 1.1.1 | fastmatch | 1.1-3 |
FatTailsR | 1.8-0 | FAVAR | 0.1.3 |
fBasics | 4022.94 | fBonds | 3042.78 |
fCopulae | 4022.85 | fda | 6.1.4 |
fdaACF | 1.0.0 | fdapace | 0.5.9 |
fdrtool | 1.2.17 | fds | 1.8 |
fdth | 1.2-6 | feasts | 0.3.1 |
fechner | 1.0-3 | FeedbackTS | 1.5 |
fExtremes | 4021.83 | ff | 4.0.9 |
FFD | 1.0-9 | fftwtools | 0.9-11 |
fGarch | 4022.89 | fHMM | 1.1.0 |
FielDHub | 1.3.1 | fields | 14.1 |
filearray | 0.1.6 | filehash | 2.4-5 |
filehashSQLite | 0.2-6 | filelock | 1.0.2 |
fImport | 4021.86 | FinancialMath | 0.1.1 |
FinAsym | 1.0 | finnts | 0.2.4 |
finreportr | 1.0.4 | FinTS | 0.4-6 |
fitdistrplus | 1.1-11 | FKF | 0.2.4 |
FKF.SP | 0.3.1 | flashClust | 1.01-2 |
flexclust | 1.4-1 | flexdashboard | 0.6.1 |
flexmix | 2.3-19 | flextable | 0.9.2 |
float | 0.3-1 | fma | 2.5 |
FMC | 1.0.1 | fmdates | 0.1.4 |
FME | 1.3.6.3 | fmri | 1.9.11 |
fMultivar | 4031.84 | fnets | 0.1.5 |
FNN | 1.1.3.2 | fNonlinear | 4021.81 |
fontawesome | 0.5.1 | fontBitstreamVera | 0.1.1 |
fontLiberation | 0.1.0 | fontquiver | 0.2.1 |
forcats | 1.0.0 | foreach | 1.5.2 |
ForeCA | 0.2.7 | forecast | 8.21 |
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.1 | forge | 0.2.0 |
formatR | 1.14 | formattable | 0.2.1 |
Formula | 1.2-5 | formula.tools | 1.7.1 |
fourPNO | 1.1.0 | fpc | 2.2-10 |
fpcb | 0.1.0 | fPortfolio | 4023.84 |
fpp2 | 2.5 | fpp3 | 0.5 |
fracdiff | 1.5-2 | Frames2 | 0.2.1 |
FRAPO | 0.4-1 | fredr | 2.1.0 |
freecurrencyapi | 0.1.0 | freesurferformats | 0.1.17 |
fRegression | 4021.83 | frenchdata | 0.2.0 |
freqdom | 2.0.3 | freqdom.fda | 1.0.1 |
fresh | 0.2.0 | FrF2 | 2.3-1 |
FrF2.catlg128 | 1.2-2 | fs | 1.6.3 |
fslr | 2.25.2 | fsMTS | 0.1.7 |
fst | 0.9.8 | fstcore | 0.9.14 |
fTrading | 3042.79 | ftsa | 6.2 |
functional | 0.6 | funtimes | 9.1 |
furrr | 0.3.1 | futile.logger | 1.4.3 |
futile.options | 1.0.1 | future | 1.33.0 |
future.apply | 1.11.0 | fuzzyjoin | 0.1.6 |
GA | 3.2.3 | GAD | 1.1.1 |
gam | 1.22-2 | gamlr | 1.13-8 |
gamlss | 5.4-12 | gamlss.data | 6.0-2 |
gamlss.dist | 6.0-5 | gap | 1.5-1 |
gap.datasets | 0.0.5 | GARCHSK | 0.1.0 |
garchx | 1.5 | gargle | 1.5.2 |
garma | 0.9.11 | GAS | 0.3.4 |
gasmodel | 0.4.0 | gaussquad | 1.0-3 |
GaussSuppression | 0.7.0 | gbm | 2.1.8.1 |
gbutils | 0.5 | gclus | 1.3.2 |
GCPM | 1.2.2 | gdata | 2.19.0 |
GDINA | 2.9.4 | gdpc | 1.1.3 |
gdtools | 0.3.3 | geepack | 1.3.9 |
genalg | 0.2.1 | gender | 0.6.0 |
GeneralizedHyperbolic | 0.8-4 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | GenomeInfoDb | 1.36.0 |
GenomeInfoDbData | 1.2.10 | GenomicRanges | 1.52.0 |
GenSA | 1.1.9 | geojsonsf | 2.0.3 |
geometries | 0.2.3 | geometry | 0.4.7 |
GEOquery | 2.68.0 | geoR | 1.9-2 |
geosphere | 1.5-18 | geospt | 1.0-2 |
gert | 1.9.2 | getPass | 0.2-2 |
gets | 0.37 | GetTDData | 1.5.4 |
gfonts | 0.2.0 | GGally | 2.1.2 |
ggalt | 0.4.0 | gganimate | 1.0.8 |
ggdag | 0.2.10 | ggdemetra | 0.2.5 |
ggdendro | 0.1.23 | ggdist | 3.3.0 |
ggExtra | 0.10.0 | ggforce | 0.4.1 |
ggformula | 0.10.4 | ggfun | 0.1.1 |
gghalves | 0.1.4 | ggmap | 3.0.2 |
ggmcmc | 1.5.1.1 | ggplot2 | 3.4.2 |
ggplotify | 0.1.1 | ggpubr | 0.6.0 |
ggraph | 2.1.0 | ggrepel | 0.9.3 |
ggridges | 0.5.4 | ggsci | 3.0.0 |
ggseas | 0.5.4 | ggsignif | 0.6.4 |
ggspatial | 1.1.8 | ggstance | 0.3.6 |
ggtext | 0.1.2 | ggthemes | 4.2.4 |
ggtree | 3.8.0 | ggvis | 0.4.8 |
gh | 1.4.0 | ghyp | 1.6.3 |
Gifi | 0.4-0 | gifti | 0.8.0 |
GIGrvg | 0.8 | gimme | 0.7-14 |
git2r | 0.32.0 | gitcreds | 0.1.2 |
glarma | 1.6-0 | GlarmaVarSel | 1.0 |
glasso | 1.11 | glassoFast | 1.0 |
gld | 2.6.6 | glm2 | 1.2.1 |
GLMMRR | 0.5.0 | glmnet | 4.1-7 |
globals | 0.16.2 | glpkAPI | 1.3.4 |
glue | 1.6.2 | GMDH | 1.6 |
gmm | 1.8 | gmodels | 2.18.1.1 |
gmp | 0.7-2 | gmvarkit | 2.0.8 |
GNAR | 1.1.2 | gnm | 1.1-2 |
GO.db | 3.17.0 | goftest | 1.2-3 |
gogarch | 0.7-5 | golem | 0.4.1 |
googledrive | 2.1.1 | googlesheets4 | 1.1.1 |
googleVis | 0.7.1 | gower | 1.0.1 |
GPArotation | 2023.3-1 | GPCMlasso | 0.1-6 |
GPfit | 1.0-8 | gplots | 3.1.3 |
gradethis | 0.2.12.9004 | gRain | 1.3.13 |
graph | 1.78.0 | graphicalVAR | 0.3.1 |
graphlayouts | 1.0.0 | grates | 1.1.0 |
gratis | 1.0.3 | gravitas | 0.1.3 |
gRbase | 1.8.9 | greeks | 1.1.0 |
greta | 0.4.3 | greybox | 1.0.8 |
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.2-0 | grnn | 0.1.0 |
GroupSeq | 1.4.2 | grplasso | 0.4-7 |
gsarima | 0.1-5 | gsDesign | 3.5.0 |
gSEM | 0.4.3.4 | gsignal | 0.3-5 |
gsl | 2.1-8 | gss | 2.2-5 |
gstat | 2.1-1 | gsubfn | 0.7 |
gt | 0.9.0 | gtable | 0.3.3 |
gtheory | 0.1.2 | gtools | 3.9.4 |
gtop | 0.2.0 | GUIDE | 1.2.7 |
gustave | 0.4.4 | gWidgets2 | 1.0-9 |
HaploSim | 1.8.4.2 | hardhat | 1.3.0 |
hash | 2.2.6.2 | haven | 2.5.3 |
hbsae | 1.2 | hdf5r | 1.3.8 |
HDInterval | 0.2.4 | HDMT | 1.0.5 |
hdrcde | 3.4 | HDShOP | 0.1.3 |
HDTSA | 1.0.2 | heatmaply | 1.4.2 |
heplots | 1.4-2 | here | 1.0.1 |
hett | 0.3-3 | hexbin | 1.28.3 |
hflights | 0.1 | HH | 3.1-49 |
hht | 2.1.6 | highcharter | 0.9.4 |
highfrequency | 1.0.0 | highlight | 0.5.1 |
highr | 0.10 | highs | 0.1-10 |
HIMA | 2.2.0 | hipread | 0.2.3 |
HKRbook | 0.1.3 | HLMdiag | 0.5.0 |
Hmisc | 5.1-0 | HMMpa | 1.0.1 |
hms | 1.1.3 | homals | 1.0-10 |
hommel | 1.6 | hpfilter | 1.0.2 |
HSAUR3 | 1.0-14 | htmlTable | 2.4.1 |
htmltools | 0.5.5 | htmlwidgets | 1.6.2 |
hts | 6.0.2 | httpcode | 0.3.0 |
httpuv | 1.6.11 | httr | 1.4.6 |
httr2 | 0.2.3 | humanize | 0.2.0 |
hunspell | 3.0.2 | hutils | 1.8.1 |
hwwntest | 1.3.1 | HydroMe | 2.0-1 |
HyperbolicDist | 0.6-4 | hypergeo | 1.2-13 |
i2extras | 0.2.1 | iarm | 0.4.3 |
ibd | 1.5 | iBreakDown | 2.0.1 |
IBrokers | 0.10-2 | ica | 1.0-3 |
ICAOD | 1.0.1 | icarus | 0.3.2 |
ICC | 2.4.0 | iccbeta | 1.2.0 |
Icens | 1.72.0 | ichimoku | 1.4.6 |
ICS | 1.3-2 | ICSNP | 1.1-1 |
ICtest | 0.3-5 | idbr | 1.0 |
idefix | 1.0.3 | IDPmisc | 1.1.20 |
ids | 1.0.1 | ifaTools | 0.23 |
igraph | 1.5.0.1 | igraphdata | 1.0.1 |
illuminaio | 0.42.0 | imbibe | 0.1.1 |
immer | 1.4-15 | implyr | 0.4.0 |
impute | 1.74.1 | imputeTestbench | 3.0.3 |
imputeTS | 3.3 | inca | 0.0.4 |
IncDTW | 1.1.4.4 | incidence | 1.7.3 |
incidence2 | 2.2.1 | inegiR | 3.0.0 |
ineq | 0.2-13 | infer | 1.0.4 |
influence.SEM | 2.3 | influenceR | 0.1.5 |
influxdbr | 0.14.2 | InfoTrad | 1.2 |
ingredients | 2.3.0 | ini | 0.3.1 |
inline | 0.3.19 | insee | 1.1.5 |
insight | 0.19.3 | InspectChangepoint | 1.2 |
interp | 1.1-4 | intervals | 0.15.4 |
inum | 1.0-5 | invgamma | 1.1 |
iotables | 0.9.1 | iotools | 0.3-2 |
ipred | 0.9-14 | ipumsr | 0.6.0 |
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 | IsingFit | 0.3.1 |
IsingSampler | 0.2.1 | Iso | 0.0-18.1 |
isoband | 0.2.7 | ISOcodes | 2022.09.29 |
IsoGene | 1.0-24 | ISOweek | 0.6-2 |
ISwR | 2.0-8 | iterators | 1.0.14 |
iterLap | 1.1-3 | itertools | 0.1-3 |
itsmr | 1.10 | JADE | 2.0-3 |
jalcal | 0.1.0 | janeaustenr | 1.0.0 |
janitor | 2.2.0 | JavaGD | 0.6-5 |
jiebaR | 0.11 | jiebaRD | 0.1 |
jjb | 0.1.1 | JMdesign | 1.3 |
jomo | 2.7-6 | JoSAE | 0.3.0 |
jpeg | 0.1-10 | jqr | 1.2.3 |
jquerylib | 0.1.4 | jrt | 1.1.2 |
jsonify | 1.2.2 | jsonlite | 1.8.7 |
juicyjuice | 0.1.0 | JuliaConnectoR | 1.1.1 |
JWileymisc | 1.4.0 | kableExtra | 1.3.4 |
kalmanfilter | 2.0.1 | kappaSize | 1.2 |
KEGGREST | 1.40.0 | Kendall | 2.2.1 |
kequate | 1.6.4 | keras | 2.11.1 |
kernelFactory | 0.3.0 | kernlab | 0.9-32 |
KFAS | 1.5.0 | klaR | 1.7-2 |
km.ci | 0.5-6 | knitr | 1.43 |
koRpus | 0.13-8 | ks | 1.14.0 |
kst | 0.5-4 | kutils | 1.72 |
kza | 4.1.0.1 | labdsv | 2.1-0 |
label.switching | 1.8 | labeling | 0.4.2 |
labelled | 2.12.0 | laeken | 0.5.2 |
LaF | 0.8.4 | lagged | 0.3.2 |
Lahman | 11.0-0 | LAM | 0.6-19 |
lambda.r | 1.2.4 | lamW | 2.1.2 |
languageR | 1.5.0 | LaplacesDemon | 16.1.6 |
lars | 1.3 | lassoshooting | 0.1.5-1.1 |
latdiag | 0.3 | later | 1.3.1 |
latex2exp | 0.9.6 | latticeExtra | 0.6-30 |
lava | 1.7.2.1 | lavaan | 0.6-16 |
lavaan.survey | 1.1.3.1 | LAWBL | 1.5.0 |
lazyeval | 0.2.2 | lbfgsb3c | 2020-3.2 |
LCAvarsel | 1.1 | lcda | 0.3.1 |
lda | 1.4.2 | ldat | 0.3.3 |
ldbounds | 2.0.1 | leafem | 0.2.0 |
leaflet | 2.1.2 | leaflet.providers | 1.9.0 |
leafpop | 0.1.0 | leafsync | 0.1.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
learnr | 0.11.4 | legion | 0.1.2 |
lfactors | 1.0.4 | lgarch | 0.6-2 |
lgr | 0.4.4 | lgtdl | 1.1.5 |
lhs | 1.1.6 | libcoin | 1.0-9 |
lifecontingencies | 1.3.11 | lifecycle | 1.0.3 |
LIM | 1.4.7 | limma | 3.56.1 |
limSolve | 1.5.6 | linelist | 0.0.1 |
linpk | 1.1.2 | linprog | 0.9-4 |
lintools | 0.1.7 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | liteq | 1.1.0 |
lme4 | 1.1-34 | lmerTest | 3.1-3 |
lmForc | 0.1.0 | lmm | 1.3 |
lmom | 2.9 | Lmoments | 1.3-1 |
lmtest | 0.9-40 | LNIRT | 0.5.1 |
locfit | 1.5-9.8 | locits | 1.7.6 |
locpol | 0.8.0 | logging | 0.10-108 |
logitnorm | 0.8.38 | logspline | 2.1.20 |
lokern | 1.1-10 | lomb | 2.1.0 |
longCatEDA | 0.31 | longitudinalData | 2.4.5 |
longmemo | 1.1-2 | LongMemoryTS | 0.1.0 |
longpower | 1.0.24 | loo | 2.6.0 |
lordif | 0.3-3 | lotri | 0.4.3 |
lpacf | 1.0.1 | lpSolve | 5.6.18 |
lpSolveAPI | 5.5.2.0-17.9 | lsa | 0.73.3 |
lsl | 0.5.6 | lslx | 0.6.11 |
LSMonteCarlo | 1.0 | LSMRealOptions | 0.2.1 |
LSTS | 2.1 | LSWPlib | 0.1.0 |
ltm | 1.2-0 | ltsa | 1.4.6 |
lubridate | 1.9.2 | luz | 0.4.0 |
lvec | 0.2.5 | lvnet | 0.3.5 |
lvplot | 0.2.1 | lwgeom | 0.2-13 |
m5 | 0.1.1 | maat | 1.1.0 |
magic | 1.6-1 | magick | 2.7.4 |
magrittr | 2.0.3 | MAMS | 2.0.1 |
manipulateWidget | 0.11.1 | MAPA | 2.0.5 |
mapdata | 2.3.1 | mapproj | 1.2.11 |
maps | 3.4.1 | maptools | 1.1-8 |
maptree | 1.4-8 | mapview | 2.11.0 |
mAr | 1.2-0 | mar1s | 2.1.1 |
markdown | 1.7 | markovchain | 0.9.3 |
MarkowitzR | 1.0.2 | MARSS | 3.11.8 |
MassSpecWavelet | 1.66.0 | Matching | 4.10-8 |
MatchIt | 4.5.4 | MatchThem | 1.1.0 |
mathjaxr | 1.6-0 | matlabr | 1.5.2 |
matrixcalc | 1.0-6 | MatrixExtra | 0.1.13 |
MatrixModels | 0.5-2 | matrixStats | 1.0.0 |
maxLik | 1.5-2 | MaxPro | 4.1-2 |
MBA | 0.1-0 | MBHdesign | 2.2.2 |
mboost | 2.9-7 | mbsts | 3.0 |
mc2d | 0.2.0 | MCAvariants | 2.6 |
mclcar | 0.2-0 | mclust | 6.0.0 |
mcmc | 0.9-7 | mcmcensemble | 3.0.0 |
MCMCglmm | 2.35 | MCMCpack | 1.6-3 |
mcmcse | 1.5-0 | MCMCvis | 0.16.0 |
Mcomp | 2.8 | mcompanion | 0.5.7 |
MCPMod | 1.0-10.1 | meboot | 1.4-9.3 |
Mediana | 1.0.8 | mediation | 4.5.0 |
MEIGOR | 1.33.0 | mem | 2.18 |
memapp | 2.16 | memisc | 0.99.31.6 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
meta | 6.5-0 | metadat | 1.2-0 |
metafor | 4.2-0 | metaplot | 0.8.3 |
metaSEM | 1.3.0 | metasens | 1.5-2 |
Metrics | 0.1.4 | metRology | 0.9-28-1 |
mFilter | 0.1-5 | mgm | 1.2-13 |
mi | 1.1 | mice | 3.16.0 |
miceadds | 3.16-18 | micEconIndex | 0.1-8 |
microbenchmark | 1.4.10 | microsamplingDesign | 1.0.8 |
MicSim | 2.0.0 | MIIVsem | 0.5.8 |
mime | 0.12 | mind | 1.1.0 |
MinEDfind | 0.1.3 | minimalRSD | 1.0.0 |
minimaxdesign | 0.1.5 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-3 | minqa | 1.2.5 |
mipfp | 3.2.1 | mirt | 1.39 |
mirtCAT | 1.12.2 | misc3d | 0.9-1 |
miscTools | 0.6-28 | missForest | 1.5 |
missMDA | 1.18 | mitml | 0.4-5 |
mitools | 2.4 | mix | 1.0-11 |
mixAR | 0.22.7 | MixedPsy | 1.1.0 |
mixexp | 1.2.7 | mixOmics | 6.24.0 |
mixsqp | 0.3-48 | mixtools | 2.0.0 |
mkssd | 1.2 | mlapi | 0.1.1 |
mlbench | 2.1-3.1 | MLCIRTwithin | 2.1.1 |
MLDS | 0.4.901 | mlmRev | 1.0-8 |
mlogit | 1.1-1 | mlogitBMA | 0.1-7 |
mlr3 | 0.16.1 | mlr3measures | 0.5.0 |
mlr3misc | 0.12.0 | mlVAR | 0.5.1 |
mma | 10.6-1 | mmand | 1.6.3 |
mmrm | 0.2.2 | mnormt | 2.1.1 |
MNP | 3.1-4 | modeldata | 1.1.0 |
modelenv | 0.1.1 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.11 | modeltime | 1.2.7 |
modeltime.ensemble | 1.0.3 | modeltime.resample | 0.2.3 |
modeltools | 0.2-23 | moderndive | 0.5.5 |
modules | 0.11.0 | mokken | 3.1.0 |
mombf | 3.4.1 | moments | 0.14.1 |
mondate | 0.10.02 | mongolite | 2.7.2 |
mongopipe | 0.1.1 | monmlp | 1.1.5 |
monobin | 0.2.4 | Morpho | 2.11 |
mosaic | 1.8.4.2 | mosaicCore | 0.9.2.1 |
mosaicData | 0.20.3 | movMF | 0.2-7 |
MPDiR | 0.1-20 | MplusAutomation | 1.1.0 |
mpmi | 0.43.2.1 | mpt | 0.8-0 |
MPTinR | 1.14.1 | MPV | 1.62 |
mratios | 1.4.2 | mrf | 0.1.6 |
mrgsolve | 1.0.9 | mritc | 0.5-3 |
mscstexta4r | 0.1.2 | mscsweblm4r | 0.1.2 |
MSGARCH | 2.51 | msm | 1.7 |
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-9 |
multDM | 1.1.4 | multicool | 0.1-12 |
MultiGlarmaVarSel | 1.0 | MultiLCIRT | 2.11 |
MultipleBubbles | 0.2.0 | multiplex | 3.1.0 |
multipol | 1.0-7 | multitaper | 1.0-17 |
multiway | 1.0-6 | multtest | 2.56.0 |
MuMIn | 1.47.5 | munfold | 0.3.5 |
munsell | 0.5.0 | mvLSW | 1.2.5 |
mvMORPH | 1.1.7 | mvnfast | 0.2.8 |
mvnormtest | 0.1-9 | mvQuad | 1.0-6 |
mvtnorm | 1.2-2 | mxkssd | 1.2 |
n1qn1 | 6.0.1-11 | NADA | 1.6-1.1 |
NAEPirtparams | 1.0.0 | NAEPprimer | 1.0.1 |
nanonext | 0.9.1 | nanotime | 0.3.7 |
nardl | 0.1.6 | natserv | 1.0.0 |
nbTransmission | 1.1.2 | ncappc | 0.3.0 |
ncar | 0.4.5 | ncvreg | 3.14.1 |
nets | 0.9.1 | network | 1.18.1 |
NetworkChange | 0.8 | NetworkComparisonTest | 2.2.1 |
networkD3 | 0.4 | networkDynamic | 0.11.3 |
networkLite | 1.0.5 | NetworkRiskMeasures | 0.1.4 |
NetworkToolbox | 1.4.2 | networktools | 1.5.0 |
networktree | 1.0.1 | neuralnet | 1.44.2 |
neurobase | 1.32.3 | neuroim | 0.0.6 |
neuRosim | 0.2-13 | nFactors | 2.4.1.1 |
NFCP | 1.2.1 | nhanesA | 0.7.4 |
nifti.io | 1.0.0 | nimble | 1.0.1 |
NISTnls | 0.9-13 | NlcOptim | 0.6 |
nleqslv | 3.3.4 | NlinTS | 1.4.5 |
nlmeVPC | 2.6 | nlmixr2 | 2.0.9 |
nlmixr2data | 2.0.7 | nlmixr2est | 2.1.6 |
nlmixr2extra | 2.0.8 | nlmixr2plot | 2.0.7 |
nlmixr2rpt | 0.2.0 | nloptr | 2.0.3 |
NLP | 0.2-1 | nls2 | 0.3-3 |
nlsem | 0.8 | nlstools | 2.0-0 |
nlts | 1.0-2 | NMOF | 2.7-1 |
nmw | 0.1.5 | nnfor | 0.9.8 |
nnls | 1.4 | nodbi | 0.9.5 |
nomisr | 0.4.7 | NonCompart | 0.6.0 |
nonlinearTseries | 0.2.12 | nonmemica | 1.0.1 |
nonnest2 | 0.5-5 | norm | 1.0-11.1 |
nortest | 1.0-4 | nosoi | 1.1.0 |
np | 0.60-17 | NPflow | 0.13.3 |
npi | 0.2.0 | nppbib | 1.2-0 |
nsarfima | 0.2.0.0 | nsprcomp | 0.5.1-2 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
nvmix | 0.1-0 | o2geosocial | 1.1.0 |
oai | 0.4.0 | obAnalytics | 0.1.1 |
OBsMD | 6.1 | occ | 1.1 |
octopus | 0.3.0 | odbc | 1.3.5 |
odin | 1.2.4 | odpc | 2.0.5 |
odr | 1.4.2 | OECD | 0.2.5 |
officer | 0.6.2 | ohoegdm | 0.1.0 |
onbrand | 1.0.3 | onlineforecast | 1.0.1 |
OPDOE | 1.0-10 | openEBGM | 0.8.3 |
openintro | 2.4.0 | OpenMx | 2.21.8 |
openNLP | 0.2-7 | openNLPdata | 1.5.3-4 |
openssl | 2.1.0 | openxlsx | 4.2.5.2 |
opera | 1.2.0 | operator.tools | 1.6.3 |
optextras | 2019-12.4 | OptGS | 1.1.1 |
OptHedging | 1.0 | OptimalDesign | 1.0.1 |
OptimaRegion | 1.2 | optimParallel | 1.0-2 |
optimx | 2022-4.30 | OptionPricing | 0.1.1 |
optiscale | 1.2.2 | ORCME | 2.0.2 |
ordinal | 2022.11-16 | ore | 1.7.3.1 |
ORIClust | 1.0-2 | oro.dicom | 0.5.3 |
oro.nifti | 0.11.4 | oro.pet | 0.2.7 |
orthopolynom | 1.0-6.1 | osDesign | 1.8 |
osqp | 0.6.0.8 | otsad | 0.2.0 |
otsfeatures | 1.0.0 | outbreaker2 | 1.1.3 |
outbreaks | 1.9.0 | overlapping | 2.1 |
pa | 1.2-3 | padr | 0.6.2 |
PairedData | 1.1.1 | pairwise | 0.6.1-0 |
paleoTS | 0.5.3 | palmerpenguins | 0.1.1 |
pan | 1.8 | pander | 0.6.5 |
panelaggregation | 0.1.1 | paradox | 0.11.1 |
parallelly | 1.36.0 | parallelMap | 1.5.1 |
paran | 1.5.2 | parma | 1.7 |
parsedate | 1.3.1 | parsnip | 1.1.0 |
partitions | 1.10-7 | partsm | 1.1-3 |
party | 1.3-13 | partykit | 1.2-20 |
pastecs | 1.3.21 | patchwork | 1.1.2 |
paws | 0.3.0 | paws.analytics | 0.3.0 |
paws.application.integration | 0.3.1 | paws.common | 0.5.8 |
paws.compute | 0.3.1 | paws.cost.management | 0.3.1 |
paws.customer.engagement | 0.3.0 | paws.database | 0.3.0 |
paws.developer.tools | 0.3.1 | paws.end.user.computing | 0.3.0 |
paws.machine.learning | 0.3.0 | paws.management | 0.3.1 |
paws.networking | 0.3.0 | paws.security.identity | 0.3.1 |
paws.storage | 0.3.0 | pbapply | 1.7-2 |
pbdZMQ | 0.3-9 | PBIBD | 1.3 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
pbmcapply | 1.5.1 | pbo | 1.3.5 |
pbs | 1.1 | PBSddesolve | 1.13.3 |
PBSmapping | 2.73.2 | pbv | 0.4-22 |
PCA4TS | 0.1 | pcaMethods | 1.92.0 |
pcaPP | 2.0-3 | pcdpca | 0.4 |
pcFactorStan | 1.5.3 | pcIRT | 0.2.4 |
PCMRS | 0.1-4 | pcts | 0.15.5 |
pdc | 1.0.3 | pdfCluster | 1.0-4 |
pdfetch | 0.2.8 | pdftools | 3.3.3 |
pdist | 1.2.1 | pedigree | 1.4.2 |
PeerPerformance | 2.2.5 | penalized | 0.9-52 |
performance | 0.10.4 | PerformanceAnalytics | 2.0.4 |
permute | 0.9-7 | PGM2 | 1.0-1 |
ph2bayes | 0.0.2 | ph2bye | 0.1.4 |
phangorn | 2.11.1 | pheatmap | 1.0.12 |
phonics | 1.3.10 | phyloseq | 1.44.0 |
phytools | 1.9-16 | picasso | 1.3.1 |
pid | 0.50 | piecewiseSEM | 2.3.0 |
pillar | 1.9.0 | pingr | 2.0.2 |
pins | 1.2.0 | pipe.design | 0.5.1 |
pipeR | 0.6.1.3 | pixmap | 0.4-12 |
PK | 1.3-5 | PKconverter | 1.5 |
pkdata | 0.1.0 | pkgbuild | 1.4.2 |
pkgconfig | 2.0.3 | pkgdown | 2.0.7 |
pkgfilecache | 0.1.4 | pkgload | 1.3.2.1 |
PKNCA | 0.10.2 | pkr | 0.1.3 |
pks | 0.6-0 | PlackettLuce | 0.4.3 |
plgp | 1.1-12 | plink | 1.5-1 |
plm | 2.6-3 | PLMIX | 2.1.1 |
PLmixed | 0.1.6 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.2 |
plotMCMC | 2.0.1 | plotmo | 3.6.2 |
plotrix | 3.8-2 | plotSEMM | 2.4 |
pls | 2.8-2 | plyr | 1.8.8 |
pmr | 1.2.5.1 | pmxTools | 1.3 |
png | 0.1-8 | pointblank | 0.11.4 |
poisbinom | 1.0.1 | poLCA | 1.6.0.1 |
polspline | 1.1.23 | polyclip | 1.10-4 |
polycor | 0.8-1 | polyCub | 0.8.1 |
polynom | 1.4-1 | PolynomF | 2.0-5 |
polyreg | 0.8.0 | pomp | 5.3 |
pool | 1.0.1 | PopED | 0.6.0 |
popEpi | 0.4.10 | PortfolioOptim | 1.1.1 |
PortRisk | 1.1.0 | posterior | 1.4.1 |
powerbydesign | 1.0.5 | powerGWASinteraction | 1.1.3 |
powerSurvEpi | 0.1.3 | PowerTOST | 1.5-4 |
PowerUpR | 1.1.0 | PP | 0.6.3-11 |
ppcor | 1.1 | PPRL | 0.3.8 |
pps | 1.0 | prabclus | 2.3-2 |
pracma | 2.4.2 | PracTools | 1.4 |
praise | 1.0.0 | PreciseSums | 0.6 |
prefmod | 0.8-35 | preprocessCore | 1.62.1 |
presize | 0.3.7 | prettydoc | 0.4.1 |
prettyGraphs | 2.1.6 | prettymapr | 0.2.4 |
prettyunits | 1.1.1 | prevalence | 0.4.1 |
prevR | 5.0.0 | princurve | 2.1.6 |
pROC | 1.18.4 | processx | 3.8.2 |
prodlim | 2023.03.31 | ProfessR | 2.4-1 |
profileModel | 0.6.1 | profileR | 0.3-5 |
profoc | 1.2.0 | profvis | 0.3.8 |
progress | 1.2.2 | progressr | 0.13.0 |
proj4 | 1.0-12 | promises | 1.2.0.1 |
prophet | 1.0 | PROsetta | 0.4.1 |
proto | 1.0.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | ps | 1.7.5 |
pscl | 1.5.5.1 | psd | 2.1.1 |
PSF | 0.5 | pso | 1.0.4 |
pspline | 1.0-19 | psy | 1.2 |
psych | 2.3.6 | psychomix | 1.1-8 |
psychonetrics | 0.11 | psychotools | 0.7-3 |
psychotree | 0.16-0 | psychTools | 2.3.6 |
psyphy | 0.2-3 | PTAk | 2.0.0 |
PTSR | 0.1.2 | ptw | 1.9-16 |
purrr | 1.0.1 | pwr | 1.3-0 |
PwrGSD | 2.3.6 | pwrRasch | 0.1-2 |
pxweb | 0.16.2 | PxWebApiData | 0.8.0 |
qap | 0.1-2 | Qardl | 0.1.1 |
qcv | 1.0 | qdap | 2.4.6 |
qdapDictionaries | 1.0.7 | qdapRegex | 0.7.5 |
qdapTools | 1.3.7 | qgam | 1.3.4 |
qgraph | 1.9.5 | qicharts2 | 0.7.2 |
qlcal | 0.0.7 | qMRI | 1.2 |
qpdf | 1.3.2 | qpNCA | 1.1.6 |
qrmdata | 2022-05-31-1 | qrmtools | 0.0-16 |
qrng | 0.0-9 | qs | 0.25.5 |
qtl | 1.60 | quadprog | 1.5-8 |
Quandl | 2.11.0 | quanteda | 3.3.1 |
quantification | 0.2.0 | quantmod | 0.4.24 |
quantreg | 5.96 | quantspec | 1.2-3 |
questionr | 0.7.8 | quickpsy | 0.1.5.1 |
qvalue | 2.32.0 | qvcalc | 1.0.3 |
R.cache | 0.16.0 | R.devices | 2.17.1 |
R.filesets | 2.15.0 | R.huge | 0.10.0 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.25.0 | R.rsp | 0.45.0 |
R.utils | 2.12.2 | R0 | 1.2-10 |
R2BEAT | 1.0.5 | r2d3 | 0.2.6 |
R2HTML | 2.3.3 | R2jags | 0.7-1 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R4CouchDB | 0.7.5 | R6 | 2.5.1 |
radarchart | 0.3.1 | ragg | 1.2.5 |
ragtop | 1.1.1 | rainbow | 3.7 |
rAmCharts | 2.1.15 | ramcmc | 0.1.2 |
ramps | 0.6.18 | randomForest | 4.7-1.1 |
randomForestSRC | 3.2.2 | randomizeR | 3.0.1 |
randomLCA | 1.1-3 | randtoolbox | 2.0.4 |
ranger | 0.15.1 | rankdist | 1.1.4 |
RANN | 2.6.1 | rapidjsonr | 1.2.0 |
RApiSerialize | 0.1.2 | rappdirs | 0.3.3 |
rARPACK | 0.11-0 | RaschSampler | 0.8-8 |
raster | 3.6-23 | rasterImage | 0.4.0 |
ratelimitr | 0.4.1 | raveio | 0.9.0 |
ravetools | 0.1.2 | Rbeast | 0.9.9 |
rbenchmark | 1.0.0 | RBGL | 1.76.0 |
rbibutils | 2.2.13 | Rblpapi | 0.3.14 |
rbmi | 1.2.3 | Rcatch22 | 0.2.1 |
rcdd | 1.5-2 | Rcgmin | 2022-4.30 |
rcmdcheck | 1.4.0 | Rcmdr | 2.8-0 |
RcmdrMisc | 2.7-2 | RcmdrPlugin.DoE | 0.12-4 |
RcmdrPlugin.temis | 0.7.10 | RColorBrewer | 1.1-3 |
Rcpp | 1.0.11 | RcppAnnoy | 0.0.21 |
RcppArmadillo | 0.12.4.1.0 | RcppCCTZ | 0.2.12 |
RcppDate | 0.0.3 | RcppDE | 0.1.7 |
RcppDist | 0.1.1 | RcppEigen | 0.3.3.9.3 |
RcppGSL | 0.3.13 | RcppParallel | 5.1.7 |
RcppProgress | 0.4.2 | RcppQuantuccia | 0.1.1 |
RcppRedis | 0.2.3 | RcppRoll | 0.3.0 |
RcppSimdJson | 0.1.10 | RcppThread | 2.1.5 |
RcppTN | 0.2-2 | RcppTOML | 0.2.2 |
RcppZiggurat | 0.1.6 | Rcsdp | 0.1.57.5 |
RCurl | 1.98-1.12 | rdbnomics | 0.6.4 |
rdhs | 0.7.6 | Rdpack | 2.4 |
Rdsdp | 1.0.5.2.1 | re2 | 0.1.2 |
reactable | 0.4.4 | reactR | 0.4.4 |
readabs | 0.4.13 | readODS | 1.8.0 |
readr | 2.1.4 | readsdmx | 0.3.0 |
readstata13 | 0.10.1 | readxl | 1.4.3 |
REBayes | 2.51 | recipes | 1.0.6 |
reclin | 0.1.2 | RecordLinkage | 0.4-12.4 |
redux | 1.1.3 | RefManageR | 1.4.0 |
refugees | 2022.12.0 | regions | 0.1.8 |
registry | 0.5-1 | regress | 1.3-21 |
RegSDC | 0.7.0 | regsem | 1.9.5 |
regspec | 2.6 | regtools | 1.7.0 |
reinsureR | 0.1.0 | relations | 0.6-13 |
relimp | 1.0-5 | rematch | 1.0.1 |
rematch2 | 2.1.2 | remotes | 2.4.2.1 |
rentrez | 1.2.3 | renv | 1.0.0 |
replicateBE | 1.1.3 | reportr | 1.3.0 |
repr | 1.1.6 | reprex | 2.0.2 |
REQS | 0.8-13 | resampledata | 0.3.1 |
resde | 1.1 | reshape | 0.8.9 |
reshape2 | 1.4.4 | restimizeapi | 1.0.0 |
reticulate | 1.30 | revdbayes | 1.5.1 |
rex | 1.2.1 | Rfast | 2.0.8 |
Rfast2 | 0.1.5 | rgdal | 1.6-7 |
rgen | 0.0.1 | RGENERATE | 1.3.7 |
rgenoud | 5.9-0.3 | rgeos | 0.6-4 |
rgl | 1.2.1 | Rglpk | 0.6-5 |
RgoogleMaps | 1.4.5.3 | RGraphics | 3.0-2 |
Rgraphviz | 2.44.0 | RGreenplum | 0.1.2 |
RH2 | 0.2.4 | rhandsontable | 0.3.8 |
rhdf5 | 2.44.0 | rhdf5filters | 1.12.1 |
Rhdf5lib | 1.22.0 | rhosa | 0.2.0 |
RhpcBLASctl | 0.23-42 | rib | 0.19.0 |
riingo | 0.3.1 | Rilostat | 1.1.8 |
ring | 1.0.4 | RInside | 0.2.18 |
rintrojs | 0.3.2 | rio | 0.5.29 |
Rirt | 0.0.2 | Risk | 1.0 |
riskCommunicator | 1.0.1 | riskParityPortfolio | 0.2.2 |
RiskPortfolios | 2.1.7 | riskSimul | 0.1.1 |
ritis | 1.0.0 | rjags | 4-14 |
rJava | 1.0-6 | RJDBC | 0.2-10 |
RJDemetra | 0.2.3 | rje | 1.12.1 |
rjson | 0.2.21 | RJSONIO | 1.3-1.8 |
rjstat | 0.4.2 | RKEA | 0.0-6 |
RKEAjars | 5.0-4 | rlang | 1.1.1 |
rle | 0.9.2 | rlecuyer | 0.3-7 |
Rlgt | 0.1-4 | Rlibeemd | 1.4.2 |
rlist | 0.4.6.2 | RM2006 | 0.1.1 |
RMariaDB | 1.2.2 | rmarkdown | 2.23 |
RMAWGEN | 1.3.7 | rmeta | 3.0 |
rmgarch | 1.3-9 | Rmpfr | 0.9-2 |
rms | 6.7-0 | rmutil | 1.1.10 |
RMySQL | 0.10.25 | rnaturalearthdata | 0.1.0 |
rncl | 0.8.7 | RND | 1.2 |
rneos | 0.4-0 | rngtools | 1.5.2 |
rngWELL | 0.10-9 | RNifti | 1.5.0 |
RNiftyReg | 2.8.1 | rnn | 1.9.0 |
robfilter | 4.1.3 | RobKF | 1.0.2 |
RoBMA | 3.1.0 | robsurvey | 0.5-2 |
robustbase | 0.99-0 | rockchalk | 1.8.157 |
rocker | 0.3.1 | ROCR | 1.0-11 |
RODBC | 1.3-20 | rodd | 0.2-1 |
roll | 1.1.6 | Rook | 1.2 |
ROOPSD | 0.3.8 | rootSolve | 1.8.2.3 |
roptim | 0.1.6 | rosm | 0.2.6 |
rotl | 3.1.0 | roxygen2 | 7.2.3 |
rpact | 3.4.0 | rpanel | 1.1-5.2 |
rpart.plot | 3.1.1 | rpf | 1.0.11 |
RPMG | 2.2-3 | rpms | 0.5.1 |
rpostgis | 1.4.4 | RPostgres | 1.4.5 |
RPostgreSQL | 0.7-5 | RPPairwiseDesign | 1.0 |
RPresto | 1.4.5 | rprojroot | 2.0.3 |
rpymat | 0.1.6 | RQuantLib | 0.4.17 |
rrcov | 1.7-4 | rredlist | 0.7.1 |
RRreg | 0.7.5 | RRTCS | 0.0.4 |
rrum | 0.2.0 | rsae | 0.2 |
rsample | 1.1.1 | rsdmx | 0.6-2 |
RSEIS | 4.1-4 | rsem | 0.5.0 |
Rsfar | 0.0.1 | RSGHB | 1.2.2 |
rsm | 2.10.3 | Rsolnp | 1.16 |
rspa | 0.2.8 | rsparse | 0.5.1 |
RSpectra | 0.16-1 | RSQLite | 2.3.1 |
Rssa | 1.0.5 | rstan | 2.21.8 |
rstanarm | 2.21.4 | rstantools | 2.3.1.1 |
rstatix | 0.7.2 | rstiefel | 1.0.1 |
rstudioapi | 0.15.0 | rsurface | 1.1.0 |
RSurveillance | 0.2.1 | Rsymphony | 0.1-33 |
rTensor | 1.4.8 | rtf | 0.4-14.1 |
RTFA | 0.1.0 | rticles | 0.25 |
RTL | 1.3.3 | RTransferEntropy | 0.2.21 |
rtrim | 2.1.1 | rts | 1.1-8 |
Rtsne | 0.16 | Rttf2pt1 | 1.3.12 |
rucrdtw | 0.1.4 | rugarch | 1.4-9 |
ruimtehol | 0.3.1 | rules | 1.0.2 |
RUnit | 0.4.32 | runjags | 2.2.2-1 |
runner | 0.4.3 | runstats | 1.1.0 |
Runuran | 0.38 | rust | 1.4.0 |
Rvcg | 0.22.1 | rversions | 2.1.2 |
rvest | 1.0.3 | Rvmmin | 2018-4.17.1 |
Rwave | 2.6-5 | RWeka | 0.4-46 |
RWekajars | 3.9.3-2 | rworldmap | 1.3-6 |
rxode2 | 2.0.13 | rxode2et | 2.0.10 |
rxode2ll | 2.0.11 | rxode2parse | 2.0.16 |
rxode2random | 2.0.11 | s2 | 1.1.4 |
S4Vectors | 0.38.1 | sae | 1.3 |
saeRobust | 0.4.0 | saeSim | 0.11.0 |
SAEval | 1.0.0 | samadb | 0.2.6 |
samplesize | 0.2-4 | sampling | 2.9 |
SamplingBigData | 1.0.0 | samplingbook | 1.2.4 |
SamplingStrata | 1.5-4 | samplingVarEst | 1.5 |
sandwich | 3.0-2 | sarima | 0.9.1 |
sass | 0.4.7 | satellite | 1.0.4 |
sazedR | 2.0.2 | sbgcop | 0.980 |
scales | 1.2.1 | scatterplot3d | 0.3-44 |
scoringRules | 1.1.1 | scoringutils | 1.1.0 |
ScottKnott | 1.3-1 | scs | 3.2.4 |
SDaA | 0.1-5 | sdcHierarchies | 0.19.3 |
sdcMicro | 5.7.5 | sdcSpatial | 0.5.2 |
sdcTable | 0.32.5 | sde | 2.0.18 |
sealasso | 0.1-3 | seas | 0.6-0 |
season | 0.3.15 | seasonal | 1.9.0 |
seasonalview | 0.3 | seastests | 0.15.4 |
seer | 1.1.8 | segmented | 1.6-4 |
selectr | 0.4-2 | sem | 3.1-15 |
semds | 0.9-6 | SemiPar | 1.0-4.2 |
semPlot | 1.1.6 | SEMsens | 1.5.5 |
semTools | 0.5-6 | semtree | 0.9.18 |
sendmailR | 1.4-0 | SensoMineR | 1.26 |
sentencepiece | 0.2.3 | separationplot | 1.4 |
seqDesign | 1.2 | seqinr | 4.2-30 |
seriation | 1.5.1 | servr | 0.27 |
sessioninfo | 1.2.2 | setartree | 0.1.0 |
setRNG | 2022.4-1 | sets | 1.0-24 |
settings | 0.2.7 | sf | 1.0-14 |
sFFLHD | 0.1.2 | sfheaders | 0.4.3 |
sfsmisc | 1.1-15 | sftime | 0.2-0 |
sgd | 1.1.1 | sgeostat | 1.0-27 |
shades | 1.4.0 | shape | 1.4.6 |
shapefiles | 0.7.2 | shapes | 1.2.7 |
SharpeR | 1.3.0 | shiny | 1.7.4.1 |
shiny.semantic | 0.4.3 | shinyAce | 0.4.2 |
shinyalert | 3.0.0 | shinybrms | 1.8.0 |
shinyBS | 0.61.1 | shinycssloaders | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.0 |
shinyjqui | 0.4.1 | shinyjs | 2.1.0 |
shinystan | 2.6.0 | shinytest | 1.5.3 |
shinythemes | 1.2.0 | shinyTree | 0.2.7 |
shinyWidgets | 0.7.6 | showimage | 1.0.0 |
sigmoid | 1.4.0 | signal | 0.7-7 |
Sim.DiffProc | 4.8 | simcdm | 0.1.1 |
SimComp | 3.3 | simex | 1.8 |
simfinapi | 0.2.4 | simglm | 0.8.9 |
SimInf | 9.5.0 | simPop | 2.1.2 |
simputation | 0.2.8 | simrel | 2.1.0 |
simsem | 0.5-16 | SimSurvey | 0.1.5 |
singleRcapture | 0.2.0 | sirt | 3.12-66 |
sitmo | 2.0.2 | SkewHyperbolic | 0.4-0 |
skmeans | 0.2-15 | skpr | 1.4.0 |
slam | 0.1-50 | SLBDD | 0.0.4 |
sleekts | 1.0.2 | Sleuth2 | 2.0-5 |
Sleuth3 | 1.0-3 | SLHD | 2.1-1 |
slider | 0.3.0 | sm | 2.2-5.7.1 |
smacof | 2.1-5 | SmallCountRounding | 1.0.3 |
smooth | 3.2.1 | smoother | 1.1 |
smoots | 1.1.3 | smovie | 1.1.4 |
SMPracticals | 1.4-3 | sms | 2.3.1 |
sn | 2.1.1 | sna | 2.7-1 |
snakecase | 0.11.0 | snow | 0.4-4 |
SnowballC | 0.7.1 | snowfall | 1.84-6.2 |
SOAs | 1.3 | soc.ca | 0.8.0 |
socialmixr | 0.2.0 | sodium | 1.2.1 |
sofa | 0.4.0 | solrium | 1.2.0 |
sorvi | 0.8.20 | sourcetools | 0.1.7-1 |
sp | 2.0-0 | sp23design | 0.9-1 |
spacetime | 1.3-0 | spam | 2.9-1 |
spant | 2.14.0 | sparklyr | 1.8.2 |
sparseDFM | 1.0 | SparseFactorAnalysis | 1.0 |
SparseM | 1.81 | sparsevar | 0.1.0 |
SpatialEpi | 1.2.8 | SpatialExtremes | 2.1-0 |
spatialreg | 1.2-9 | spatstat | 3.0-6 |
spatstat.data | 3.0-1 | spatstat.explore | 3.2-1 |
spatstat.geom | 3.2-4 | spatstat.linnet | 3.1-1 |
spatstat.model | 3.2-4 | spatstat.random | 3.1-5 |
spatstat.sparse | 3.0-2 | spatstat.utils | 3.0-3 |
spBayes | 0.4-6 | spd | 2.0-1 |
spData | 2.3.0 | spdep | 1.2-8 |
spec | 0.1.7 | spectral | 2.0 |
speff2trial | 1.0.5 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-19 | spINAR | 0.1.0 |
splancs | 2.01-43 | splines2 | 0.5.0 |
spsurvey | 5.5.0 | spTimer | 3.3.2 |
sqldf | 0.4-11 | SqlRender | 1.15.1 |
SQRL | 1.0.1 | SQUAREM | 2021.1 |
srvyr | 1.2.0 | ssanv | 1.1 |
SSBtools | 1.4.8 | ssgraph | 1.15 |
ssize.fdr | 1.3 | ssizeRNA | 1.3.2 |
ssMousetrack | 1.1.6 | stabledist | 0.7-1 |
stabs | 0.6-4 | StanHeaders | 2.26.27 |
stars | 0.6-2 | STARTS | 1.3-8 |
startupmsg | 0.9.6 | statcanR | 0.2.4 |
statcodelists | 0.9.2 | statespacer | 0.5.0 |
StatMatch | 1.4.1 | statmod | 1.5.0 |
statnet.common | 4.9.0 | StatRank | 0.0.6 |
steadyICA | 1.0 | STFTS | 0.1.0 |
stinepack | 1.4 | stlplus | 0.5.1 |
stm | 1.3.6 | stochvol | 3.2.1 |
stockAnalyst | 1.0.1 | stopwords | 2.3 |
storr | 1.2.5 | stR | 0.5 |
strand | 0.2.0 | stratification | 2.2-7 |
stringdist | 0.9.10 | stringfish | 0.15.8 |
stringi | 1.7.12 | stringr | 1.5.0 |
strucchange | 1.5-3 | strucchangeRcpp | 1.5-3-1.0.4 |
StructuralDecompose | 0.1.1 | styler | 1.10.1 |
subplex | 1.8 | subscore | 3.3 |
sufficientForecasting | 0.1.0 | sugrrants | 0.2.8 |
SuperLearner | 2.0-28.1 | superml | 0.5.6 |
SuppDists | 1.1-9.7 | support.CEs | 0.5-0 |
survcomp | 1.50.0 | surveillance | 1.21.1 |
survey | 4.2-1 | surveybootstrap | 0.0.3 |
surveydata | 0.2.7 | surveyoutliers | 0.1 |
surveyplanning | 4.0 | surveysd | 1.3.1 |
survivalROC | 1.0.3.1 | survPresmooth | 1.1-11 |
svars | 1.3.11 | svd | 0.5.4.1 |
SVDNF | 0.1.7 | svglite | 2.1.1 |
svrep | 0.6.0 | svs | 3.0.0 |
svUnit | 1.0.6 | swephR | 0.3.1 |
swirl | 2.4.5 | swirlify | 0.5.3 |
sylly | 0.1-6 | sym.arma | 1.0 |
symengine | 0.2.2 | symmoments | 1.2.1 |
synthesis | 1.2.3 | synthpop | 1.8-0 |
sys | 3.4.2 | systemfit | 1.1-30 |
systemfonts | 1.0.4 | tables | 0.9.17 |
tabnet | 0.4.0 | TAM | 4.1-4 |
TAQMNGR | 2018.5-1 | targets | 1.2.0 |
tau | 0.0-24 | taxize | 0.9.100 |
tbrf | 0.1.5 | tcltk2 | 1.2-11 |
Tcomp | 1.0.1 | tdigest | 0.4.1 |
TeachingDemos | 2.12 | tempdisagg | 1.1 |
tensor | 1.5 | tensorA | 0.36.2 |
tensorflow | 2.11.0 | TensorPreAve | 1.1.0 |
tensorTS | 1.0.1 | TEQR | 6.0-0 |
tergm | 4.2.0 | terra | 1.7-39 |
tesseract | 5.1.0 | testcorr | 0.2.0 |
TestDataImputation | 2.3 | TestDesign | 1.5.1 |
tester | 0.1.7 | testit | 0.13 |
TestScorer | 1.7.2 | testthat | 3.1.10 |
TexExamRandomizer | 1.2.3 | texreg | 1.38.6 |
text2vec | 0.6.3 | textcat | 1.0-8 |
textir | 2.0-5 | textplot | 0.2.2 |
textrank | 0.3.1 | textreuse | 0.1.5 |
textshaping | 0.3.6 | textTinyR | 1.1.7 |
tfarima | 0.3.2 | tfautograph | 0.3.2 |
tfdatasets | 2.9.0 | tfio | 0.4.1 |
tfplot | 2021.6-1 | tframe | 2015.12-1.1 |
tfruns | 1.5.1 | tgp | 2.4-21 |
TH.data | 1.1-2 | theft | 0.5.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.1 | tibble | 3.2.1 |
tibbletime | 0.1.8 | tictoc | 1.2 |
Tides | 2.1 | tidyBdE | 0.3.4 |
tidycensus | 1.4.1 | tidygraph | 1.2.3 |
tidyLPA | 1.1.0 | tidymodels | 1.1.0 |
tidyquant | 1.0.7 | tidyqwi | 0.1.2 |
tidyr | 1.3.0 | tidyselect | 1.2.0 |
tidytext | 0.4.1 | tidytree | 0.4.4 |
tidyverse | 2.0.0 | tiff | 0.1-11 |
tigris | 2.0.3 | timechange | 0.2.0 |
timeDate | 4022.108 | timeSeries | 4030.106 |
timeseriesdb | 1.0.0-1.1.2 | timetk | 2.8.3 |
timsac | 1.3.8-2 | tinytex | 0.45 |
tis | 1.39 | tkrplot | 0.0-27 |
tm | 0.7-11 | tm.plugin.alceste | 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-3 |
tmaptools | 3.1-1 | TMB | 1.9.5 |
tmvnsim | 1.0-2 | tmvtnorm | 1.5 |
tokenizers | 0.3.0 | tokenizers.bpe | 0.1.1 |
toOrdinal | 1.3-0.0 | topicdoc | 0.1.1 |
topicmodels | 0.2-14 | topicmodels.etm | 0.1.0 |
torch | 0.11.0 | torchaudio | 0.3.1.9000 |
torchdatasets | 0.3.0 | torchvision | 0.5.1 |
tpr | 0.3-3 | tractor.base | 3.3.5.1 |
TransPhylo | 1.4.5 | trapezoid | 2.0-2 |
tree | 1.0-43 | TreeBUGS | 1.5.0 |
treeio | 1.24.0 | treemap | 2.4-4 |
trend | 1.1.5 | trendeval | 0.1.0 |
trending | 0.1.0 | TrialSize | 1.4 |
triangle | 1.0 | triebeard | 0.4.1 |
trimcluster | 0.1-5 | tripack | 1.3-9.1 |
TripleR | 1.5.4 | TruncatedNormal | 2.2.2 |
truncdist | 1.0-2 | truncnorm | 1.0-9 |
truncreg | 0.2-5 | trust | 0.1-8 |
TSA | 1.3.1 | TSANN | 0.1.0 |
tsbox | 0.4.1 | tsBSS | 1.0.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 | TSEntropies | 0.9 |
tseries | 0.10-54 | tseriesChaos | 0.1-13.1 |
tseriesEntropy | 0.6-0 | tseriesTARMA | 0.3-2 |
tsfeatures | 1.1 | tsfknn | 0.5.1 |
tsibble | 1.1.3 | tsibbledata | 0.4.1 |
tsibbletalk | 0.1.0 | tsintermittent | 1.10 |
tsiR | 0.4.3 | TSLSTM | 0.1.0 |
tsModel | 0.6-1 | tsoutliers | 0.6-8 |
TSP | 1.2-4 | tsPI | 1.0.3 |
TSrepr | 1.1.0 | tsrobprep | 0.3.2 |
tssim | 0.1.7 | TSstudio | 0.1.6 |
TSTutorial | 1.2.6 | tsutils | 0.9.3 |
tswge | 2.1.0 | TTR | 0.24.3 |
tune | 1.1.1 | turner | 0.1.7 |
tvm | 0.5.1 | tweedie | 2.3.5 |
tweenr | 2.0.2 | tzdb | 0.4.0 |
ubiquity | 2.0.0 | ucminf | 1.2.0 |
UComp | 4.0.2 | udpipe | 0.8.11 |
ufRisk | 1.0.6 | ugatsdb | 0.2.3 |
uGMAR | 3.4.4 | UnifiedDoseFinding | 0.1.10 |
units | 0.8-2 | univOutl | 0.4 |
unrepx | 1.0-2 | uptasticsearch | 0.4.0 |
urca | 1.3-3 | urlchecker | 1.0.1 |
urltools | 1.7.3 | uroot | 2.1-2 |
usdata | 0.2.0 | usethis | 2.2.2 |
usmap | 0.6.2 | usmapdata | 0.1.0 |
utf8 | 1.2.3 | uuid | 1.1-0 |
uwot | 0.1.16 | V8 | 4.3.3 |
validate | 1.1.3 | validatetools | 0.5.0 |
VAR.etp | 1.0 | VARDetect | 0.1.6 |
vardpoor | 0.20.1 | VaRES | 1.0.2 |
vars | 1.5-9 | VARshrink | 0.3.1 |
VCA | 1.4.5 | vcd | 1.4-11 |
vcdExtra | 0.8-4 | vctrs | 0.6.3 |
vdg | 1.2.2 | VedicDateTime | 0.1.7 |
vegan | 2.6-4 | VennDiagram | 1.7.3 |
venneuler | 1.1-3 | VGAM | 1.1-8 |
VGAMdata | 1.1-8 | vglmer | 1.0.3 |
VIM | 6.2.2 | VineCopula | 2.5.0 |
viridis | 0.6.4 | viridisLite | 0.4.2 |
visNetwork | 2.1.2 | visualize | 4.4.0 |
volatilityTrader | 1.0.1 | vpc | 1.2.2 |
vroom | 1.6.3 | vrtest | 1.1 |
waiter | 0.2.5 | waldo | 0.5.1 |
warp | 0.2.0 | WaveletComp | 1.1 |
wavelets | 0.3-0.2 | waveslim | 1.8.4 |
wavethresh | 4.7.2 | wavScalogram | 1.1.2 |
wCorr | 1.9.6 | WDI | 2.7.8 |
webdriver | 1.0.6 | webshot | 0.5.5 |
WeightIt | 0.14.2 | weights | 1.0.4 |
WeMix | 4.0.0 | whisker | 0.4.1 |
widgetframe | 0.3.1 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | WikipediR | 1.5.0 |
wikitaxa | 0.4.0 | wINEQ | 1.2.0 |
withr | 2.5.0 | wk | 0.7.3 |
wktmo | 1.0.5 | wnl | 0.7.3 |
wooldridge | 1.4-3 | word2vec | 0.3.4 |
wordcloud | 2.6 | wordnet | 0.1-16 |
workflows | 1.1.3 | workflowsets | 1.0.1 |
worrms | 0.4.3 | wpp2017 | 1.2-3 |
wpp2019 | 1.1-1 | WrightMap | 1.3 |
writexl | 1.4.2 | wrswoR | 1.1.1 |
x12 | 1.10.3 | x13binary | 1.1.57-3 |
XBRL | 0.99.19.1 | xfun | 0.39 |
xgboost | 1.7.5.1 | xgxr | 1.1.2 |
XLConnect | 1.0.7 | xlsx | 0.6.5 |
xlsxjars | 0.6.1 | XML | 3.99-0.14 |
xml2 | 1.3.5 | xopen | 1.0.0 |
xplain | 0.2.2 | xpose | 0.4.17 |
xpose.nlmixr2 | 0.4.0 | xpose4 | 4.7.2 |
xtable | 1.8-4 | xts | 0.13.1 |
XVector | 0.40.0 | xxIRT | 2.1.2 |
yaImpute | 1.0-33 | yaml | 2.3.7 |
yardstick | 1.2.0 | yesno | 0.1.2 |
yuima | 1.15.22 | yulab.utils | 0.0.6 |
zeallot | 0.1.0 | zic | 0.9.1 |
ZIM | 1.1.0 | ZINARp | 0.1.0 |
zip | 2.3.0 | zipfR | 0.6-70 |
zlibbioc | 1.46.0 | zoo | 1.8-12 |
ZRA | 0.2 |
RStudio Server
R: 4.3.1
rstudio-server: 2023.06.0+421
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
Installed R packages used for interacting with databases.
This AMI provides thousands of R packages covering various domains such as data science, machine learning, databases, Bayesian statistics, clinical trials, epidemiology, experimental design, psychometric methodology, analysis of pharmacokinetic data, medical image processing, teaching statistics, time series analysis, and natural language processing.
R packages (2349)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.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.1 | acp | 2.1 |
ACSWR | 1.0 | actuar | 3.3-2 |
ada | 2.0-5 | adaptivetau | 2.2-3 |
adaptMCMC | 1.4 | adaptr | 1.3.1 |
adaptsmoFMRI | 1.2 | adaptTest | 1.1 |
ade4 | 1.7-22 | ade4TkGUI | 0.3-1 |
adegenet | 2.1.10 | adegraphics | 1.0-18 |
adehabitatLT | 0.3.27 | adehabitatMA | 0.3.16 |
ADGofTest | 0.3 | adimpro | 0.9.5 |
admisc | 0.32 | AdMit | 2.1.9 |
AER | 1.2-10 | affy | 1.78.0 |
affyio | 1.70.0 | africamonitor | 0.2.3 |
agricolae | 1.3-5 | agricolaeplotr | 0.2.2 |
agridat | 1.21 | airports | 0.1.0 |
akima | 0.6-3.4 | alabama | 2022.4-1 |
AlgDesign | 1.2.1 | almanac | 1.0.0 |
alphavantager | 0.1.3 | ALTopt | 0.1.2 |
Amelia | 1.8.1 | ammiBayes | 1.0-1 |
AMR | 2.0.0 | AnaCoDa | 0.1.4.4 |
anacor | 1.1-4 | animation | 2.7 |
AnnotationDbi | 1.62.1 | anytime | 0.3.9 |
aod | 1.3.2 | AovBay | 0.1.0 |
ape | 5.7-1 | APFr | 1.0.2 |
aplot | 0.1.10 | approximator | 1.2-7 |
ARCensReg | 2.1 | ArchaeoChron | 0.1 |
ArchaeoPhases | 1.8 | ArDec | 2.1-1 |
ARDL | 0.2.3 | ardl.nardl | 1.2.3 |
arfima | 1.8-1 | arm | 1.13-1 |
aroma.apd | 0.6.1 | arrangements | 1.1.9 |
ars | 0.6 | ascii | 2.4 |
asd | 2.2 | ash | 1.0-15 |
ashr | 2.2-54 | askpass | 1.1 |
aspect | 1.0-6 | ASSA | 2.0 |
assertthat | 0.2.1 | astsa | 2.0 |
asymmetry | 2.0.4 | ata | 1.1.1 |
aTSA | 3.1.2 | attention | 0.3.0 |
AUC | 0.3.2 | audio | 0.1-10 |
automap | 1.1-9 | autostsm | 3.1.0 |
av | 0.8.3 | aweek | 1.0.3 |
aws | 2.5-1 | awsMethods | 1.1-1 |
BACCO | 2.0-9 | BACCT | 1.0 |
backports | 1.4.1 | baggr | 0.7.6 |
bain | 0.2.8 | BaM | 1.0.3 |
bama | 1.3.0 | bamdit | 3.4.0 |
bamlss | 1.2-0 | bang | 1.0.1 |
BANOVA | 1.2.1 | BART | 2.9.4 |
bartBMA | 1.0 | bartCause | 1.0-6 |
bartMachine | 1.3.3.1 | bartMachineJARs | 1.2.1 |
BAS | 1.6.4 | basad | 0.3.0 |
base64 | 2.0.1 | base64enc | 0.1-3 |
base64url | 1.4 | basicMCMCplots | 0.2.7 |
BaSkePro | 0.1.0 | BASS | 1.2.2 |
BatchExperiments | 1.4.3 | BatchJobs | 1.9 |
baycn | 1.2.0 | bayefdr | 0.2.1 |
bayes4psy | 1.2.11 | 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-8 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.2.0 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.4 |
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.1 |
BayesianNetwork | 0.1.5 | BayesianTools | 0.1.8 |
bayesImageS | 0.6-1 | BayesLCA | 1.9 |
bayesLife | 5.1-1 | bayeslincom | 1.3.0 |
BayesLN | 0.2.8 | BayesLogit | 2.1 |
bayesloglin | 1.0.1 | bayeslongitudinal | 0.1.0 |
bayesm | 3.1-5 | BayesMallows | 1.3.0 |
BayesMassBal | 1.1.0 | bayesmeta | 3.2 |
bayesmix | 0.7-6 | bayesnec | 2.1.0.3 |
bayesplot | 1.10.0 | bayesQR | 2.3 |
bayestestR | 0.13.1 | bayesTFR | 7.3-2 |
BayesTools | 0.2.14 | BayesTree | 0.3-1.4 |
BayesVarSel | 2.2.5 | BayesX | 0.3-2 |
BAYSTAR | 0.2-10 | BB | 2019.10-1 |
BBmisc | 1.13 | BCBCSF | 1.0-1 |
BCE | 2.2.0 | Bchron | 4.7.6 |
bcp | 4.0.3 | bcrm | 0.5.4 |
BDgraph | 2.72 | bdsmatrix | 1.3-6 |
BE | 0.2.4 | beadarray | 2.50.0 |
BeadDataPackR | 1.52.0 | beepr | 1.3 |
beeswarm | 0.4.0 | bentcableAR | 0.3.1 |
Bergm | 5.0.5 | BEST | 0.5.4 |
BetaBit | 2.1 | betafunctions | 1.8.1 |
betareg | 3.1-4 | BETS | 0.4.9 |
bets.covid19 | 1.0.0 | beyondWhittle | 1.2.0 |
bezier | 1.1.2 | bfast | 1.6.1 |
BGLR | 1.1.0 | BGVAR | 2.5.2 |
BH | 1.81.0-1 | BHH2 | 2016.05.31 |
BiasedUrn | 2.0.10 | biganalytics | 1.1.21 |
bigD | 0.2.0 | biglm | 0.9-2.1 |
bigmemory | 4.6.1 | bigmemory.sri | 0.1.6 |
bigrquery | 1.4.2 | bigsplines | 1.1-1 |
bigtime | 0.2.1 | BigVAR | 1.1.2 |
bindr | 0.1.1 | bindrcpp | 0.2.2 |
binom | 1.1-1.1 | binomSamSize | 0.1-5 |
binr | 1.1.1 | binseqtest | 1.0.3 |
Biobase | 2.60.0 | BiocGenerics | 0.46.0 |
BiocManager | 1.30.21 | BiocParallel | 1.34.1 |
BiocVersion | 3.17.1 | bioinactivation | 1.2.3 |
biomformat | 1.28.0 | bioOED | 0.2.1 |
Biostrings | 2.68.0 | birtr | 1.0.0 |
bit | 4.0.5 | bit64 | 4.0.5 |
bitops | 1.0-7 | biwavelet | 0.20.21 |
bkmr | 0.2.2 | blastula | 0.3.3 |
blavaan | 0.4-8 | blob | 1.2.4 |
blocklength | 0.1.5 | blockrand | 1.5 |
blocksdesign | 4.9 | blockTools | 0.6.4 |
BLR | 1.6 | BMA | 3.18.17 |
bmixture | 1.7 | BMS | 0.3.5 |
BMTAR | 0.1.1 | bnlearn | 4.8.3 |
BNPTSclust | 2.0 | BNSP | 2.2.3 |
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 |
bookdown | 0.34 | Boom | 0.9.11 |
BoomSpikeSlab | 1.2.5 | bootnet | 1.5.3 |
BootPR | 0.70 | bootstrap | 2019.6 |
bootUR | 1.0.2 | bpca | 1.3-4 |
bqtl | 1.0-34 | BradleyTerry2 | 1.1-2 |
brainR | 1.6.0 | breakfast | 2.3 |
brew | 1.0-8 | brglm | 0.7.2 |
brglm2 | 0.9 | bridgesampling | 1.1-2 |
brio | 1.1.3 | brms | 2.19.0 |
Brobdingnag | 1.2-9 | broom | 1.0.5 |
bsamGP | 1.2.4 | bslib | 0.5.0 |
BsMD | 2020.4.30 | bspec | 1.6 |
bspmma | 0.1-2 | bssm | 2.0.1 |
BSSprep | 0.1 | bsts | 0.9.9 |
bsvars | 1.0.0 | BTLLasso | 0.1-11 |
BTM | 0.3.7 | bundesbank | 0.1-9 |
BVAR | 1.0.4 | bvartools | 0.2.2 |
ca | 0.71.1 | cabootcrs | 2.1.0 |
cachem | 1.0.8 | cacIRT | 1.4 |
CADFtest | 0.3-3 | caffsim | 0.2.2 |
Cairo | 1.6-0 | calculus | 1.0.1 |
calibrator | 1.2-8 | callr | 3.7.3 |
candisc | 0.8-6 | car | 3.1-2 |
CARBayes | 5.3 | CARBayesdata | 3.0 |
CARBayesST | 3.3.1 | carData | 3.0-5 |
caret | 6.0-94 | carfima | 2.0.2 |
caTools | 1.18.2 | catR | 3.17 |
causact | 0.4.2 | CausalImpact | 1.3.0 |
CAvariants | 5.8 | CDM | 8.2-6 |
cds | 1.0.3 | CellNOptR | 1.46.0 |
cellranger | 1.1.0 | chandwich | 1.1.5 |
changepoint | 2.2.4 | changepoint.geo | 1.0.1 |
changepoint.np | 1.0.5 | checkmate | 2.2.0 |
cherryblossom | 0.1.0 | chk | 0.9.0 |
choiceDes | 0.9-3 | CholWishart | 1.1.2 |
chron | 2.3-61 | cifti | 0.4.5 |
cinterpolate | 1.0.0 | CircSpaceTime | 0.9.0 |
CircStats | 0.2-6 | circular | 0.4-95 |
ciTools | 0.6.1 | classInt | 0.4-9 |
cli | 3.6.1 | clime | 0.5.0 |
clinDR | 2.3.5 | clinfun | 1.1.2 |
clinicalsignificance | 1.2.0 | clinPK | 0.11.1 |
clinsig | 1.2 | clipr | 0.8.0 |
clisymbols | 1.2.0 | clock | 0.7.0 |
clue | 0.3-64 | clustDRM | 0.1-0 |
clusterGeneration | 1.3.7 | clusterPower | 0.7.0 |
ClustVarLV | 2.1.1 | clv | 0.3-2.3 |
cmaes | 1.0-12 | CMLS | 1.0-1 |
cmprsk | 2.2-11 | cmrutils | 1.3.1 |
cNORM | 3.0.3 | CNORode | 1.42.0 |
coalescentMCMC | 0.4-4 | coalitions | 0.6.24 |
coarseDataTools | 0.6-6 | coconots | 1.1.1 |
cocor | 1.1-4 | cocorresp | 0.4-3 |
cocron | 1.0-1 | coda | 0.19-4 |
coin | 1.4-2 | cointReg | 0.2.0 |
collapse | 1.9.6 | collapsibleTree | 0.1.7 |
colorRamps | 2.3.1 | colorspace | 2.1-0 |
colourpicker | 1.2.0 | combinat | 0.0-8 |
CombinS | 1.1-1 | CommonJavaJars | 1.0-6 |
commonmark | 1.9.0 | compare | 0.2-6 |
CompQuadForm | 1.4.3 | conditionz | 0.1.0 |
conf.design | 2.0.0 | config | 0.3.1 |
conflicted | 1.2.0 | conquestr | 1.0.7 |
contactdata | 1.0.0 | contfrac | 1.1-12 |
cops | 1.3-1 | copula | 1.1-2 |
cordillera | 1.0-0 | coro | 1.0.3 |
corona | 0.3.0 | coronavirus | 0.4.1 |
corpcor | 1.6.10 | corpora | 0.5-1 |
corporaexplorer | 0.8.6 | corrgram | 1.14 |
corrplot | 0.92 | cosa | 2.1.0 |
costat | 2.4 | countrycode | 1.5.0 |
COVID19 | 3.0.3 | covid19.analytics | 2.1.3.1 |
covid19br | 0.1.5 | 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.1 | CPBayes | 1.1.0 |
cpk | 1.3-1 | cpp11 | 0.4.3 |
crayon | 1.5.2 | credentials | 1.3.2 |
crfsuite | 0.4.1 | CRM | 1.2.4 |
crmPack | 1.0.3 | crossdes | 1.1-2 |
Crossover | 0.1-21 | crosstalk | 1.2.0 |
crs | 0.15-37 | crul | 1.4.0 |
cSEM | 0.5.0 | csv | 0.6.2 |
ctbi | 2.0.5 | ctrdata | 1.13.2 |
CTT | 2.3.3 | CTTShiny | 0.1 |
ctv | 0.9-5 | cubature | 2.1.0 |
Cubist | 0.4.2.1 | curl | 5.0.1 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-11 |
d3Network | 0.5.2.1 | DAAG | 1.25.4 |
dae | 3.2.15 | daewr | 1.2-10 |
dagitty | 0.3-1 | DAKS | 2.1-3 |
DALEX | 2.4.3 | data.table | 1.14.8 |
data.tree | 1.0.0 | DatabaseConnector | 6.2.2 |
DataExplorer | 0.8.2 | datapasta | 3.1.0 |
dataseries | 0.2.0 | datawizard | 0.8.0 |
date | 1.2-42 | datetimeutils | 0.6-1 |
dbarts | 0.9-23 | DBI | 1.1.3 |
DBItest | 1.7.3 | dbparser | 2.0.1 |
dbplyr | 2.3.2 | dbscan | 1.1-11 |
dbx | 0.2.8 | DChaos | 0.1-7 |
dclone | 2.3-0 | dcov | 0.1.1 |
dCovTS | 1.3 | dcurver | 0.9.2 |
dde | 1.0.4 | deBInfer | 0.4.4 |
debugme | 1.1.0 | deldir | 1.0-9 |
deltaPlotR | 1.6 | dendextend | 1.17.1 |
densEstBayes | 1.0-2.2 | DEoptim | 2.2-8 |
DEoptimR | 1.0-14 | depmix | 0.9.16 |
depmixS4 | 1.5-0 | DepthProc | 2.1.5 |
Deriv | 4.1.3 | desc | 1.4.2 |
DescTools | 0.99.49 | designmatch | 0.4.1 |
desirability | 2.1 | deSolve | 1.35 |
desplot | 1.10 | devtools | 2.4.5 |
dexter | 1.2.2 | dextergui | 0.2.6 |
dexterMST | 0.9.3 | 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 | 2020.10-1 |
dfped | 1.1 | dfpk | 3.5.1 |
DHARMa | 0.4.6 | diagis | 0.2.2 |
diagram | 1.6.5 | DiagrammeR | 1.0.10 |
dials | 1.2.0 | DiceDesign | 1.9 |
DiceEval | 1.5.1 | DiceKriging | 1.6.0 |
DiceView | 2.1-0 | dichromat | 2.0-0.1 |
DICOMread | 0.0.0.3 | DIFboost | 0.3 |
diffobj | 0.3.5 | 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.31 |
DIMORA | 0.3.5 | dimRed | 0.2.6 |
dina | 2.0.0 | dipsaus | 0.2.7 |
diptest | 0.76-0 | Dire | 2.1.1 |
DIRECT | 1.0.1 | directlabels | 2021.1.13 |
dirichletprocess | 0.4.1 | disaggR | 1.0.5 |
discretization | 1.0-1.1 | DistatisR | 1.1.1 |
distcrete | 1.0.3 | distfree.cr | 1.5.1 |
distr | 2.9.2 | distrEx | 2.9.0 |
distributional | 0.3.2 | DistributionUtils | 0.6-0 |
distrom | 1.0.1 | distrTeach | 2.9.0 |
dittodb | 0.1.6 | divest | 0.10.3 |
dLagM | 1.1.8 | dlm | 1.1-6 |
dlnm | 2.4.7 | dmri.tracking | 0.1.0 |
doBy | 4.6.16 | doc2vec | 0.2.0 |
docopulae | 0.4.0 | DoE.base | 1.2-2 |
DoE.MIParray | 1.0 | DoE.wrapper | 0.11 |
doMC | 1.3.8 | doParallel | 1.0.17 |
doRNG | 1.8.6 | DoseFinding | 1.0-4 |
doSNOW | 1.0.20 | dotCall64 | 1.0-2 |
downlit | 0.4.2 | downloader | 0.4 |
dparser | 1.3.1-10 | dplyr | 1.1.2 |
dqrng | 0.3.0 | dr4pl | 2.0.0 |
DRR | 0.0.4 | dsa | 1.0.12 |
DSAIDE | 0.9.3 | dse | 2020.2-1 |
DSL | 0.1-7 | DT | 0.28 |
DTAT | 0.3-6 | dti | 1.5.1 |
dtplyr | 1.3.1 | DTSg | 1.1.1 |
dtt | 0.1-2 | dtts | 0.1.0 |
dtw | 1.23-1 | dtwclust | 5.5.12 |
duckdb | 0.8.1 | dygraphs | 1.1.1.6 |
dyn | 0.2-9.6 | dynamicTreeCut | 1.63-1 |
dynaTree | 1.2-15 | dynlm | 0.3-6 |
e1071 | 1.7-13 | earlyR | 0.0.5 |
earth | 5.3.2 | easypower | 1.0.1 |
eba | 1.10-0 | EbayesThresh | 1.4-12 |
ebdbNet | 1.2.7 | EBImage | 4.42.0 |
EBMAforecast | 1.0.3 | ecb | 0.4.2 |
Ecdat | 0.4-2 | Ecfun | 0.3-2 |
ecm | 6.3.0 | ecodist | 2.0.9 |
ECOSolveR | 0.5.5 | ecp | 3.1.4 |
edfReader | 1.2.1 | edgeR | 3.42.2 |
edina | 0.1.1 | edmdata | 1.2.0 |
edstan | 1.0.6 | eegkit | 1.0-4 |
eegkitdata | 1.1 | EFAutilities | 2.1.3 |
effects | 4.2-2 | EGAnet | 1.2.3 |
egg | 0.4.5 | egor | 1.23.3 |
eha | 2.10.3 | eigenmodel | 1.11 |
elastic | 1.2.0 | elasticnet | 1.3 |
ellipse | 0.4.5 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | EMD | 1.5.9 |
emg | 1.0.9 | emmeans | 1.8.6 |
emulator | 1.2-21 | encode | 0.3.6 |
endtoend | 2.29 | EngrExpt | 0.1-8 |
enrichwith | 0.3.1 | ensembleBMA | 5.1.8 |
EntropyMCMC | 1.0.4 | EnvStats | 2.7.0 |
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.3.2 |
epinet | 2.1.8 | epiR | 2.0.61 |
EpiReport | 1.0.2 | episensr | 1.2.0 |
epitools | 0.5-10.1 | epitrix | 0.4.0 |
equate | 2.0.8 | equateIRT | 2.3.0 |
equateMultiple | 0.1.1 | equivalence | 0.7.2 |
era | 0.4.1 | ergm | 4.5.0 |
ergm.ego | 1.1.0 | ergm.multi | 0.2.0 |
eRm | 1.0-2 | errum | 0.0.3 |
esaBcv | 1.2.1.1 | esemifar | 1.0.1 |
EstCRM | 1.6 | estimability | 1.4.1 |
EstimateGroupNetwork | 0.3.1 | ETLUtils | 1.5 |
etm | 1.1.1 | etrunct | 0.1 |
evaluate | 0.21 | evd | 2.3-6.1 |
evgam | 1.0.0 | ewoc | 0.3.0 |
Exact | 3.2 | exams | 2.4-0 |
exdex | 1.2.1 | experiment | 1.2.1 |
expint | 0.1-8 | expm | 0.999-7 |
ExPosition | 2.8.23 | expsmooth | 2.3 |
extraDistr | 1.9.1 | extrafont | 0.19 |
extrafontdb | 1.0 | ez | 4.4-0 |
fable | 0.3.3 | fable.prophet | 0.1.0 |
fabletools | 0.3.3 | FactoMineR | 2.8 |
factorstochvol | 1.0.1 | fanplot | 4.0.0 |
fansi | 1.0.4 | faoutlier | 0.7.6 |
faraway | 1.0.8 | farver | 2.1.1 |
fastDummies | 1.6.3 | fastGHQuad | 1.0.1 |
fastICA | 1.2-3 | fastmap | 1.1.1 |
fastmatch | 1.1-3 | FAVAR | 0.1.3 |
fBasics | 4022.94 | fda | 6.1.4 |
fdaACF | 1.0.0 | fdapace | 0.5.9 |
fdrtool | 1.2.17 | fds | 1.8 |
fdth | 1.2-6 | feasts | 0.3.1 |
fechner | 1.0-3 | FeedbackTS | 1.5 |
ff | 4.0.9 | fftwtools | 0.9-11 |
fGarch | 4022.89 | fields | 14.1 |
filearray | 0.1.5 | filehash | 2.4-5 |
filehashSQLite | 0.2-6 | filelock | 1.0.2 |
finnts | 0.2.4 | FinTS | 0.4-6 |
fitdistrplus | 1.1-11 | FKF | 0.2.4 |
FKF.SP | 0.3.1 | flashClust | 1.01-2 |
flexclust | 1.4-1 | flexdashboard | 0.6.1 |
flexmix | 2.3-19 | flextable | 0.9.2 |
float | 0.3-1 | fma | 2.5 |
FMC | 1.0.1 | FME | 1.3.6.2 |
fmri | 1.9.11 | fnets | 0.1.3 |
FNN | 1.1.3.2 | fNonlinear | 4021.81 |
fontawesome | 0.5.1 | fontBitstreamVera | 0.1.1 |
fontLiberation | 0.1.0 | fontquiver | 0.2.1 |
forcats | 1.0.0 | foreach | 1.5.2 |
ForeCA | 0.2.7 | forecast | 8.21 |
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.1 | forge | 0.2.0 |
formatR | 1.14 | formattable | 0.2.1 |
Formula | 1.2-5 | formula.tools | 1.7.1 |
fourPNO | 1.1.0 | fpc | 2.2-10 |
fpcb | 0.1.0 | fpp2 | 2.5 |
fpp3 | 0.5 | fracdiff | 1.5-2 |
fredr | 2.1.0 | freesurferformats | 0.1.17 |
freqdom | 2.0.3 | freqdom.fda | 1.0.1 |
fresh | 0.2.0 | FrF2 | 2.3-1 |
FrF2.catlg128 | 1.2-2 | fs | 1.6.2 |
fslr | 2.25.2 | fsMTS | 0.1.7 |
fst | 0.9.8 | fstcore | 0.9.14 |
ftsa | 6.2 | functional | 0.6 |
funtimes | 9.1 | furrr | 0.3.1 |
futile.logger | 1.4.3 | futile.options | 1.0.1 |
future | 1.32.0 | future.apply | 1.11.0 |
GA | 3.2.3 | GAD | 1.1.1 |
gam | 1.22-2 | gamlr | 1.13-8 |
gamlss | 5.4-12 | gamlss.data | 6.0-2 |
gamlss.dist | 6.0-5 | gap | 1.5-1 |
gap.datasets | 0.0.5 | gargle | 1.5.1 |
garma | 0.9.11 | GAS | 0.3.4 |
gasmodel | 0.3.0 | gaussquad | 1.0-3 |
gbm | 2.1.8.1 | gbutils | 0.5 |
gclus | 1.3.2 | gdata | 2.19.0 |
GDINA | 2.9.3 | gdpc | 1.1.3 |
gdtools | 0.3.3 | geepack | 1.3.9 |
genalg | 0.2.1 | gender | 0.6.0 |
GeneralizedHyperbolic | 0.8-4 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | GenomeInfoDb | 1.36.0 |
GenomeInfoDbData | 1.2.10 | GenomicRanges | 1.52.0 |
GenSA | 1.1.8 | geojsonsf | 2.0.3 |
geometries | 0.2.2 | geometry | 0.4.7 |
GEOquery | 2.68.0 | geoR | 1.9-2 |
geosphere | 1.5-18 | geospt | 1.0-2 |
gert | 1.9.2 | getPass | 0.2-2 |
gets | 0.37 | gfonts | 0.2.0 |
GGally | 2.1.2 | ggalt | 0.4.0 |
gganimate | 1.0.8 | ggdag | 0.2.10 |
ggdemetra | 0.2.5 | ggdendro | 0.1.23 |
ggdist | 3.3.0 | ggExtra | 0.10.0 |
ggforce | 0.4.1 | ggformula | 0.10.4 |
ggfun | 0.1.0 | gghalves | 0.1.4 |
ggmap | 3.0.2 | ggmcmc | 1.5.1.1 |
ggplot2 | 3.4.2 | ggplotify | 0.1.0 |
ggpubr | 0.6.0 | ggraph | 2.1.0 |
ggrepel | 0.9.3 | ggridges | 0.5.4 |
ggsci | 3.0.0 | ggseas | 0.5.4 |
ggsignif | 0.6.4 | ggstance | 0.3.6 |
ggtext | 0.1.2 | ggtree | 3.8.0 |
ggvis | 0.4.8 | gh | 1.4.0 |
Gifi | 0.4-0 | gifti | 0.8.0 |
GIGrvg | 0.8 | gimme | 0.7-14 |
git2r | 0.32.0 | gitcreds | 0.1.2 |
glarma | 1.6-0 | GlarmaVarSel | 1.0 |
glasso | 1.11 | glassoFast | 1.0 |
gld | 2.6.6 | GLMMRR | 0.5.0 |
glmnet | 4.1-7 | globals | 0.16.2 |
glpkAPI | 1.3.4 | glue | 1.6.2 |
GMDH | 1.6 | gmm | 1.8 |
gmodels | 2.18.1.1 | gmp | 0.7-1 |
gmvarkit | 2.0.8 | GNAR | 1.1.2 |
gnm | 1.1-2 | GO.db | 3.17.0 |
goftest | 1.2-3 | googledrive | 2.1.1 |
googlesheets4 | 1.1.1 | googleVis | 0.7.1 |
gower | 1.0.1 | GPArotation | 2023.3-1 |
GPCMlasso | 0.1-6 | GPfit | 1.0-8 |
gplots | 3.1.3 | gradethis | 0.2.12.9004 |
gRain | 1.3.13 | graph | 1.78.0 |
graphicalVAR | 0.3.1 | graphlayouts | 1.0.0 |
grates | 1.1.0 | gratis | 1.0.3 |
gravitas | 0.1.3 | gRbase | 1.8.9 |
greta | 0.4.3 | greybox | 1.0.8 |
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.2-0 | grnn | 0.1.0 |
GroupSeq | 1.4.2 | grplasso | 0.4-7 |
gsarima | 0.1-5 | gsDesign | 3.4.0 |
gSEM | 0.4.3.4 | gsignal | 0.3-5 |
gsl | 2.1-8 | gss | 2.2-5 |
gstat | 2.1-1 | gsubfn | 0.7 |
gt | 0.9.0 | gtable | 0.3.3 |
gtheory | 0.1.2 | gtools | 3.9.4 |
gtop | 0.2.0 | HaploSim | 1.8.4.2 |
hardhat | 1.3.0 | hash | 2.2.6.2 |
haven | 2.5.2 | hbsae | 1.2 |
hdf5r | 1.3.8 | HDInterval | 0.2.4 |
HDMT | 1.0.5 | hdrcde | 3.4 |
HDTSA | 1.0.2 | heatmaply | 1.4.2 |
heplots | 1.4-2 | here | 1.0.1 |
hett | 0.3-3 | hexbin | 1.28.3 |
hflights | 0.1 | HH | 3.1-49 |
hht | 2.1.6 | highcharter | 0.9.4 |
highlight | 0.5.1 | highr | 0.10 |
HIMA | 2.2.0 | HKRbook | 0.1.3 |
Hmisc | 5.1-0 | HMMpa | 1.0.1 |
hms | 1.1.3 | homals | 1.0-10 |
hommel | 1.6 | hpfilter | 1.0.2 |
HSAUR3 | 1.0-14 | htmlTable | 2.4.1 |
htmltools | 0.5.5 | htmlwidgets | 1.6.2 |
hts | 6.0.2 | httpcode | 0.3.0 |
httpuv | 1.6.11 | httr | 1.4.6 |
httr2 | 0.2.3 | hunspell | 3.0.2 |
hutils | 1.8.1 | hwwntest | 1.3.1 |
HydroMe | 2.0-1 | HyperbolicDist | 0.6-4 |
hypergeo | 1.2-13 | i2extras | 0.2.1 |
iarm | 0.4.3 | ibd | 1.5 |
iBreakDown | 2.0.1 | ica | 1.0-3 |
ICAOD | 1.0.1 | ICC | 2.4.0 |
iccbeta | 1.2.0 | Icens | 1.72.0 |
ICS | 1.3-2 | ICSNP | 1.1-1 |
ICtest | 0.3-5 | idefix | 1.0.3 |
IDPmisc | 1.1.20 | ids | 1.0.1 |
ifaTools | 0.23 | igraph | 1.5.0 |
igraphdata | 1.0.1 | illuminaio | 0.42.0 |
imbibe | 0.1.1 | immer | 1.4-15 |
implyr | 0.4.0 | impute | 1.74.1 |
imputeTestbench | 3.0.3 | imputeTS | 3.3 |
IncDTW | 1.1.4.4 | incidence | 1.7.3 |
incidence2 | 2.2.1 | ineq | 0.2-13 |
infer | 1.0.4 | influence.SEM | 2.3 |
influenceR | 0.1.5 | influxdbr | 0.14.2 |
ingredients | 2.3.0 | ini | 0.3.1 |
inline | 0.3.19 | insight | 0.19.2 |
InspectChangepoint | 1.2 | interp | 1.1-4 |
intervals | 0.15.3 | inum | 1.0-5 |
invgamma | 1.1 | ipred | 0.9-14 |
IRanges | 2.34.0 | 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.3.1 |
IsingSampler | 0.2.1 | Iso | 0.0-18.1 |
isoband | 0.2.7 | ISOcodes | 2022.09.29 |
IsoGene | 1.0-24 | ISOweek | 0.6-2 |
ISwR | 2.0-8 | iterators | 1.0.14 |
iterLap | 1.1-3 | itertools | 0.1-3 |
itsmr | 1.10 | JADE | 2.0-3 |
jalcal | 0.1.0 | janeaustenr | 1.0.0 |
janitor | 2.2.0 | JavaGD | 0.6-5 |
jiebaR | 0.11 | jiebaRD | 0.1 |
jjb | 0.1.1 | JMdesign | 1.3 |
jomo | 2.7-6 | jpeg | 0.1-10 |
jqr | 1.2.3 | jquerylib | 0.1.4 |
jrt | 1.1.2 | jsonify | 1.2.2 |
jsonlite | 1.8.5 | juicyjuice | 0.1.0 |
JuliaConnectoR | 1.1.1 | kableExtra | 1.3.4 |
kalmanfilter | 2.0.1 | kappaSize | 1.2 |
KEGGREST | 1.40.0 | Kendall | 2.2.1 |
kequate | 1.6.4 | keras | 2.11.1 |
kernelFactory | 0.3.0 | kernlab | 0.9-32 |
KFAS | 1.5.0 | klaR | 1.7-2 |
km.ci | 0.5-6 | knitr | 1.43 |
koRpus | 0.13-8 | ks | 1.14.0 |
kst | 0.5-4 | kutils | 1.70 |
kza | 4.1.0.1 | labdsv | 2.1-0 |
label.switching | 1.8 | labeling | 0.4.2 |
labelled | 2.11.0 | LaF | 0.8.4 |
lagged | 0.3.2 | Lahman | 11.0-0 |
LAM | 0.6-19 | lambda.r | 1.2.4 |
languageR | 1.5.0 | LaplacesDemon | 16.1.6 |
lars | 1.3 | lassoshooting | 0.1.5-1.1 |
latdiag | 0.3 | later | 1.3.1 |
latex2exp | 0.9.6 | latticeExtra | 0.6-30 |
lava | 1.7.2.1 | lavaan | 0.6-15 |
lavaan.survey | 1.1.3.1 | LAWBL | 1.5.0 |
lazyeval | 0.2.2 | lbfgsb3c | 2020-3.2 |
LCAvarsel | 1.1 | lcda | 0.3.1 |
lda | 1.4.2 | ldbounds | 2.0.1 |
leafem | 0.2.0 | leaflet | 2.1.2 |
leaflet.providers | 1.9.0 | leafpop | 0.1.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
learnr | 0.11.4 | legion | 0.1.2 |
lgr | 0.4.4 | lgtdl | 1.1.5 |
lhs | 1.1.6 | libcoin | 1.0-9 |
lifecycle | 1.0.3 | LIM | 1.4.7 |
limma | 3.56.1 | limSolve | 1.5.6 |
linelist | 0.0.1 | linpk | 1.1.2 |
linprog | 0.9-4 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | liteq | 1.1.0 |
lme4 | 1.1-33 | lmerTest | 3.1-3 |
lmm | 1.3 | lmom | 2.9 |
Lmoments | 1.3-1 | lmtest | 0.9-40 |
LNIRT | 0.5.1 | locfit | 1.5-9.8 |
locits | 1.7.6 | locpol | 0.8.0 |
logitnorm | 0.8.38 | logspline | 2.1.19 |
lokern | 1.1-10 | lomb | 2.1.0 |
longitudinalData | 2.4.5 | longmemo | 1.1-2 |
LongMemoryTS | 0.1.0 | longpower | 1.0.24 |
loo | 2.6.0 | lordif | 0.3-3 |
lotri | 0.4.3 | lpacf | 1.0.1 |
lpSolve | 5.6.18 | lpSolveAPI | 5.5.2.0-17.9 |
lsa | 0.73.3 | lsl | 0.5.6 |
lslx | 0.6.11 | LSTS | 2.1 |
LSWPlib | 0.1.0 | ltm | 1.2-0 |
ltsa | 1.4.6 | lubridate | 1.9.2 |
luz | 0.4.0 | lvnet | 0.3.5 |
lvplot | 0.2.1 | lwgeom | 0.2-13 |
m5 | 0.1.1 | maat | 1.1.0 |
magic | 1.6-1 | magick | 2.7.4 |
magrittr | 2.0.3 | MAMS | 2.0.1 |
manipulateWidget | 0.11.1 | MAPA | 2.0.5 |
mapdata | 2.3.1 | mapproj | 1.2.11 |
maps | 3.4.1 | maptools | 1.1-7 |
maptree | 1.4-8 | mapview | 2.11.0 |
mAr | 1.2-0 | mar1s | 2.1.1 |
markdown | 1.7 | MARSS | 3.11.8 |
MassSpecWavelet | 1.66.0 | Matching | 4.10-8 |
MatchIt | 4.5.4 | mathjaxr | 1.6-0 |
matlabr | 1.5.2 | matrixcalc | 1.0-6 |
MatrixExtra | 0.1.13 | MatrixModels | 0.5-1 |
matrixStats | 1.0.0 | maxLik | 1.5-2 |
MaxPro | 4.1-2 | MBA | 0.1-0 |
MBHdesign | 2.2.2 | mboost | 2.9-7 |
mbsts | 3.0 | mc2d | 0.1-22 |
MCAvariants | 2.6 | mclcar | 0.2-0 |
mclust | 6.0.0 | mcmc | 0.9-7 |
mcmcensemble | 3.0.0 | MCMCglmm | 2.34 |
MCMCpack | 1.6-3 | mcmcse | 1.5-0 |
MCMCvis | 0.16.0 | Mcomp | 2.8 |
mcompanion | 0.5.7 | MCPMod | 1.0-10.1 |
meboot | 1.4-9.3 | Mediana | 1.0.8 |
mediation | 4.5.0 | MEIGOR | 1.33.0 |
mem | 2.18 | memapp | 2.16 |
memisc | 0.99.31.6 | memoise | 2.0.1 |
MEMSS | 0.9-3 | meta | 6.5-0 |
metadat | 1.2-0 | metafor | 4.2-0 |
metaplot | 0.8.3 | metaSEM | 1.3.0 |
metasens | 1.5-2 | Metrics | 0.1.4 |
metRology | 0.9-28-1 | mFilter | 0.1-5 |
mgm | 1.2-13 | mi | 1.1 |
mice | 3.16.0 | microbenchmark | 1.4.10 |
microsamplingDesign | 1.0.8 | MIIVsem | 0.5.8 |
mime | 0.12 | MinEDfind | 0.1.3 |
minimalRSD | 1.0.0 | minimaxdesign | 0.1.5 |
miniUI | 0.1.1.1 | minpack.lm | 1.2-3 |
minqa | 1.2.5 | mirt | 1.39 |
mirtCAT | 1.12.2 | misc3d | 0.9-1 |
miscTools | 0.6-28 | missForest | 1.5 |
missMDA | 1.18 | mitml | 0.4-5 |
mitools | 2.4 | mix | 1.0-11 |
mixAR | 0.22.7 | MixedPsy | 1.1.0 |
mixexp | 1.2.7 | mixOmics | 6.24.0 |
mixsqp | 0.3-48 | mixtools | 2.0.0 |
mkssd | 1.2 | mlapi | 0.1.1 |
mlbench | 2.1-3.1 | MLCIRTwithin | 2.1.1 |
MLDS | 0.4.901 | mlmRev | 1.0-8 |
mlogit | 1.1-1 | mlogitBMA | 0.1-7 |
mlr3 | 0.16.1 | mlr3measures | 0.5.0 |
mlr3misc | 0.12.0 | mlVAR | 0.5.1 |
mma | 10.6-1 | mmand | 1.6.3 |
mmrm | 0.2.2 | mnormt | 2.1.1 |
MNP | 3.1-4 | modeldata | 1.1.0 |
modelenv | 0.1.1 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.11 | modeltime | 1.2.6 |
modeltime.ensemble | 1.0.3 | modeltime.resample | 0.2.3 |
modeltools | 0.2-23 | moderndive | 0.5.5 |
mokken | 3.0.6 | mombf | 3.4.0 |
moments | 0.14.1 | mondate | 0.10.02 |
mongolite | 2.7.2 | mongopipe | 0.1.1 |
monmlp | 1.1.5 | Morpho | 2.11 |
mosaic | 1.8.4.2 | mosaicCore | 0.9.2.1 |
mosaicData | 0.20.3 | movMF | 0.2-7 |
MPDiR | 0.1-20 | MplusAutomation | 1.1.0 |
mpmi | 0.43.2 | mpt | 0.8-0 |
MPTinR | 1.14.1 | MPV | 1.62 |
mratios | 1.4.2 | mrf | 0.1.6 |
mrgsolve | 1.0.9 | mritc | 0.5-3 |
mscstexta4r | 0.1.2 | mscsweblm4r | 0.1.2 |
msm | 1.7 | 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-24 |
multcompView | 0.1-9 | multDM | 1.1.4 |
multicool | 0.1-12 | MultiGlarmaVarSel | 1.0 |
MultiLCIRT | 2.11 | MultipleBubbles | 0.2.0 |
multiplex | 2.9.9 | multipol | 1.0-7 |
multitaper | 1.0-15 | multiway | 1.0-6 |
multtest | 2.56.0 | MuMIn | 1.47.5 |
munfold | 0.3.5 | munsell | 0.5.0 |
mvLSW | 1.2.5 | mvMORPH | 1.1.7 |
mvnfast | 0.2.8 | mvQuad | 1.0-6 |
mvtnorm | 1.2-2 | mxkssd | 1.2 |
n1qn1 | 6.0.1-11 | NADA | 1.6-1.1 |
nanotime | 0.3.7 | nardl | 0.1.6 |
natserv | 1.0.0 | nbTransmission | 1.1.2 |
ncappc | 0.3.0 | ncar | 0.4.5 |
ncvreg | 3.14.1 | nets | 0.9.1 |
network | 1.18.1 | NetworkChange | 0.8 |
NetworkComparisonTest | 2.2.1 | networkD3 | 0.4 |
networkDynamic | 0.11.3 | networkLite | 1.0.5 |
NetworkToolbox | 1.4.2 | networktools | 1.5.0 |
networktree | 1.0.1 | neuralnet | 1.44.2 |
neurobase | 1.32.3 | neuroim | 0.0.6 |
neuRosim | 0.2-13 | nFactors | 2.4.1.1 |
nhanesA | 0.7.3 | nifti.io | 1.0.0 |
nimble | 1.0.1 | NISTnls | 0.9-13 |
NlcOptim | 0.6 | nleqslv | 3.3.4 |
NlinTS | 1.4.5 | nlmeVPC | 2.6 |
nlmixr2 | 2.0.9 | nlmixr2data | 2.0.7 |
nlmixr2est | 2.1.6 | nlmixr2extra | 2.0.8 |
nlmixr2plot | 2.0.7 | nlmixr2rpt | 0.2.0 |
nloptr | 2.0.3 | NLP | 0.2-1 |
nls2 | 0.3-3 | nlsem | 0.8 |
nlstools | 2.0-0 | nlts | 1.0-2 |
nmw | 0.1.5 | nnfor | 0.9.8 |
nnls | 1.4 | nodbi | 0.9.5 |
NonCompart | 0.6.0 | nonlinearTseries | 0.2.12 |
nonmemica | 1.0.1 | nonnest2 | 0.5-5 |
nortest | 1.0-4 | nosoi | 1.1.0 |
np | 0.60-17 | nppbib | 1.2-0 |
nsarfima | 0.2.0.0 | nsprcomp | 0.5.1-2 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
o2geosocial | 1.1.0 | oai | 0.4.0 |
OBsMD | 6.1 | occ | 1.1 |
octopus | 0.3.0 | odbc | 1.3.4 |
odin | 1.2.4 | odpc | 2.0.5 |
odr | 1.4.2 | officer | 0.6.2 |
ohoegdm | 0.1.0 | onbrand | 1.0.2 |
onlineforecast | 1.0.1 | OPDOE | 1.0-10 |
openEBGM | 0.8.3 | openintro | 2.4.0 |
OpenMx | 2.21.8 | openNLP | 0.2-7 |
openNLPdata | 1.5.3-4 | openssl | 2.0.6 |
openxlsx | 4.2.5.2 | opera | 1.2.0 |
operator.tools | 1.6.3 | optextras | 2019-12.4 |
OptGS | 1.1.1 | OptimalDesign | 1.0.1 |
OptimaRegion | 1.2 | optimParallel | 1.0-2 |
optimx | 2022-4.30 | optiscale | 1.2.2 |
ORCME | 2.0.2 | ordinal | 2022.11-16 |
ore | 1.7.3.1 | ORIClust | 1.0-2 |
oro.dicom | 0.5.3 | oro.nifti | 0.11.4 |
oro.pet | 0.2.7 | orthopolynom | 1.0-6.1 |
osDesign | 1.8 | osqp | 0.6.0.8 |
otsad | 0.2.0 | otsfeatures | 1.0.0 |
outbreaker2 | 1.1.3 | outbreaks | 1.9.0 |
overlapping | 2.1 | padr | 0.6.2 |
PairedData | 1.1.1 | pairwise | 0.6.1-0 |
paleoTS | 0.5.3 | palmerpenguins | 0.1.1 |
pan | 1.6 | pander | 0.6.5 |
paradox | 0.11.1 | parallelly | 1.36.0 |
paran | 1.5.2 | parsedate | 1.3.1 |
parsnip | 1.1.0 | partitions | 1.10-7 |
partsm | 1.1-3 | party | 1.3-13 |
partykit | 1.2-20 | pastecs | 1.3.21 |
patchwork | 1.1.2 | paws | 0.3.0 |
paws.analytics | 0.3.0 | paws.application.integration | 0.3.1 |
paws.common | 0.5.6 | paws.compute | 0.3.1 |
paws.cost.management | 0.3.1 | paws.customer.engagement | 0.3.0 |
paws.database | 0.3.0 | paws.developer.tools | 0.3.1 |
paws.end.user.computing | 0.3.0 | paws.machine.learning | 0.3.0 |
paws.management | 0.3.1 | paws.networking | 0.3.0 |
paws.security.identity | 0.3.1 | paws.storage | 0.3.0 |
pbapply | 1.7-0 | PBIBD | 1.3 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
pbmcapply | 1.5.1 | pbs | 1.1 |
PBSddesolve | 1.13.3 | PBSmapping | 2.73.2 |
pbv | 0.4-22 | PCA4TS | 0.1 |
pcaMethods | 1.92.0 | pcaPP | 2.0-3 |
pcdpca | 0.4 | pcFactorStan | 1.5.3 |
pcIRT | 0.2.4 | PCMRS | 0.1-4 |
pcts | 0.15.5 | pdc | 1.0.3 |
pdfCluster | 1.0-4 | pdfetch | 0.2.8 |
pdftools | 3.3.3 | pdist | 1.2.1 |
pedigree | 1.4.2 | penalized | 0.9-52 |
performance | 0.10.4 | PerformanceAnalytics | 2.0.4 |
permute | 0.9-7 | PGM2 | 1.0-1 |
ph2bayes | 0.0.2 | ph2bye | 0.1.4 |
phangorn | 2.11.1 | pheatmap | 1.0.12 |
phonics | 1.3.10 | phyloseq | 1.44.0 |
phytools | 1.5-1 | picasso | 1.3.1 |
pid | 0.50 | piecewiseSEM | 2.3.0 |
pillar | 1.9.0 | pingr | 2.0.2 |
pins | 1.2.0 | pipe.design | 0.5.1 |
pipeR | 0.6.1.3 | pixmap | 0.4-12 |
PK | 1.3-5 | PKconverter | 1.5 |
pkdata | 0.1.0 | pkgbuild | 1.4.1 |
pkgconfig | 2.0.3 | pkgdown | 2.0.7 |
pkgfilecache | 0.1.4 | pkgload | 1.3.2 |
PKNCA | 0.10.2 | pkr | 0.1.3 |
pks | 0.5-0 | PlackettLuce | 0.4.3 |
plgp | 1.1-12 | plink | 1.5-1 |
plm | 2.6-3 | PLMIX | 2.1.1 |
PLmixed | 0.1.6 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.2 |
plotMCMC | 2.0.1 | plotmo | 3.6.2 |
plotrix | 3.8-2 | plotSEMM | 2.4 |
pls | 2.8-2 | plyr | 1.8.8 |
pmr | 1.2.5.1 | pmxTools | 1.3 |
png | 0.1-8 | pointblank | 0.11.4 |
poisbinom | 1.0.1 | poLCA | 1.6.0.1 |
polspline | 1.1.22 | polyclip | 1.10-4 |
polycor | 0.8-1 | polyCub | 0.8.1 |
polynom | 1.4-1 | PolynomF | 2.0-5 |
polyreg | 0.8.0 | pomp | 5.2 |
pool | 1.0.1 | PopED | 0.6.0 |
popEpi | 0.4.10 | posterior | 1.4.1 |
powerbydesign | 1.0.5 | powerGWASinteraction | 1.1.3 |
powerSurvEpi | 0.1.3 | PowerTOST | 1.5-4 |
PowerUpR | 1.1.0 | PP | 0.6.3-11 |
ppcor | 1.1 | prabclus | 2.3-2 |
pracma | 2.4.2 | praise | 1.0.0 |
PreciseSums | 0.6 | prefmod | 0.8-35 |
preprocessCore | 1.62.1 | presize | 0.3.7 |
prettyGraphs | 2.1.6 | prettyunits | 1.1.1 |
prevalence | 0.4.1 | princurve | 2.1.6 |
pROC | 1.18.2 | processx | 3.8.1 |
prodlim | 2023.03.31 | ProfessR | 2.4-1 |
profileModel | 0.6.1 | profileR | 0.3-5 |
profoc | 1.2.0 | profvis | 0.3.8 |
progress | 1.2.2 | progressr | 0.13.0 |
proj4 | 1.0-12 | promises | 1.2.0.1 |
prophet | 1.0 | PROsetta | 0.4.1 |
proto | 1.0.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | ps | 1.7.5 |
pscl | 1.5.5.1 | psd | 2.1.1 |
PSF | 0.5 | pso | 1.0.4 |
pspline | 1.0-19 | psy | 1.2 |
psych | 2.3.3 | psychomix | 1.1-8 |
psychonetrics | 0.11 | psychotools | 0.7-3 |
psychotree | 0.16-0 | psychTools | 2.3.6 |
psyphy | 0.2-3 | PTAk | 2.0.0 |
PTSR | 0.1.2 | ptw | 1.9-16 |
purrr | 1.0.1 | pwr | 1.3-0 |
PwrGSD | 2.3.6 | pwrRasch | 0.1-2 |
qap | 0.1-2 | Qardl | 0.1.1 |
qcv | 1.0 | qdap | 2.4.6 |
qdapDictionaries | 1.0.7 | qdapRegex | 0.7.5 |
qdapTools | 1.3.7 | qgam | 1.3.4 |
qgraph | 1.9.5 | qicharts2 | 0.7.2 |
qMRI | 1.2 | qpdf | 1.3.2 |
qpNCA | 1.1.6 | qs | 0.25.5 |
qtl | 1.60 | quadprog | 1.5-8 |
Quandl | 2.11.0 | quanteda | 3.3.1 |
quantmod | 0.4.23 | quantreg | 5.95 |
quantspec | 1.2-3 | questionr | 0.7.8 |
quickpsy | 0.1.5.1 | qvalue | 2.32.0 |
qvcalc | 1.0.3 | R.cache | 0.16.0 |
R.devices | 2.17.1 | R.filesets | 2.15.0 |
R.huge | 0.9.0 | R.matlab | 3.7.0 |
R.methodsS3 | 1.8.2 | R.oo | 1.25.0 |
R.rsp | 0.45.0 | R.utils | 2.12.2 |
R0 | 1.2-10 | r2d3 | 0.2.6 |
R2HTML | 2.3.3 | R2jags | 0.7-1 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R4CouchDB | 0.7.5 | R6 | 2.5.1 |
radarchart | 0.3.1 | ragg | 1.2.5 |
rainbow | 3.7 | rAmCharts | 2.1.15 |
ramcmc | 0.1.2 | ramps | 0.6.18 |
randomForest | 4.7-1.1 | randomForestSRC | 3.2.2 |
randomizeR | 3.0.1 | randomLCA | 1.1-2 |
randtoolbox | 2.0.4 | ranger | 0.15.1 |
rankdist | 1.1.4 | RANN | 2.6.1 |
rapidjsonr | 1.2.0 | RApiSerialize | 0.1.2 |
rappdirs | 0.3.3 | rARPACK | 0.11-0 |
RaschSampler | 0.8-8 | raster | 3.6-20 |
rasterImage | 0.4.0 | ratelimitr | 0.4.1 |
raveio | 0.1.0 | ravetools | 0.1.1 |
Rbeast | 0.9.9 | rbenchmark | 1.0.0 |
RBGL | 1.76.0 | rbibutils | 2.2.13 |
rbmi | 1.2.3 | Rcatch22 | 0.2.1 |
rcdd | 1.5-2 | Rcgmin | 2022-4.30 |
rcmdcheck | 1.4.0 | Rcmdr | 2.8-0 |
RcmdrMisc | 2.7-2 | RcmdrPlugin.DoE | 0.12-4 |
RcmdrPlugin.temis | 0.7.10 | RColorBrewer | 1.1-3 |
Rcpp | 1.0.10 | RcppAnnoy | 0.0.20 |
RcppArmadillo | 0.12.4.1.0 | RcppCCTZ | 0.2.12 |
RcppDate | 0.0.3 | RcppDE | 0.1.7 |
RcppDist | 0.1.1 | RcppEigen | 0.3.3.9.3 |
RcppGSL | 0.3.13 | RcppParallel | 5.1.7 |
RcppProgress | 0.4.2 | RcppRedis | 0.2.3 |
RcppRoll | 0.3.0 | RcppThread | 2.1.3 |
RcppTN | 0.2-2 | RcppTOML | 0.2.2 |
RcppZiggurat | 0.1.6 | Rcsdp | 0.1.57.5 |
RCurl | 1.98-1.12 | rdbnomics | 0.6.4 |
Rdpack | 2.4 | Rdsdp | 1.0.5.2.1 |
re2 | 0.1.2 | reactable | 0.4.4 |
reactR | 0.4.4 | readabs | 0.4.13 |
readODS | 1.8.0 | readr | 2.1.4 |
readstata13 | 0.10.1 | readxl | 1.4.2 |
REBayes | 2.51 | recipes | 1.0.6 |
redux | 1.1.3 | registry | 0.5-1 |
regress | 1.3-21 | regsem | 1.9.5 |
regspec | 2.6 | regtools | 1.7.0 |
relations | 0.6-13 | relimp | 1.0-5 |
rematch | 1.0.1 | rematch2 | 2.1.2 |
remotes | 2.4.2 | rentrez | 1.2.3 |
renv | 0.17.3 | replicateBE | 1.1.3 |
reportr | 1.3.0 | reprex | 2.0.2 |
REQS | 0.8-13 | resampledata | 0.3.1 |
resde | 1.1 | reshape | 0.8.9 |
reshape2 | 1.4.4 | reticulate | 1.30 |
revdbayes | 1.5.1 | rex | 1.2.1 |
Rfast | 2.0.7 | Rfast2 | 0.1.4 |
rgen | 0.0.1 | RGENERATE | 1.3.7 |
rgenoud | 5.9-0.3 | rgeos | 0.6-3 |
rgl | 1.1.3 | Rglpk | 0.6-5 |
RgoogleMaps | 1.4.5.3 | RGraphics | 3.0-2 |
Rgraphviz | 2.44.0 | RGreenplum | 0.1.2 |
RH2 | 0.2.4 | rhandsontable | 0.3.8 |
rhdf5 | 2.44.0 | rhdf5filters | 1.12.1 |
Rhdf5lib | 1.22.0 | rhosa | 0.2.0 |
RhpcBLASctl | 0.23-42 | riingo | 0.3.1 |
ring | 1.0.4 | RInside | 0.2.18 |
rintrojs | 0.3.2 | rio | 0.5.29 |
Rirt | 0.0.2 | riskCommunicator | 1.0.1 |
ritis | 1.0.0 | rjags | 4-14 |
rJava | 1.0-6 | RJDBC | 0.2-10 |
RJDemetra | 0.2.3 | rje | 1.12.1 |
rjson | 0.2.21 | RJSONIO | 1.3-1.8 |
RKEA | 0.0-6 | RKEAjars | 5.0-4 |
rlang | 1.1.1 | rle | 0.9.2 |
rlecuyer | 0.3-7 | Rlgt | 0.1-4 |
Rlibeemd | 1.4.2 | rlist | 0.4.6.2 |
RMariaDB | 1.2.2 | rmarkdown | 2.22 |
RMAWGEN | 1.3.7 | rmeta | 3.0 |
Rmpfr | 0.9-2 | rms | 6.7-0 |
rmutil | 1.1.10 | RMySQL | 0.10.25 |
rncl | 0.8.7 | rngtools | 1.5.2 |
rngWELL | 0.10-9 | RNifti | 1.5.0 |
RNiftyReg | 2.7.1 | rnn | 1.9.0 |
robfilter | 4.1.3 | RobKF | 1.0.2 |
RoBMA | 3.0.1 | robustbase | 0.99-0 |
rockchalk | 1.8.157 | rocker | 0.3.1 |
ROCR | 1.0-11 | RODBC | 1.3-20 |
rodd | 0.2-1 | roll | 1.1.6 |
Rook | 1.2 | ROOPSD | 0.3.8 |
rootSolve | 1.8.2.3 | roptim | 0.1.6 |
rotl | 3.1.0 | roxygen2 | 7.2.3 |
rpact | 3.3.4 | rpanel | 1.1-5.2 |
rpart.plot | 3.1.1 | rpf | 1.0.11 |
RPMG | 2.2-3 | rpostgis | 1.4.4 |
RPostgres | 1.4.5 | RPostgreSQL | 0.7-5 |
RPPairwiseDesign | 1.0 | RPresto | 1.4.5 |
rprojroot | 2.0.3 | rrcov | 1.7-3 |
rredlist | 0.7.1 | rrum | 0.2.0 |
rsample | 1.1.1 | rsdmx | 0.6-2 |
RSEIS | 4.1-4 | rsem | 0.5.0 |
Rsfar | 0.0.1 | RSGHB | 1.2.2 |
rsm | 2.10.3 | Rsolnp | 1.16 |
rsparse | 0.5.1 | RSpectra | 0.16-1 |
RSQLite | 2.3.1 | Rssa | 1.0.5 |
rstan | 2.21.8 | rstanarm | 2.21.4 |
rstantools | 2.3.1 | rstatix | 0.7.2 |
rstiefel | 1.0.1 | rstudioapi | 0.14 |
rsurface | 1.1.0 | RSurveillance | 0.2.1 |
rTensor | 1.4.8 | rtf | 0.4-14.1 |
RTFA | 0.1.0 | rticles | 0.25 |
RTransferEntropy | 0.2.21 | rts | 1.1-8 |
Rtsne | 0.16 | Rttf2pt1 | 1.3.12 |
rucrdtw | 0.1.4 | rugarch | 1.4-9 |
ruimtehol | 0.3.1 | rules | 1.0.2 |
RUnit | 0.4.32 | runjags | 2.2.1-7 |
runner | 0.4.3 | runstats | 1.1.0 |
Runuran | 0.38 | rust | 1.4.0 |
Rvcg | 0.22.1 | rversions | 2.1.2 |
rvest | 1.0.3 | Rvmmin | 2018-4.17.1 |
Rwave | 2.6-5 | RWeka | 0.4-46 |
RWekajars | 3.9.3-2 | rxode2 | 2.0.13 |
rxode2et | 2.0.10 | rxode2ll | 2.0.11 |
rxode2parse | 2.0.16 | rxode2random | 2.0.11 |
s2 | 1.1.4 | S4Vectors | 0.38.1 |
samadb | 0.2.6 | samplesize | 0.2-4 |
sandwich | 3.0-2 | sarima | 0.9.1 |
sass | 0.4.6 | satellite | 1.0.4 |
sazedR | 2.0.2 | sbgcop | 0.980 |
scales | 1.2.1 | scatterplot3d | 0.3-44 |
scoringRules | 1.1.1 | scoringutils | 1.1.0 |
ScottKnott | 1.3-0 | scs | 3.2.4 |
sde | 2.0.18 | sealasso | 0.1-3 |
seas | 0.6-0 | season | 0.3.15 |
seasonal | 1.9.0 | seasonalview | 0.3 |
seastests | 0.15.4 | seer | 1.1.8 |
segmented | 1.6-4 | selectr | 0.4-2 |
sem | 3.1-15 | semds | 0.9-6 |
SemiPar | 1.0-4.2 | semPlot | 1.1.6 |
SEMsens | 1.5.5 | semTools | 0.5-6 |
semtree | 0.9.18 | sendmailR | 1.4-0 |
SensoMineR | 1.26 | sentencepiece | 0.2.3 |
separationplot | 1.4 | seqDesign | 1.2 |
seqinr | 4.2-30 | seriation | 1.4.2 |
servr | 0.27 | sessioninfo | 1.2.2 |
setartree | 0.1.0 | setRNG | 2022.4-1 |
sets | 1.0-24 | sf | 1.0-13 |
sFFLHD | 0.1.2 | sfheaders | 0.4.2 |
sfsmisc | 1.1-15 | sftime | 0.2-0 |
sgd | 1.1.1 | sgeostat | 1.0-27 |
shades | 1.4.0 | shape | 1.4.6 |
shapefiles | 0.7.2 | shapes | 1.2.7 |
shiny | 1.7.4 | shiny.semantic | 0.4.3 |
shinyAce | 0.4.2 | shinybrms | 1.8.0 |
shinyBS | 0.61.1 | shinycssloaders | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.0 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinytest | 1.5.3 | shinythemes | 1.2.0 |
shinyWidgets | 0.7.6 | showimage | 1.0.0 |
sigmoid | 1.4.0 | signal | 0.7-7 |
Sim.DiffProc | 4.8 | simcdm | 0.1.1 |
SimComp | 3.3 | simex | 1.8 |
simglm | 0.8.9 | SimInf | 9.5.0 |
simrel | 2.1.0 | simsem | 0.5-16 |
sirt | 3.12-66 | sitmo | 2.0.2 |
SkewHyperbolic | 0.4-0 | skmeans | 0.2-15 |
skpr | 1.4.0 | slam | 0.1-50 |
SLBDD | 0.0.4 | sleekts | 1.0.2 |
Sleuth2 | 2.0-5 | Sleuth3 | 1.0-3 |
SLHD | 2.1-1 | slider | 0.3.0 |
sm | 2.2-5.7.1 | smacof | 2.1-5 |
smooth | 3.2.1 | smoother | 1.1 |
smoots | 1.1.3 | smovie | 1.1.4 |
SMPracticals | 1.4-3 | sn | 2.1.1 |
sna | 2.7-1 | snakecase | 0.11.0 |
snow | 0.4-4 | SnowballC | 0.7.1 |
snowfall | 1.84-6.2 | SOAs | 1.3 |
soc.ca | 0.8.0 | socialmixr | 0.2.0 |
sodium | 1.2.1 | sofa | 0.4.0 |
solrium | 1.2.0 | sourcetools | 0.1.7-1 |
sp | 1.6-1 | sp23design | 0.9-1 |
spacetime | 1.3-0 | spam | 2.9-1 |
spant | 2.12.0 | sparklyr | 1.8.1 |
sparseDFM | 1.0 | SparseFactorAnalysis | 1.0 |
SparseM | 1.81 | sparsevar | 0.1.0 |
SpatialEpi | 1.2.8 | SpatialExtremes | 2.1-0 |
spatialreg | 1.2-9 | spatstat | 3.0-6 |
spatstat.data | 3.0-1 | spatstat.explore | 3.2-1 |
spatstat.geom | 3.2-1 | spatstat.linnet | 3.1-1 |
spatstat.model | 3.2-4 | spatstat.random | 3.1-5 |
spatstat.sparse | 3.0-1 | spatstat.utils | 3.0-3 |
spBayes | 0.4-6 | spd | 2.0-1 |
spData | 2.2.2 | spdep | 1.2-8 |
spec | 0.1.7 | spectral | 2.0 |
speff2trial | 1.0.5 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-19 | spINAR | 0.1.0 |
splancs | 2.01-43 | splines2 | 0.5.0 |
spTimer | 3.3.2 | sqldf | 0.4-11 |
SqlRender | 1.15.0 | SQRL | 1.0.1 |
SQUAREM | 2021.1 | srvyr | 1.2.0 |
ssanv | 1.1 | ssgraph | 1.15 |
ssize.fdr | 1.3 | ssizeRNA | 1.3.2 |
ssMousetrack | 1.1.6 | stabledist | 0.7-1 |
stabs | 0.6-4 | StanHeaders | 2.26.27 |
stars | 0.6-1 | STARTS | 1.3-8 |
startupmsg | 0.9.6 | statespacer | 0.5.0 |
statmod | 1.5.0 | statnet.common | 4.9.0 |
StatRank | 0.0.6 | steadyICA | 1.0 |
STFTS | 0.1.0 | stinepack | 1.4 |
stlplus | 0.5.1 | stm | 1.3.6 |
stochvol | 3.2.1 | stopwords | 2.3 |
storr | 1.2.5 | stR | 0.5 |
stringdist | 0.9.10 | stringfish | 0.15.8 |
stringi | 1.7.12 | stringr | 1.5.0 |
strucchange | 1.5-3 | strucchangeRcpp | 1.5-3-1.0.4 |
StructuralDecompose | 0.1.1 | styler | 1.10.1 |
subplex | 1.8 | subscore | 3.3 |
sufficientForecasting | 0.1.0 | sugrrants | 0.2.8 |
SuperLearner | 2.0-28 | superml | 0.5.6 |
SuppDists | 1.1-9.7 | support.CEs | 0.5-0 |
survcomp | 1.50.0 | surveillance | 1.21.1 |
survey | 4.2-1 | survivalROC | 1.0.3.1 |
survPresmooth | 1.1-11 | svars | 1.3.11 |
svd | 0.5.4 | svglite | 2.1.1 |
svs | 3.0.0 | svUnit | 1.0.6 |
swephR | 0.3.1 | swirl | 2.4.5 |
swirlify | 0.5.3 | sylly | 0.1-6 |
sym.arma | 1.0 | symengine | 0.2.2 |
symmoments | 1.2.1 | synthesis | 1.2.3 |
sys | 3.4.2 | systemfit | 1.1-30 |
systemfonts | 1.0.4 | tables | 0.9.17 |
tabnet | 0.4.0 | TAM | 4.1-4 |
targets | 1.1.3 | tau | 0.0-24 |
taxize | 0.9.100 | tbrf | 0.1.5 |
tcltk2 | 1.2-11 | Tcomp | 1.0.1 |
tdigest | 0.4.1 | TeachingDemos | 2.12 |
tempdisagg | 1.1 | tensor | 1.5 |
tensorA | 0.36.2 | tensorflow | 2.11.0 |
TensorPreAve | 1.1.0 | tensorTS | 1.0.1 |
TEQR | 6.0-0 | tergm | 4.2.0 |
terra | 1.7-37 | tesseract | 5.1.0 |
testcorr | 0.2.0 | TestDataImputation | 2.3 |
TestDesign | 1.5.1 | testit | 0.13 |
TestScorer | 1.7.2 | testthat | 3.1.9 |
TexExamRandomizer | 1.2.3 | texreg | 1.38.6 |
text2vec | 0.6.3 | textcat | 1.0-8 |
textir | 2.0-5 | textplot | 0.2.2 |
textrank | 0.3.1 | textreuse | 0.1.5 |
textshaping | 0.3.6 | textTinyR | 1.1.7 |
tfarima | 0.3.2 | tfautograph | 0.3.2 |
tfdatasets | 2.9.0 | tfio | 0.4.1 |
tfplot | 2021.6-1 | tframe | 2015.12-1.1 |
tfruns | 1.5.1 | tgp | 2.4-21 |
TH.data | 1.1-2 | theft | 0.4.2.4 |
thief | 0.3 | ThreeArmedTrials | 1.0-4 |
threeBrain | 1.0.0 | ThreeGroups | 0.21 |
threejs | 0.3.3 | ThreeWay | 1.1.3 |
thurstonianIRT | 0.12.1 | tibble | 3.2.1 |
tictoc | 1.2 | Tides | 2.1 |
tidygraph | 1.2.3 | tidyLPA | 1.1.0 |
tidymodels | 1.1.0 | tidyquant | 1.0.7 |
tidyr | 1.3.0 | tidyselect | 1.2.0 |
tidytext | 0.4.1 | tidytree | 0.4.2 |
tidyverse | 2.0.0 | tiff | 0.1-11 |
timechange | 0.2.0 | timeDate | 4022.108 |
timeSeries | 4030.106 | timeseriesdb | 1.0.0-1.1.2 |
timetk | 2.8.3 | timsac | 1.3.8 |
tinytex | 0.45 | tis | 1.39 |
tkrplot | 0.0-27 | tm | 0.7-11 |
tm.plugin.alceste | 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 |
TMB | 1.9.4 | tmvnsim | 1.0-2 |
tmvtnorm | 1.5 | tokenizers | 0.3.0 |
tokenizers.bpe | 0.1.1 | toOrdinal | 1.3-0.0 |
topicdoc | 0.1.1 | topicmodels | 0.2-14 |
topicmodels.etm | 0.1.0 | torch | 0.11.0 |
torchaudio | 0.3.1.9000 | torchdatasets | 0.3.0 |
torchvision | 0.5.1 | tpr | 0.3-3 |
tractor.base | 3.3.5.1 | TransPhylo | 1.4.5 |
trapezoid | 2.0-2 | tree | 1.0-43 |
TreeBUGS | 1.5.0 | treeio | 1.24.0 |
trend | 1.1.5 | trendeval | 0.1.0 |
trending | 0.1.0 | TrialSize | 1.4 |
triangle | 1.0 | triebeard | 0.4.1 |
trimcluster | 0.1-5 | tripack | 1.3-9.1 |
TripleR | 1.5.4 | TruncatedNormal | 2.2.2 |
truncdist | 1.0-2 | truncnorm | 1.0-9 |
truncreg | 0.2-5 | trust | 0.1-8 |
TSA | 1.3.1 | TSANN | 0.1.0 |
tsbox | 0.4.1 | tsBSS | 1.0.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 | TSEntropies | 0.9 |
tseries | 0.10-54 | tseriesChaos | 0.1-13.1 |
tseriesEntropy | 0.6-0 | tseriesTARMA | 0.3-2 |
tsfeatures | 1.1 | tsfknn | 0.5.1 |
tsibble | 1.1.3 | tsibbledata | 0.4.1 |
tsibbletalk | 0.1.0 | tsintermittent | 1.10 |
tsiR | 0.4.3 | TSLSTM | 0.1.0 |
tsModel | 0.6-1 | tsoutliers | 0.6-8 |
TSP | 1.2-4 | tsPI | 1.0.3 |
TSrepr | 1.1.0 | tsrobprep | 0.3.2 |
tssim | 0.1.7 | TSstudio | 0.1.6 |
TSTutorial | 1.2.6 | tsutils | 0.9.3 |
tswge | 2.1.0 | TTR | 0.24.3 |
tune | 1.1.1 | tweenr | 2.0.2 |
tzdb | 0.4.0 | ubiquity | 2.0.0 |
ucminf | 1.2.0 | UComp | 4.0.2 |
udpipe | 0.8.11 | ugatsdb | 0.2.3 |
uGMAR | 3.4.4 | UnifiedDoseFinding | 0.1.10 |
units | 0.8-2 | unrepx | 1.0-2 |
uptasticsearch | 0.4.0 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
uroot | 2.1-2 | usdata | 0.2.0 |
usethis | 2.2.0 | utf8 | 1.2.3 |
uuid | 1.1-0 | uwot | 0.1.14 |
V8 | 4.3.0 | VAR.etp | 1.0 |
VARDetect | 0.1.6 | vars | 1.5-9 |
VARshrink | 0.3.1 | VCA | 1.4.5 |
vcd | 1.4-11 | vcdExtra | 0.8-4 |
vctrs | 0.6.3 | vdg | 1.2.2 |
VedicDateTime | 0.1.4 | vegan | 2.6-4 |
VennDiagram | 1.7.3 | venneuler | 1.1-3 |
VGAM | 1.1-8 | VGAMdata | 1.1-8 |
vglmer | 1.0.3 | viridis | 0.6.3 |
viridisLite | 0.4.2 | visNetwork | 2.1.2 |
visualize | 4.4.0 | vpc | 1.2.2 |
vroom | 1.6.3 | waiter | 0.2.5 |
waldo | 0.5.1 | warp | 0.2.0 |
WaveletComp | 1.1 | wavelets | 0.3-0.2 |
waveslim | 1.8.4 | wavethresh | 4.7.2 |
wavScalogram | 1.1.2 | wCorr | 1.9.6 |
webdriver | 1.0.6 | webshot | 0.5.4 |
weights | 1.0.4 | whisker | 0.4.1 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
WikipediR | 1.5.0 | wikitaxa | 0.4.0 |
withr | 2.5.0 | wk | 0.7.3 |
wktmo | 1.0.5 | wnl | 0.7.3 |
wooldridge | 1.4-3 | word2vec | 0.3.4 |
wordcloud | 2.6 | wordnet | 0.1-16 |
workflows | 1.1.3 | workflowsets | 1.0.1 |
worrms | 0.4.3 | wpp2017 | 1.2-3 |
wpp2019 | 1.1-1 | WrightMap | 1.3 |
writexl | 1.4.2 | x12 | 1.10.3 |
x13binary | 1.1.57-3 | xfun | 0.39 |
xgboost | 1.7.5.1 | xgxr | 1.1.2 |
XLConnect | 1.0.7 | xlsx | 0.6.5 |
xlsxjars | 0.6.1 | XML | 3.99-0.14 |
xml2 | 1.3.4 | xopen | 1.0.0 |
xplain | 0.2.2 | xpose | 0.4.16 |
xpose.nlmixr2 | 0.4.0 | xpose4 | 4.7.2 |
xtable | 1.8-4 | xts | 0.13.1 |
XVector | 0.40.0 | xxIRT | 2.1.2 |
yaImpute | 1.0-33 | yaml | 2.3.7 |
yardstick | 1.2.0 | yesno | 0.1.2 |
yuima | 1.15.22 | yulab.utils | 0.0.6 |
zeallot | 0.1.0 | zic | 0.9.1 |
ZIM | 1.1.0 | ZINARp | 0.1.0 |
zip | 2.3.0 | zipfR | 0.6-70 |
zlibbioc | 1.46.0 | zoo | 1.8-12 |
ZRA | 0.2 |
RStudio Server
R: 4.3.1
rstudio-server: 2023.06.0+421
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
Updated R from 4.3.0 to 4.3.1 and R packages to newer versions.
This AMI provides thousands of R packages covering various domains such as data science, machine learning, Bayesian statistics, clinical trials, epidemiology, experimental design, psychometric methodology, analysis of pharmacokinetic data, medical image processing, teaching statistics, time series analysis, and natural language processing.
R packages (2295)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.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.1 | acp | 2.1 |
ACSWR | 1.0 | actuar | 3.3-2 |
ada | 2.0-5 | adaptivetau | 2.2-3 |
adaptMCMC | 1.4 | adaptr | 1.3.1 |
adaptsmoFMRI | 1.2 | adaptTest | 1.1 |
ade4 | 1.7-22 | ade4TkGUI | 0.3-1 |
adegenet | 2.1.10 | adegraphics | 1.0-18 |
adehabitatLT | 0.3.27 | adehabitatMA | 0.3.16 |
ADGofTest | 0.3 | adimpro | 0.9.5 |
admisc | 0.32 | AdMit | 2.1.9 |
AER | 1.2-10 | affy | 1.78.0 |
affyio | 1.70.0 | africamonitor | 0.2.3 |
agricolae | 1.3-5 | agricolaeplotr | 0.2.2 |
agridat | 1.21 | airports | 0.1.0 |
akima | 0.6-3.4 | alabama | 2022.4-1 |
AlgDesign | 1.2.1 | almanac | 1.0.0 |
alphavantager | 0.1.3 | ALTopt | 0.1.2 |
Amelia | 1.8.1 | ammiBayes | 1.0-1 |
AMR | 2.0.0 | AnaCoDa | 0.1.4.4 |
anacor | 1.1-4 | animation | 2.7 |
AnnotationDbi | 1.62.1 | anytime | 0.3.9 |
aod | 1.3.2 | AovBay | 0.1.0 |
ape | 5.7-1 | APFr | 1.0.2 |
aplot | 0.1.10 | approximator | 1.2-7 |
ARCensReg | 2.1 | ArchaeoChron | 0.1 |
ArchaeoPhases | 1.8 | ArDec | 2.1-1 |
ARDL | 0.2.3 | ardl.nardl | 1.2.3 |
arfima | 1.8-1 | arm | 1.13-1 |
aroma.apd | 0.6.1 | arrangements | 1.1.9 |
ars | 0.6 | ascii | 2.4 |
asd | 2.2 | ash | 1.0-15 |
ashr | 2.2-54 | askpass | 1.1 |
aspect | 1.0-6 | ASSA | 2.0 |
assertthat | 0.2.1 | astsa | 2.0 |
asymmetry | 2.0.4 | ata | 1.1.1 |
aTSA | 3.1.2 | attention | 0.3.0 |
AUC | 0.3.2 | audio | 0.1-10 |
automap | 1.1-9 | autostsm | 3.1.0 |
av | 0.8.3 | aweek | 1.0.3 |
aws | 2.5-1 | awsMethods | 1.1-1 |
BACCO | 2.0-9 | BACCT | 1.0 |
backports | 1.4.1 | baggr | 0.7.6 |
bain | 0.2.8 | BaM | 1.0.3 |
bama | 1.3.0 | bamdit | 3.4.0 |
bamlss | 1.2-0 | bang | 1.0.1 |
BANOVA | 1.2.1 | BART | 2.9.4 |
bartBMA | 1.0 | bartCause | 1.0-6 |
bartMachine | 1.3.3.1 | bartMachineJARs | 1.2.1 |
BAS | 1.6.4 | basad | 0.3.0 |
base64 | 2.0.1 | base64enc | 0.1-3 |
base64url | 1.4 | basicMCMCplots | 0.2.7 |
BaSkePro | 0.1.0 | BASS | 1.2.2 |
BatchExperiments | 1.4.3 | BatchJobs | 1.9 |
baycn | 1.2.0 | bayefdr | 0.2.1 |
bayes4psy | 1.2.11 | 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-8 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.2.0 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.4 |
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.1 |
BayesianNetwork | 0.1.5 | BayesianTools | 0.1.8 |
bayesImageS | 0.6-1 | BayesLCA | 1.9 |
bayesLife | 5.1-1 | bayeslincom | 1.3.0 |
BayesLN | 0.2.8 | BayesLogit | 2.1 |
bayesloglin | 1.0.1 | bayeslongitudinal | 0.1.0 |
bayesm | 3.1-5 | BayesMallows | 1.3.0 |
BayesMassBal | 1.1.0 | bayesmeta | 3.2 |
bayesmix | 0.7-6 | bayesnec | 2.1.0.3 |
bayesplot | 1.10.0 | bayesQR | 2.3 |
bayestestR | 0.13.1 | bayesTFR | 7.3-2 |
BayesTools | 0.2.14 | BayesTree | 0.3-1.4 |
BayesVarSel | 2.2.5 | BayesX | 0.3-2 |
BAYSTAR | 0.2-10 | BB | 2019.10-1 |
BBmisc | 1.13 | BCBCSF | 1.0-1 |
BCE | 2.2.0 | Bchron | 4.7.6 |
bcp | 4.0.3 | bcrm | 0.5.4 |
BDgraph | 2.72 | bdsmatrix | 1.3-6 |
BE | 0.2.4 | beadarray | 2.50.0 |
BeadDataPackR | 1.52.0 | beepr | 1.3 |
beeswarm | 0.4.0 | bentcableAR | 0.3.1 |
Bergm | 5.0.5 | BEST | 0.5.4 |
BetaBit | 2.1 | betafunctions | 1.8.1 |
betareg | 3.1-4 | BETS | 0.4.9 |
bets.covid19 | 1.0.0 | beyondWhittle | 1.2.0 |
bezier | 1.1.2 | bfast | 1.6.1 |
BGLR | 1.1.0 | BGVAR | 2.5.2 |
BH | 1.81.0-1 | BHH2 | 2016.05.31 |
BiasedUrn | 2.0.10 | biganalytics | 1.1.21 |
bigD | 0.2.0 | biglm | 0.9-2.1 |
bigmemory | 4.6.1 | bigmemory.sri | 0.1.6 |
bigsplines | 1.1-1 | bigtime | 0.2.1 |
BigVAR | 1.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | binom | 1.1-1.1 |
binomSamSize | 0.1-5 | binr | 1.1.1 |
binseqtest | 1.0.3 | Biobase | 2.60.0 |
BiocGenerics | 0.46.0 | BiocManager | 1.30.21 |
BiocParallel | 1.34.1 | BiocVersion | 3.17.1 |
bioinactivation | 1.2.3 | biomformat | 1.28.0 |
bioOED | 0.2.1 | Biostrings | 2.68.0 |
birtr | 1.0.0 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
biwavelet | 0.20.21 | bkmr | 0.2.2 |
blavaan | 0.4-8 | blob | 1.2.4 |
blocklength | 0.1.5 | blockrand | 1.5 |
blocksdesign | 4.9 | blockTools | 0.6.4 |
BLR | 1.6 | BMA | 3.18.17 |
bmixture | 1.7 | BMS | 0.3.5 |
BMTAR | 0.1.1 | bnlearn | 4.8.3 |
BNPTSclust | 2.0 | BNSP | 2.2.3 |
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 |
bookdown | 0.34 | Boom | 0.9.11 |
BoomSpikeSlab | 1.2.5 | bootnet | 1.5.3 |
BootPR | 0.70 | bootstrap | 2019.6 |
bootUR | 1.0.2 | bpca | 1.3-4 |
bqtl | 1.0-34 | BradleyTerry2 | 1.1-2 |
brainR | 1.6.0 | breakfast | 2.3 |
brew | 1.0-8 | brglm | 0.7.2 |
brglm2 | 0.9 | bridgesampling | 1.1-2 |
brio | 1.1.3 | brms | 2.19.0 |
Brobdingnag | 1.2-9 | broom | 1.0.5 |
bsamGP | 1.2.4 | bslib | 0.5.0 |
BsMD | 2020.4.30 | bspec | 1.6 |
bspmma | 0.1-2 | bssm | 2.0.1 |
BSSprep | 0.1 | bsts | 0.9.9 |
bsvars | 1.0.0 | BTLLasso | 0.1-11 |
BTM | 0.3.7 | bundesbank | 0.1-9 |
BVAR | 1.0.4 | bvartools | 0.2.2 |
ca | 0.71.1 | cabootcrs | 2.1.0 |
cachem | 1.0.8 | cacIRT | 1.4 |
CADFtest | 0.3-3 | caffsim | 0.2.2 |
Cairo | 1.6-0 | calculus | 1.0.1 |
calibrator | 1.2-8 | callr | 3.7.3 |
candisc | 0.8-6 | car | 3.1-2 |
CARBayes | 5.3 | CARBayesdata | 3.0 |
CARBayesST | 3.3.1 | carData | 3.0-5 |
caret | 6.0-94 | carfima | 2.0.2 |
caTools | 1.18.2 | catR | 3.17 |
causact | 0.4.2 | CausalImpact | 1.3.0 |
CAvariants | 5.8 | CDM | 8.2-6 |
cds | 1.0.3 | CellNOptR | 1.46.0 |
cellranger | 1.1.0 | chandwich | 1.1.5 |
changepoint | 2.2.4 | changepoint.geo | 1.0.1 |
changepoint.np | 1.0.5 | checkmate | 2.2.0 |
cherryblossom | 0.1.0 | chk | 0.9.0 |
choiceDes | 0.9-3 | CholWishart | 1.1.2 |
chron | 2.3-61 | cifti | 0.4.5 |
cinterpolate | 1.0.0 | CircSpaceTime | 0.9.0 |
CircStats | 0.2-6 | circular | 0.4-95 |
ciTools | 0.6.1 | classInt | 0.4-9 |
cli | 3.6.1 | clime | 0.5.0 |
clinDR | 2.3.5 | clinfun | 1.1.2 |
clinicalsignificance | 1.2.0 | clinPK | 0.11.1 |
clinsig | 1.2 | clipr | 0.8.0 |
clisymbols | 1.2.0 | clock | 0.7.0 |
clue | 0.3-64 | clustDRM | 0.1-0 |
clusterGeneration | 1.3.7 | clusterPower | 0.7.0 |
ClustVarLV | 2.1.1 | clv | 0.3-2.3 |
cmaes | 1.0-12 | CMLS | 1.0-1 |
cmprsk | 2.2-11 | cmrutils | 1.3.1 |
cNORM | 3.0.3 | CNORode | 1.42.0 |
coalescentMCMC | 0.4-4 | coalitions | 0.6.24 |
coarseDataTools | 0.6-6 | coconots | 1.1.1 |
cocor | 1.1-4 | cocorresp | 0.4-3 |
cocron | 1.0-1 | coda | 0.19-4 |
coin | 1.4-2 | cointReg | 0.2.0 |
collapse | 1.9.6 | collapsibleTree | 0.1.7 |
colorRamps | 2.3.1 | colorspace | 2.1-0 |
colourpicker | 1.2.0 | combinat | 0.0-8 |
CombinS | 1.1-1 | CommonJavaJars | 1.0-6 |
commonmark | 1.9.0 | compare | 0.2-6 |
CompQuadForm | 1.4.3 | conditionz | 0.1.0 |
conf.design | 2.0.0 | config | 0.3.1 |
conflicted | 1.2.0 | conquestr | 1.0.7 |
contactdata | 1.0.0 | contfrac | 1.1-12 |
cops | 1.3-1 | copula | 1.1-2 |
cordillera | 1.0-0 | coro | 1.0.3 |
corona | 0.3.0 | coronavirus | 0.4.1 |
corpcor | 1.6.10 | corpora | 0.5-1 |
corporaexplorer | 0.8.6 | corrgram | 1.14 |
corrplot | 0.92 | cosa | 2.1.0 |
costat | 2.4 | countrycode | 1.5.0 |
COVID19 | 3.0.3 | covid19.analytics | 2.1.3.1 |
covid19br | 0.1.5 | 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.1 | CPBayes | 1.1.0 |
cpk | 1.3-1 | cpp11 | 0.4.3 |
crayon | 1.5.2 | credentials | 1.3.2 |
crfsuite | 0.4.1 | CRM | 1.2.4 |
crmPack | 1.0.3 | crossdes | 1.1-2 |
Crossover | 0.1-21 | crosstalk | 1.2.0 |
crs | 0.15-37 | crul | 1.4.0 |
cSEM | 0.5.0 | csv | 0.6.2 |
ctbi | 2.0.5 | ctrdata | 1.13.2 |
CTT | 2.3.3 | CTTShiny | 0.1 |
ctv | 0.9-5 | cubature | 2.1.0 |
Cubist | 0.4.2.1 | curl | 5.0.1 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-11 |
d3Network | 0.5.2.1 | DAAG | 1.25.4 |
dae | 3.2.15 | daewr | 1.2-10 |
dagitty | 0.3-1 | DAKS | 2.1-3 |
DALEX | 2.4.3 | data.table | 1.14.8 |
data.tree | 1.0.0 | DataExplorer | 0.8.2 |
datapasta | 3.1.0 | dataseries | 0.2.0 |
datawizard | 0.8.0 | date | 1.2-42 |
datetimeutils | 0.6-1 | dbarts | 0.9-23 |
DBI | 1.1.3 | dbparser | 2.0.1 |
dbplyr | 2.3.2 | dbscan | 1.1-11 |
DChaos | 0.1-7 | dclone | 2.3-0 |
dcov | 0.1.1 | dCovTS | 1.3 |
dcurver | 0.9.2 | dde | 1.0.4 |
deBInfer | 0.4.4 | debugme | 1.1.0 |
deldir | 1.0-9 | deltaPlotR | 1.6 |
dendextend | 1.17.1 | densEstBayes | 1.0-2.2 |
DEoptim | 2.2-8 | DEoptimR | 1.0-14 |
depmix | 0.9.16 | depmixS4 | 1.5-0 |
DepthProc | 2.1.5 | Deriv | 4.1.3 |
desc | 1.4.2 | DescTools | 0.99.49 |
designmatch | 0.4.1 | desirability | 2.1 |
deSolve | 1.35 | desplot | 1.10 |
devtools | 2.4.5 | dexter | 1.2.2 |
dextergui | 0.2.6 | dexterMST | 0.9.3 |
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 | 2020.10-1 | dfped | 1.1 |
dfpk | 3.5.1 | DHARMa | 0.4.6 |
diagis | 0.2.2 | diagram | 1.6.5 |
DiagrammeR | 1.0.10 | dials | 1.2.0 |
DiceDesign | 1.9 | DiceEval | 1.5.1 |
DiceKriging | 1.6.0 | DiceView | 2.1-0 |
dichromat | 2.0-0.1 | DICOMread | 0.0.0.3 |
DIFboost | 0.3 | diffobj | 0.3.5 |
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.31 | DIMORA | 0.3.5 |
dimRed | 0.2.6 | dina | 2.0.0 |
dipsaus | 0.2.7 | diptest | 0.76-0 |
Dire | 2.1.1 | DIRECT | 1.0.1 |
directlabels | 2021.1.13 | dirichletprocess | 0.4.1 |
disaggR | 1.0.5 | discretization | 1.0-1.1 |
DistatisR | 1.1.1 | distcrete | 1.0.3 |
distfree.cr | 1.5.1 | distr | 2.9.2 |
distrEx | 2.9.0 | distributional | 0.3.2 |
DistributionUtils | 0.6-0 | distrom | 1.0.1 |
distrTeach | 2.9.0 | divest | 0.10.3 |
dLagM | 1.1.8 | dlm | 1.1-6 |
dlnm | 2.4.7 | dmri.tracking | 0.1.0 |
doBy | 4.6.16 | doc2vec | 0.2.0 |
docopulae | 0.4.0 | DoE.base | 1.2-2 |
DoE.MIParray | 1.0 | DoE.wrapper | 0.11 |
doMC | 1.3.8 | doParallel | 1.0.17 |
doRNG | 1.8.6 | DoseFinding | 1.0-4 |
doSNOW | 1.0.20 | dotCall64 | 1.0-2 |
downlit | 0.4.2 | downloader | 0.4 |
dparser | 1.3.1-10 | dplyr | 1.1.2 |
dqrng | 0.3.0 | dr4pl | 2.0.0 |
DRR | 0.0.4 | dsa | 1.0.12 |
DSAIDE | 0.9.3 | dse | 2020.2-1 |
DSL | 0.1-7 | DT | 0.28 |
DTAT | 0.3-6 | dti | 1.5.1 |
dtplyr | 1.3.1 | DTSg | 1.1.1 |
dtt | 0.1-2 | dtts | 0.1.0 |
dtw | 1.23-1 | dtwclust | 5.5.12 |
dygraphs | 1.1.1.6 | dyn | 0.2-9.6 |
dynamicTreeCut | 1.63-1 | dynaTree | 1.2-15 |
dynlm | 0.3-6 | e1071 | 1.7-13 |
earlyR | 0.0.5 | earth | 5.3.2 |
easypower | 1.0.1 | eba | 1.10-0 |
EbayesThresh | 1.4-12 | ebdbNet | 1.2.7 |
EBImage | 4.42.0 | EBMAforecast | 1.0.3 |
ecb | 0.4.2 | Ecdat | 0.4-2 |
Ecfun | 0.3-2 | ecm | 6.3.0 |
ecodist | 2.0.9 | ECOSolveR | 0.5.5 |
ecp | 3.1.4 | edfReader | 1.2.1 |
edgeR | 3.42.2 | edina | 0.1.1 |
edmdata | 1.2.0 | edstan | 1.0.6 |
eegkit | 1.0-4 | eegkitdata | 1.1 |
EFAutilities | 2.1.3 | effects | 4.2-2 |
EGAnet | 1.2.3 | egg | 0.4.5 |
egor | 1.23.3 | eha | 2.10.3 |
eigenmodel | 1.11 | elasticnet | 1.3 |
ellipse | 0.4.5 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | EMD | 1.5.9 |
emg | 1.0.9 | emmeans | 1.8.6 |
emulator | 1.2-21 | encode | 0.3.6 |
endtoend | 2.29 | EngrExpt | 0.1-8 |
enrichwith | 0.3.1 | ensembleBMA | 5.1.8 |
EntropyMCMC | 1.0.4 | EnvStats | 2.7.0 |
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.3.2 |
epinet | 2.1.8 | epiR | 2.0.61 |
EpiReport | 1.0.2 | episensr | 1.2.0 |
epitools | 0.5-10.1 | epitrix | 0.4.0 |
equate | 2.0.8 | equateIRT | 2.3.0 |
equateMultiple | 0.1.1 | equivalence | 0.7.2 |
era | 0.4.1 | ergm | 4.5.0 |
ergm.ego | 1.1.0 | ergm.multi | 0.2.0 |
eRm | 1.0-2 | errum | 0.0.3 |
esaBcv | 1.2.1.1 | esemifar | 1.0.1 |
EstCRM | 1.6 | estimability | 1.4.1 |
EstimateGroupNetwork | 0.3.1 | ETLUtils | 1.5 |
etm | 1.1.1 | etrunct | 0.1 |
evaluate | 0.21 | evd | 2.3-6.1 |
evgam | 1.0.0 | ewoc | 0.3.0 |
Exact | 3.2 | exams | 2.4-0 |
exdex | 1.2.1 | experiment | 1.2.1 |
expint | 0.1-8 | expm | 0.999-7 |
ExPosition | 2.8.23 | expsmooth | 2.3 |
extraDistr | 1.9.1 | extrafont | 0.19 |
extrafontdb | 1.0 | ez | 4.4-0 |
fable | 0.3.3 | fable.prophet | 0.1.0 |
fabletools | 0.3.3 | FactoMineR | 2.8 |
factorstochvol | 1.0.1 | fanplot | 4.0.0 |
fansi | 1.0.4 | faoutlier | 0.7.6 |
faraway | 1.0.8 | farver | 2.1.1 |
fastDummies | 1.6.3 | fastGHQuad | 1.0.1 |
fastICA | 1.2-3 | fastmap | 1.1.1 |
fastmatch | 1.1-3 | FAVAR | 0.1.3 |
fBasics | 4022.94 | fda | 6.1.4 |
fdaACF | 1.0.0 | fdapace | 0.5.9 |
fdrtool | 1.2.17 | fds | 1.8 |
fdth | 1.2-6 | feasts | 0.3.1 |
fechner | 1.0-3 | FeedbackTS | 1.5 |
ff | 4.0.9 | fftwtools | 0.9-11 |
fGarch | 4022.89 | fields | 14.1 |
filearray | 0.1.5 | filehash | 2.4-5 |
filelock | 1.0.2 | finnts | 0.2.4 |
FinTS | 0.4-6 | fitdistrplus | 1.1-11 |
FKF | 0.2.4 | FKF.SP | 0.3.1 |
flashClust | 1.01-2 | flexclust | 1.4-1 |
flexdashboard | 0.6.1 | flexmix | 2.3-19 |
flextable | 0.9.2 | float | 0.3-1 |
fma | 2.5 | FMC | 1.0.1 |
FME | 1.3.6.2 | fmri | 1.9.11 |
fnets | 0.1.3 | FNN | 1.1.3.2 |
fNonlinear | 4021.81 | fontawesome | 0.5.1 |
fontBitstreamVera | 0.1.1 | fontLiberation | 0.1.0 |
fontquiver | 0.2.1 | forcats | 1.0.0 |
foreach | 1.5.2 | ForeCA | 0.2.7 |
forecast | 8.21 | 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.1 |
formatR | 1.14 | formattable | 0.2.1 |
Formula | 1.2-5 | formula.tools | 1.7.1 |
fourPNO | 1.1.0 | fpc | 2.2-10 |
fpcb | 0.1.0 | fpp2 | 2.5 |
fpp3 | 0.5 | fracdiff | 1.5-2 |
fredr | 2.1.0 | freesurferformats | 0.1.17 |
freqdom | 2.0.3 | freqdom.fda | 1.0.1 |
fresh | 0.2.0 | FrF2 | 2.3-1 |
FrF2.catlg128 | 1.2-2 | fs | 1.6.2 |
fslr | 2.25.2 | fsMTS | 0.1.7 |
fst | 0.9.8 | fstcore | 0.9.14 |
ftsa | 6.2 | functional | 0.6 |
funtimes | 9.1 | furrr | 0.3.1 |
futile.logger | 1.4.3 | futile.options | 1.0.1 |
future | 1.32.0 | future.apply | 1.11.0 |
GA | 3.2.3 | GAD | 1.1.1 |
gam | 1.22-2 | gamlr | 1.13-8 |
gamlss | 5.4-12 | gamlss.data | 6.0-2 |
gamlss.dist | 6.0-5 | gap | 1.5-1 |
gap.datasets | 0.0.5 | gargle | 1.5.1 |
garma | 0.9.11 | GAS | 0.3.4 |
gasmodel | 0.3.0 | gaussquad | 1.0-3 |
gbm | 2.1.8.1 | gbutils | 0.5 |
gclus | 1.3.2 | gdata | 2.19.0 |
GDINA | 2.9.3 | gdpc | 1.1.3 |
gdtools | 0.3.3 | geepack | 1.3.9 |
genalg | 0.2.1 | gender | 0.6.0 |
GeneralizedHyperbolic | 0.8-4 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | GenomeInfoDb | 1.36.0 |
GenomeInfoDbData | 1.2.10 | GenomicRanges | 1.52.0 |
GenSA | 1.1.8 | geojsonsf | 2.0.3 |
geometries | 0.2.2 | geometry | 0.4.7 |
GEOquery | 2.68.0 | geoR | 1.9-2 |
geosphere | 1.5-18 | geospt | 1.0-2 |
gert | 1.9.2 | gets | 0.37 |
gfonts | 0.2.0 | GGally | 2.1.2 |
ggalt | 0.4.0 | gganimate | 1.0.8 |
ggdag | 0.2.10 | ggdemetra | 0.2.5 |
ggdendro | 0.1.23 | ggdist | 3.3.0 |
ggExtra | 0.10.0 | ggforce | 0.4.1 |
ggformula | 0.10.4 | ggfun | 0.1.0 |
gghalves | 0.1.4 | ggmap | 3.0.2 |
ggmcmc | 1.5.1.1 | ggplot2 | 3.4.2 |
ggplotify | 0.1.0 | ggpubr | 0.6.0 |
ggraph | 2.1.0 | ggrepel | 0.9.3 |
ggridges | 0.5.4 | ggsci | 3.0.0 |
ggseas | 0.5.4 | ggsignif | 0.6.4 |
ggstance | 0.3.6 | ggtext | 0.1.2 |
ggtree | 3.8.0 | ggvis | 0.4.8 |
gh | 1.4.0 | Gifi | 0.4-0 |
gifti | 0.8.0 | GIGrvg | 0.8 |
gimme | 0.7-14 | git2r | 0.32.0 |
gitcreds | 0.1.2 | glarma | 1.6-0 |
GlarmaVarSel | 1.0 | glasso | 1.11 |
glassoFast | 1.0 | gld | 2.6.6 |
GLMMRR | 0.5.0 | glmnet | 4.1-7 |
globals | 0.16.2 | glpkAPI | 1.3.4 |
glue | 1.6.2 | GMDH | 1.6 |
gmm | 1.8 | gmodels | 2.18.1.1 |
gmp | 0.7-1 | gmvarkit | 2.0.8 |
GNAR | 1.1.2 | gnm | 1.1-2 |
GO.db | 3.17.0 | goftest | 1.2-3 |
googledrive | 2.1.1 | googlesheets4 | 1.1.1 |
googleVis | 0.7.1 | gower | 1.0.1 |
GPArotation | 2023.3-1 | GPCMlasso | 0.1-6 |
GPfit | 1.0-8 | gplots | 3.1.3 |
gradethis | 0.2.12.9004 | gRain | 1.3.13 |
graph | 1.78.0 | graphicalVAR | 0.3.1 |
graphlayouts | 1.0.0 | grates | 1.1.0 |
gratis | 1.0.3 | gravitas | 0.1.3 |
gRbase | 1.8.9 | greta | 0.4.3 |
greybox | 1.0.8 | 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.2-0 |
grnn | 0.1.0 | GroupSeq | 1.4.2 |
grplasso | 0.4-7 | gsarima | 0.1-5 |
gsDesign | 3.4.0 | gSEM | 0.4.3.4 |
gsignal | 0.3-5 | gsl | 2.1-8 |
gss | 2.2-5 | gstat | 2.1-1 |
gsubfn | 0.7 | gt | 0.9.0 |
gtable | 0.3.3 | gtheory | 0.1.2 |
gtools | 3.9.4 | gtop | 0.2.0 |
HaploSim | 1.8.4.2 | hardhat | 1.3.0 |
hash | 2.2.6.2 | haven | 2.5.2 |
hbsae | 1.2 | hdf5r | 1.3.8 |
HDInterval | 0.2.4 | HDMT | 1.0.5 |
hdrcde | 3.4 | HDTSA | 1.0.2 |
heatmaply | 1.4.2 | heplots | 1.4-2 |
here | 1.0.1 | hett | 0.3-3 |
hexbin | 1.28.3 | hflights | 0.1 |
HH | 3.1-49 | hht | 2.1.6 |
highcharter | 0.9.4 | highlight | 0.5.1 |
highr | 0.10 | HIMA | 2.2.0 |
HKRbook | 0.1.3 | Hmisc | 5.1-0 |
HMMpa | 1.0.1 | hms | 1.1.3 |
homals | 1.0-10 | hommel | 1.6 |
hpfilter | 1.0.2 | HSAUR3 | 1.0-14 |
htmlTable | 2.4.1 | htmltools | 0.5.5 |
htmlwidgets | 1.6.2 | hts | 6.0.2 |
httpcode | 0.3.0 | httpuv | 1.6.11 |
httr | 1.4.6 | httr2 | 0.2.3 |
hunspell | 3.0.2 | hutils | 1.8.1 |
hwwntest | 1.3.1 | HydroMe | 2.0-1 |
HyperbolicDist | 0.6-4 | hypergeo | 1.2-13 |
i2extras | 0.2.1 | iarm | 0.4.3 |
ibd | 1.5 | iBreakDown | 2.0.1 |
ica | 1.0-3 | ICAOD | 1.0.1 |
ICC | 2.4.0 | iccbeta | 1.2.0 |
Icens | 1.72.0 | ICS | 1.3-2 |
ICSNP | 1.1-1 | ICtest | 0.3-5 |
idefix | 1.0.3 | IDPmisc | 1.1.20 |
ids | 1.0.1 | ifaTools | 0.23 |
igraph | 1.5.0 | igraphdata | 1.0.1 |
illuminaio | 0.42.0 | imbibe | 0.1.1 |
immer | 1.4-15 | impute | 1.74.1 |
imputeTestbench | 3.0.3 | imputeTS | 3.3 |
IncDTW | 1.1.4.4 | incidence | 1.7.3 |
incidence2 | 2.2.1 | ineq | 0.2-13 |
infer | 1.0.4 | influence.SEM | 2.3 |
influenceR | 0.1.5 | influxdbr | 0.14.2 |
ingredients | 2.3.0 | ini | 0.3.1 |
inline | 0.3.19 | insight | 0.19.2 |
InspectChangepoint | 1.2 | interp | 1.1-4 |
intervals | 0.15.3 | inum | 1.0-5 |
invgamma | 1.1 | ipred | 0.9-14 |
IRanges | 2.34.0 | 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.3.1 |
IsingSampler | 0.2.1 | Iso | 0.0-18.1 |
isoband | 0.2.7 | ISOcodes | 2022.09.29 |
IsoGene | 1.0-24 | ISOweek | 0.6-2 |
ISwR | 2.0-8 | iterators | 1.0.14 |
iterLap | 1.1-3 | itertools | 0.1-3 |
itsmr | 1.10 | JADE | 2.0-3 |
jalcal | 0.1.0 | janeaustenr | 1.0.0 |
janitor | 2.2.0 | JavaGD | 0.6-5 |
jiebaR | 0.11 | jiebaRD | 0.1 |
jjb | 0.1.1 | JMdesign | 1.3 |
jomo | 2.7-6 | jpeg | 0.1-10 |
jqr | 1.2.3 | jquerylib | 0.1.4 |
jrt | 1.1.2 | jsonify | 1.2.2 |
jsonlite | 1.8.5 | juicyjuice | 0.1.0 |
JuliaConnectoR | 1.1.1 | kableExtra | 1.3.4 |
kalmanfilter | 2.0.1 | kappaSize | 1.2 |
KEGGREST | 1.40.0 | Kendall | 2.2.1 |
kequate | 1.6.4 | keras | 2.11.1 |
kernelFactory | 0.3.0 | kernlab | 0.9-32 |
KFAS | 1.5.0 | klaR | 1.7-2 |
km.ci | 0.5-6 | knitr | 1.43 |
koRpus | 0.13-8 | ks | 1.14.0 |
kst | 0.5-4 | kutils | 1.70 |
kza | 4.1.0.1 | labdsv | 2.1-0 |
label.switching | 1.8 | labeling | 0.4.2 |
labelled | 2.11.0 | LaF | 0.8.4 |
lagged | 0.3.2 | Lahman | 11.0-0 |
LAM | 0.6-19 | lambda.r | 1.2.4 |
languageR | 1.5.0 | LaplacesDemon | 16.1.6 |
lars | 1.3 | lassoshooting | 0.1.5-1.1 |
latdiag | 0.3 | later | 1.3.1 |
latex2exp | 0.9.6 | latticeExtra | 0.6-30 |
lava | 1.7.2.1 | lavaan | 0.6-15 |
lavaan.survey | 1.1.3.1 | LAWBL | 1.5.0 |
lazyeval | 0.2.2 | lbfgsb3c | 2020-3.2 |
LCAvarsel | 1.1 | lcda | 0.3.1 |
lda | 1.4.2 | ldbounds | 2.0.1 |
leafem | 0.2.0 | leaflet | 2.1.2 |
leaflet.providers | 1.9.0 | leafpop | 0.1.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
learnr | 0.11.4 | legion | 0.1.2 |
lgr | 0.4.4 | lgtdl | 1.1.5 |
lhs | 1.1.6 | libcoin | 1.0-9 |
lifecycle | 1.0.3 | LIM | 1.4.7 |
limma | 3.56.1 | limSolve | 1.5.6 |
linelist | 0.0.1 | linpk | 1.1.2 |
linprog | 0.9-4 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | lme4 | 1.1-33 |
lmerTest | 3.1-3 | lmm | 1.3 |
lmom | 2.9 | Lmoments | 1.3-1 |
lmtest | 0.9-40 | LNIRT | 0.5.1 |
locfit | 1.5-9.8 | locits | 1.7.6 |
locpol | 0.8.0 | logitnorm | 0.8.38 |
logspline | 2.1.19 | lokern | 1.1-10 |
lomb | 2.1.0 | longitudinalData | 2.4.5 |
longmemo | 1.1-2 | LongMemoryTS | 0.1.0 |
longpower | 1.0.24 | loo | 2.6.0 |
lordif | 0.3-3 | lotri | 0.4.3 |
lpacf | 1.0.1 | lpSolve | 5.6.18 |
lpSolveAPI | 5.5.2.0-17.9 | lsa | 0.73.3 |
lsl | 0.5.6 | lslx | 0.6.11 |
LSTS | 2.1 | LSWPlib | 0.1.0 |
ltm | 1.2-0 | ltsa | 1.4.6 |
lubridate | 1.9.2 | luz | 0.4.0 |
lvnet | 0.3.5 | lvplot | 0.2.1 |
lwgeom | 0.2-13 | m5 | 0.1.1 |
maat | 1.1.0 | magic | 1.6-1 |
magick | 2.7.4 | magrittr | 2.0.3 |
MAMS | 2.0.1 | manipulateWidget | 0.11.1 |
MAPA | 2.0.5 | mapdata | 2.3.1 |
mapproj | 1.2.11 | maps | 3.4.1 |
maptools | 1.1-7 | maptree | 1.4-8 |
mapview | 2.11.0 | mAr | 1.2-0 |
mar1s | 2.1.1 | markdown | 1.7 |
MARSS | 3.11.8 | MassSpecWavelet | 1.66.0 |
Matching | 4.10-8 | MatchIt | 4.5.4 |
mathjaxr | 1.6-0 | matlabr | 1.5.2 |
matrixcalc | 1.0-6 | MatrixExtra | 0.1.13 |
MatrixModels | 0.5-1 | matrixStats | 1.0.0 |
maxLik | 1.5-2 | MaxPro | 4.1-2 |
MBA | 0.1-0 | MBHdesign | 2.2.2 |
mboost | 2.9-7 | mbsts | 3.0 |
mc2d | 0.1-22 | MCAvariants | 2.6 |
mclcar | 0.2-0 | mclust | 6.0.0 |
mcmc | 0.9-7 | mcmcensemble | 3.0.0 |
MCMCglmm | 2.34 | MCMCpack | 1.6-3 |
mcmcse | 1.5-0 | MCMCvis | 0.16.0 |
Mcomp | 2.8 | mcompanion | 0.5.7 |
MCPMod | 1.0-10.1 | meboot | 1.4-9.3 |
Mediana | 1.0.8 | mediation | 4.5.0 |
MEIGOR | 1.33.0 | mem | 2.18 |
memapp | 2.16 | memisc | 0.99.31.6 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
meta | 6.5-0 | metadat | 1.2-0 |
metafor | 4.2-0 | metaplot | 0.8.3 |
metaSEM | 1.3.0 | metasens | 1.5-2 |
Metrics | 0.1.4 | metRology | 0.9-28-1 |
mFilter | 0.1-5 | mgm | 1.2-13 |
mi | 1.1 | mice | 3.16.0 |
microbenchmark | 1.4.10 | microsamplingDesign | 1.0.8 |
MIIVsem | 0.5.8 | mime | 0.12 |
MinEDfind | 0.1.3 | minimalRSD | 1.0.0 |
minimaxdesign | 0.1.5 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-3 | minqa | 1.2.5 |
mirt | 1.39 | mirtCAT | 1.12.2 |
misc3d | 0.9-1 | miscTools | 0.6-28 |
missForest | 1.5 | missMDA | 1.18 |
mitml | 0.4-5 | mitools | 2.4 |
mix | 1.0-11 | mixAR | 0.22.7 |
MixedPsy | 1.1.0 | mixexp | 1.2.7 |
mixOmics | 6.24.0 | mixsqp | 0.3-48 |
mixtools | 2.0.0 | mkssd | 1.2 |
mlapi | 0.1.1 | mlbench | 2.1-3.1 |
MLCIRTwithin | 2.1.1 | MLDS | 0.4.901 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlogitBMA | 0.1-7 | mlr3 | 0.16.1 |
mlr3measures | 0.5.0 | mlr3misc | 0.12.0 |
mlVAR | 0.5.1 | mma | 10.6-1 |
mmand | 1.6.3 | mmrm | 0.2.2 |
mnormt | 2.1.1 | MNP | 3.1-4 |
modeldata | 1.1.0 | modelenv | 0.1.1 |
ModelMetrics | 1.2.2.2 | modelr | 0.1.11 |
modeltime | 1.2.6 | modeltime.ensemble | 1.0.3 |
modeltime.resample | 0.2.3 | modeltools | 0.2-23 |
moderndive | 0.5.5 | mokken | 3.0.6 |
mombf | 3.4.0 | moments | 0.14.1 |
mondate | 0.10.02 | monmlp | 1.1.5 |
Morpho | 2.11 | mosaic | 1.8.4.2 |
mosaicCore | 0.9.2.1 | mosaicData | 0.20.3 |
movMF | 0.2-7 | MPDiR | 0.1-20 |
MplusAutomation | 1.1.0 | mpmi | 0.43.2 |
mpt | 0.8-0 | MPTinR | 1.14.1 |
MPV | 1.62 | mratios | 1.4.2 |
mrf | 0.1.6 | mrgsolve | 1.0.9 |
mritc | 0.5-3 | mscstexta4r | 0.1.2 |
mscsweblm4r | 0.1.2 | msm | 1.7 |
msos | 1.2.0 | mssm | 0.1.6 |
mstate | 0.3.2 | MSwM | 1.5 |
MTS | 1.2.1 | mtsdi | 0.3.5 |
mudfold | 1.1.21 | multcomp | 1.4-24 |
multcompView | 0.1-9 | multDM | 1.1.4 |
multicool | 0.1-12 | MultiGlarmaVarSel | 1.0 |
MultiLCIRT | 2.11 | MultipleBubbles | 0.2.0 |
multiplex | 2.9.9 | multipol | 1.0-7 |
multitaper | 1.0-15 | multiway | 1.0-6 |
multtest | 2.56.0 | MuMIn | 1.47.5 |
munfold | 0.3.5 | munsell | 0.5.0 |
mvLSW | 1.2.5 | mvMORPH | 1.1.7 |
mvnfast | 0.2.8 | mvQuad | 1.0-6 |
mvtnorm | 1.2-2 | mxkssd | 1.2 |
n1qn1 | 6.0.1-11 | NADA | 1.6-1.1 |
nanotime | 0.3.7 | nardl | 0.1.6 |
natserv | 1.0.0 | nbTransmission | 1.1.2 |
ncappc | 0.3.0 | ncar | 0.4.5 |
ncvreg | 3.14.1 | nets | 0.9.1 |
network | 1.18.1 | NetworkChange | 0.8 |
NetworkComparisonTest | 2.2.1 | networkD3 | 0.4 |
networkDynamic | 0.11.3 | networkLite | 1.0.5 |
NetworkToolbox | 1.4.2 | networktools | 1.5.0 |
networktree | 1.0.1 | neuralnet | 1.44.2 |
neurobase | 1.32.3 | neuroim | 0.0.6 |
neuRosim | 0.2-13 | nFactors | 2.4.1.1 |
nhanesA | 0.7.3 | nifti.io | 1.0.0 |
nimble | 1.0.1 | NISTnls | 0.9-13 |
NlcOptim | 0.6 | nleqslv | 3.3.4 |
NlinTS | 1.4.5 | nlmeVPC | 2.6 |
nlmixr2 | 2.0.9 | nlmixr2data | 2.0.7 |
nlmixr2est | 2.1.6 | nlmixr2extra | 2.0.8 |
nlmixr2plot | 2.0.7 | nlmixr2rpt | 0.2.0 |
nloptr | 2.0.3 | NLP | 0.2-1 |
nls2 | 0.3-3 | nlsem | 0.8 |
nlstools | 2.0-0 | nlts | 1.0-2 |
nmw | 0.1.5 | nnfor | 0.9.8 |
nnls | 1.4 | nodbi | 0.9.5 |
NonCompart | 0.6.0 | nonlinearTseries | 0.2.12 |
nonmemica | 1.0.1 | nonnest2 | 0.5-5 |
nortest | 1.0-4 | nosoi | 1.1.0 |
np | 0.60-17 | nppbib | 1.2-0 |
nsarfima | 0.2.0.0 | nsprcomp | 0.5.1-2 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
o2geosocial | 1.1.0 | oai | 0.4.0 |
OBsMD | 6.1 | occ | 1.1 |
odbc | 1.3.4 | odin | 1.2.4 |
odpc | 2.0.5 | odr | 1.4.2 |
officer | 0.6.2 | ohoegdm | 0.1.0 |
onbrand | 1.0.2 | onlineforecast | 1.0.1 |
OPDOE | 1.0-10 | openEBGM | 0.8.3 |
openintro | 2.4.0 | OpenMx | 2.21.8 |
openNLP | 0.2-7 | openNLPdata | 1.5.3-4 |
openssl | 2.0.6 | openxlsx | 4.2.5.2 |
opera | 1.2.0 | operator.tools | 1.6.3 |
optextras | 2019-12.4 | OptGS | 1.1.1 |
OptimalDesign | 1.0.1 | OptimaRegion | 1.2 |
optimParallel | 1.0-2 | optimx | 2022-4.30 |
optiscale | 1.2.2 | ORCME | 2.0.2 |
ordinal | 2022.11-16 | ore | 1.7.3.1 |
ORIClust | 1.0-2 | oro.dicom | 0.5.3 |
oro.nifti | 0.11.4 | oro.pet | 0.2.7 |
orthopolynom | 1.0-6.1 | osDesign | 1.8 |
osqp | 0.6.0.8 | otsad | 0.2.0 |
otsfeatures | 1.0.0 | outbreaker2 | 1.1.3 |
outbreaks | 1.9.0 | overlapping | 2.1 |
padr | 0.6.2 | PairedData | 1.1.1 |
pairwise | 0.6.1-0 | paleoTS | 0.5.3 |
palmerpenguins | 0.1.1 | pan | 1.6 |
pander | 0.6.5 | paradox | 0.11.1 |
parallelly | 1.36.0 | paran | 1.5.2 |
parsedate | 1.3.1 | parsnip | 1.1.0 |
partitions | 1.10-7 | partsm | 1.1-3 |
party | 1.3-13 | partykit | 1.2-20 |
pastecs | 1.3.21 | patchwork | 1.1.2 |
pbapply | 1.7-0 | PBIBD | 1.3 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
pbmcapply | 1.5.1 | pbs | 1.1 |
PBSddesolve | 1.13.3 | PBSmapping | 2.73.2 |
pbv | 0.4-22 | PCA4TS | 0.1 |
pcaMethods | 1.92.0 | pcaPP | 2.0-3 |
pcdpca | 0.4 | pcFactorStan | 1.5.3 |
pcIRT | 0.2.4 | PCMRS | 0.1-4 |
pcts | 0.15.5 | pdc | 1.0.3 |
pdfCluster | 1.0-4 | pdfetch | 0.2.8 |
pdftools | 3.3.3 | pdist | 1.2.1 |
pedigree | 1.4.2 | penalized | 0.9-52 |
performance | 0.10.4 | PerformanceAnalytics | 2.0.4 |
permute | 0.9-7 | PGM2 | 1.0-1 |
ph2bayes | 0.0.2 | ph2bye | 0.1.4 |
phangorn | 2.11.1 | pheatmap | 1.0.12 |
phonics | 1.3.10 | phyloseq | 1.44.0 |
phytools | 1.5-1 | picasso | 1.3.1 |
pid | 0.50 | piecewiseSEM | 2.3.0 |
pillar | 1.9.0 | pingr | 2.0.2 |
pins | 1.2.0 | pipe.design | 0.5.1 |
pipeR | 0.6.1.3 | pixmap | 0.4-12 |
PK | 1.3-5 | PKconverter | 1.5 |
pkdata | 0.1.0 | pkgbuild | 1.4.1 |
pkgconfig | 2.0.3 | pkgdown | 2.0.7 |
pkgfilecache | 0.1.4 | pkgload | 1.3.2 |
PKNCA | 0.10.2 | pkr | 0.1.3 |
pks | 0.5-0 | PlackettLuce | 0.4.3 |
plgp | 1.1-12 | plink | 1.5-1 |
plm | 2.6-3 | PLMIX | 2.1.1 |
PLmixed | 0.1.6 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.2 |
plotMCMC | 2.0.1 | plotmo | 3.6.2 |
plotrix | 3.8-2 | plotSEMM | 2.4 |
pls | 2.8-2 | plyr | 1.8.8 |
pmr | 1.2.5.1 | pmxTools | 1.3 |
png | 0.1-8 | poisbinom | 1.0.1 |
poLCA | 1.6.0.1 | polspline | 1.1.22 |
polyclip | 1.10-4 | polycor | 0.8-1 |
polyCub | 0.8.1 | polynom | 1.4-1 |
PolynomF | 2.0-5 | polyreg | 0.8.0 |
pomp | 5.2 | PopED | 0.6.0 |
popEpi | 0.4.10 | posterior | 1.4.1 |
powerbydesign | 1.0.5 | powerGWASinteraction | 1.1.3 |
powerSurvEpi | 0.1.3 | PowerTOST | 1.5-4 |
PowerUpR | 1.1.0 | PP | 0.6.3-11 |
ppcor | 1.1 | prabclus | 2.3-2 |
pracma | 2.4.2 | praise | 1.0.0 |
PreciseSums | 0.6 | prefmod | 0.8-35 |
preprocessCore | 1.62.1 | presize | 0.3.7 |
prettyGraphs | 2.1.6 | prettyunits | 1.1.1 |
prevalence | 0.4.1 | princurve | 2.1.6 |
pROC | 1.18.2 | processx | 3.8.1 |
prodlim | 2023.03.31 | ProfessR | 2.4-1 |
profileModel | 0.6.1 | profileR | 0.3-5 |
profoc | 1.2.0 | profvis | 0.3.8 |
progress | 1.2.2 | progressr | 0.13.0 |
proj4 | 1.0-12 | promises | 1.2.0.1 |
prophet | 1.0 | PROsetta | 0.4.1 |
proto | 1.0.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | ps | 1.7.5 |
pscl | 1.5.5.1 | psd | 2.1.1 |
PSF | 0.5 | pso | 1.0.4 |
pspline | 1.0-19 | psy | 1.2 |
psych | 2.3.3 | psychomix | 1.1-8 |
psychonetrics | 0.11 | psychotools | 0.7-3 |
psychotree | 0.16-0 | psychTools | 2.3.6 |
psyphy | 0.2-3 | PTAk | 2.0.0 |
PTSR | 0.1.2 | ptw | 1.9-16 |
purrr | 1.0.1 | pwr | 1.3-0 |
PwrGSD | 2.3.6 | pwrRasch | 0.1-2 |
qap | 0.1-2 | Qardl | 0.1.1 |
qcv | 1.0 | qdap | 2.4.6 |
qdapDictionaries | 1.0.7 | qdapRegex | 0.7.5 |
qdapTools | 1.3.7 | qgam | 1.3.4 |
qgraph | 1.9.5 | qicharts2 | 0.7.2 |
qMRI | 1.2 | qpdf | 1.3.2 |
qpNCA | 1.1.6 | qs | 0.25.5 |
qtl | 1.60 | quadprog | 1.5-8 |
Quandl | 2.11.0 | quanteda | 3.3.1 |
quantmod | 0.4.23 | quantreg | 5.95 |
quantspec | 1.2-3 | questionr | 0.7.8 |
quickpsy | 0.1.5.1 | qvalue | 2.32.0 |
qvcalc | 1.0.3 | R.cache | 0.16.0 |
R.devices | 2.17.1 | R.filesets | 2.15.0 |
R.huge | 0.9.0 | R.matlab | 3.7.0 |
R.methodsS3 | 1.8.2 | R.oo | 1.25.0 |
R.rsp | 0.45.0 | R.utils | 2.12.2 |
R0 | 1.2-10 | r2d3 | 0.2.6 |
R2HTML | 2.3.3 | R2jags | 0.7-1 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R6 | 2.5.1 | radarchart | 0.3.1 |
ragg | 1.2.5 | rainbow | 3.7 |
rAmCharts | 2.1.15 | ramcmc | 0.1.2 |
ramps | 0.6.18 | randomForest | 4.7-1.1 |
randomForestSRC | 3.2.2 | randomizeR | 3.0.1 |
randomLCA | 1.1-2 | randtoolbox | 2.0.4 |
ranger | 0.15.1 | rankdist | 1.1.4 |
RANN | 2.6.1 | rapidjsonr | 1.2.0 |
RApiSerialize | 0.1.2 | rappdirs | 0.3.3 |
rARPACK | 0.11-0 | RaschSampler | 0.8-8 |
raster | 3.6-20 | rasterImage | 0.4.0 |
ratelimitr | 0.4.1 | raveio | 0.1.0 |
ravetools | 0.1.1 | Rbeast | 0.9.9 |
rbenchmark | 1.0.0 | RBGL | 1.76.0 |
rbibutils | 2.2.13 | rbmi | 1.2.3 |
Rcatch22 | 0.2.1 | rcdd | 1.5-2 |
Rcgmin | 2022-4.30 | rcmdcheck | 1.4.0 |
Rcmdr | 2.8-0 | RcmdrMisc | 2.7-2 |
RcmdrPlugin.DoE | 0.12-4 | RcmdrPlugin.temis | 0.7.10 |
RColorBrewer | 1.1-3 | Rcpp | 1.0.10 |
RcppAnnoy | 0.0.20 | RcppArmadillo | 0.12.4.1.0 |
RcppCCTZ | 0.2.12 | RcppDate | 0.0.3 |
RcppDE | 0.1.7 | RcppDist | 0.1.1 |
RcppEigen | 0.3.3.9.3 | RcppGSL | 0.3.13 |
RcppParallel | 5.1.7 | RcppProgress | 0.4.2 |
RcppRoll | 0.3.0 | RcppThread | 2.1.3 |
RcppTN | 0.2-2 | RcppTOML | 0.2.2 |
RcppZiggurat | 0.1.6 | Rcsdp | 0.1.57.5 |
RCurl | 1.98-1.12 | rdbnomics | 0.6.4 |
Rdpack | 2.4 | Rdsdp | 1.0.5.2.1 |
re2 | 0.1.2 | reactable | 0.4.4 |
reactR | 0.4.4 | readabs | 0.4.13 |
readODS | 1.8.0 | readr | 2.1.4 |
readstata13 | 0.10.1 | readxl | 1.4.2 |
REBayes | 2.51 | recipes | 1.0.6 |
registry | 0.5-1 | regress | 1.3-21 |
regsem | 1.9.5 | regspec | 2.6 |
regtools | 1.7.0 | relations | 0.6-13 |
relimp | 1.0-5 | rematch | 1.0.1 |
rematch2 | 2.1.2 | remotes | 2.4.2 |
rentrez | 1.2.3 | renv | 0.17.3 |
replicateBE | 1.1.3 | reportr | 1.3.0 |
reprex | 2.0.2 | REQS | 0.8-13 |
resampledata | 0.3.1 | resde | 1.1 |
reshape | 0.8.9 | reshape2 | 1.4.4 |
reticulate | 1.30 | revdbayes | 1.5.1 |
rex | 1.2.1 | Rfast | 2.0.7 |
Rfast2 | 0.1.4 | rgen | 0.0.1 |
RGENERATE | 1.3.7 | rgenoud | 5.9-0.3 |
rgl | 1.1.3 | Rglpk | 0.6-5 |
RgoogleMaps | 1.4.5.3 | RGraphics | 3.0-2 |
Rgraphviz | 2.44.0 | rhandsontable | 0.3.8 |
rhdf5 | 2.44.0 | rhdf5filters | 1.12.1 |
Rhdf5lib | 1.22.0 | rhosa | 0.2.0 |
RhpcBLASctl | 0.23-42 | riingo | 0.3.1 |
ring | 1.0.4 | RInside | 0.2.18 |
rintrojs | 0.3.2 | Rirt | 0.0.2 |
riskCommunicator | 1.0.1 | ritis | 1.0.0 |
rjags | 4-14 | rJava | 1.0-6 |
RJDBC | 0.2-10 | RJDemetra | 0.2.3 |
rje | 1.12.1 | rjson | 0.2.21 |
RJSONIO | 1.3-1.8 | RKEA | 0.0-6 |
RKEAjars | 5.0-4 | rlang | 1.1.1 |
rle | 0.9.2 | rlecuyer | 0.3-7 |
Rlgt | 0.1-4 | Rlibeemd | 1.4.2 |
rlist | 0.4.6.2 | rmarkdown | 2.22 |
RMAWGEN | 1.3.7 | rmeta | 3.0 |
Rmpfr | 0.9-2 | rms | 6.7-0 |
rmutil | 1.1.10 | RMySQL | 0.10.25 |
rncl | 0.8.7 | rngtools | 1.5.2 |
rngWELL | 0.10-9 | RNifti | 1.5.0 |
RNiftyReg | 2.7.1 | rnn | 1.9.0 |
robfilter | 4.1.3 | RobKF | 1.0.2 |
RoBMA | 3.0.1 | robustbase | 0.99-0 |
rockchalk | 1.8.157 | ROCR | 1.0-11 |
rodd | 0.2-1 | roll | 1.1.6 |
Rook | 1.2 | ROOPSD | 0.3.8 |
rootSolve | 1.8.2.3 | roptim | 0.1.6 |
rotl | 3.1.0 | roxygen2 | 7.2.3 |
rpact | 3.3.4 | rpanel | 1.1-5.2 |
rpart.plot | 3.1.1 | rpf | 1.0.11 |
RPMG | 2.2-3 | RPostgres | 1.4.5 |
RPostgreSQL | 0.7-5 | RPPairwiseDesign | 1.0 |
rprojroot | 2.0.3 | rrcov | 1.7-3 |
rredlist | 0.7.1 | rrum | 0.2.0 |
rsample | 1.1.1 | rsdmx | 0.6-2 |
RSEIS | 4.1-4 | rsem | 0.5.0 |
Rsfar | 0.0.1 | RSGHB | 1.2.2 |
rsm | 2.10.3 | Rsolnp | 1.16 |
rsparse | 0.5.1 | RSpectra | 0.16-1 |
RSQLite | 2.3.1 | Rssa | 1.0.5 |
rstan | 2.21.8 | rstanarm | 2.21.4 |
rstantools | 2.3.1 | rstatix | 0.7.2 |
rstiefel | 1.0.1 | rstudioapi | 0.14 |
rsurface | 1.1.0 | RSurveillance | 0.2.1 |
rTensor | 1.4.8 | rtf | 0.4-14.1 |
RTFA | 0.1.0 | rticles | 0.25 |
RTransferEntropy | 0.2.21 | rts | 1.1-8 |
Rtsne | 0.16 | Rttf2pt1 | 1.3.12 |
rucrdtw | 0.1.4 | rugarch | 1.4-9 |
ruimtehol | 0.3.1 | rules | 1.0.2 |
RUnit | 0.4.32 | runjags | 2.2.1-7 |
runner | 0.4.3 | runstats | 1.1.0 |
Runuran | 0.38 | rust | 1.4.0 |
Rvcg | 0.22.1 | rversions | 2.1.2 |
rvest | 1.0.3 | Rvmmin | 2018-4.17.1 |
Rwave | 2.6-5 | RWeka | 0.4-46 |
RWekajars | 3.9.3-2 | rxode2 | 2.0.13 |
rxode2et | 2.0.10 | rxode2ll | 2.0.11 |
rxode2parse | 2.0.16 | rxode2random | 2.0.11 |
s2 | 1.1.4 | S4Vectors | 0.38.1 |
samadb | 0.2.6 | samplesize | 0.2-4 |
sandwich | 3.0-2 | sarima | 0.9.1 |
sass | 0.4.6 | satellite | 1.0.4 |
sazedR | 2.0.2 | sbgcop | 0.980 |
scales | 1.2.1 | scatterplot3d | 0.3-44 |
scoringRules | 1.1.1 | scoringutils | 1.1.0 |
ScottKnott | 1.3-0 | scs | 3.2.4 |
sde | 2.0.18 | sealasso | 0.1-3 |
seas | 0.6-0 | season | 0.3.15 |
seasonal | 1.9.0 | seasonalview | 0.3 |
seastests | 0.15.4 | seer | 1.1.8 |
segmented | 1.6-4 | selectr | 0.4-2 |
sem | 3.1-15 | semds | 0.9-6 |
SemiPar | 1.0-4.2 | semPlot | 1.1.6 |
SEMsens | 1.5.5 | semTools | 0.5-6 |
semtree | 0.9.18 | sendmailR | 1.4-0 |
SensoMineR | 1.26 | sentencepiece | 0.2.3 |
separationplot | 1.4 | seqDesign | 1.2 |
seqinr | 4.2-30 | seriation | 1.4.2 |
servr | 0.27 | sessioninfo | 1.2.2 |
setartree | 0.1.0 | setRNG | 2022.4-1 |
sets | 1.0-24 | sf | 1.0-13 |
sFFLHD | 0.1.2 | sfheaders | 0.4.2 |
sfsmisc | 1.1-15 | sftime | 0.2-0 |
sgd | 1.1.1 | sgeostat | 1.0-27 |
shades | 1.4.0 | shape | 1.4.6 |
shapefiles | 0.7.2 | shapes | 1.2.7 |
shiny | 1.7.4 | shiny.semantic | 0.4.3 |
shinyAce | 0.4.2 | shinybrms | 1.8.0 |
shinyBS | 0.61.1 | shinycssloaders | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.0 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinytest | 1.5.3 | shinythemes | 1.2.0 |
shinyWidgets | 0.7.6 | showimage | 1.0.0 |
sigmoid | 1.4.0 | signal | 0.7-7 |
Sim.DiffProc | 4.8 | simcdm | 0.1.1 |
SimComp | 3.3 | simex | 1.8 |
simglm | 0.8.9 | SimInf | 9.5.0 |
simrel | 2.1.0 | simsem | 0.5-16 |
sirt | 3.12-66 | sitmo | 2.0.2 |
SkewHyperbolic | 0.4-0 | skmeans | 0.2-15 |
skpr | 1.4.0 | slam | 0.1-50 |
SLBDD | 0.0.4 | sleekts | 1.0.2 |
Sleuth2 | 2.0-5 | Sleuth3 | 1.0-3 |
SLHD | 2.1-1 | slider | 0.3.0 |
sm | 2.2-5.7.1 | smacof | 2.1-5 |
smooth | 3.2.1 | smoother | 1.1 |
smoots | 1.1.3 | smovie | 1.1.4 |
SMPracticals | 1.4-3 | sn | 2.1.1 |
sna | 2.7-1 | snakecase | 0.11.0 |
snow | 0.4-4 | SnowballC | 0.7.1 |
snowfall | 1.84-6.2 | SOAs | 1.3 |
soc.ca | 0.8.0 | socialmixr | 0.2.0 |
sodium | 1.2.1 | solrium | 1.2.0 |
sourcetools | 0.1.7-1 | sp | 1.6-1 |
sp23design | 0.9-1 | spacetime | 1.3-0 |
spam | 2.9-1 | spant | 2.12.0 |
sparseDFM | 1.0 | SparseFactorAnalysis | 1.0 |
SparseM | 1.81 | sparsevar | 0.1.0 |
SpatialEpi | 1.2.8 | SpatialExtremes | 2.1-0 |
spatialreg | 1.2-9 | spatstat | 3.0-6 |
spatstat.data | 3.0-1 | spatstat.explore | 3.2-1 |
spatstat.geom | 3.2-1 | spatstat.linnet | 3.1-1 |
spatstat.model | 3.2-4 | spatstat.random | 3.1-5 |
spatstat.sparse | 3.0-1 | spatstat.utils | 3.0-3 |
spBayes | 0.4-6 | spd | 2.0-1 |
spData | 2.2.2 | spdep | 1.2-8 |
spec | 0.1.7 | spectral | 2.0 |
speff2trial | 1.0.5 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-19 | spINAR | 0.1.0 |
splancs | 2.01-43 | splines2 | 0.5.0 |
spTimer | 3.3.2 | sqldf | 0.4-11 |
SQUAREM | 2021.1 | srvyr | 1.2.0 |
ssanv | 1.1 | ssgraph | 1.15 |
ssize.fdr | 1.3 | ssizeRNA | 1.3.2 |
ssMousetrack | 1.1.6 | stabledist | 0.7-1 |
stabs | 0.6-4 | StanHeaders | 2.26.27 |
stars | 0.6-1 | STARTS | 1.3-8 |
startupmsg | 0.9.6 | statespacer | 0.5.0 |
statmod | 1.5.0 | statnet.common | 4.9.0 |
StatRank | 0.0.6 | steadyICA | 1.0 |
STFTS | 0.1.0 | stinepack | 1.4 |
stlplus | 0.5.1 | stm | 1.3.6 |
stochvol | 3.2.1 | stopwords | 2.3 |
stR | 0.5 | stringdist | 0.9.10 |
stringfish | 0.15.8 | stringi | 1.7.12 |
stringr | 1.5.0 | strucchange | 1.5-3 |
strucchangeRcpp | 1.5-3-1.0.4 | StructuralDecompose | 0.1.1 |
styler | 1.10.1 | subplex | 1.8 |
subscore | 3.3 | sufficientForecasting | 0.1.0 |
sugrrants | 0.2.8 | SuperLearner | 2.0-28 |
superml | 0.5.6 | SuppDists | 1.1-9.7 |
support.CEs | 0.5-0 | survcomp | 1.50.0 |
surveillance | 1.21.1 | survey | 4.2-1 |
survivalROC | 1.0.3.1 | survPresmooth | 1.1-11 |
svars | 1.3.11 | svd | 0.5.4 |
svglite | 2.1.1 | svs | 3.0.0 |
svUnit | 1.0.6 | swephR | 0.3.1 |
swirl | 2.4.5 | swirlify | 0.5.3 |
sylly | 0.1-6 | sym.arma | 1.0 |
symengine | 0.2.2 | symmoments | 1.2.1 |
synthesis | 1.2.3 | sys | 3.4.2 |
systemfit | 1.1-30 | systemfonts | 1.0.4 |
tables | 0.9.17 | tabnet | 0.4.0 |
TAM | 4.1-4 | targets | 1.1.3 |
tau | 0.0-24 | taxize | 0.9.100 |
tbrf | 0.1.5 | tcltk2 | 1.2-11 |
Tcomp | 1.0.1 | tdigest | 0.4.1 |
TeachingDemos | 2.12 | tempdisagg | 1.1 |
tensor | 1.5 | tensorA | 0.36.2 |
tensorflow | 2.11.0 | TensorPreAve | 1.1.0 |
tensorTS | 1.0.1 | TEQR | 6.0-0 |
tergm | 4.2.0 | terra | 1.7-37 |
tesseract | 5.1.0 | testcorr | 0.2.0 |
TestDataImputation | 2.3 | TestDesign | 1.5.1 |
testit | 0.13 | TestScorer | 1.7.2 |
testthat | 3.1.9 | TexExamRandomizer | 1.2.3 |
texreg | 1.38.6 | text2vec | 0.6.3 |
textcat | 1.0-8 | textir | 2.0-5 |
textplot | 0.2.2 | textrank | 0.3.1 |
textreuse | 0.1.5 | textshaping | 0.3.6 |
textTinyR | 1.1.7 | tfarima | 0.3.2 |
tfautograph | 0.3.2 | tfplot | 2021.6-1 |
tframe | 2015.12-1.1 | tfruns | 1.5.1 |
tgp | 2.4-21 | TH.data | 1.1-2 |
theft | 0.4.2.4 | thief | 0.3 |
ThreeArmedTrials | 1.0-4 | threeBrain | 1.0.0 |
ThreeGroups | 0.21 | threejs | 0.3.3 |
ThreeWay | 1.1.3 | thurstonianIRT | 0.12.1 |
tibble | 3.2.1 | tictoc | 1.2 |
Tides | 2.1 | tidygraph | 1.2.3 |
tidyLPA | 1.1.0 | tidymodels | 1.1.0 |
tidyquant | 1.0.7 | tidyr | 1.3.0 |
tidyselect | 1.2.0 | tidytext | 0.4.1 |
tidytree | 0.4.2 | tidyverse | 2.0.0 |
tiff | 0.1-11 | timechange | 0.2.0 |
timeDate | 4022.108 | timeSeries | 4030.106 |
timeseriesdb | 1.0.0-1.1.2 | timetk | 2.8.3 |
timsac | 1.3.8 | tinytex | 0.45 |
tis | 1.39 | tkrplot | 0.0-27 |
tm | 0.7-11 | tm.plugin.alceste | 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 | TMB | 1.9.4 |
tmvnsim | 1.0-2 | tmvtnorm | 1.5 |
tokenizers | 0.3.0 | tokenizers.bpe | 0.1.1 |
toOrdinal | 1.3-0.0 | topicdoc | 0.1.1 |
topicmodels | 0.2-14 | topicmodels.etm | 0.1.0 |
torch | 0.11.0 | torchaudio | 0.3.1.9000 |
torchdatasets | 0.3.0 | torchvision | 0.5.1 |
tpr | 0.3-3 | tractor.base | 3.3.5.1 |
TransPhylo | 1.4.5 | trapezoid | 2.0-2 |
tree | 1.0-43 | TreeBUGS | 1.5.0 |
treeio | 1.24.0 | trend | 1.1.5 |
trendeval | 0.1.0 | trending | 0.1.0 |
TrialSize | 1.4 | triangle | 1.0 |
triebeard | 0.4.1 | trimcluster | 0.1-5 |
tripack | 1.3-9.1 | TripleR | 1.5.4 |
TruncatedNormal | 2.2.2 | truncdist | 1.0-2 |
truncnorm | 1.0-9 | truncreg | 0.2-5 |
trust | 0.1-8 | TSA | 1.3.1 |
TSANN | 0.1.0 | tsbox | 0.4.1 |
tsBSS | 1.0.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 |
TSEntropies | 0.9 | tseries | 0.10-54 |
tseriesChaos | 0.1-13.1 | tseriesEntropy | 0.6-0 |
tseriesTARMA | 0.3-2 | tsfeatures | 1.1 |
tsfknn | 0.5.1 | tsibble | 1.1.3 |
tsibbledata | 0.4.1 | tsibbletalk | 0.1.0 |
tsintermittent | 1.10 | tsiR | 0.4.3 |
TSLSTM | 0.1.0 | tsModel | 0.6-1 |
tsoutliers | 0.6-8 | TSP | 1.2-4 |
tsPI | 1.0.3 | TSrepr | 1.1.0 |
tsrobprep | 0.3.2 | tssim | 0.1.7 |
TSstudio | 0.1.6 | TSTutorial | 1.2.6 |
tsutils | 0.9.3 | tswge | 2.1.0 |
TTR | 0.24.3 | tune | 1.1.1 |
tweenr | 2.0.2 | tzdb | 0.4.0 |
ubiquity | 2.0.0 | ucminf | 1.2.0 |
UComp | 4.0.2 | udpipe | 0.8.11 |
ugatsdb | 0.2.3 | uGMAR | 3.4.4 |
UnifiedDoseFinding | 0.1.10 | units | 0.8-2 |
unrepx | 1.0-2 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
uroot | 2.1-2 | usdata | 0.2.0 |
usethis | 2.2.0 | utf8 | 1.2.3 |
uuid | 1.1-0 | uwot | 0.1.14 |
V8 | 4.3.0 | VAR.etp | 1.0 |
VARDetect | 0.1.6 | vars | 1.5-9 |
VARshrink | 0.3.1 | VCA | 1.4.5 |
vcd | 1.4-11 | vcdExtra | 0.8-4 |
vctrs | 0.6.3 | vdg | 1.2.2 |
VedicDateTime | 0.1.4 | vegan | 2.6-4 |
VennDiagram | 1.7.3 | venneuler | 1.1-3 |
VGAM | 1.1-8 | VGAMdata | 1.1-8 |
vglmer | 1.0.3 | viridis | 0.6.3 |
viridisLite | 0.4.2 | visNetwork | 2.1.2 |
visualize | 4.4.0 | vpc | 1.2.2 |
vroom | 1.6.3 | waiter | 0.2.5 |
waldo | 0.5.1 | warp | 0.2.0 |
WaveletComp | 1.1 | wavelets | 0.3-0.2 |
waveslim | 1.8.4 | wavethresh | 4.7.2 |
wavScalogram | 1.1.2 | wCorr | 1.9.6 |
webdriver | 1.0.6 | webshot | 0.5.4 |
weights | 1.0.4 | whisker | 0.4.1 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
WikipediR | 1.5.0 | wikitaxa | 0.4.0 |
withr | 2.5.0 | wk | 0.7.3 |
wktmo | 1.0.5 | wnl | 0.7.3 |
wooldridge | 1.4-3 | word2vec | 0.3.4 |
wordcloud | 2.6 | wordnet | 0.1-16 |
workflows | 1.1.3 | workflowsets | 1.0.1 |
worrms | 0.4.3 | wpp2017 | 1.2-3 |
wpp2019 | 1.1-1 | WrightMap | 1.3 |
writexl | 1.4.2 | x12 | 1.10.3 |
x13binary | 1.1.57-3 | xfun | 0.39 |
xgboost | 1.7.5.1 | xgxr | 1.1.2 |
XLConnect | 1.0.7 | xlsx | 0.6.5 |
xlsxjars | 0.6.1 | XML | 3.99-0.14 |
xml2 | 1.3.4 | xopen | 1.0.0 |
xplain | 0.2.2 | xpose | 0.4.16 |
xpose.nlmixr2 | 0.4.0 | xpose4 | 4.7.2 |
xtable | 1.8-4 | xts | 0.13.1 |
XVector | 0.40.0 | xxIRT | 2.1.2 |
yaImpute | 1.0-33 | yaml | 2.3.7 |
yardstick | 1.2.0 | yesno | 0.1.2 |
yuima | 1.15.22 | yulab.utils | 0.0.6 |
zeallot | 0.1.0 | zic | 0.9.1 |
ZIM | 1.1.0 | ZINARp | 0.1.0 |
zip | 2.3.0 | zipfR | 0.6-70 |
zlibbioc | 1.46.0 | zoo | 1.8-12 |
ZRA | 0.2 |
RStudio Server
R: 4.3.0
rstudio-server: 2023.06.0+421
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
Set cairo as the default graphics backend; Installed flexdashboard and rticles to provide versatile R Markdown templates; Updated rstudio-server to 2023.06.0+421
This AMI provides thousands of R packages covering various domains such as data science, machine learning, Bayesian statistics, clinical trials, epidemiology, experimental design, psychometric methodology, analysis of pharmacokinetic data, medical image processing, teaching statistics, time series analysis, and natural language processing.
R packages (2291)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.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.1 | acp | 2.1 |
ACSWR | 1.0 | actuar | 3.3-2 |
ada | 2.0-5 | adaptivetau | 2.2-3 |
adaptMCMC | 1.4 | adaptr | 1.3.1 |
adaptsmoFMRI | 1.2 | adaptTest | 1.1 |
ade4 | 1.7-22 | ade4TkGUI | 0.3-1 |
adegenet | 2.1.10 | adegraphics | 1.0-18 |
adehabitatLT | 0.3.27 | adehabitatMA | 0.3.16 |
ADGofTest | 0.3 | adimpro | 0.9.5 |
admisc | 0.31 | AdMit | 2.1.9 |
AER | 1.2-10 | affy | 1.78.0 |
affyio | 1.70.0 | africamonitor | 0.2.3 |
agricolae | 1.3-5 | agricolaeplotr | 0.2.2 |
agridat | 1.21 | airports | 0.1.0 |
akima | 0.6-3.4 | alabama | 2022.4-1 |
AlgDesign | 1.2.1 | almanac | 1.0.0 |
alphavantager | 0.1.3 | ALTopt | 0.1.2 |
Amelia | 1.8.1 | ammiBayes | 1.0-1 |
AMR | 2.0.0 | AnaCoDa | 0.1.4.4 |
anacor | 1.1-4 | animation | 2.7 |
AnnotationDbi | 1.62.1 | anytime | 0.3.9 |
aod | 1.3.2 | AovBay | 0.1.0 |
ape | 5.7-1 | APFr | 1.0.2 |
aplot | 0.1.10 | approximator | 1.2-7 |
ARCensReg | 2.1 | ArchaeoChron | 0.1 |
ArchaeoPhases | 1.8 | ArDec | 2.1-1 |
ARDL | 0.2.3 | ardl.nardl | 1.2.3 |
arfima | 1.8-1 | arm | 1.13-1 |
aroma.apd | 0.6.1 | arrangements | 1.1.9 |
ars | 0.6 | ascii | 2.4 |
asd | 2.2 | ash | 1.0-15 |
ashr | 2.2-54 | askpass | 1.1 |
aspect | 1.0-6 | ASSA | 2.0 |
assertthat | 0.2.1 | astsa | 2.0 |
asymmetry | 2.0.4 | ata | 1.1.1 |
aTSA | 3.1.2 | attention | 0.3.0 |
AUC | 0.3.2 | audio | 0.1-10 |
automap | 1.1-9 | autostsm | 3.1.0 |
av | 0.8.3 | aweek | 1.0.3 |
aws | 2.5-1 | awsMethods | 1.1-1 |
BACCO | 2.0-9 | BACCT | 1.0 |
backports | 1.4.1 | baggr | 0.7.6 |
bain | 0.2.8 | BaM | 1.0.3 |
bama | 1.3.0 | bamdit | 3.4.0 |
bamlss | 1.1-9 | bang | 1.0.1 |
BANOVA | 1.2.1 | BART | 2.9.4 |
bartBMA | 1.0 | bartCause | 1.0-6 |
bartMachine | 1.3.3.1 | bartMachineJARs | 1.2.1 |
BAS | 1.6.4 | basad | 0.3.0 |
base64 | 2.0.1 | base64enc | 0.1-3 |
base64url | 1.4 | basicMCMCplots | 0.2.7 |
BaSkePro | 0.1.0 | BASS | 1.2.2 |
BatchExperiments | 1.4.3 | BatchJobs | 1.9 |
baycn | 1.2.0 | bayefdr | 0.2.1 |
bayes4psy | 1.2.11 | 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-8 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.2.0 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.4 |
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.1 |
BayesianNetwork | 0.1.5 | BayesianTools | 0.1.8 |
bayesImageS | 0.6-1 | BayesLCA | 1.9 |
bayesLife | 5.1-1 | bayeslincom | 1.3.0 |
BayesLN | 0.2.8 | BayesLogit | 2.1 |
bayesloglin | 1.0.1 | bayeslongitudinal | 0.1.0 |
bayesm | 3.1-5 | BayesMallows | 1.3.0 |
BayesMassBal | 1.1.0 | bayesmeta | 3.2 |
bayesmix | 0.7-6 | bayesnec | 2.1.0.3 |
bayesplot | 1.10.0 | bayesQR | 2.3 |
bayestestR | 0.13.1 | bayesTFR | 7.3-2 |
BayesTools | 0.2.13 | BayesTree | 0.3-1.4 |
BayesVarSel | 2.2.5 | BayesX | 0.3-1.1 |
BAYSTAR | 0.2-10 | BB | 2019.10-1 |
BBmisc | 1.13 | BCBCSF | 1.0-1 |
BCE | 2.2.0 | Bchron | 4.7.6 |
bcp | 4.0.3 | bcrm | 0.5.4 |
BDgraph | 2.72 | bdsmatrix | 1.3-6 |
BE | 0.2.4 | beadarray | 2.50.0 |
BeadDataPackR | 1.52.0 | beepr | 1.3 |
beeswarm | 0.4.0 | bentcableAR | 0.3.1 |
Bergm | 5.0.5 | BEST | 0.5.4 |
BetaBit | 2.1 | betafunctions | 1.8.1 |
betareg | 3.1-4 | BETS | 0.4.9 |
bets.covid19 | 1.0.0 | beyondWhittle | 1.1.3 |
bezier | 1.1.2 | bfast | 1.6.1 |
BGLR | 1.1.0 | BGVAR | 2.5.2 |
BH | 1.81.0-1 | BHH2 | 2016.05.31 |
BiasedUrn | 2.0.9 | biganalytics | 1.1.21 |
bigD | 0.2.0 | biglm | 0.9-2.1 |
bigmemory | 4.6.1 | bigmemory.sri | 0.1.6 |
bigsplines | 1.1-1 | bigtime | 0.2.1 |
BigVAR | 1.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | binom | 1.1-1.1 |
binomSamSize | 0.1-5 | binr | 1.1.1 |
binseqtest | 1.0.3 | Biobase | 2.60.0 |
BiocGenerics | 0.46.0 | BiocManager | 1.30.20 |
BiocParallel | 1.34.1 | BiocVersion | 3.17.1 |
bioinactivation | 1.2.3 | biomformat | 1.28.0 |
bioOED | 0.2.1 | Biostrings | 2.68.0 |
birtr | 1.0.0 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
biwavelet | 0.20.21 | bkmr | 0.2.2 |
blavaan | 0.4-7 | blob | 1.2.4 |
blocklength | 0.1.5 | blockrand | 1.5 |
blocksdesign | 4.9 | blockTools | 0.6.4 |
BLR | 1.6 | BMA | 3.18.17 |
bmixture | 1.7 | BMS | 0.3.5 |
BMTAR | 0.1.1 | bnlearn | 4.8.3 |
BNPTSclust | 2.0 | BNSP | 2.2.2 |
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 |
bookdown | 0.34 | Boom | 0.9.11 |
BoomSpikeSlab | 1.2.5 | bootnet | 1.5.1 |
BootPR | 0.70 | bootstrap | 2019.6 |
bootUR | 1.0.2 | bpca | 1.3-4 |
bqtl | 1.0-34 | BradleyTerry2 | 1.1-2 |
brainR | 1.6.0 | breakfast | 2.3 |
brew | 1.0-8 | brglm | 0.7.2 |
brglm2 | 0.9 | bridgesampling | 1.1-2 |
brio | 1.1.3 | brms | 2.19.0 |
Brobdingnag | 1.2-9 | broom | 1.0.4 |
bsamGP | 1.2.4 | bslib | 0.4.2 |
BsMD | 2020.4.30 | bspec | 1.6 |
bspmma | 0.1-2 | bssm | 2.0.1 |
BSSprep | 0.1 | bsts | 0.9.9 |
bsvars | 1.0.0 | BTLLasso | 0.1-11 |
BTM | 0.3.7 | bundesbank | 0.1-9 |
BVAR | 1.0.4 | bvartools | 0.2.1 |
ca | 0.71.1 | cabootcrs | 2.1.0 |
cachem | 1.0.8 | cacIRT | 1.4 |
CADFtest | 0.3-3 | caffsim | 0.2.2 |
Cairo | 1.6-0 | calculus | 1.0.1 |
calibrator | 1.2-8 | callr | 3.7.3 |
candisc | 0.8-6 | car | 3.1-2 |
CARBayes | 5.3 | CARBayesdata | 3.0 |
CARBayesST | 3.3.1 | carData | 3.0-5 |
caret | 6.0-94 | carfima | 2.0.2 |
caTools | 1.18.2 | catR | 3.17 |
causact | 0.4.2 | CausalImpact | 1.3.0 |
CAvariants | 5.8 | CDM | 8.2-6 |
cds | 1.0.3 | CellNOptR | 1.46.0 |
cellranger | 1.1.0 | chandwich | 1.1.5 |
changepoint | 2.2.4 | changepoint.geo | 1.0.1 |
changepoint.np | 1.0.5 | checkmate | 2.2.0 |
cherryblossom | 0.1.0 | chk | 0.8.1 |
choiceDes | 0.9-3 | CholWishart | 1.1.2 |
chron | 2.3-61 | cifti | 0.4.5 |
cinterpolate | 1.0.0 | CircSpaceTime | 0.9.0 |
CircStats | 0.2-6 | circular | 0.4-95 |
ciTools | 0.6.1 | classInt | 0.4-9 |
cli | 3.6.1 | clime | 0.5.0 |
clinDR | 2.3.5 | clinfun | 1.1.1 |
clinicalsignificance | 1.2.0 | clinPK | 0.11.1 |
clinsig | 1.2 | clipr | 0.8.0 |
clisymbols | 1.2.0 | clock | 0.7.0 |
clue | 0.3-64 | clustDRM | 0.1-0 |
clusterGeneration | 1.3.7 | clusterPower | 0.7.0 |
ClustVarLV | 2.1.1 | clv | 0.3-2.3 |
cmaes | 1.0-12 | CMLS | 1.0-1 |
cmprsk | 2.2-11 | cmrutils | 1.3.1 |
cNORM | 3.0.3 | CNORode | 1.42.0 |
coalescentMCMC | 0.4-4 | coalitions | 0.6.24 |
coarseDataTools | 0.6-6 | coconots | 1.1.1 |
cocor | 1.1-4 | cocorresp | 0.4-3 |
cocron | 1.0-1 | coda | 0.19-4 |
coin | 1.4-2 | cointReg | 0.2.0 |
collapse | 1.9.5 | collapsibleTree | 0.1.7 |
colorRamps | 2.3.1 | colorspace | 2.1-0 |
colourpicker | 1.2.0 | combinat | 0.0-8 |
CombinS | 1.1-1 | CommonJavaJars | 1.0-6 |
commonmark | 1.9.0 | compare | 0.2-6 |
CompQuadForm | 1.4.3 | conditionz | 0.1.0 |
conf.design | 2.0.0 | config | 0.3.1 |
conflicted | 1.2.0 | conquestr | 1.0.7 |
contactdata | 1.0.0 | contfrac | 1.1-12 |
cops | 1.3-1 | copula | 1.1-2 |
cordillera | 1.0-0 | coro | 1.0.3 |
corona | 0.3.0 | coronavirus | 0.4.1 |
corpcor | 1.6.10 | corpora | 0.5-1 |
corporaexplorer | 0.8.6 | corrgram | 1.14 |
corrplot | 0.92 | cosa | 2.1.0 |
costat | 2.4 | countrycode | 1.4.0 |
COVID19 | 3.0.3 | covid19.analytics | 2.1.3 |
covid19br | 0.1.5 | 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.1 | CPBayes | 1.1.0 |
cpk | 1.3-1 | cpp11 | 0.4.3 |
crayon | 1.5.2 | credentials | 1.3.2 |
crfsuite | 0.4.1 | CRM | 1.2.4 |
crmPack | 1.0.3 | crossdes | 1.1-2 |
Crossover | 0.1-21 | crosstalk | 1.2.0 |
crs | 0.15-37 | crul | 1.3 |
cSEM | 0.5.0 | csv | 0.6.2 |
ctbi | 2.0.5 | ctrdata | 1.13.1 |
CTT | 2.3.3 | CTTShiny | 0.1 |
ctv | 0.9-4 | cubature | 2.0.4.6 |
Cubist | 0.4.2.1 | curl | 5.0.0 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-11 |
d3Network | 0.5.2.1 | DAAG | 1.25.4 |
dae | 3.2.15 | daewr | 1.2-10 |
dagitty | 0.3-1 | DAKS | 2.1-3 |
DALEX | 2.4.3 | data.table | 1.14.8 |
data.tree | 1.0.0 | DataExplorer | 0.8.2 |
datapasta | 3.1.0 | dataseries | 0.2.0 |
datawizard | 0.7.1 | date | 1.2-42 |
datetimeutils | 0.6-1 | dbarts | 0.9-23 |
DBI | 1.1.3 | dbparser | 2.0.1 |
dbplyr | 2.3.2 | dbscan | 1.1-11 |
DChaos | 0.1-7 | dclone | 2.3-0 |
dcov | 0.1.1 | dCovTS | 1.3 |
dcurver | 0.9.2 | dde | 1.0.4 |
deBInfer | 0.4.4 | debugme | 1.1.0 |
deldir | 1.0-6 | deltaPlotR | 1.6 |
dendextend | 1.17.1 | densEstBayes | 1.0-2.2 |
DEoptim | 2.2-8 | DEoptimR | 1.0-13 |
depmix | 0.9.16 | depmixS4 | 1.5-0 |
DepthProc | 2.1.5 | Deriv | 4.1.3 |
desc | 1.4.2 | DescTools | 0.99.49 |
designmatch | 0.4.1 | desirability | 2.1 |
deSolve | 1.35 | desplot | 1.10 |
devtools | 2.4.5 | dexter | 1.2.2 |
dextergui | 0.2.6 | dexterMST | 0.9.3 |
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 | 2020.10-1 | dfped | 1.1 |
dfpk | 3.5.1 | DHARMa | 0.4.6 |
diagis | 0.2.2 | diagram | 1.6.5 |
DiagrammeR | 1.0.9 | dials | 1.2.0 |
DiceDesign | 1.9 | DiceEval | 1.5.1 |
DiceKriging | 1.6.0 | DiceView | 2.1-0 |
dichromat | 2.0-0.1 | DICOMread | 0.0.0.3 |
DIFboost | 0.3 | diffobj | 0.3.5 |
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.31 | DIMORA | 0.3.4 |
dimRed | 0.2.6 | dina | 2.0.0 |
dipsaus | 0.2.6 | diptest | 0.76-0 |
Dire | 2.1.1 | DIRECT | 1.0.1 |
directlabels | 2021.1.13 | dirichletprocess | 0.4.1 |
disaggR | 1.0.5 | discretization | 1.0-1.1 |
DistatisR | 1.1.1 | distcrete | 1.0.3 |
distfree.cr | 1.5.1 | distr | 2.9.2 |
distrEx | 2.9.0 | distributional | 0.3.2 |
DistributionUtils | 0.6-0 | distrom | 1.0.1 |
distrTeach | 2.9.0 | divest | 0.10.3 |
dLagM | 1.1.8 | dlm | 1.1-6 |
dlnm | 2.4.7 | dmri.tracking | 0.1.0 |
doBy | 4.6.16 | doc2vec | 0.2.0 |
docopulae | 0.4.0 | DoE.base | 1.2-2 |
DoE.MIParray | 1.0 | DoE.wrapper | 0.11 |
doMC | 1.3.8 | doParallel | 1.0.17 |
doRNG | 1.8.6 | DoseFinding | 1.0-4 |
doSNOW | 1.0.20 | dotCall64 | 1.0-2 |
downlit | 0.4.2 | downloader | 0.4 |
dparser | 1.3.1-10 | dplyr | 1.1.2 |
dqrng | 0.3.0 | dr4pl | 2.0.0 |
DRR | 0.0.4 | dsa | 1.0.12 |
DSAIDE | 0.9.3 | dse | 2020.2-1 |
DSL | 0.1-7 | DT | 0.27 |
DTAT | 0.3-6 | dti | 1.5.1 |
dtplyr | 1.3.1 | DTSg | 1.1.1 |
dtt | 0.1-2 | dtts | 0.1.0 |
dtw | 1.23-1 | dtwclust | 5.5.12 |
dygraphs | 1.1.1.6 | dyn | 0.2-9.6 |
dynamicTreeCut | 1.63-1 | dynaTree | 1.2-15 |
dynlm | 0.3-6 | e1071 | 1.7-13 |
earlyR | 0.0.5 | earth | 5.3.2 |
easypower | 1.0.1 | eba | 1.10-0 |
EbayesThresh | 1.4-12 | ebdbNet | 1.2.7 |
EBImage | 4.42.0 | EBMAforecast | 1.0.3 |
ecb | 0.4.2 | Ecdat | 0.4-2 |
Ecfun | 0.3-2 | ecm | 6.3.0 |
ecodist | 2.0.9 | ECOSolveR | 0.5.5 |
ecp | 3.1.4 | edfReader | 1.2.1 |
edgeR | 3.42.2 | edina | 0.1.1 |
edmdata | 1.2.0 | edstan | 1.0.6 |
eegkit | 1.0-4 | eegkitdata | 1.1 |
EFAutilities | 2.1.2 | effects | 4.2-2 |
EGAnet | 1.2.3 | egg | 0.4.5 |
egor | 1.23.3 | eha | 2.10.3 |
eigenmodel | 1.11 | elasticnet | 1.3 |
ellipse | 0.4.5 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | EMD | 1.5.9 |
emg | 1.0.9 | emmeans | 1.8.6 |
emulator | 1.2-21 | encode | 0.3.6 |
endtoend | 2.29 | EngrExpt | 0.1-8 |
enrichwith | 0.3.1 | ensembleBMA | 5.1.8 |
EntropyMCMC | 1.0.4 | EnvStats | 2.7.0 |
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.3.2 |
epinet | 2.1.8 | epiR | 2.0.61 |
EpiReport | 1.0.2 | episensr | 1.2.0 |
epitools | 0.5-10.1 | epitrix | 0.4.0 |
equate | 2.0.8 | equateIRT | 2.3.0 |
equateMultiple | 0.1.1 | equivalence | 0.7.2 |
era | 0.4.1 | ergm | 4.4.0 |
ergm.ego | 1.0.1 | eRm | 1.0-2 |
errum | 0.0.3 | esaBcv | 1.2.1.1 |
esemifar | 1.0.1 | EstCRM | 1.6 |
estimability | 1.4.1 | EstimateGroupNetwork | 0.3.1 |
ETLUtils | 1.5 | etm | 1.1.1 |
etrunct | 0.1 | evaluate | 0.21 |
evd | 2.3-6.1 | evgam | 1.0.0 |
ewoc | 0.3.0 | Exact | 3.2 |
exams | 2.4-0 | exdex | 1.2.1 |
experiment | 1.2.1 | expint | 0.1-8 |
expm | 0.999-7 | ExPosition | 2.8.23 |
expsmooth | 2.3 | extraDistr | 1.9.1 |
extrafont | 0.19 | extrafontdb | 1.0 |
ez | 4.4-0 | fable | 0.3.3 |
fable.prophet | 0.1.0 | fabletools | 0.3.3 |
FactoMineR | 2.8 | factorstochvol | 1.0.1 |
fanplot | 4.0.0 | fansi | 1.0.4 |
faoutlier | 0.7.6 | faraway | 1.0.8 |
farver | 2.1.1 | fastDummies | 1.6.3 |
fastGHQuad | 1.0.1 | fastICA | 1.2-3 |
fastmap | 1.1.1 | fastmatch | 1.1-3 |
FAVAR | 0.1.3 | fBasics | 4022.94 |
fda | 6.0.5 | fdaACF | 1.0.0 |
fdapace | 0.5.9 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
feasts | 0.3.1 | fechner | 1.0-3 |
FeedbackTS | 1.5 | ff | 4.0.9 |
fftwtools | 0.9-11 | fGarch | 4022.89 |
fields | 14.1 | filearray | 0.1.5 |
filehash | 2.4-5 | filelock | 1.0.2 |
finnts | 0.2.4 | FinTS | 0.4-6 |
fitdistrplus | 1.1-11 | FKF | 0.2.4 |
FKF.SP | 0.3.1 | flashClust | 1.01-2 |
flexclust | 1.4-1 | flexdashboard | 0.6.1 |
flexmix | 2.3-19 | flextable | 0.9.1 |
float | 0.3-1 | fma | 2.5 |
FMC | 1.0.1 | FME | 1.3.6.2 |
fmri | 1.9.11 | fnets | 0.1.2 |
FNN | 1.1.3.2 | fNonlinear | 4021.81 |
fontawesome | 0.5.1 | fontBitstreamVera | 0.1.1 |
fontLiberation | 0.1.0 | fontquiver | 0.2.1 |
forcats | 1.0.0 | foreach | 1.5.2 |
ForeCA | 0.2.7 | forecast | 8.21 |
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.1 | formatR | 1.14 |
formattable | 0.2.1 | Formula | 1.2-5 |
formula.tools | 1.7.1 | fourPNO | 1.1.0 |
fpc | 2.2-10 | fpcb | 0.1.0 |
fpp2 | 2.5 | fpp3 | 0.5 |
fracdiff | 1.5-2 | fredr | 2.1.0 |
freesurferformats | 0.1.17 | freqdom | 2.0.3 |
freqdom.fda | 1.0.1 | fresh | 0.2.0 |
FrF2 | 2.3 | FrF2.catlg128 | 1.2-2 |
fs | 1.6.2 | fslr | 2.25.2 |
fsMTS | 0.1.7 | fst | 0.9.8 |
fstcore | 0.9.14 | ftsa | 6.1 |
functional | 0.6 | funtimes | 9.1 |
furrr | 0.3.1 | futile.logger | 1.4.3 |
futile.options | 1.0.1 | future | 1.32.0 |
future.apply | 1.10.0 | GA | 3.2.3 |
GAD | 1.1.1 | gam | 1.22-2 |
gamlr | 1.13-8 | gamlss | 5.4-12 |
gamlss.data | 6.0-2 | gamlss.dist | 6.0-5 |
gap | 1.5-1 | gap.datasets | 0.0.5 |
gargle | 1.4.0 | garma | 0.9.11 |
GAS | 0.3.4 | gasmodel | 0.3.0 |
gaussquad | 1.0-3 | gbm | 2.1.8.1 |
gbutils | 0.5 | gclus | 1.3.2 |
gdata | 2.19.0 | GDINA | 2.9.3 |
gdpc | 1.1.3 | gdtools | 0.3.3 |
geepack | 1.3.9 | genalg | 0.2.1 |
gender | 0.6.0 | GeneralizedHyperbolic | 0.8-4 |
generics | 0.1.3 | genetics | 1.3.8.1.3 |
GenomeInfoDb | 1.36.0 | GenomeInfoDbData | 1.2.10 |
GenomicRanges | 1.52.0 | GenSA | 1.1.8 |
geojsonsf | 2.0.3 | geometries | 0.2.2 |
geometry | 0.4.7 | GEOquery | 2.68.0 |
geoR | 1.9-2 | geosphere | 1.5-18 |
geospt | 1.0-2 | gert | 1.9.2 |
gets | 0.37 | gfonts | 0.2.0 |
GGally | 2.1.2 | ggalt | 0.4.0 |
gganimate | 1.0.8 | ggdag | 0.2.9 |
ggdemetra | 0.2.5 | ggdendro | 0.1.23 |
ggdist | 3.3.0 | ggExtra | 0.10.0 |
ggforce | 0.4.1 | ggformula | 0.10.4 |
ggfun | 0.0.9 | gghalves | 0.1.4 |
ggmap | 3.0.2 | ggmcmc | 1.5.1.1 |
ggplot2 | 3.4.2 | ggplotify | 0.1.0 |
ggpubr | 0.6.0 | ggraph | 2.1.0 |
ggrepel | 0.9.3 | ggridges | 0.5.4 |
ggsci | 3.0.0 | ggseas | 0.5.4 |
ggsignif | 0.6.4 | ggstance | 0.3.6 |
ggtext | 0.1.2 | ggtree | 3.8.0 |
ggvis | 0.4.8 | gh | 1.4.0 |
Gifi | 0.4-0 | gifti | 0.8.0 |
GIGrvg | 0.8 | gimme | 0.7-13 |
git2r | 0.32.0 | gitcreds | 0.1.2 |
glarma | 1.6-0 | GlarmaVarSel | 1.0 |
glasso | 1.11 | glassoFast | 1.0 |
gld | 2.6.6 | GLMMRR | 0.5.0 |
glmnet | 4.1-7 | globals | 0.16.2 |
glpkAPI | 1.3.4 | glue | 1.6.2 |
GMDH | 1.6 | gmm | 1.7 |
gmodels | 2.18.1.1 | gmp | 0.7-1 |
gmvarkit | 2.0.6 | GNAR | 1.1.2 |
gnm | 1.1-2 | GO.db | 3.17.0 |
goftest | 1.2-3 | googledrive | 2.1.0 |
googlesheets4 | 1.1.0 | googleVis | 0.7.1 |
gower | 1.0.1 | GPArotation | 2023.3-1 |
GPCMlasso | 0.1-6 | GPfit | 1.0-8 |
gplots | 3.1.3 | gradethis | 0.2.12.9004 |
gRain | 1.3.13 | graph | 1.78.0 |
graphicalVAR | 0.3.1 | graphlayouts | 1.0.0 |
grates | 1.0.1 | gratis | 1.0.3 |
gravitas | 0.1.3 | gRbase | 1.8.9 |
greta | 0.4.3 | greybox | 1.0.8 |
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.2-0 | grnn | 0.1.0 |
GroupSeq | 1.4.2 | grplasso | 0.4-7 |
gsarima | 0.1-5 | gsDesign | 3.4.0 |
gSEM | 0.4.3.4 | gsignal | 0.3-5 |
gsl | 2.1-8 | gss | 2.2-4 |
gstat | 2.1-1 | gsubfn | 0.7 |
gt | 0.9.0 | gtable | 0.3.3 |
gtheory | 0.1.2 | gtools | 3.9.4 |
gtop | 0.2.0 | HaploSim | 1.8.4.2 |
hardhat | 1.3.0 | hash | 2.2.6.2 |
haven | 2.5.2 | hbsae | 1.2 |
hdf5r | 1.3.8 | HDInterval | 0.2.4 |
HDMT | 1.0.5 | hdrcde | 3.4 |
HDTSA | 1.0.2 | heatmaply | 1.4.2 |
heplots | 1.4-2 | here | 1.0.1 |
hett | 0.3-3 | hexbin | 1.28.3 |
hflights | 0.1 | HH | 3.1-49 |
hht | 2.1.6 | highcharter | 0.9.4 |
highlight | 0.5.1 | highr | 0.10 |
HIMA | 2.2.0 | HKRbook | 0.1.3 |
Hmisc | 5.1-0 | HMMpa | 1.0.1 |
hms | 1.1.3 | homals | 1.0-10 |
hommel | 1.6 | hpfilter | 1.0.1 |
HSAUR3 | 1.0-14 | htmlTable | 2.4.1 |
htmltools | 0.5.5 | htmlwidgets | 1.6.2 |
hts | 6.0.2 | httpcode | 0.3.0 |
httpuv | 1.6.10 | httr | 1.4.6 |
httr2 | 0.2.3 | hunspell | 3.0.2 |
hutils | 1.8.1 | hwwntest | 1.3.1 |
HydroMe | 2.0-1 | HyperbolicDist | 0.6-4 |
hypergeo | 1.2-13 | i2extras | 0.2.1 |
iarm | 0.4.3 | ibd | 1.5 |
iBreakDown | 2.0.1 | ica | 1.0-3 |
ICAOD | 1.0.1 | ICC | 2.4.0 |
iccbeta | 1.2.0 | Icens | 1.72.0 |
ICS | 1.3-1 | ICSNP | 1.1-1 |
ICtest | 0.3-5 | idefix | 1.0.3 |
IDPmisc | 1.1.20 | ids | 1.0.1 |
ifaTools | 0.23 | igraph | 1.4.2 |
igraphdata | 1.0.1 | illuminaio | 0.42.0 |
imbibe | 0.1.1 | immer | 1.4-15 |
impute | 1.74.1 | imputeTestbench | 3.0.3 |
imputeTS | 3.3 | IncDTW | 1.1.4.4 |
incidence | 1.7.3 | incidence2 | 2.0.0 |
ineq | 0.2-13 | infer | 1.0.4 |
influence.SEM | 2.3 | influenceR | 0.1.0.2 |
influxdbr | 0.14.2 | ingredients | 2.3.0 |
ini | 0.3.1 | inline | 0.3.19 |
insight | 0.19.1 | InspectChangepoint | 1.2 |
interp | 1.1-4 | intervals | 0.15.3 |
inum | 1.0-5 | invgamma | 1.1 |
ipred | 0.9-14 | IRanges | 2.34.0 |
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.3.1 | IsingSampler | 0.2.1 |
Iso | 0.0-18.1 | isoband | 0.2.7 |
ISOcodes | 2022.09.29 | IsoGene | 1.0-24 |
ISOweek | 0.6-2 | ISwR | 2.0-8 |
iterators | 1.0.14 | iterLap | 1.1-3 |
itertools | 0.1-3 | itsmr | 1.10 |
JADE | 2.0-3 | jalcal | 0.1.0 |
janeaustenr | 1.0.0 | janitor | 2.2.0 |
JavaGD | 0.6-5 | jiebaR | 0.11 |
jiebaRD | 0.1 | jjb | 0.1.1 |
JMdesign | 1.3 | jpeg | 0.1-10 |
jqr | 1.2.3 | jquerylib | 0.1.4 |
jrt | 1.1.2 | jsonify | 1.2.2 |
jsonlite | 1.8.4 | juicyjuice | 0.1.0 |
JuliaConnectoR | 1.1.1 | kableExtra | 1.3.4 |
kalmanfilter | 2.0.1 | kappaSize | 1.2 |
KEGGREST | 1.40.0 | Kendall | 2.2.1 |
kequate | 1.6.4 | keras | 2.11.1 |
kernelFactory | 0.3.0 | kernlab | 0.9-32 |
KFAS | 1.5.0 | klaR | 1.7-2 |
km.ci | 0.5-6 | knitr | 1.42 |
koRpus | 0.13-8 | ks | 1.14.0 |
kst | 0.5-4 | kutils | 1.70 |
kza | 4.1.0.1 | labdsv | 2.1-0 |
label.switching | 1.8 | labeling | 0.4.2 |
labelled | 2.11.0 | LaF | 0.8.4 |
lagged | 0.3.2 | Lahman | 11.0-0 |
LAM | 0.6-19 | lambda.r | 1.2.4 |
languageR | 1.5.0 | LaplacesDemon | 16.1.6 |
lars | 1.3 | lassoshooting | 0.1.5-1.1 |
latdiag | 0.3 | later | 1.3.1 |
latex2exp | 0.9.6 | latticeExtra | 0.6-30 |
lava | 1.7.2.1 | lavaan | 0.6-15 |
lavaan.survey | 1.1.3.1 | LAWBL | 1.5.0 |
lazyeval | 0.2.2 | lbfgsb3c | 2020-3.2 |
LCAvarsel | 1.1 | lcda | 0.3.1 |
lda | 1.4.2 | ldbounds | 2.0.1 |
leafem | 0.2.0 | leaflet | 2.1.2 |
leaflet.providers | 1.9.0 | leafpop | 0.1.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
learnr | 0.11.3.9000 | legion | 0.1.2 |
lgr | 0.4.4 | lgtdl | 1.1.5 |
lhs | 1.1.6 | libcoin | 1.0-9 |
lifecycle | 1.0.3 | LIM | 1.4.7 |
limma | 3.56.1 | limSolve | 1.5.6 |
linelist | 0.0.1 | linpk | 1.1.2 |
linprog | 0.9-4 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | lme4 | 1.1-33 |
lmerTest | 3.1-3 | lmm | 1.3 |
lmom | 2.9 | Lmoments | 1.3-1 |
lmtest | 0.9-40 | LNIRT | 0.5.1 |
locfit | 1.5-9.7 | locits | 1.7.6 |
locpol | 0.8.0 | logitnorm | 0.8.38 |
logspline | 2.1.19 | lokern | 1.1-10 |
lomb | 2.1.0 | longitudinalData | 2.4.5 |
longmemo | 1.1-2 | LongMemoryTS | 0.1.0 |
longpower | 1.0.24 | loo | 2.6.0 |
lordif | 0.3-3 | lotri | 0.4.3 |
lpacf | 1.0.1 | lpSolve | 5.6.18 |
lpSolveAPI | 5.5.2.0-17.9 | lsa | 0.73.3 |
lsl | 0.5.6 | lslx | 0.6.11 |
LSTS | 2.1 | LSWPlib | 0.1.0 |
ltm | 1.2-0 | ltsa | 1.4.6 |
lubridate | 1.9.2 | luz | 0.4.0 |
lvnet | 0.3.5 | lvplot | 0.2.1 |
lwgeom | 0.2-13 | m5 | 0.1.1 |
maat | 1.1.0 | magic | 1.6-1 |
magick | 2.7.4 | magrittr | 2.0.3 |
MAMS | 2.0.1 | manipulateWidget | 0.11.1 |
MAPA | 2.0.5 | mapdata | 2.3.1 |
mapproj | 1.2.11 | maps | 3.4.1 |
maptools | 1.1-6 | maptree | 1.4-8 |
mapview | 2.11.0 | mAr | 1.2-0 |
mar1s | 2.1.1 | markdown | 1.6 |
MARSS | 3.11.8 | MassSpecWavelet | 1.66.0 |
Matching | 4.10-8 | MatchIt | 4.5.3 |
mathjaxr | 1.6-0 | matlabr | 1.5.2 |
matrixcalc | 1.0-6 | MatrixExtra | 0.1.13 |
MatrixModels | 0.5-1 | matrixStats | 0.63.0 |
maxLik | 1.5-2 | MaxPro | 4.1-2 |
MBA | 0.1-0 | MBHdesign | 2.2.2 |
mboost | 2.9-7 | mbsts | 3.0 |
mc2d | 0.1-22 | MCAvariants | 2.6 |
mclcar | 0.2-0 | mclust | 6.0.0 |
mcmc | 0.9-7 | mcmcensemble | 3.0.0 |
MCMCglmm | 2.34 | MCMCpack | 1.6-3 |
mcmcse | 1.5-0 | MCMCvis | 0.16.0 |
Mcomp | 2.8 | mcompanion | 0.5.6 |
MCPMod | 1.0-10.1 | meboot | 1.4-9.3 |
Mediana | 1.0.8 | mediation | 4.5.0 |
MEIGOR | 1.33.0 | mem | 2.17 |
memapp | 2.15 | memisc | 0.99.31.6 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
meta | 6.2-1 | metadat | 1.2-0 |
metafor | 4.2-0 | metaplot | 0.8.3 |
metaSEM | 1.3.0 | metasens | 1.5-2 |
Metrics | 0.1.4 | metRology | 0.9-28-1 |
mFilter | 0.1-5 | mgm | 1.2-13 |
mi | 1.1 | mice | 3.15.0 |
microbenchmark | 1.4.10 | microsamplingDesign | 1.0.8 |
MIIVsem | 0.5.8 | mime | 0.12 |
MinEDfind | 0.1.3 | minimalRSD | 1.0.0 |
minimaxdesign | 0.1.5 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-3 | minqa | 1.2.5 |
mirt | 1.38.1 | mirtCAT | 1.12.2 |
misc3d | 0.9-1 | miscTools | 0.6-28 |
missForest | 1.5 | missMDA | 1.18 |
mitools | 2.4 | mix | 1.0-11 |
mixAR | 0.22.7 | MixedPsy | 1.1.0 |
mixexp | 1.2.7 | mixOmics | 6.24.0 |
mixsqp | 0.3-48 | mixtools | 2.0.0 |
mkssd | 1.2 | mlapi | 0.1.1 |
mlbench | 2.1-3.1 | MLCIRTwithin | 2.1.1 |
MLDS | 0.4.901 | mlmRev | 1.0-8 |
mlogit | 1.1-1 | mlogitBMA | 0.1-7 |
mlr3 | 0.16.0 | mlr3measures | 0.5.0 |
mlr3misc | 0.11.0 | mlVAR | 0.5.1 |
mma | 10.6-1 | mmand | 1.6.3 |
mmrm | 0.2.2 | mnormt | 2.1.1 |
MNP | 3.1-4 | modeldata | 1.1.0 |
modelenv | 0.1.1 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.11 | modeltime | 1.2.6 |
modeltime.ensemble | 1.0.3 | modeltime.resample | 0.2.3 |
modeltools | 0.2-23 | moderndive | 0.5.5 |
mokken | 3.0.6 | mombf | 3.3.1 |
moments | 0.14.1 | mondate | 0.10.02 |
monmlp | 1.1.5 | Morpho | 2.11 |
mosaic | 1.8.4.2 | mosaicCore | 0.9.2.1 |
mosaicData | 0.20.3 | movMF | 0.2-7 |
MPDiR | 0.1-20 | MplusAutomation | 1.1.0 |
mpmi | 0.43.2 | mpt | 0.8-0 |
MPTinR | 1.14.1 | MPV | 1.62 |
mratios | 1.4.2 | mrf | 0.1.6 |
mrgsolve | 1.0.9 | mritc | 0.5-3 |
mscstexta4r | 0.1.2 | mscsweblm4r | 0.1.2 |
msm | 1.7 | msos | 1.2.0 |
mssm | 0.1.6 | mstate | 0.3.2 |
MSwM | 1.5 | MTS | 1.2.1 |
mtsdi | 0.3.5 | mudfold | 1.1.21 |
multcomp | 1.4-23 | multcompView | 0.1-9 |
multDM | 1.1.4 | multicool | 0.1-12 |
MultiGlarmaVarSel | 1.0 | MultiLCIRT | 2.11 |
MultipleBubbles | 0.2.0 | multiplex | 2.9.9 |
multipol | 1.0-7 | multitaper | 1.0-15 |
multiway | 1.0-6 | multtest | 2.56.0 |
MuMIn | 1.47.5 | munfold | 0.3.5 |
munsell | 0.5.0 | mvLSW | 1.2.5 |
mvMORPH | 1.1.7 | mvnfast | 0.2.8 |
mvQuad | 1.0-6 | mvtnorm | 1.1-3 |
mxkssd | 1.2 | n1qn1 | 6.0.1-11 |
NADA | 1.6-1.1 | nanotime | 0.3.7 |
nardl | 0.1.6 | natserv | 1.0.0 |
nbTransmission | 1.1.2 | ncappc | 0.3.0 |
ncar | 0.4.5 | ncvreg | 3.14.1 |
nets | 0.9.1 | network | 1.18.1 |
NetworkChange | 0.8 | NetworkComparisonTest | 2.2.1 |
networkD3 | 0.4 | networkDynamic | 0.11.3 |
networkLite | 1.0.5 | NetworkToolbox | 1.4.2 |
networktools | 1.5.0 | networktree | 1.0.1 |
neuralnet | 1.44.2 | neurobase | 1.32.3 |
neuroim | 0.0.6 | neuRosim | 0.2-13 |
nFactors | 2.4.1.1 | nhanesA | 0.7.3 |
nifti.io | 1.0.0 | nimble | 1.0.0 |
NISTnls | 0.9-13 | NlcOptim | 0.6 |
nleqslv | 3.3.4 | NlinTS | 1.4.5 |
nlmeVPC | 2.6 | nlmixr2 | 2.0.9 |
nlmixr2data | 2.0.7 | nlmixr2est | 2.1.5 |
nlmixr2extra | 2.0.8 | nlmixr2plot | 2.0.7 |
nlmixr2rpt | 0.1.0 | nloptr | 2.0.3 |
NLP | 0.2-1 | nls2 | 0.3-3 |
nlsem | 0.8 | nlstools | 2.0-0 |
nlts | 1.0-2 | nmw | 0.1.5 |
nnfor | 0.9.8 | nnls | 1.4 |
nodbi | 0.9.4 | NonCompart | 0.6.0 |
nonlinearTseries | 0.2.12 | nonmemica | 1.0.1 |
nonnest2 | 0.5-5 | nortest | 1.0-4 |
nosoi | 1.1.0 | np | 0.60-17 |
nppbib | 1.2-0 | nsarfima | 0.2.0.0 |
nsprcomp | 0.5.1-2 | numbers | 0.8-5 |
numDeriv | 2016.8-1.1 | o2geosocial | 1.1.0 |
oai | 0.4.0 | OBsMD | 6.1 |
occ | 1.1 | odbc | 1.3.4 |
odin | 1.2.4 | odpc | 2.0.5 |
odr | 1.4.2 | officer | 0.6.2 |
ohoegdm | 0.1.0 | onbrand | 1.0.2 |
onlineforecast | 1.0.1 | OPDOE | 1.0-10 |
openEBGM | 0.8.3 | openintro | 2.4.0 |
OpenMx | 2.21.8 | openNLP | 0.2-7 |
openNLPdata | 1.5.3-4 | openssl | 2.0.6 |
openxlsx | 4.2.5.2 | opera | 1.2.0 |
operator.tools | 1.6.3 | optextras | 2019-12.4 |
OptGS | 1.1.1 | OptimalDesign | 1.0.1 |
OptimaRegion | 1.2 | optimParallel | 1.0-2 |
optimx | 2022-4.30 | optiscale | 1.2.2 |
ORCME | 2.0.2 | ordinal | 2022.11-16 |
ore | 1.7.3.1 | ORIClust | 1.0-2 |
oro.dicom | 0.5.3 | oro.nifti | 0.11.4 |
oro.pet | 0.2.7 | orthopolynom | 1.0-6.1 |
osDesign | 1.8 | osqp | 0.6.0.8 |
otsad | 0.2.0 | otsfeatures | 1.0.0 |
outbreaker2 | 1.1.3 | outbreaks | 1.9.0 |
overlapping | 2.1 | padr | 0.6.2 |
PairedData | 1.1.1 | pairwise | 0.6.1-0 |
paleoTS | 0.5.3 | palmerpenguins | 0.1.1 |
pander | 0.6.5 | paradox | 0.11.1 |
parallelly | 1.35.0 | paran | 1.5.2 |
parsedate | 1.3.1 | parsnip | 1.1.0 |
partitions | 1.10-7 | partsm | 1.1-3 |
party | 1.3-13 | partykit | 1.2-20 |
pastecs | 1.3.21 | patchwork | 1.1.2 |
pbapply | 1.7-0 | PBIBD | 1.3 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
pbmcapply | 1.5.1 | pbs | 1.1 |
PBSddesolve | 1.13.3 | PBSmapping | 2.73.2 |
pbv | 0.4-22 | PCA4TS | 0.1 |
pcaMethods | 1.92.0 | pcaPP | 2.0-3 |
pcdpca | 0.4 | pcFactorStan | 1.5.3 |
pcIRT | 0.2.4 | PCMRS | 0.1-4 |
pcts | 0.15.5 | pdc | 1.0.3 |
pdfCluster | 1.0-4 | pdfetch | 0.2.8 |
pdftools | 3.3.3 | pdist | 1.2.1 |
pedigree | 1.4.2 | penalized | 0.9-52 |
performance | 0.10.3 | PerformanceAnalytics | 2.0.4 |
permute | 0.9-7 | PGM2 | 1.0-1 |
ph2bayes | 0.0.2 | ph2bye | 0.1.4 |
phangorn | 2.11.1 | pheatmap | 1.0.12 |
phonics | 1.3.10 | phyloseq | 1.44.0 |
phytools | 1.5-1 | picasso | 1.3.1 |
pid | 0.50 | piecewiseSEM | 2.3.0 |
pillar | 1.9.0 | pingr | 2.0.2 |
pins | 1.1.0 | pipe.design | 0.5.1 |
pipeR | 0.6.1.3 | pixmap | 0.4-12 |
PK | 1.3-5 | PKconverter | 1.5 |
pkdata | 0.1.0 | pkgbuild | 1.4.0 |
pkgconfig | 2.0.3 | pkgdown | 2.0.7 |
pkgfilecache | 0.1.4 | pkgload | 1.3.2 |
PKNCA | 0.10.2 | pkr | 0.1.3 |
pks | 0.5-0 | PlackettLuce | 0.4.2 |
plgp | 1.1-12 | plink | 1.5-1 |
plm | 2.6-3 | PLMIX | 2.1.1 |
PLmixed | 0.1.6 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.1 |
plotMCMC | 2.0.1 | plotmo | 3.6.2 |
plotrix | 3.8-2 | plotSEMM | 2.4 |
pls | 2.8-2 | plyr | 1.8.8 |
pmr | 1.2.5.1 | pmxTools | 1.3 |
png | 0.1-8 | poisbinom | 1.0.1 |
poLCA | 1.6.0.1 | polspline | 1.1.22 |
polyclip | 1.10-4 | polycor | 0.8-1 |
polyCub | 0.8.1 | polynom | 1.4-1 |
PolynomF | 2.0-5 | polyreg | 0.8.0 |
pomp | 5.1 | PopED | 0.6.0 |
popEpi | 0.4.10 | posterior | 1.4.1 |
powerbydesign | 1.0.5 | powerGWASinteraction | 1.1.3 |
powerSurvEpi | 0.1.3 | PowerTOST | 1.5-4 |
PowerUpR | 1.1.0 | PP | 0.6.3-11 |
ppcor | 1.1 | prabclus | 2.3-2 |
pracma | 2.4.2 | praise | 1.0.0 |
PreciseSums | 0.6 | prefmod | 0.8-35 |
preprocessCore | 1.62.1 | presize | 0.3.7 |
prettyGraphs | 2.1.6 | prettyunits | 1.1.1 |
prevalence | 0.4.1 | princurve | 2.1.6 |
pROC | 1.18.0 | processx | 3.8.1 |
prodlim | 2023.03.31 | ProfessR | 2.4-1 |
profileModel | 0.6.1 | profileR | 0.3-5 |
profoc | 1.1.1 | profvis | 0.3.8 |
progress | 1.2.2 | progressr | 0.13.0 |
proj4 | 1.0-12 | promises | 1.2.0.1 |
prophet | 1.0 | PROsetta | 0.4.1 |
proto | 1.0.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | ps | 1.7.5 |
pscl | 1.5.5.1 | psd | 2.1.1 |
PSF | 0.5 | pso | 1.0.4 |
pspline | 1.0-19 | psy | 1.2 |
psych | 2.3.3 | psychomix | 1.1-8 |
psychonetrics | 0.10 | psychotools | 0.7-2 |
psychotree | 0.16-0 | psychTools | 2.3.3 |
psyphy | 0.2-3 | PTAk | 2.0.0 |
PTSR | 0.1.2 | ptw | 1.9-16 |
purrr | 1.0.1 | pwr | 1.3-0 |
PwrGSD | 2.3.6 | pwrRasch | 0.1-2 |
qap | 0.1-2 | Qardl | 0.1.1 |
qcv | 1.0 | qdap | 2.4.6 |
qdapDictionaries | 1.0.7 | qdapRegex | 0.7.5 |
qdapTools | 1.3.7 | qgam | 1.3.4 |
qgraph | 1.9.5 | qicharts2 | 0.7.2 |
qMRI | 1.2 | qpdf | 1.3.2 |
qpNCA | 1.1.6 | qs | 0.25.5 |
qtl | 1.60 | quadprog | 1.5-8 |
Quandl | 2.11.0 | quanteda | 3.3.1 |
quantmod | 0.4.22 | quantreg | 5.95 |
quantspec | 1.2-3 | questionr | 0.7.8 |
quickpsy | 0.1.5.1 | qvalue | 2.32.0 |
qvcalc | 1.0.2 | R.cache | 0.16.0 |
R.devices | 2.17.1 | R.filesets | 2.15.0 |
R.huge | 0.9.0 | R.matlab | 3.7.0 |
R.methodsS3 | 1.8.2 | R.oo | 1.25.0 |
R.rsp | 0.45.0 | R.utils | 2.12.2 |
R0 | 1.2-10 | r2d3 | 0.2.6 |
R2HTML | 2.3.3 | R2jags | 0.7-1 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R6 | 2.5.1 | radarchart | 0.3.1 |
ragg | 1.2.5 | rainbow | 3.7 |
rAmCharts | 2.1.15 | ramcmc | 0.1.2 |
ramps | 0.6.18 | randomForest | 4.7-1.1 |
randomForestSRC | 3.2.2 | randomizeR | 3.0.1 |
randomLCA | 1.1-2 | randtoolbox | 2.0.4 |
ranger | 0.15.1 | rankdist | 1.1.4 |
RANN | 2.6.1 | rapidjsonr | 1.2.0 |
RApiSerialize | 0.1.2 | rappdirs | 0.3.3 |
rARPACK | 0.11-0 | RaschSampler | 0.8-8 |
raster | 3.6-20 | rasterImage | 0.4.0 |
ratelimitr | 0.4.1 | raveio | 0.1.0 |
ravetools | 0.1.1 | Rbeast | 0.9.9 |
rbenchmark | 1.0.0 | RBGL | 1.76.0 |
rbibutils | 2.2.13 | rbmi | 1.2.3 |
Rcatch22 | 0.2.1 | rcdd | 1.5-2 |
Rcgmin | 2022-4.30 | rcmdcheck | 1.4.0 |
Rcmdr | 2.8-0 | RcmdrMisc | 2.7-2 |
RcmdrPlugin.DoE | 0.12-4 | RcmdrPlugin.temis | 0.7.10 |
RColorBrewer | 1.1-3 | Rcpp | 1.0.10 |
RcppAnnoy | 0.0.20 | RcppArmadillo | 0.12.2.0.0 |
RcppCCTZ | 0.2.12 | RcppDate | 0.0.3 |
RcppDE | 0.1.7 | RcppDist | 0.1.1 |
RcppEigen | 0.3.3.9.3 | RcppGSL | 0.3.13 |
RcppParallel | 5.1.7 | RcppProgress | 0.4.2 |
RcppRoll | 0.3.0 | RcppThread | 2.1.3 |
RcppTN | 0.2-2 | RcppTOML | 0.2.2 |
RcppZiggurat | 0.1.6 | Rcsdp | 0.1.57.5 |
RCurl | 1.98-1.12 | rdbnomics | 0.6.4 |
Rdpack | 2.4 | Rdsdp | 1.0.5.2.1 |
re2 | 0.1.2 | reactable | 0.4.4 |
reactR | 0.4.4 | readabs | 0.4.13 |
readODS | 1.8.0 | readr | 2.1.4 |
readstata13 | 0.10.1 | readxl | 1.4.2 |
REBayes | 2.51 | recipes | 1.0.6 |
registry | 0.5-1 | regress | 1.3-21 |
regsem | 1.9.3 | regspec | 2.6 |
regtools | 1.7.0 | relations | 0.6-13 |
relimp | 1.0-5 | rematch | 1.0.1 |
rematch2 | 2.1.2 | remotes | 2.4.2 |
rentrez | 1.2.3 | renv | 0.17.3 |
replicateBE | 1.1.3 | reportr | 1.3.0 |
reprex | 2.0.2 | REQS | 0.8-13 |
resampledata | 0.3.1 | resde | 1.1 |
reshape | 0.8.9 | reshape2 | 1.4.4 |
reticulate | 1.28 | revdbayes | 1.5.1 |
rex | 1.2.1 | Rfast | 2.0.7 |
Rfast2 | 0.1.4 | rgen | 0.0.1 |
RGENERATE | 1.3.7 | rgenoud | 5.9-0.3 |
rgl | 1.1.3 | Rglpk | 0.6-5 |
RgoogleMaps | 1.4.5.3 | RGraphics | 3.0-2 |
Rgraphviz | 2.44.0 | rhandsontable | 0.3.8 |
rhdf5 | 2.44.0 | rhdf5filters | 1.12.1 |
Rhdf5lib | 1.22.0 | rhosa | 0.2.0 |
RhpcBLASctl | 0.23-42 | riingo | 0.3.1 |
ring | 1.0.4 | RInside | 0.2.18 |
rintrojs | 0.3.2 | Rirt | 0.0.2 |
riskCommunicator | 1.0.1 | ritis | 1.0.0 |
rjags | 4-14 | rJava | 1.0-6 |
RJDBC | 0.2-10 | RJDemetra | 0.2.2 |
rje | 1.12.1 | rjson | 0.2.21 |
RJSONIO | 1.3-1.8 | RKEA | 0.0-6 |
RKEAjars | 5.0-4 | rlang | 1.1.1 |
rle | 0.9.2 | rlecuyer | 0.3-7 |
Rlgt | 0.1-4 | Rlibeemd | 1.4.2 |
rlist | 0.4.6.2 | rmarkdown | 2.21 |
RMAWGEN | 1.3.7 | rmeta | 3.0 |
Rmpfr | 0.9-2 | rms | 6.7-0 |
rmutil | 1.1.10 | RMySQL | 0.10.25 |
rncl | 0.8.7 | rngtools | 1.5.2 |
rngWELL | 0.10-9 | RNifti | 1.5.0 |
RNiftyReg | 2.7.1 | rnn | 1.9.0 |
robfilter | 4.1.3 | RobKF | 1.0.2 |
RoBMA | 2.3.2 | robustbase | 0.95-1 |
rockchalk | 1.8.157 | ROCR | 1.0-11 |
rodd | 0.2-1 | roll | 1.1.6 |
Rook | 1.2 | ROOPSD | 0.3.8 |
rootSolve | 1.8.2.3 | roptim | 0.1.6 |
rotl | 3.0.14 | roxygen2 | 7.2.3 |
rpact | 3.3.4 | rpanel | 1.1-5.2 |
rpart.plot | 3.1.1 | rpf | 1.0.11 |
RPMG | 2.2-3 | RPostgres | 1.4.5 |
RPostgreSQL | 0.7-5 | RPPairwiseDesign | 1.0 |
rprojroot | 2.0.3 | rrcov | 1.7-3 |
rredlist | 0.7.1 | rrum | 0.2.0 |
rsample | 1.1.1 | rsdmx | 0.6-2 |
RSEIS | 4.1-4 | rsem | 0.5.0 |
Rsfar | 0.0.1 | RSGHB | 1.2.2 |
rsm | 2.10.3 | Rsolnp | 1.16 |
rsparse | 0.5.1 | RSpectra | 0.16-1 |
RSQLite | 2.3.1 | Rssa | 1.0.5 |
rstan | 2.21.8 | rstanarm | 2.21.4 |
rstantools | 2.3.1 | rstatix | 0.7.2 |
rstiefel | 1.0.1 | rstudioapi | 0.14 |
rsurface | 1.1.0 | RSurveillance | 0.2.1 |
rTensor | 1.4.8 | rtf | 0.4-14.1 |
RTFA | 0.1.0 | rticles | 0.25 |
RTransferEntropy | 0.2.21 | rts | 1.1-8 |
Rtsne | 0.16 | Rttf2pt1 | 1.3.12 |
rucrdtw | 0.1.4 | rugarch | 1.4-9 |
ruimtehol | 0.3.1 | rules | 1.0.2 |
RUnit | 0.4.32 | runjags | 2.2.1-7 |
runner | 0.4.3 | runstats | 1.1.0 |
Runuran | 0.38 | rust | 1.4.0 |
Rvcg | 0.22.1 | rversions | 2.1.2 |
rvest | 1.0.3 | Rvmmin | 2018-4.17.1 |
Rwave | 2.6-5 | RWeka | 0.4-46 |
RWekajars | 3.9.3-2 | rxode2 | 2.0.13 |
rxode2et | 2.0.10 | rxode2ll | 2.0.11 |
rxode2parse | 2.0.16 | rxode2random | 2.0.11 |
s2 | 1.1.3 | S4Vectors | 0.38.1 |
samadb | 0.2.6 | samplesize | 0.2-4 |
sandwich | 3.0-2 | sarima | 0.9.1 |
sass | 0.4.6 | satellite | 1.0.4 |
sazedR | 2.0.2 | sbgcop | 0.980 |
scales | 1.2.1 | scatterplot3d | 0.3-44 |
scoringRules | 1.1.1 | scoringutils | 1.1.0 |
ScottKnott | 1.3-0 | scs | 3.2.4 |
sde | 2.0.18 | sealasso | 0.1-3 |
seas | 0.6-0 | season | 0.3.15 |
seasonal | 1.9.0 | seasonalview | 0.3 |
seastests | 0.15.4 | seer | 1.1.8 |
segmented | 1.6-4 | selectr | 0.4-2 |
sem | 3.1-15 | semds | 0.9-6 |
SemiPar | 1.0-4.2 | semPlot | 1.1.6 |
SEMsens | 1.5.5 | semTools | 0.5-6 |
semtree | 0.9.18 | sendmailR | 1.4-0 |
SensoMineR | 1.26 | sentencepiece | 0.2.3 |
separationplot | 1.4 | seqDesign | 1.2 |
seqinr | 4.2-30 | seriation | 1.4.2 |
servr | 0.27 | sessioninfo | 1.2.2 |
setartree | 0.1.0 | setRNG | 2022.4-1 |
sets | 1.0-24 | sf | 1.0-12 |
sFFLHD | 0.1.2 | sfheaders | 0.4.2 |
sfsmisc | 1.1-15 | sftime | 0.2-0 |
sgd | 1.1.1 | sgeostat | 1.0-27 |
shades | 1.4.0 | shape | 1.4.6 |
shapefiles | 0.7.2 | shapes | 1.2.7 |
shiny | 1.7.4 | shiny.semantic | 0.4.3 |
shinyAce | 0.4.2 | shinybrms | 1.8.0 |
shinyBS | 0.61.1 | shinycssloaders | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.0 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinytest | 1.5.3 | shinythemes | 1.2.0 |
shinyWidgets | 0.7.6 | showimage | 1.0.0 |
sigmoid | 1.4.0 | signal | 0.7-7 |
Sim.DiffProc | 4.8 | simcdm | 0.1.1 |
SimComp | 3.3 | simex | 1.8 |
simglm | 0.8.9 | SimInf | 9.5.0 |
simrel | 2.1.0 | simsem | 0.5-16 |
sirt | 3.12-66 | sitmo | 2.0.2 |
SkewHyperbolic | 0.4-0 | skmeans | 0.2-15 |
skpr | 1.3.0 | slam | 0.1-50 |
SLBDD | 0.0.4 | sleekts | 1.0.2 |
Sleuth2 | 2.0-5 | Sleuth3 | 1.0-3 |
SLHD | 2.1-1 | slider | 0.3.0 |
sm | 2.2-5.7.1 | smacof | 2.1-5 |
smooth | 3.2.0 | smoother | 1.1 |
smoots | 1.1.3 | smovie | 1.1.4 |
SMPracticals | 1.4-3 | sn | 2.1.1 |
sna | 2.7-1 | snakecase | 0.11.0 |
snow | 0.4-4 | SnowballC | 0.7.1 |
snowfall | 1.84-6.2 | SOAs | 1.3 |
soc.ca | 0.8.0 | socialmixr | 0.2.0 |
sodium | 1.2.1 | solrium | 1.2.0 |
sourcetools | 0.1.7-1 | sp | 1.6-0 |
sp23design | 0.9-1 | spacetime | 1.3-0 |
spam | 2.9-1 | spant | 2.12.0 |
sparseDFM | 1.0 | SparseFactorAnalysis | 1.0 |
SparseM | 1.81 | sparsevar | 0.1.0 |
SpatialEpi | 1.2.8 | SpatialExtremes | 2.1-0 |
spatialreg | 1.2-8 | spatstat | 3.0-5 |
spatstat.data | 3.0-1 | spatstat.explore | 3.1-0 |
spatstat.geom | 3.1-0 | spatstat.linnet | 3.1-0 |
spatstat.model | 3.2-3 | spatstat.random | 3.1-4 |
spatstat.sparse | 3.0-1 | spatstat.utils | 3.0-2 |
spBayes | 0.4-6 | spd | 2.0-1 |
spData | 2.2.2 | spdep | 1.2-8 |
spec | 0.1.7 | spectral | 2.0 |
speff2trial | 1.0.5 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-19 | spINAR | 0.1.0 |
splancs | 2.01-43 | splines2 | 0.4.8 |
spTimer | 3.3.2 | sqldf | 0.4-11 |
SQUAREM | 2021.1 | srvyr | 1.2.0 |
ssanv | 1.1 | ssgraph | 1.15 |
ssize.fdr | 1.3 | ssizeRNA | 1.3.2 |
ssMousetrack | 1.1.6 | stabledist | 0.7-1 |
stabs | 0.6-4 | StanHeaders | 2.21.0-7 |
stars | 0.6-1 | STARTS | 1.3-8 |
startupmsg | 0.9.6 | statespacer | 0.5.0 |
statmod | 1.5.0 | statnet.common | 4.8.0 |
StatRank | 0.0.6 | steadyICA | 1.0 |
STFTS | 0.1.0 | stinepack | 1.4 |
stlplus | 0.5.1 | stm | 1.3.6 |
stochvol | 3.2.1 | stopwords | 2.3 |
stR | 0.5 | stringdist | 0.9.10 |
stringfish | 0.15.7 | stringi | 1.7.12 |
stringr | 1.5.0 | strucchange | 1.5-3 |
strucchangeRcpp | 1.5-3-1.0.4 | StructuralDecompose | 0.1.1 |
styler | 1.9.1 | subplex | 1.8 |
subscore | 3.3 | sufficientForecasting | 0.1.0 |
sugrrants | 0.2.8 | SuperLearner | 2.0-28 |
superml | 0.5.6 | SuppDists | 1.1-9.7 |
support.CEs | 0.5-0 | survcomp | 1.50.0 |
surveillance | 1.21.1 | survey | 4.2-1 |
survivalROC | 1.0.3.1 | survPresmooth | 1.1-11 |
svars | 1.3.11 | svd | 0.5.4 |
svglite | 2.1.1 | svs | 3.0.0 |
svUnit | 1.0.6 | swephR | 0.3.1 |
swirl | 2.4.5 | swirlify | 0.5.3 |
sylly | 0.1-6 | sym.arma | 1.0 |
symengine | 0.2.2 | symmoments | 1.2.1 |
synthesis | 1.2.3 | sys | 3.4.1 |
systemfit | 1.1-30 | systemfonts | 1.0.4 |
tables | 0.9.17 | tabnet | 0.3.0 |
TAM | 4.1-4 | targets | 1.1.3 |
tau | 0.0-24 | taxize | 0.9.100 |
tbrf | 0.1.5 | tcltk2 | 1.2-11 |
Tcomp | 1.0.1 | tdigest | 0.4.1 |
TeachingDemos | 2.12 | tempdisagg | 1.1 |
tensor | 1.5 | tensorA | 0.36.2 |
tensorflow | 2.11.0 | TensorPreAve | 1.1.0 |
tensorTS | 1.0.1 | TEQR | 6.0-0 |
tergm | 4.1.1 | terra | 1.7-29 |
tesseract | 5.1.0 | testcorr | 0.2.0 |
TestDataImputation | 2.3 | TestDesign | 1.5.1 |
testit | 0.13 | TestScorer | 1.7.2 |
testthat | 3.1.8 | TexExamRandomizer | 1.2.3 |
texreg | 1.38.6 | text2vec | 0.6.3 |
textcat | 1.0-8 | textir | 2.0-5 |
textplot | 0.2.2 | textrank | 0.3.1 |
textreuse | 0.1.5 | textshaping | 0.3.6 |
textTinyR | 1.1.7 | tfarima | 0.3.2 |
tfautograph | 0.3.2 | tfplot | 2021.6-1 |
tframe | 2015.12-1.1 | tfruns | 1.5.1 |
tgp | 2.4-21 | TH.data | 1.1-2 |
theft | 0.4.2.4 | thief | 0.3 |
ThreeArmedTrials | 1.0-4 | threeBrain | 0.2.9 |
ThreeGroups | 0.21 | threejs | 0.3.3 |
ThreeWay | 1.1.3 | thurstonianIRT | 0.12.1 |
tibble | 3.2.1 | tictoc | 1.2 |
Tides | 2.1 | tidygraph | 1.2.3 |
tidyLPA | 1.1.0 | tidymodels | 1.1.0 |
tidyquant | 1.0.7 | tidyr | 1.3.0 |
tidyselect | 1.2.0 | tidytext | 0.4.1 |
tidytree | 0.4.2 | tidyverse | 2.0.0 |
tiff | 0.1-11 | timechange | 0.2.0 |
timeDate | 4022.108 | timeSeries | 4030.106 |
timeseriesdb | 1.0.0-1.1.2 | timetk | 2.8.3 |
timsac | 1.3.8 | tinytex | 0.45 |
tis | 1.39 | tkrplot | 0.0-27 |
tm | 0.7-11 | tm.plugin.alceste | 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 | TMB | 1.9.4 |
tmvnsim | 1.0-2 | tmvtnorm | 1.5 |
tokenizers | 0.3.0 | tokenizers.bpe | 0.1.1 |
toOrdinal | 1.3-0.0 | topicdoc | 0.1.1 |
topicmodels | 0.2-14 | topicmodels.etm | 0.1.0 |
torch | 0.10.0 | torchaudio | 0.3.1.9000 |
torchdatasets | 0.3.0 | torchvision | 0.5.1 |
tpr | 0.3-3 | tractor.base | 3.3.5.1 |
TransPhylo | 1.4.5 | trapezoid | 2.0-2 |
tree | 1.0-43 | TreeBUGS | 1.5.0 |
treeio | 1.24.0 | trend | 1.1.5 |
trendeval | 0.1.0 | trending | 0.1.0 |
TrialSize | 1.4 | triangle | 1.0 |
triebeard | 0.4.1 | trimcluster | 0.1-5 |
tripack | 1.3-9.1 | TripleR | 1.5.4 |
TruncatedNormal | 2.2.2 | truncdist | 1.0-2 |
truncnorm | 1.0-9 | truncreg | 0.2-5 |
trust | 0.1-8 | TSA | 1.3.1 |
TSANN | 0.1.0 | tsbox | 0.4.1 |
tsBSS | 1.0.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 |
TSEntropies | 0.9 | tseries | 0.10-54 |
tseriesChaos | 0.1-13.1 | tseriesEntropy | 0.6-0 |
tseriesTARMA | 0.3-2 | tsfeatures | 1.1 |
tsfknn | 0.5.1 | tsibble | 1.1.3 |
tsibbledata | 0.4.1 | tsibbletalk | 0.1.0 |
tsintermittent | 1.10 | tsiR | 0.4.3 |
TSLSTM | 0.1.0 | tsModel | 0.6-1 |
tsoutliers | 0.6-8 | TSP | 1.2-4 |
tsPI | 1.0.3 | TSrepr | 1.1.0 |
tsrobprep | 0.3.2 | tssim | 0.1.7 |
TSstudio | 0.1.6 | TSTutorial | 1.2.6 |
tsutils | 0.9.3 | tswge | 2.1.0 |
TTR | 0.24.3 | tune | 1.1.1 |
tweenr | 2.0.2 | tzdb | 0.4.0 |
ubiquity | 2.0.0 | ucminf | 1.1-4.1 |
UComp | 4.0.2 | udpipe | 0.8.11 |
ugatsdb | 0.2.3 | uGMAR | 3.4.4 |
UnifiedDoseFinding | 0.1.10 | units | 0.8-2 |
unrepx | 1.0-2 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
uroot | 2.1-2 | usdata | 0.2.0 |
usethis | 2.1.6 | utf8 | 1.2.3 |
uuid | 1.1-0 | uwot | 0.1.14 |
V8 | 4.3.0 | VAR.etp | 1.0 |
VARDetect | 0.1.6 | vars | 1.5-9 |
VARshrink | 0.3.1 | VCA | 1.4.5 |
vcd | 1.4-11 | vcdExtra | 0.8-4 |
vctrs | 0.6.2 | vdg | 1.2.2 |
VedicDateTime | 0.1.4 | vegan | 2.6-4 |
VennDiagram | 1.7.3 | venneuler | 1.1-3 |
VGAM | 1.1-8 | VGAMdata | 1.1-8 |
vglmer | 1.0.3 | viridis | 0.6.3 |
viridisLite | 0.4.2 | visNetwork | 2.1.2 |
visualize | 4.4.0 | vpc | 1.2.2 |
vroom | 1.6.3 | waiter | 0.2.5 |
waldo | 0.5.1 | warp | 0.2.0 |
WaveletComp | 1.1 | wavelets | 0.3-0.2 |
waveslim | 1.8.4 | wavethresh | 4.7.2 |
wavScalogram | 1.1.2 | wCorr | 1.9.6 |
webdriver | 1.0.6 | webshot | 0.5.4 |
weights | 1.0.4 | whisker | 0.4.1 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
WikipediR | 1.5.0 | wikitaxa | 0.4.0 |
withr | 2.5.0 | wk | 0.7.3 |
wktmo | 1.0.5 | wnl | 0.7.3 |
wooldridge | 1.4-3 | word2vec | 0.3.4 |
wordcloud | 2.6 | wordnet | 0.1-16 |
workflows | 1.1.3 | workflowsets | 1.0.1 |
worrms | 0.4.2 | wpp2017 | 1.2-3 |
wpp2019 | 1.1-1 | WrightMap | 1.3 |
writexl | 1.4.2 | x12 | 1.10.3 |
x13binary | 1.1.57-3 | xfun | 0.39 |
xgboost | 1.7.5.1 | xgxr | 1.1.2 |
XLConnect | 1.0.7 | xlsx | 0.6.5 |
xlsxjars | 0.6.1 | XML | 3.99-0.14 |
xml2 | 1.3.4 | xopen | 1.0.0 |
xplain | 0.2.2 | xpose | 0.4.16 |
xpose.nlmixr2 | 0.4.0 | xpose4 | 4.7.2 |
xtable | 1.8-4 | xts | 0.13.1 |
XVector | 0.40.0 | xxIRT | 2.1.2 |
yaImpute | 1.0-33 | yaml | 2.3.7 |
yardstick | 1.2.0 | yesno | 0.1.2 |
yuima | 1.15.22 | yulab.utils | 0.0.6 |
zeallot | 0.1.0 | zic | 0.9.1 |
ZIM | 1.1.0 | ZINARp | 0.1.0 |
zip | 2.3.0 | zipfR | 0.6-70 |
zlibbioc | 1.46.0 | zoo | 1.8-12 |
ZRA | 0.2 |
RStudio Server
R: 4.3.0
rstudio-server: 2023.03.0
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
Installed additional R packages covering various domains such as Bayesian statistics, clinical trials, epidemiology, experimental design, psychometric methodology, analysis of pharmacokinetic data, medical image processing, teaching statistics, time series analysis, and natural language processing.
R packages (2289)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.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.1 | acp | 2.1 |
ACSWR | 1.0 | actuar | 3.3-2 |
ada | 2.0-5 | adaptivetau | 2.2-3 |
adaptMCMC | 1.4 | adaptr | 1.3.1 |
adaptsmoFMRI | 1.2 | adaptTest | 1.1 |
ade4 | 1.7-22 | ade4TkGUI | 0.3-1 |
adegenet | 2.1.10 | adegraphics | 1.0-18 |
adehabitatLT | 0.3.27 | adehabitatMA | 0.3.16 |
ADGofTest | 0.3 | adimpro | 0.9.5 |
admisc | 0.31 | AdMit | 2.1.9 |
AER | 1.2-10 | affy | 1.78.0 |
affyio | 1.70.0 | africamonitor | 0.2.3 |
agricolae | 1.3-5 | agricolaeplotr | 0.2.2 |
agridat | 1.21 | airports | 0.1.0 |
akima | 0.6-3.4 | alabama | 2022.4-1 |
AlgDesign | 1.2.1 | almanac | 1.0.0 |
alphavantager | 0.1.3 | ALTopt | 0.1.2 |
Amelia | 1.8.1 | ammiBayes | 1.0-1 |
AMR | 2.0.0 | AnaCoDa | 0.1.4.4 |
anacor | 1.1-4 | animation | 2.7 |
AnnotationDbi | 1.62.1 | anytime | 0.3.9 |
aod | 1.3.2 | AovBay | 0.1.0 |
ape | 5.7-1 | APFr | 1.0.2 |
aplot | 0.1.10 | approximator | 1.2-7 |
ARCensReg | 2.1 | ArchaeoChron | 0.1 |
ArchaeoPhases | 1.8 | ArDec | 2.1-1 |
ARDL | 0.2.3 | ardl.nardl | 1.2.3 |
arfima | 1.8-1 | arm | 1.13-1 |
aroma.apd | 0.6.1 | arrangements | 1.1.9 |
ars | 0.6 | ascii | 2.4 |
asd | 2.2 | ash | 1.0-15 |
ashr | 2.2-54 | askpass | 1.1 |
aspect | 1.0-6 | ASSA | 2.0 |
assertthat | 0.2.1 | astsa | 2.0 |
asymmetry | 2.0.4 | ata | 1.1.1 |
aTSA | 3.1.2 | attention | 0.3.0 |
AUC | 0.3.2 | audio | 0.1-10 |
automap | 1.1-9 | autostsm | 3.1.0 |
av | 0.8.3 | aweek | 1.0.3 |
aws | 2.5-1 | awsMethods | 1.1-1 |
BACCO | 2.0-9 | BACCT | 1.0 |
backports | 1.4.1 | baggr | 0.7.6 |
bain | 0.2.8 | BaM | 1.0.3 |
bama | 1.3.0 | bamdit | 3.4.0 |
bamlss | 1.1-9 | bang | 1.0.1 |
BANOVA | 1.2.1 | BART | 2.9.4 |
bartBMA | 1.0 | bartCause | 1.0-6 |
bartMachine | 1.3.3.1 | bartMachineJARs | 1.2.1 |
BAS | 1.6.4 | basad | 0.3.0 |
base64 | 2.0.1 | base64enc | 0.1-3 |
base64url | 1.4 | basicMCMCplots | 0.2.7 |
BaSkePro | 0.1.0 | BASS | 1.2.2 |
BatchExperiments | 1.4.3 | BatchJobs | 1.9 |
baycn | 1.2.0 | bayefdr | 0.2.1 |
bayes4psy | 1.2.11 | 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-8 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.2.0 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.4 |
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.1 |
BayesianNetwork | 0.1.5 | BayesianTools | 0.1.8 |
bayesImageS | 0.6-1 | BayesLCA | 1.9 |
bayesLife | 5.1-1 | bayeslincom | 1.3.0 |
BayesLN | 0.2.8 | BayesLogit | 2.1 |
bayesloglin | 1.0.1 | bayeslongitudinal | 0.1.0 |
bayesm | 3.1-5 | BayesMallows | 1.3.0 |
BayesMassBal | 1.1.0 | bayesmeta | 3.2 |
bayesmix | 0.7-6 | bayesnec | 2.1.0.3 |
bayesplot | 1.10.0 | bayesQR | 2.3 |
bayestestR | 0.13.1 | bayesTFR | 7.3-2 |
BayesTools | 0.2.13 | BayesTree | 0.3-1.4 |
BayesVarSel | 2.2.5 | BayesX | 0.3-1.1 |
BAYSTAR | 0.2-10 | BB | 2019.10-1 |
BBmisc | 1.13 | BCBCSF | 1.0-1 |
BCE | 2.2.0 | Bchron | 4.7.6 |
bcp | 4.0.3 | bcrm | 0.5.4 |
BDgraph | 2.72 | bdsmatrix | 1.3-6 |
BE | 0.2.4 | beadarray | 2.50.0 |
BeadDataPackR | 1.52.0 | beepr | 1.3 |
beeswarm | 0.4.0 | bentcableAR | 0.3.1 |
Bergm | 5.0.5 | BEST | 0.5.4 |
BetaBit | 2.1 | betafunctions | 1.8.1 |
betareg | 3.1-4 | BETS | 0.4.9 |
bets.covid19 | 1.0.0 | beyondWhittle | 1.1.3 |
bezier | 1.1.2 | bfast | 1.6.1 |
BGLR | 1.1.0 | BGVAR | 2.5.2 |
BH | 1.81.0-1 | BHH2 | 2016.05.31 |
BiasedUrn | 2.0.9 | biganalytics | 1.1.21 |
bigD | 0.2.0 | biglm | 0.9-2.1 |
bigmemory | 4.6.1 | bigmemory.sri | 0.1.6 |
bigsplines | 1.1-1 | bigtime | 0.2.1 |
BigVAR | 1.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | binom | 1.1-1.1 |
binomSamSize | 0.1-5 | binr | 1.1.1 |
binseqtest | 1.0.3 | Biobase | 2.60.0 |
BiocGenerics | 0.46.0 | BiocManager | 1.30.20 |
BiocParallel | 1.34.1 | BiocVersion | 3.17.1 |
bioinactivation | 1.2.3 | biomformat | 1.28.0 |
bioOED | 0.2.1 | Biostrings | 2.68.0 |
birtr | 1.0.0 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
biwavelet | 0.20.21 | bkmr | 0.2.2 |
blavaan | 0.4-7 | blob | 1.2.4 |
blocklength | 0.1.5 | blockrand | 1.5 |
blocksdesign | 4.9 | blockTools | 0.6.4 |
BLR | 1.6 | BMA | 3.18.17 |
bmixture | 1.7 | BMS | 0.3.5 |
BMTAR | 0.1.1 | bnlearn | 4.8.3 |
BNPTSclust | 2.0 | BNSP | 2.2.2 |
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 |
bookdown | 0.34 | Boom | 0.9.11 |
BoomSpikeSlab | 1.2.5 | bootnet | 1.5.1 |
BootPR | 0.70 | bootstrap | 2019.6 |
bootUR | 1.0.2 | bpca | 1.3-4 |
bqtl | 1.0-34 | BradleyTerry2 | 1.1-2 |
brainR | 1.6.0 | breakfast | 2.3 |
brew | 1.0-8 | brglm | 0.7.2 |
brglm2 | 0.9 | bridgesampling | 1.1-2 |
brio | 1.1.3 | brms | 2.19.0 |
Brobdingnag | 1.2-9 | broom | 1.0.4 |
bsamGP | 1.2.4 | bslib | 0.4.2 |
BsMD | 2020.4.30 | bspec | 1.6 |
bspmma | 0.1-2 | bssm | 2.0.1 |
BSSprep | 0.1 | bsts | 0.9.9 |
bsvars | 1.0.0 | BTLLasso | 0.1-11 |
BTM | 0.3.7 | bundesbank | 0.1-9 |
BVAR | 1.0.4 | bvartools | 0.2.1 |
ca | 0.71.1 | cabootcrs | 2.1.0 |
cachem | 1.0.8 | cacIRT | 1.4 |
CADFtest | 0.3-3 | caffsim | 0.2.2 |
Cairo | 1.6-0 | calculus | 1.0.1 |
calibrator | 1.2-8 | callr | 3.7.3 |
candisc | 0.8-6 | car | 3.1-2 |
CARBayes | 5.3 | CARBayesdata | 3.0 |
CARBayesST | 3.3.1 | carData | 3.0-5 |
caret | 6.0-94 | carfima | 2.0.2 |
caTools | 1.18.2 | catR | 3.17 |
causact | 0.4.2 | CausalImpact | 1.3.0 |
CAvariants | 5.8 | CDM | 8.2-6 |
cds | 1.0.3 | CellNOptR | 1.46.0 |
cellranger | 1.1.0 | chandwich | 1.1.5 |
changepoint | 2.2.4 | changepoint.geo | 1.0.1 |
changepoint.np | 1.0.5 | checkmate | 2.2.0 |
cherryblossom | 0.1.0 | chk | 0.8.1 |
choiceDes | 0.9-3 | CholWishart | 1.1.2 |
chron | 2.3-61 | cifti | 0.4.5 |
cinterpolate | 1.0.0 | CircSpaceTime | 0.9.0 |
CircStats | 0.2-6 | circular | 0.4-95 |
ciTools | 0.6.1 | classInt | 0.4-9 |
cli | 3.6.1 | clime | 0.5.0 |
clinDR | 2.3.5 | clinfun | 1.1.1 |
clinicalsignificance | 1.2.0 | clinPK | 0.11.1 |
clinsig | 1.2 | clipr | 0.8.0 |
clisymbols | 1.2.0 | clock | 0.7.0 |
clue | 0.3-64 | clustDRM | 0.1-0 |
clusterGeneration | 1.3.7 | clusterPower | 0.7.0 |
ClustVarLV | 2.1.1 | clv | 0.3-2.3 |
cmaes | 1.0-12 | CMLS | 1.0-1 |
cmprsk | 2.2-11 | cmrutils | 1.3.1 |
cNORM | 3.0.3 | CNORode | 1.42.0 |
coalescentMCMC | 0.4-4 | coalitions | 0.6.24 |
coarseDataTools | 0.6-6 | coconots | 1.1.1 |
cocor | 1.1-4 | cocorresp | 0.4-3 |
cocron | 1.0-1 | coda | 0.19-4 |
coin | 1.4-2 | cointReg | 0.2.0 |
collapse | 1.9.5 | collapsibleTree | 0.1.7 |
colorRamps | 2.3.1 | colorspace | 2.1-0 |
colourpicker | 1.2.0 | combinat | 0.0-8 |
CombinS | 1.1-1 | CommonJavaJars | 1.0-6 |
commonmark | 1.9.0 | compare | 0.2-6 |
CompQuadForm | 1.4.3 | conditionz | 0.1.0 |
conf.design | 2.0.0 | config | 0.3.1 |
conflicted | 1.2.0 | conquestr | 1.0.7 |
contactdata | 1.0.0 | contfrac | 1.1-12 |
cops | 1.3-1 | copula | 1.1-2 |
cordillera | 1.0-0 | coro | 1.0.3 |
corona | 0.3.0 | coronavirus | 0.4.1 |
corpcor | 1.6.10 | corpora | 0.5-1 |
corporaexplorer | 0.8.6 | corrgram | 1.14 |
corrplot | 0.92 | cosa | 2.1.0 |
costat | 2.4 | countrycode | 1.4.0 |
COVID19 | 3.0.3 | covid19.analytics | 2.1.3 |
covid19br | 0.1.5 | 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.1 | CPBayes | 1.1.0 |
cpk | 1.3-1 | cpp11 | 0.4.3 |
crayon | 1.5.2 | credentials | 1.3.2 |
crfsuite | 0.4.1 | CRM | 1.2.4 |
crmPack | 1.0.3 | crossdes | 1.1-2 |
Crossover | 0.1-21 | crosstalk | 1.2.0 |
crs | 0.15-37 | crul | 1.3 |
cSEM | 0.5.0 | csv | 0.6.2 |
ctbi | 2.0.5 | ctrdata | 1.13.1 |
CTT | 2.3.3 | CTTShiny | 0.1 |
ctv | 0.9-4 | cubature | 2.0.4.6 |
Cubist | 0.4.2.1 | curl | 5.0.0 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-11 |
d3Network | 0.5.2.1 | DAAG | 1.25.4 |
dae | 3.2.15 | daewr | 1.2-10 |
dagitty | 0.3-1 | DAKS | 2.1-3 |
DALEX | 2.4.3 | data.table | 1.14.8 |
data.tree | 1.0.0 | DataExplorer | 0.8.2 |
datapasta | 3.1.0 | dataseries | 0.2.0 |
datawizard | 0.7.1 | date | 1.2-42 |
datetimeutils | 0.6-1 | dbarts | 0.9-23 |
DBI | 1.1.3 | dbparser | 2.0.1 |
dbplyr | 2.3.2 | dbscan | 1.1-11 |
DChaos | 0.1-7 | dclone | 2.3-0 |
dcov | 0.1.1 | dCovTS | 1.3 |
dcurver | 0.9.2 | dde | 1.0.4 |
deBInfer | 0.4.4 | debugme | 1.1.0 |
deldir | 1.0-6 | deltaPlotR | 1.6 |
dendextend | 1.17.1 | densEstBayes | 1.0-2.2 |
DEoptim | 2.2-8 | DEoptimR | 1.0-13 |
depmix | 0.9.16 | depmixS4 | 1.5-0 |
DepthProc | 2.1.5 | Deriv | 4.1.3 |
desc | 1.4.2 | DescTools | 0.99.49 |
designmatch | 0.4.1 | desirability | 2.1 |
deSolve | 1.35 | desplot | 1.10 |
devtools | 2.4.5 | dexter | 1.2.2 |
dextergui | 0.2.6 | dexterMST | 0.9.3 |
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 | 2020.10-1 | dfped | 1.1 |
dfpk | 3.5.1 | DHARMa | 0.4.6 |
diagis | 0.2.2 | diagram | 1.6.5 |
DiagrammeR | 1.0.9 | dials | 1.2.0 |
DiceDesign | 1.9 | DiceEval | 1.5.1 |
DiceKriging | 1.6.0 | DiceView | 2.1-0 |
dichromat | 2.0-0.1 | DICOMread | 0.0.0.3 |
DIFboost | 0.3 | diffobj | 0.3.5 |
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.31 | DIMORA | 0.3.4 |
dimRed | 0.2.6 | dina | 2.0.0 |
dipsaus | 0.2.6 | diptest | 0.76-0 |
Dire | 2.1.1 | DIRECT | 1.0.1 |
directlabels | 2021.1.13 | dirichletprocess | 0.4.1 |
disaggR | 1.0.5 | discretization | 1.0-1.1 |
DistatisR | 1.1.1 | distcrete | 1.0.3 |
distfree.cr | 1.5.1 | distr | 2.9.2 |
distrEx | 2.9.0 | distributional | 0.3.2 |
DistributionUtils | 0.6-0 | distrom | 1.0.1 |
distrTeach | 2.9.0 | divest | 0.10.3 |
dLagM | 1.1.8 | dlm | 1.1-6 |
dlnm | 2.4.7 | dmri.tracking | 0.1.0 |
doBy | 4.6.16 | doc2vec | 0.2.0 |
docopulae | 0.4.0 | DoE.base | 1.2-2 |
DoE.MIParray | 1.0 | DoE.wrapper | 0.11 |
doMC | 1.3.8 | doParallel | 1.0.17 |
doRNG | 1.8.6 | DoseFinding | 1.0-4 |
doSNOW | 1.0.20 | dotCall64 | 1.0-2 |
downlit | 0.4.2 | downloader | 0.4 |
dparser | 1.3.1-10 | dplyr | 1.1.2 |
dqrng | 0.3.0 | dr4pl | 2.0.0 |
DRR | 0.0.4 | dsa | 1.0.12 |
DSAIDE | 0.9.3 | dse | 2020.2-1 |
DSL | 0.1-7 | DT | 0.27 |
DTAT | 0.3-6 | dti | 1.5.1 |
dtplyr | 1.3.1 | DTSg | 1.1.1 |
dtt | 0.1-2 | dtts | 0.1.0 |
dtw | 1.23-1 | dtwclust | 5.5.12 |
dygraphs | 1.1.1.6 | dyn | 0.2-9.6 |
dynamicTreeCut | 1.63-1 | dynaTree | 1.2-15 |
dynlm | 0.3-6 | e1071 | 1.7-13 |
earlyR | 0.0.5 | earth | 5.3.2 |
easypower | 1.0.1 | eba | 1.10-0 |
EbayesThresh | 1.4-12 | ebdbNet | 1.2.7 |
EBImage | 4.42.0 | EBMAforecast | 1.0.3 |
ecb | 0.4.2 | Ecdat | 0.4-2 |
Ecfun | 0.3-2 | ecm | 6.3.0 |
ecodist | 2.0.9 | ECOSolveR | 0.5.5 |
ecp | 3.1.4 | edfReader | 1.2.1 |
edgeR | 3.42.2 | edina | 0.1.1 |
edmdata | 1.2.0 | edstan | 1.0.6 |
eegkit | 1.0-4 | eegkitdata | 1.1 |
EFAutilities | 2.1.2 | effects | 4.2-2 |
EGAnet | 1.2.3 | egg | 0.4.5 |
egor | 1.23.3 | eha | 2.10.3 |
eigenmodel | 1.11 | elasticnet | 1.3 |
ellipse | 0.4.5 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | EMD | 1.5.9 |
emg | 1.0.9 | emmeans | 1.8.6 |
emulator | 1.2-21 | encode | 0.3.6 |
endtoend | 2.29 | EngrExpt | 0.1-8 |
enrichwith | 0.3.1 | ensembleBMA | 5.1.8 |
EntropyMCMC | 1.0.4 | EnvStats | 2.7.0 |
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.3.2 |
epinet | 2.1.8 | epiR | 2.0.61 |
EpiReport | 1.0.2 | episensr | 1.2.0 |
epitools | 0.5-10.1 | epitrix | 0.4.0 |
equate | 2.0.8 | equateIRT | 2.3.0 |
equateMultiple | 0.1.1 | equivalence | 0.7.2 |
era | 0.4.1 | ergm | 4.4.0 |
ergm.ego | 1.0.1 | eRm | 1.0-2 |
errum | 0.0.3 | esaBcv | 1.2.1.1 |
esemifar | 1.0.1 | EstCRM | 1.6 |
estimability | 1.4.1 | EstimateGroupNetwork | 0.3.1 |
ETLUtils | 1.5 | etm | 1.1.1 |
etrunct | 0.1 | evaluate | 0.21 |
evd | 2.3-6.1 | evgam | 1.0.0 |
ewoc | 0.3.0 | Exact | 3.2 |
exams | 2.4-0 | exdex | 1.2.1 |
experiment | 1.2.1 | expint | 0.1-8 |
expm | 0.999-7 | ExPosition | 2.8.23 |
expsmooth | 2.3 | extraDistr | 1.9.1 |
extrafont | 0.19 | extrafontdb | 1.0 |
ez | 4.4-0 | fable | 0.3.3 |
fable.prophet | 0.1.0 | fabletools | 0.3.3 |
FactoMineR | 2.8 | factorstochvol | 1.0.1 |
fanplot | 4.0.0 | fansi | 1.0.4 |
faoutlier | 0.7.6 | faraway | 1.0.8 |
farver | 2.1.1 | fastDummies | 1.6.3 |
fastGHQuad | 1.0.1 | fastICA | 1.2-3 |
fastmap | 1.1.1 | fastmatch | 1.1-3 |
FAVAR | 0.1.3 | fBasics | 4022.94 |
fda | 6.0.5 | fdaACF | 1.0.0 |
fdapace | 0.5.9 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
feasts | 0.3.1 | fechner | 1.0-3 |
FeedbackTS | 1.5 | ff | 4.0.9 |
fftwtools | 0.9-11 | fGarch | 4022.89 |
fields | 14.1 | filearray | 0.1.5 |
filehash | 2.4-5 | filelock | 1.0.2 |
finnts | 0.2.4 | FinTS | 0.4-6 |
fitdistrplus | 1.1-11 | FKF | 0.2.4 |
FKF.SP | 0.3.1 | flashClust | 1.01-2 |
flexclust | 1.4-1 | flexmix | 2.3-19 |
flextable | 0.9.1 | float | 0.3-1 |
fma | 2.5 | FMC | 1.0.1 |
FME | 1.3.6.2 | fmri | 1.9.11 |
fnets | 0.1.2 | FNN | 1.1.3.2 |
fNonlinear | 4021.81 | fontawesome | 0.5.1 |
fontBitstreamVera | 0.1.1 | fontLiberation | 0.1.0 |
fontquiver | 0.2.1 | forcats | 1.0.0 |
foreach | 1.5.2 | ForeCA | 0.2.7 |
forecast | 8.21 | 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.1 |
formatR | 1.14 | formattable | 0.2.1 |
Formula | 1.2-5 | formula.tools | 1.7.1 |
fourPNO | 1.1.0 | fpc | 2.2-10 |
fpcb | 0.1.0 | fpp2 | 2.5 |
fpp3 | 0.5 | fracdiff | 1.5-2 |
fredr | 2.1.0 | freesurferformats | 0.1.17 |
freqdom | 2.0.3 | freqdom.fda | 1.0.1 |
fresh | 0.2.0 | FrF2 | 2.3 |
FrF2.catlg128 | 1.2-2 | fs | 1.6.2 |
fslr | 2.25.2 | fsMTS | 0.1.7 |
fst | 0.9.8 | fstcore | 0.9.14 |
ftsa | 6.1 | functional | 0.6 |
funtimes | 9.1 | furrr | 0.3.1 |
futile.logger | 1.4.3 | futile.options | 1.0.1 |
future | 1.32.0 | future.apply | 1.10.0 |
GA | 3.2.3 | GAD | 1.1.1 |
gam | 1.22-2 | gamlr | 1.13-8 |
gamlss | 5.4-12 | gamlss.data | 6.0-2 |
gamlss.dist | 6.0-5 | gap | 1.5-1 |
gap.datasets | 0.0.5 | gargle | 1.4.0 |
garma | 0.9.11 | GAS | 0.3.4 |
gasmodel | 0.3.0 | gaussquad | 1.0-3 |
gbm | 2.1.8.1 | gbutils | 0.5 |
gclus | 1.3.2 | gdata | 2.19.0 |
GDINA | 2.9.3 | gdpc | 1.1.3 |
gdtools | 0.3.3 | geepack | 1.3.9 |
genalg | 0.2.1 | gender | 0.6.0 |
GeneralizedHyperbolic | 0.8-4 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | GenomeInfoDb | 1.36.0 |
GenomeInfoDbData | 1.2.10 | GenomicRanges | 1.52.0 |
GenSA | 1.1.8 | geojsonsf | 2.0.3 |
geometries | 0.2.2 | geometry | 0.4.7 |
GEOquery | 2.68.0 | geoR | 1.9-2 |
geosphere | 1.5-18 | geospt | 1.0-2 |
gert | 1.9.2 | gets | 0.37 |
gfonts | 0.2.0 | GGally | 2.1.2 |
ggalt | 0.4.0 | gganimate | 1.0.8 |
ggdag | 0.2.9 | ggdemetra | 0.2.5 |
ggdendro | 0.1.23 | ggdist | 3.3.0 |
ggExtra | 0.10.0 | ggforce | 0.4.1 |
ggformula | 0.10.4 | ggfun | 0.0.9 |
gghalves | 0.1.4 | ggmap | 3.0.2 |
ggmcmc | 1.5.1.1 | ggplot2 | 3.4.2 |
ggplotify | 0.1.0 | ggpubr | 0.6.0 |
ggraph | 2.1.0 | ggrepel | 0.9.3 |
ggridges | 0.5.4 | ggsci | 3.0.0 |
ggseas | 0.5.4 | ggsignif | 0.6.4 |
ggstance | 0.3.6 | ggtext | 0.1.2 |
ggtree | 3.8.0 | ggvis | 0.4.8 |
gh | 1.4.0 | Gifi | 0.4-0 |
gifti | 0.8.0 | GIGrvg | 0.8 |
gimme | 0.7-13 | git2r | 0.32.0 |
gitcreds | 0.1.2 | glarma | 1.6-0 |
GlarmaVarSel | 1.0 | glasso | 1.11 |
glassoFast | 1.0 | gld | 2.6.6 |
GLMMRR | 0.5.0 | glmnet | 4.1-7 |
globals | 0.16.2 | glpkAPI | 1.3.4 |
glue | 1.6.2 | GMDH | 1.6 |
gmm | 1.7 | gmodels | 2.18.1.1 |
gmp | 0.7-1 | gmvarkit | 2.0.6 |
GNAR | 1.1.2 | gnm | 1.1-2 |
GO.db | 3.17.0 | goftest | 1.2-3 |
googledrive | 2.1.0 | googlesheets4 | 1.1.0 |
googleVis | 0.7.1 | gower | 1.0.1 |
GPArotation | 2023.3-1 | GPCMlasso | 0.1-6 |
GPfit | 1.0-8 | gplots | 3.1.3 |
gradethis | 0.2.12.9004 | gRain | 1.3.13 |
graph | 1.78.0 | graphicalVAR | 0.3.1 |
graphlayouts | 1.0.0 | grates | 1.0.1 |
gratis | 1.0.3 | gravitas | 0.1.3 |
gRbase | 1.8.9 | greta | 0.4.3 |
greybox | 1.0.8 | 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.2-0 |
grnn | 0.1.0 | GroupSeq | 1.4.2 |
grplasso | 0.4-7 | gsarima | 0.1-5 |
gsDesign | 3.4.0 | gSEM | 0.4.3.4 |
gsignal | 0.3-5 | gsl | 2.1-8 |
gss | 2.2-4 | gstat | 2.1-1 |
gsubfn | 0.7 | gt | 0.9.0 |
gtable | 0.3.3 | gtheory | 0.1.2 |
gtools | 3.9.4 | gtop | 0.2.0 |
HaploSim | 1.8.4.2 | hardhat | 1.3.0 |
hash | 2.2.6.2 | haven | 2.5.2 |
hbsae | 1.2 | hdf5r | 1.3.8 |
HDInterval | 0.2.4 | HDMT | 1.0.5 |
hdrcde | 3.4 | HDTSA | 1.0.2 |
heatmaply | 1.4.2 | heplots | 1.4-2 |
here | 1.0.1 | hett | 0.3-3 |
hexbin | 1.28.3 | hflights | 0.1 |
HH | 3.1-49 | hht | 2.1.6 |
highcharter | 0.9.4 | highlight | 0.5.1 |
highr | 0.10 | HIMA | 2.2.0 |
HKRbook | 0.1.3 | Hmisc | 5.1-0 |
HMMpa | 1.0.1 | hms | 1.1.3 |
homals | 1.0-10 | hommel | 1.6 |
hpfilter | 1.0.1 | HSAUR3 | 1.0-14 |
htmlTable | 2.4.1 | htmltools | 0.5.5 |
htmlwidgets | 1.6.2 | hts | 6.0.2 |
httpcode | 0.3.0 | httpuv | 1.6.10 |
httr | 1.4.6 | httr2 | 0.2.3 |
hunspell | 3.0.2 | hutils | 1.8.1 |
hwwntest | 1.3.1 | HydroMe | 2.0-1 |
HyperbolicDist | 0.6-4 | hypergeo | 1.2-13 |
i2extras | 0.2.1 | iarm | 0.4.3 |
ibd | 1.5 | iBreakDown | 2.0.1 |
ica | 1.0-3 | ICAOD | 1.0.1 |
ICC | 2.4.0 | iccbeta | 1.2.0 |
Icens | 1.72.0 | ICS | 1.3-1 |
ICSNP | 1.1-1 | ICtest | 0.3-5 |
idefix | 1.0.3 | IDPmisc | 1.1.20 |
ids | 1.0.1 | ifaTools | 0.23 |
igraph | 1.4.2 | igraphdata | 1.0.1 |
illuminaio | 0.42.0 | imbibe | 0.1.1 |
immer | 1.4-15 | impute | 1.74.1 |
imputeTestbench | 3.0.3 | imputeTS | 3.3 |
IncDTW | 1.1.4.4 | incidence | 1.7.3 |
incidence2 | 2.0.0 | ineq | 0.2-13 |
infer | 1.0.4 | influence.SEM | 2.3 |
influenceR | 0.1.0.2 | influxdbr | 0.14.2 |
ingredients | 2.3.0 | ini | 0.3.1 |
inline | 0.3.19 | insight | 0.19.1 |
InspectChangepoint | 1.2 | interp | 1.1-4 |
intervals | 0.15.3 | inum | 1.0-5 |
invgamma | 1.1 | ipred | 0.9-14 |
IRanges | 2.34.0 | 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.3.1 |
IsingSampler | 0.2.1 | Iso | 0.0-18.1 |
isoband | 0.2.7 | ISOcodes | 2022.09.29 |
IsoGene | 1.0-24 | ISOweek | 0.6-2 |
ISwR | 2.0-8 | iterators | 1.0.14 |
iterLap | 1.1-3 | itertools | 0.1-3 |
itsmr | 1.10 | JADE | 2.0-3 |
jalcal | 0.1.0 | janeaustenr | 1.0.0 |
janitor | 2.2.0 | JavaGD | 0.6-5 |
jiebaR | 0.11 | jiebaRD | 0.1 |
jjb | 0.1.1 | JMdesign | 1.3 |
jpeg | 0.1-10 | jqr | 1.2.3 |
jquerylib | 0.1.4 | jrt | 1.1.2 |
jsonify | 1.2.2 | jsonlite | 1.8.4 |
juicyjuice | 0.1.0 | JuliaConnectoR | 1.1.1 |
kableExtra | 1.3.4 | kalmanfilter | 2.0.1 |
kappaSize | 1.2 | KEGGREST | 1.40.0 |
Kendall | 2.2.1 | kequate | 1.6.4 |
keras | 2.11.1 | kernelFactory | 0.3.0 |
kernlab | 0.9-32 | KFAS | 1.5.0 |
klaR | 1.7-2 | km.ci | 0.5-6 |
knitr | 1.42 | koRpus | 0.13-8 |
ks | 1.14.0 | kst | 0.5-4 |
kutils | 1.70 | kza | 4.1.0.1 |
labdsv | 2.1-0 | label.switching | 1.8 |
labeling | 0.4.2 | labelled | 2.11.0 |
LaF | 0.8.4 | lagged | 0.3.2 |
Lahman | 11.0-0 | LAM | 0.6-19 |
lambda.r | 1.2.4 | languageR | 1.5.0 |
LaplacesDemon | 16.1.6 | lars | 1.3 |
lassoshooting | 0.1.5-1.1 | latdiag | 0.3 |
later | 1.3.1 | latex2exp | 0.9.6 |
latticeExtra | 0.6-30 | lava | 1.7.2.1 |
lavaan | 0.6-15 | lavaan.survey | 1.1.3.1 |
LAWBL | 1.5.0 | lazyeval | 0.2.2 |
lbfgsb3c | 2020-3.2 | LCAvarsel | 1.1 |
lcda | 0.3.1 | lda | 1.4.2 |
ldbounds | 2.0.1 | leafem | 0.2.0 |
leaflet | 2.1.2 | leaflet.providers | 1.9.0 |
leafpop | 0.1.0 | leaps | 3.1 |
LearnBayes | 2.15.1 | learnr | 0.11.3.9000 |
legion | 0.1.2 | lgr | 0.4.4 |
lgtdl | 1.1.5 | lhs | 1.1.6 |
libcoin | 1.0-9 | lifecycle | 1.0.3 |
LIM | 1.4.7 | limma | 3.56.1 |
limSolve | 1.5.6 | linelist | 0.0.1 |
linpk | 1.1.2 | linprog | 0.9-4 |
lisrelToR | 0.1.5 | listenv | 0.9.0 |
lme4 | 1.1-33 | lmerTest | 3.1-3 |
lmm | 1.3 | lmom | 2.9 |
Lmoments | 1.3-1 | lmtest | 0.9-40 |
LNIRT | 0.5.1 | locfit | 1.5-9.7 |
locits | 1.7.6 | locpol | 0.8.0 |
logitnorm | 0.8.38 | logspline | 2.1.19 |
lokern | 1.1-10 | lomb | 2.1.0 |
longitudinalData | 2.4.5 | longmemo | 1.1-2 |
LongMemoryTS | 0.1.0 | longpower | 1.0.24 |
loo | 2.6.0 | lordif | 0.3-3 |
lotri | 0.4.3 | lpacf | 1.0.1 |
lpSolve | 5.6.18 | lpSolveAPI | 5.5.2.0-17.9 |
lsa | 0.73.3 | lsl | 0.5.6 |
lslx | 0.6.11 | LSTS | 2.1 |
LSWPlib | 0.1.0 | ltm | 1.2-0 |
ltsa | 1.4.6 | lubridate | 1.9.2 |
luz | 0.4.0 | lvnet | 0.3.5 |
lvplot | 0.2.1 | lwgeom | 0.2-13 |
m5 | 0.1.1 | maat | 1.1.0 |
magic | 1.6-1 | magick | 2.7.4 |
magrittr | 2.0.3 | MAMS | 2.0.1 |
manipulateWidget | 0.11.1 | MAPA | 2.0.5 |
mapdata | 2.3.1 | mapproj | 1.2.11 |
maps | 3.4.1 | maptools | 1.1-6 |
maptree | 1.4-8 | mapview | 2.11.0 |
mAr | 1.2-0 | mar1s | 2.1.1 |
markdown | 1.6 | MARSS | 3.11.8 |
MassSpecWavelet | 1.66.0 | Matching | 4.10-8 |
MatchIt | 4.5.3 | mathjaxr | 1.6-0 |
matlabr | 1.5.2 | matrixcalc | 1.0-6 |
MatrixExtra | 0.1.13 | MatrixModels | 0.5-1 |
matrixStats | 0.63.0 | maxLik | 1.5-2 |
MaxPro | 4.1-2 | MBA | 0.1-0 |
MBHdesign | 2.2.2 | mboost | 2.9-7 |
mbsts | 3.0 | mc2d | 0.1-22 |
MCAvariants | 2.6 | mclcar | 0.2-0 |
mclust | 6.0.0 | mcmc | 0.9-7 |
mcmcensemble | 3.0.0 | MCMCglmm | 2.34 |
MCMCpack | 1.6-3 | mcmcse | 1.5-0 |
MCMCvis | 0.16.0 | Mcomp | 2.8 |
mcompanion | 0.5.6 | MCPMod | 1.0-10.1 |
meboot | 1.4-9.3 | Mediana | 1.0.8 |
mediation | 4.5.0 | MEIGOR | 1.33.0 |
mem | 2.17 | memapp | 2.15 |
memisc | 0.99.31.6 | memoise | 2.0.1 |
MEMSS | 0.9-3 | meta | 6.2-1 |
metadat | 1.2-0 | metafor | 4.2-0 |
metaplot | 0.8.3 | metaSEM | 1.3.0 |
metasens | 1.5-2 | Metrics | 0.1.4 |
metRology | 0.9-28-1 | mFilter | 0.1-5 |
mgm | 1.2-13 | mi | 1.1 |
mice | 3.15.0 | microbenchmark | 1.4.10 |
microsamplingDesign | 1.0.8 | MIIVsem | 0.5.8 |
mime | 0.12 | MinEDfind | 0.1.3 |
minimalRSD | 1.0.0 | minimaxdesign | 0.1.5 |
miniUI | 0.1.1.1 | minpack.lm | 1.2-3 |
minqa | 1.2.5 | mirt | 1.38.1 |
mirtCAT | 1.12.2 | misc3d | 0.9-1 |
miscTools | 0.6-28 | missForest | 1.5 |
missMDA | 1.18 | mitools | 2.4 |
mix | 1.0-11 | mixAR | 0.22.7 |
MixedPsy | 1.1.0 | mixexp | 1.2.7 |
mixOmics | 6.24.0 | mixsqp | 0.3-48 |
mixtools | 2.0.0 | mkssd | 1.2 |
mlapi | 0.1.1 | mlbench | 2.1-3.1 |
MLCIRTwithin | 2.1.1 | MLDS | 0.4.901 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlogitBMA | 0.1-7 | mlr3 | 0.16.0 |
mlr3measures | 0.5.0 | mlr3misc | 0.11.0 |
mlVAR | 0.5.1 | mma | 10.6-1 |
mmand | 1.6.3 | mmrm | 0.2.2 |
mnormt | 2.1.1 | MNP | 3.1-4 |
modeldata | 1.1.0 | modelenv | 0.1.1 |
ModelMetrics | 1.2.2.2 | modelr | 0.1.11 |
modeltime | 1.2.6 | modeltime.ensemble | 1.0.3 |
modeltime.resample | 0.2.3 | modeltools | 0.2-23 |
moderndive | 0.5.5 | mokken | 3.0.6 |
mombf | 3.3.1 | moments | 0.14.1 |
mondate | 0.10.02 | monmlp | 1.1.5 |
Morpho | 2.11 | mosaic | 1.8.4.2 |
mosaicCore | 0.9.2.1 | mosaicData | 0.20.3 |
movMF | 0.2-7 | MPDiR | 0.1-20 |
MplusAutomation | 1.1.0 | mpmi | 0.43.2 |
mpt | 0.8-0 | MPTinR | 1.14.1 |
MPV | 1.62 | mratios | 1.4.2 |
mrf | 0.1.6 | mrgsolve | 1.0.9 |
mritc | 0.5-3 | mscstexta4r | 0.1.2 |
mscsweblm4r | 0.1.2 | msm | 1.7 |
msos | 1.2.0 | mssm | 0.1.6 |
mstate | 0.3.2 | MSwM | 1.5 |
MTS | 1.2.1 | mtsdi | 0.3.5 |
mudfold | 1.1.21 | multcomp | 1.4-23 |
multcompView | 0.1-9 | multDM | 1.1.4 |
multicool | 0.1-12 | MultiGlarmaVarSel | 1.0 |
MultiLCIRT | 2.11 | MultipleBubbles | 0.2.0 |
multiplex | 2.9.9 | multipol | 1.0-7 |
multitaper | 1.0-15 | multiway | 1.0-6 |
multtest | 2.56.0 | MuMIn | 1.47.5 |
munfold | 0.3.5 | munsell | 0.5.0 |
mvLSW | 1.2.5 | mvMORPH | 1.1.7 |
mvnfast | 0.2.8 | mvQuad | 1.0-6 |
mvtnorm | 1.1-3 | mxkssd | 1.2 |
n1qn1 | 6.0.1-11 | NADA | 1.6-1.1 |
nanotime | 0.3.7 | nardl | 0.1.6 |
natserv | 1.0.0 | nbTransmission | 1.1.2 |
ncappc | 0.3.0 | ncar | 0.4.5 |
ncvreg | 3.14.1 | nets | 0.9.1 |
network | 1.18.1 | NetworkChange | 0.8 |
NetworkComparisonTest | 2.2.1 | networkD3 | 0.4 |
networkDynamic | 0.11.3 | networkLite | 1.0.5 |
NetworkToolbox | 1.4.2 | networktools | 1.5.0 |
networktree | 1.0.1 | neuralnet | 1.44.2 |
neurobase | 1.32.3 | neuroim | 0.0.6 |
neuRosim | 0.2-13 | nFactors | 2.4.1.1 |
nhanesA | 0.7.3 | nifti.io | 1.0.0 |
nimble | 1.0.0 | NISTnls | 0.9-13 |
NlcOptim | 0.6 | nleqslv | 3.3.4 |
NlinTS | 1.4.5 | nlmeVPC | 2.6 |
nlmixr2 | 2.0.9 | nlmixr2data | 2.0.7 |
nlmixr2est | 2.1.5 | nlmixr2extra | 2.0.8 |
nlmixr2plot | 2.0.7 | nlmixr2rpt | 0.1.0 |
nloptr | 2.0.3 | NLP | 0.2-1 |
nls2 | 0.3-3 | nlsem | 0.8 |
nlstools | 2.0-0 | nlts | 1.0-2 |
nmw | 0.1.5 | nnfor | 0.9.8 |
nnls | 1.4 | nodbi | 0.9.4 |
NonCompart | 0.6.0 | nonlinearTseries | 0.2.12 |
nonmemica | 1.0.1 | nonnest2 | 0.5-5 |
nortest | 1.0-4 | nosoi | 1.1.0 |
np | 0.60-17 | nppbib | 1.2-0 |
nsarfima | 0.2.0.0 | nsprcomp | 0.5.1-2 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
o2geosocial | 1.1.0 | oai | 0.4.0 |
OBsMD | 6.1 | occ | 1.1 |
odbc | 1.3.4 | odin | 1.2.4 |
odpc | 2.0.5 | odr | 1.4.2 |
officer | 0.6.2 | ohoegdm | 0.1.0 |
onbrand | 1.0.2 | onlineforecast | 1.0.1 |
OPDOE | 1.0-10 | openEBGM | 0.8.3 |
openintro | 2.4.0 | OpenMx | 2.21.8 |
openNLP | 0.2-7 | openNLPdata | 1.5.3-4 |
openssl | 2.0.6 | openxlsx | 4.2.5.2 |
opera | 1.2.0 | operator.tools | 1.6.3 |
optextras | 2019-12.4 | OptGS | 1.1.1 |
OptimalDesign | 1.0.1 | OptimaRegion | 1.2 |
optimParallel | 1.0-2 | optimx | 2022-4.30 |
optiscale | 1.2.2 | ORCME | 2.0.2 |
ordinal | 2022.11-16 | ore | 1.7.3.1 |
ORIClust | 1.0-2 | oro.dicom | 0.5.3 |
oro.nifti | 0.11.4 | oro.pet | 0.2.7 |
orthopolynom | 1.0-6.1 | osDesign | 1.8 |
osqp | 0.6.0.8 | otsad | 0.2.0 |
otsfeatures | 1.0.0 | outbreaker2 | 1.1.3 |
outbreaks | 1.9.0 | overlapping | 2.1 |
padr | 0.6.2 | PairedData | 1.1.1 |
pairwise | 0.6.1-0 | paleoTS | 0.5.3 |
palmerpenguins | 0.1.1 | pander | 0.6.5 |
paradox | 0.11.1 | parallelly | 1.35.0 |
paran | 1.5.2 | parsedate | 1.3.1 |
parsnip | 1.1.0 | partitions | 1.10-7 |
partsm | 1.1-3 | party | 1.3-13 |
partykit | 1.2-20 | pastecs | 1.3.21 |
patchwork | 1.1.2 | pbapply | 1.7-0 |
PBIBD | 1.3 | pbivnorm | 0.6.0 |
pbkrtest | 0.5.2 | pbmcapply | 1.5.1 |
pbs | 1.1 | PBSddesolve | 1.13.3 |
PBSmapping | 2.73.2 | pbv | 0.4-22 |
PCA4TS | 0.1 | pcaMethods | 1.92.0 |
pcaPP | 2.0-3 | pcdpca | 0.4 |
pcFactorStan | 1.5.3 | pcIRT | 0.2.4 |
PCMRS | 0.1-4 | pcts | 0.15.5 |
pdc | 1.0.3 | pdfCluster | 1.0-4 |
pdfetch | 0.2.8 | pdftools | 3.3.3 |
pdist | 1.2.1 | pedigree | 1.4.2 |
penalized | 0.9-52 | performance | 0.10.3 |
PerformanceAnalytics | 2.0.4 | permute | 0.9-7 |
PGM2 | 1.0-1 | ph2bayes | 0.0.2 |
ph2bye | 0.1.4 | phangorn | 2.11.1 |
pheatmap | 1.0.12 | phonics | 1.3.10 |
phyloseq | 1.44.0 | phytools | 1.5-1 |
picasso | 1.3.1 | pid | 0.50 |
piecewiseSEM | 2.3.0 | pillar | 1.9.0 |
pingr | 2.0.2 | pins | 1.1.0 |
pipe.design | 0.5.1 | pipeR | 0.6.1.3 |
pixmap | 0.4-12 | PK | 1.3-5 |
PKconverter | 1.5 | pkdata | 0.1.0 |
pkgbuild | 1.4.0 | pkgconfig | 2.0.3 |
pkgdown | 2.0.7 | pkgfilecache | 0.1.4 |
pkgload | 1.3.2 | PKNCA | 0.10.2 |
pkr | 0.1.3 | pks | 0.5-0 |
PlackettLuce | 0.4.2 | plgp | 1.1-12 |
plink | 1.5-1 | plm | 2.6-3 |
PLMIX | 2.1.1 | PLmixed | 0.1.6 |
plogr | 0.2.0 | plot3D | 1.4 |
plotly | 4.10.1 | plotMCMC | 2.0.1 |
plotmo | 3.6.2 | plotrix | 3.8-2 |
plotSEMM | 2.4 | pls | 2.8-2 |
plyr | 1.8.8 | pmr | 1.2.5.1 |
pmxTools | 1.3 | png | 0.1-8 |
poisbinom | 1.0.1 | poLCA | 1.6.0.1 |
polspline | 1.1.22 | polyclip | 1.10-4 |
polycor | 0.8-1 | polyCub | 0.8.1 |
polynom | 1.4-1 | PolynomF | 2.0-5 |
polyreg | 0.8.0 | pomp | 5.1 |
PopED | 0.6.0 | popEpi | 0.4.10 |
posterior | 1.4.1 | powerbydesign | 1.0.5 |
powerGWASinteraction | 1.1.3 | powerSurvEpi | 0.1.3 |
PowerTOST | 1.5-4 | PowerUpR | 1.1.0 |
PP | 0.6.3-11 | ppcor | 1.1 |
prabclus | 2.3-2 | pracma | 2.4.2 |
praise | 1.0.0 | PreciseSums | 0.6 |
prefmod | 0.8-35 | preprocessCore | 1.62.1 |
presize | 0.3.7 | prettyGraphs | 2.1.6 |
prettyunits | 1.1.1 | prevalence | 0.4.1 |
princurve | 2.1.6 | pROC | 1.18.0 |
processx | 3.8.1 | prodlim | 2023.03.31 |
ProfessR | 2.4-1 | profileModel | 0.6.1 |
profileR | 0.3-5 | profoc | 1.1.1 |
profvis | 0.3.8 | progress | 1.2.2 |
progressr | 0.13.0 | proj4 | 1.0-12 |
promises | 1.2.0.1 | prophet | 1.0 |
PROsetta | 0.4.1 | proto | 1.0.0 |
proxy | 0.4-27 | PRROC | 1.3.1 |
ps | 1.7.5 | pscl | 1.5.5.1 |
psd | 2.1.1 | PSF | 0.5 |
pso | 1.0.4 | pspline | 1.0-19 |
psy | 1.2 | psych | 2.3.3 |
psychomix | 1.1-8 | psychonetrics | 0.10 |
psychotools | 0.7-2 | psychotree | 0.16-0 |
psychTools | 2.3.3 | psyphy | 0.2-3 |
PTAk | 2.0.0 | PTSR | 0.1.2 |
ptw | 1.9-16 | purrr | 1.0.1 |
pwr | 1.3-0 | PwrGSD | 2.3.6 |
pwrRasch | 0.1-2 | qap | 0.1-2 |
Qardl | 0.1.1 | qcv | 1.0 |
qdap | 2.4.6 | qdapDictionaries | 1.0.7 |
qdapRegex | 0.7.5 | qdapTools | 1.3.7 |
qgam | 1.3.4 | qgraph | 1.9.5 |
qicharts2 | 0.7.2 | qMRI | 1.2 |
qpdf | 1.3.2 | qpNCA | 1.1.6 |
qs | 0.25.5 | qtl | 1.60 |
quadprog | 1.5-8 | Quandl | 2.11.0 |
quanteda | 3.3.1 | quantmod | 0.4.22 |
quantreg | 5.95 | quantspec | 1.2-3 |
questionr | 0.7.8 | quickpsy | 0.1.5.1 |
qvalue | 2.32.0 | qvcalc | 1.0.2 |
R.cache | 0.16.0 | R.devices | 2.17.1 |
R.filesets | 2.15.0 | R.huge | 0.9.0 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.25.0 | R.rsp | 0.45.0 |
R.utils | 2.12.2 | R0 | 1.2-10 |
r2d3 | 0.2.6 | R2HTML | 2.3.3 |
R2jags | 0.7-1 | R2OpenBUGS | 3.2-3.2.1 |
R2WinBUGS | 2.1-21 | R6 | 2.5.1 |
radarchart | 0.3.1 | ragg | 1.2.5 |
rainbow | 3.7 | rAmCharts | 2.1.15 |
ramcmc | 0.1.2 | ramps | 0.6.18 |
randomForest | 4.7-1.1 | randomForestSRC | 3.2.2 |
randomizeR | 3.0.1 | randomLCA | 1.1-2 |
randtoolbox | 2.0.4 | ranger | 0.15.1 |
rankdist | 1.1.4 | RANN | 2.6.1 |
rapidjsonr | 1.2.0 | RApiSerialize | 0.1.2 |
rappdirs | 0.3.3 | rARPACK | 0.11-0 |
RaschSampler | 0.8-8 | raster | 3.6-20 |
rasterImage | 0.4.0 | ratelimitr | 0.4.1 |
raveio | 0.1.0 | ravetools | 0.1.1 |
Rbeast | 0.9.9 | rbenchmark | 1.0.0 |
RBGL | 1.76.0 | rbibutils | 2.2.13 |
rbmi | 1.2.3 | Rcatch22 | 0.2.1 |
rcdd | 1.5-2 | Rcgmin | 2022-4.30 |
rcmdcheck | 1.4.0 | Rcmdr | 2.8-0 |
RcmdrMisc | 2.7-2 | RcmdrPlugin.DoE | 0.12-4 |
RcmdrPlugin.temis | 0.7.10 | RColorBrewer | 1.1-3 |
Rcpp | 1.0.10 | RcppAnnoy | 0.0.20 |
RcppArmadillo | 0.12.2.0.0 | RcppCCTZ | 0.2.12 |
RcppDate | 0.0.3 | RcppDE | 0.1.7 |
RcppDist | 0.1.1 | RcppEigen | 0.3.3.9.3 |
RcppGSL | 0.3.13 | RcppParallel | 5.1.7 |
RcppProgress | 0.4.2 | RcppRoll | 0.3.0 |
RcppThread | 2.1.3 | RcppTN | 0.2-2 |
RcppTOML | 0.2.2 | RcppZiggurat | 0.1.6 |
Rcsdp | 0.1.57.5 | RCurl | 1.98-1.12 |
rdbnomics | 0.6.4 | Rdpack | 2.4 |
Rdsdp | 1.0.5.2.1 | re2 | 0.1.2 |
reactable | 0.4.4 | reactR | 0.4.4 |
readabs | 0.4.13 | readODS | 1.8.0 |
readr | 2.1.4 | readstata13 | 0.10.1 |
readxl | 1.4.2 | REBayes | 2.51 |
recipes | 1.0.6 | registry | 0.5-1 |
regress | 1.3-21 | regsem | 1.9.3 |
regspec | 2.6 | regtools | 1.7.0 |
relations | 0.6-13 | relimp | 1.0-5 |
rematch | 1.0.1 | rematch2 | 2.1.2 |
remotes | 2.4.2 | rentrez | 1.2.3 |
renv | 0.17.3 | replicateBE | 1.1.3 |
reportr | 1.3.0 | reprex | 2.0.2 |
REQS | 0.8-13 | resampledata | 0.3.1 |
resde | 1.1 | reshape | 0.8.9 |
reshape2 | 1.4.4 | reticulate | 1.28 |
revdbayes | 1.5.1 | rex | 1.2.1 |
Rfast | 2.0.7 | Rfast2 | 0.1.4 |
rgen | 0.0.1 | RGENERATE | 1.3.7 |
rgenoud | 5.9-0.3 | rgl | 1.1.3 |
Rglpk | 0.6-5 | RgoogleMaps | 1.4.5.3 |
RGraphics | 3.0-2 | Rgraphviz | 2.44.0 |
rhandsontable | 0.3.8 | rhdf5 | 2.44.0 |
rhdf5filters | 1.12.1 | Rhdf5lib | 1.22.0 |
rhosa | 0.2.0 | RhpcBLASctl | 0.23-42 |
riingo | 0.3.1 | ring | 1.0.4 |
RInside | 0.2.18 | rintrojs | 0.3.2 |
Rirt | 0.0.2 | riskCommunicator | 1.0.1 |
ritis | 1.0.0 | rjags | 4-14 |
rJava | 1.0-6 | RJDBC | 0.2-10 |
RJDemetra | 0.2.2 | rje | 1.12.1 |
rjson | 0.2.21 | RJSONIO | 1.3-1.8 |
RKEA | 0.0-6 | RKEAjars | 5.0-4 |
rlang | 1.1.1 | rle | 0.9.2 |
rlecuyer | 0.3-7 | Rlgt | 0.1-4 |
Rlibeemd | 1.4.2 | rlist | 0.4.6.2 |
rmarkdown | 2.21 | RMAWGEN | 1.3.7 |
rmeta | 3.0 | Rmpfr | 0.9-2 |
rms | 6.7-0 | rmutil | 1.1.10 |
RMySQL | 0.10.25 | rncl | 0.8.7 |
rngtools | 1.5.2 | rngWELL | 0.10-9 |
RNifti | 1.5.0 | RNiftyReg | 2.7.1 |
rnn | 1.9.0 | robfilter | 4.1.3 |
RobKF | 1.0.2 | RoBMA | 2.3.2 |
robustbase | 0.95-1 | rockchalk | 1.8.157 |
ROCR | 1.0-11 | rodd | 0.2-1 |
roll | 1.1.6 | Rook | 1.2 |
ROOPSD | 0.3.8 | rootSolve | 1.8.2.3 |
roptim | 0.1.6 | rotl | 3.0.14 |
roxygen2 | 7.2.3 | rpact | 3.3.4 |
rpanel | 1.1-5.2 | rpart.plot | 3.1.1 |
rpf | 1.0.11 | RPMG | 2.2-3 |
RPostgres | 1.4.5 | RPostgreSQL | 0.7-5 |
RPPairwiseDesign | 1.0 | rprojroot | 2.0.3 |
rrcov | 1.7-3 | rredlist | 0.7.1 |
rrum | 0.2.0 | rsample | 1.1.1 |
rsdmx | 0.6-2 | RSEIS | 4.1-4 |
rsem | 0.5.0 | Rsfar | 0.0.1 |
RSGHB | 1.2.2 | rsm | 2.10.3 |
Rsolnp | 1.16 | rsparse | 0.5.1 |
RSpectra | 0.16-1 | RSQLite | 2.3.1 |
Rssa | 1.0.5 | rstan | 2.21.8 |
rstanarm | 2.21.4 | rstantools | 2.3.1 |
rstatix | 0.7.2 | rstiefel | 1.0.1 |
rstudioapi | 0.14 | rsurface | 1.1.0 |
RSurveillance | 0.2.1 | rTensor | 1.4.8 |
rtf | 0.4-14.1 | RTFA | 0.1.0 |
RTransferEntropy | 0.2.21 | rts | 1.1-8 |
Rtsne | 0.16 | Rttf2pt1 | 1.3.12 |
rucrdtw | 0.1.4 | rugarch | 1.4-9 |
ruimtehol | 0.3.1 | rules | 1.0.2 |
RUnit | 0.4.32 | runjags | 2.2.1-7 |
runner | 0.4.3 | runstats | 1.1.0 |
Runuran | 0.38 | rust | 1.4.0 |
Rvcg | 0.22.1 | rversions | 2.1.2 |
rvest | 1.0.3 | Rvmmin | 2018-4.17.1 |
Rwave | 2.6-5 | RWeka | 0.4-46 |
RWekajars | 3.9.3-2 | rxode2 | 2.0.13 |
rxode2et | 2.0.10 | rxode2ll | 2.0.11 |
rxode2parse | 2.0.16 | rxode2random | 2.0.11 |
s2 | 1.1.3 | S4Vectors | 0.38.1 |
samadb | 0.2.6 | samplesize | 0.2-4 |
sandwich | 3.0-2 | sarima | 0.9.1 |
sass | 0.4.6 | satellite | 1.0.4 |
sazedR | 2.0.2 | sbgcop | 0.980 |
scales | 1.2.1 | scatterplot3d | 0.3-44 |
scoringRules | 1.1.1 | scoringutils | 1.1.0 |
ScottKnott | 1.3-0 | scs | 3.2.4 |
sde | 2.0.18 | sealasso | 0.1-3 |
seas | 0.6-0 | season | 0.3.15 |
seasonal | 1.9.0 | seasonalview | 0.3 |
seastests | 0.15.4 | seer | 1.1.8 |
segmented | 1.6-4 | selectr | 0.4-2 |
sem | 3.1-15 | semds | 0.9-6 |
SemiPar | 1.0-4.2 | semPlot | 1.1.6 |
SEMsens | 1.5.5 | semTools | 0.5-6 |
semtree | 0.9.18 | sendmailR | 1.4-0 |
SensoMineR | 1.26 | sentencepiece | 0.2.3 |
separationplot | 1.4 | seqDesign | 1.2 |
seqinr | 4.2-30 | seriation | 1.4.2 |
servr | 0.27 | sessioninfo | 1.2.2 |
setartree | 0.1.0 | setRNG | 2022.4-1 |
sets | 1.0-24 | sf | 1.0-12 |
sFFLHD | 0.1.2 | sfheaders | 0.4.2 |
sfsmisc | 1.1-15 | sftime | 0.2-0 |
sgd | 1.1.1 | sgeostat | 1.0-27 |
shades | 1.4.0 | shape | 1.4.6 |
shapefiles | 0.7.2 | shapes | 1.2.7 |
shiny | 1.7.4 | shiny.semantic | 0.4.3 |
shinyAce | 0.4.2 | shinybrms | 1.8.0 |
shinyBS | 0.61.1 | shinycssloaders | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.0 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinytest | 1.5.3 | shinythemes | 1.2.0 |
shinyWidgets | 0.7.6 | showimage | 1.0.0 |
sigmoid | 1.4.0 | signal | 0.7-7 |
Sim.DiffProc | 4.8 | simcdm | 0.1.1 |
SimComp | 3.3 | simex | 1.8 |
simglm | 0.8.9 | SimInf | 9.5.0 |
simrel | 2.1.0 | simsem | 0.5-16 |
sirt | 3.12-66 | sitmo | 2.0.2 |
SkewHyperbolic | 0.4-0 | skmeans | 0.2-15 |
skpr | 1.3.0 | slam | 0.1-50 |
SLBDD | 0.0.4 | sleekts | 1.0.2 |
Sleuth2 | 2.0-5 | Sleuth3 | 1.0-3 |
SLHD | 2.1-1 | slider | 0.3.0 |
sm | 2.2-5.7.1 | smacof | 2.1-5 |
smooth | 3.2.0 | smoother | 1.1 |
smoots | 1.1.3 | smovie | 1.1.4 |
SMPracticals | 1.4-3 | sn | 2.1.1 |
sna | 2.7-1 | snakecase | 0.11.0 |
snow | 0.4-4 | SnowballC | 0.7.1 |
snowfall | 1.84-6.2 | SOAs | 1.3 |
soc.ca | 0.8.0 | socialmixr | 0.2.0 |
sodium | 1.2.1 | solrium | 1.2.0 |
sourcetools | 0.1.7-1 | sp | 1.6-0 |
sp23design | 0.9-1 | spacetime | 1.3-0 |
spam | 2.9-1 | spant | 2.12.0 |
sparseDFM | 1.0 | SparseFactorAnalysis | 1.0 |
SparseM | 1.81 | sparsevar | 0.1.0 |
SpatialEpi | 1.2.8 | SpatialExtremes | 2.1-0 |
spatialreg | 1.2-8 | spatstat | 3.0-5 |
spatstat.data | 3.0-1 | spatstat.explore | 3.1-0 |
spatstat.geom | 3.1-0 | spatstat.linnet | 3.1-0 |
spatstat.model | 3.2-3 | spatstat.random | 3.1-4 |
spatstat.sparse | 3.0-1 | spatstat.utils | 3.0-2 |
spBayes | 0.4-6 | spd | 2.0-1 |
spData | 2.2.2 | spdep | 1.2-8 |
spec | 0.1.7 | spectral | 2.0 |
speff2trial | 1.0.5 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-19 | spINAR | 0.1.0 |
splancs | 2.01-43 | splines2 | 0.4.8 |
spTimer | 3.3.2 | sqldf | 0.4-11 |
SQUAREM | 2021.1 | srvyr | 1.2.0 |
ssanv | 1.1 | ssgraph | 1.15 |
ssize.fdr | 1.3 | ssizeRNA | 1.3.2 |
ssMousetrack | 1.1.6 | stabledist | 0.7-1 |
stabs | 0.6-4 | StanHeaders | 2.21.0-7 |
stars | 0.6-1 | STARTS | 1.3-8 |
startupmsg | 0.9.6 | statespacer | 0.5.0 |
statmod | 1.5.0 | statnet.common | 4.8.0 |
StatRank | 0.0.6 | steadyICA | 1.0 |
STFTS | 0.1.0 | stinepack | 1.4 |
stlplus | 0.5.1 | stm | 1.3.6 |
stochvol | 3.2.1 | stopwords | 2.3 |
stR | 0.5 | stringdist | 0.9.10 |
stringfish | 0.15.7 | stringi | 1.7.12 |
stringr | 1.5.0 | strucchange | 1.5-3 |
strucchangeRcpp | 1.5-3-1.0.4 | StructuralDecompose | 0.1.1 |
styler | 1.9.1 | subplex | 1.8 |
subscore | 3.3 | sufficientForecasting | 0.1.0 |
sugrrants | 0.2.8 | SuperLearner | 2.0-28 |
superml | 0.5.6 | SuppDists | 1.1-9.7 |
support.CEs | 0.5-0 | survcomp | 1.50.0 |
surveillance | 1.21.1 | survey | 4.2-1 |
survivalROC | 1.0.3.1 | survPresmooth | 1.1-11 |
svars | 1.3.11 | svd | 0.5.4 |
svglite | 2.1.1 | svs | 3.0.0 |
svUnit | 1.0.6 | swephR | 0.3.1 |
swirl | 2.4.5 | swirlify | 0.5.3 |
sylly | 0.1-6 | sym.arma | 1.0 |
symengine | 0.2.2 | symmoments | 1.2.1 |
synthesis | 1.2.3 | sys | 3.4.1 |
systemfit | 1.1-30 | systemfonts | 1.0.4 |
tables | 0.9.17 | tabnet | 0.3.0 |
TAM | 4.1-4 | targets | 1.1.3 |
tau | 0.0-24 | taxize | 0.9.100 |
tbrf | 0.1.5 | tcltk2 | 1.2-11 |
Tcomp | 1.0.1 | tdigest | 0.4.1 |
TeachingDemos | 2.12 | tempdisagg | 1.1 |
tensor | 1.5 | tensorA | 0.36.2 |
tensorflow | 2.11.0 | TensorPreAve | 1.1.0 |
tensorTS | 1.0.1 | TEQR | 6.0-0 |
tergm | 4.1.1 | terra | 1.7-29 |
tesseract | 5.1.0 | testcorr | 0.2.0 |
TestDataImputation | 2.3 | TestDesign | 1.5.1 |
testit | 0.13 | TestScorer | 1.7.2 |
testthat | 3.1.8 | TexExamRandomizer | 1.2.3 |
texreg | 1.38.6 | text2vec | 0.6.3 |
textcat | 1.0-8 | textir | 2.0-5 |
textplot | 0.2.2 | textrank | 0.3.1 |
textreuse | 0.1.5 | textshaping | 0.3.6 |
textTinyR | 1.1.7 | tfarima | 0.3.2 |
tfautograph | 0.3.2 | tfplot | 2021.6-1 |
tframe | 2015.12-1.1 | tfruns | 1.5.1 |
tgp | 2.4-21 | TH.data | 1.1-2 |
theft | 0.4.2.4 | thief | 0.3 |
ThreeArmedTrials | 1.0-4 | threeBrain | 0.2.9 |
ThreeGroups | 0.21 | threejs | 0.3.3 |
ThreeWay | 1.1.3 | thurstonianIRT | 0.12.1 |
tibble | 3.2.1 | tictoc | 1.2 |
Tides | 2.1 | tidygraph | 1.2.3 |
tidyLPA | 1.1.0 | tidymodels | 1.1.0 |
tidyquant | 1.0.7 | tidyr | 1.3.0 |
tidyselect | 1.2.0 | tidytext | 0.4.1 |
tidytree | 0.4.2 | tidyverse | 2.0.0 |
tiff | 0.1-11 | timechange | 0.2.0 |
timeDate | 4022.108 | timeSeries | 4030.106 |
timeseriesdb | 1.0.0-1.1.2 | timetk | 2.8.3 |
timsac | 1.3.8 | tinytex | 0.45 |
tis | 1.39 | tkrplot | 0.0-27 |
tm | 0.7-11 | tm.plugin.alceste | 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 | TMB | 1.9.4 |
tmvnsim | 1.0-2 | tmvtnorm | 1.5 |
tokenizers | 0.3.0 | tokenizers.bpe | 0.1.1 |
toOrdinal | 1.3-0.0 | topicdoc | 0.1.1 |
topicmodels | 0.2-14 | topicmodels.etm | 0.1.0 |
torch | 0.10.0 | torchaudio | 0.3.1.9000 |
torchdatasets | 0.3.0 | torchvision | 0.5.1 |
tpr | 0.3-3 | tractor.base | 3.3.5.1 |
TransPhylo | 1.4.5 | trapezoid | 2.0-2 |
tree | 1.0-43 | TreeBUGS | 1.5.0 |
treeio | 1.24.0 | trend | 1.1.5 |
trendeval | 0.1.0 | trending | 0.1.0 |
TrialSize | 1.4 | triangle | 1.0 |
triebeard | 0.4.1 | trimcluster | 0.1-5 |
tripack | 1.3-9.1 | TripleR | 1.5.4 |
TruncatedNormal | 2.2.2 | truncdist | 1.0-2 |
truncnorm | 1.0-9 | truncreg | 0.2-5 |
trust | 0.1-8 | TSA | 1.3.1 |
TSANN | 0.1.0 | tsbox | 0.4.1 |
tsBSS | 1.0.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 |
TSEntropies | 0.9 | tseries | 0.10-54 |
tseriesChaos | 0.1-13.1 | tseriesEntropy | 0.6-0 |
tseriesTARMA | 0.3-2 | tsfeatures | 1.1 |
tsfknn | 0.5.1 | tsibble | 1.1.3 |
tsibbledata | 0.4.1 | tsibbletalk | 0.1.0 |
tsintermittent | 1.10 | tsiR | 0.4.3 |
TSLSTM | 0.1.0 | tsModel | 0.6-1 |
tsoutliers | 0.6-8 | TSP | 1.2-4 |
tsPI | 1.0.3 | TSrepr | 1.1.0 |
tsrobprep | 0.3.2 | tssim | 0.1.7 |
TSstudio | 0.1.6 | TSTutorial | 1.2.6 |
tsutils | 0.9.3 | tswge | 2.1.0 |
TTR | 0.24.3 | tune | 1.1.1 |
tweenr | 2.0.2 | tzdb | 0.4.0 |
ubiquity | 2.0.0 | ucminf | 1.1-4.1 |
UComp | 4.0.2 | udpipe | 0.8.11 |
ugatsdb | 0.2.3 | uGMAR | 3.4.4 |
UnifiedDoseFinding | 0.1.10 | units | 0.8-2 |
unrepx | 1.0-2 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
uroot | 2.1-2 | usdata | 0.2.0 |
usethis | 2.1.6 | utf8 | 1.2.3 |
uuid | 1.1-0 | uwot | 0.1.14 |
V8 | 4.3.0 | VAR.etp | 1.0 |
VARDetect | 0.1.6 | vars | 1.5-9 |
VARshrink | 0.3.1 | VCA | 1.4.5 |
vcd | 1.4-11 | vcdExtra | 0.8-4 |
vctrs | 0.6.2 | vdg | 1.2.2 |
VedicDateTime | 0.1.4 | vegan | 2.6-4 |
VennDiagram | 1.7.3 | venneuler | 1.1-3 |
VGAM | 1.1-8 | VGAMdata | 1.1-8 |
vglmer | 1.0.3 | viridis | 0.6.3 |
viridisLite | 0.4.2 | visNetwork | 2.1.2 |
visualize | 4.4.0 | vpc | 1.2.2 |
vroom | 1.6.3 | waiter | 0.2.5 |
waldo | 0.5.1 | warp | 0.2.0 |
WaveletComp | 1.1 | wavelets | 0.3-0.2 |
waveslim | 1.8.4 | wavethresh | 4.7.2 |
wavScalogram | 1.1.2 | wCorr | 1.9.6 |
webdriver | 1.0.6 | webshot | 0.5.4 |
weights | 1.0.4 | whisker | 0.4.1 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
WikipediR | 1.5.0 | wikitaxa | 0.4.0 |
withr | 2.5.0 | wk | 0.7.3 |
wktmo | 1.0.5 | wnl | 0.7.3 |
wooldridge | 1.4-3 | word2vec | 0.3.4 |
wordcloud | 2.6 | wordnet | 0.1-16 |
workflows | 1.1.3 | workflowsets | 1.0.1 |
worrms | 0.4.2 | wpp2017 | 1.2-3 |
wpp2019 | 1.1-1 | WrightMap | 1.3 |
writexl | 1.4.2 | x12 | 1.10.3 |
x13binary | 1.1.57-3 | xfun | 0.39 |
xgboost | 1.7.5.1 | xgxr | 1.1.2 |
XLConnect | 1.0.7 | xlsx | 0.6.5 |
xlsxjars | 0.6.1 | XML | 3.99-0.14 |
xml2 | 1.3.4 | xopen | 1.0.0 |
xplain | 0.2.2 | xpose | 0.4.16 |
xpose.nlmixr2 | 0.4.0 | xpose4 | 4.7.2 |
xtable | 1.8-4 | xts | 0.13.1 |
XVector | 0.40.0 | xxIRT | 2.1.2 |
yaImpute | 1.0-33 | yaml | 2.3.7 |
yardstick | 1.2.0 | yesno | 0.1.2 |
yuima | 1.15.22 | yulab.utils | 0.0.6 |
zeallot | 0.1.0 | zic | 0.9.1 |
ZIM | 1.1.0 | ZINARp | 0.1.0 |
zip | 2.3.0 | zipfR | 0.6-70 |
zlibbioc | 1.46.0 | zoo | 1.8-12 |
ZRA | 0.2 |
RStudio Server
R: 4.3.0
rstudio-server: 2023.03.0
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
Updated R to 4.3.0, rstudio-server to 2023.03.0, and R packages to newer versions.
R packages
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.0 |
abind | 1.4-5 | acepack | 1.4.1 |
actuar | 3.3-2 | ada | 2.0-5 |
ade4 | 1.7-22 | ade4TkGUI | 0.3-1 |
adegraphics | 1.0-18 | adehabitatLT | 0.3.27 |
adehabitatMA | 0.3.16 | admisc | 0.31 |
affy | 1.78.0 | affyio | 1.70.0 |
agricolae | 1.3-5 | akima | 0.6-3.4 |
AlgDesign | 1.2.1 | alphavantager | 0.1.3 |
Amelia | 1.8.1 | AnnotationDbi | 1.62.1 |
anytime | 0.3.9 | ape | 5.7-1 |
aplot | 0.1.10 | arm | 1.13-1 |
aroma.apd | 0.6.1 | ascii | 2.4 |
ash | 1.0-15 | askpass | 1.1 |
assertthat | 0.2.1 | AUC | 0.3.2 |
av | 0.8.3 | backports | 1.4.1 |
base64 | 2.0.1 | base64enc | 0.1-3 |
bayesplot | 1.10.0 | BB | 2019.10-1 |
BDgraph | 2.72 | bdsmatrix | 1.3-6 |
beadarray | 2.50.0 | BeadDataPackR | 1.52.0 |
BGLR | 1.1.0 | BH | 1.81.0-1 |
biganalytics | 1.1.21 | bigD | 0.2.0 |
biglm | 0.9-2.1 | bigmemory | 4.6.1 |
bigmemory.sri | 0.1.6 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | Biobase | 2.60.0 |
BiocGenerics | 0.46.0 | BiocManager | 1.30.20 |
BiocParallel | 1.34.1 | BiocVersion | 3.17.1 |
biomformat | 1.28.0 | Biostrings | 2.68.0 |
bit | 4.0.5 | bit64 | 4.0.5 |
bitops | 1.0-7 | blob | 1.2.4 |
BLR | 1.6 | bold | 1.3.0 |
bootstrap | 2019.6 | bpca | 1.3-4 |
BradleyTerry2 | 1.1-2 | brew | 1.0-8 |
brglm | 0.7.2 | brglm2 | 0.9 |
bridgesampling | 1.1-2 | brio | 1.1.3 |
brms | 2.19.0 | Brobdingnag | 1.2-9 |
broom | 1.0.4 | bslib | 0.4.2 |
BsMD | 2020.4.30 | ca | 0.71.1 |
cachem | 1.0.8 | calibrator | 1.2-8 |
callr | 3.7.3 | car | 3.1-2 |
carData | 3.0-5 | caret | 6.0-94 |
caTools | 1.18.2 | CellNOptR | 1.46.0 |
cellranger | 1.1.0 | checkmate | 2.2.0 |
chk | 0.8.1 | chron | 2.3-61 |
CircStats | 0.2-6 | classInt | 0.4-9 |
cli | 3.6.1 | clipr | 0.8.0 |
clock | 0.6.1 | clusterGeneration | 1.3.7 |
CNORode | 1.42.0 | coda | 0.19-4 |
coin | 1.4-2 | collapse | 1.9.5 |
colorspace | 2.1-0 | colourpicker | 1.2.0 |
combinat | 0.0-8 | commonmark | 1.9.0 |
conditionz | 0.1.0 | conf.design | 2.0.0 |
conflicted | 1.2.0 | contfrac | 1.1-12 |
coro | 1.0.3 | corpcor | 1.6.10 |
corrgram | 1.14 | corrplot | 0.92 |
cpp11 | 0.4.3 | crayon | 1.5.2 |
credentials | 1.3.2 | crosstalk | 1.2.0 |
crul | 1.3 | ctv | 0.9-4 |
cubature | 2.0.4.6 | curl | 5.0.0 |
CVST | 0.2-3 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | data.table | 1.14.8 |
DataExplorer | 0.8.2 | datapasta | 3.1.0 |
DBI | 1.1.3 | dbplyr | 2.3.2 |
deldir | 1.0-6 | dendextend | 1.17.1 |
DEoptimR | 1.0-13 | Deriv | 4.1.3 |
desc | 1.4.2 | deSolve | 1.35 |
devtools | 2.4.5 | dfidx | 0.0-5 |
dfoptim | 2020.10-1 | diagram | 1.6.5 |
DiagrammeR | 1.0.9 | dials | 1.2.0 |
DiceDesign | 1.9 | dichromat | 2.0-0.1 |
diffobj | 0.3.5 | digest | 0.6.31 |
dimRed | 0.2.6 | diptest | 0.76-0 |
discretization | 1.0-1.1 | distributional | 0.3.2 |
doBy | 4.6.16 | doc2vec | 0.2.0 |
DoE.base | 1.2-2 | doMC | 1.3.8 |
doParallel | 1.0.17 | dotCall64 | 1.0-2 |
downlit | 0.4.2 | downloader | 0.4 |
dplyr | 1.1.2 | dqrng | 0.3.0 |
DRR | 0.0.4 | DT | 0.27 |
dtplyr | 1.3.1 | dygraphs | 1.1.1.6 |
dynamicTreeCut | 1.63-1 | e1071 | 1.7-13 |
EbayesThresh | 1.4-12 | EBImage | 4.42.0 |
effects | 4.2-2 | ellipse | 0.4.5 |
ellipsis | 0.3.2 | elliptic | 1.4-0 |
emulator | 1.2-21 | enrichwith | 0.3.1 |
equivalence | 0.7.2 | estimability | 1.4.1 |
ETLUtils | 1.5 | evaluate | 0.21 |
expint | 0.1-8 | expm | 0.999-7 |
extraDistr | 1.9.1 | extrafont | 0.19 |
extrafontdb | 1.0 | fansi | 1.0.4 |
farver | 2.1.1 | fastICA | 1.2-3 |
fastmap | 1.1.1 | fastmatch | 1.1-3 |
fda | 6.0.5 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
ff | 4.0.9 | fftwtools | 0.9-11 |
fields | 14.1 | filehash | 2.4-5 |
filelock | 1.0.2 | flashClust | 1.01-2 |
flexmix | 2.3-19 | FNN | 1.1.3.2 |
fontawesome | 0.5.1 | forcats | 1.0.0 |
foreach | 1.5.2 | forecast | 8.21 |
formatR | 1.14 | Formula | 1.2-5 |
fpc | 2.2-10 | fracdiff | 1.5-2 |
fs | 1.6.2 | functional | 0.6 |
furrr | 0.3.1 | futile.logger | 1.4.3 |
futile.options | 1.0.1 | future | 1.32.0 |
future.apply | 1.10.0 | gam | 1.22-2 |
gamlss | 5.4-12 | gamlss.data | 6.0-2 |
gamlss.dist | 6.0-5 | gargle | 1.4.0 |
gclus | 1.3.2 | gdata | 2.19.0 |
geepack | 1.3.9 | genalg | 0.2.1 |
generics | 0.1.3 | genetics | 1.3.8.1.3 |
GenomeInfoDb | 1.36.0 | GenomeInfoDbData | 1.2.10 |
GenomicRanges | 1.52.0 | GEOquery | 2.68.0 |
geosphere | 1.5-18 | gert | 1.9.2 |
ggalt | 0.4.0 | ggdendro | 0.1.23 |
ggforce | 0.4.1 | ggformula | 0.10.4 |
ggfun | 0.0.9 | ggmap | 3.0.2 |
ggplot2 | 3.4.2 | ggplotify | 0.1.0 |
ggrepel | 0.9.3 | ggridges | 0.5.4 |
ggstance | 0.3.6 | ggtree | 3.8.0 |
ggvis | 0.4.8 | gh | 1.4.0 |
git2r | 0.32.0 | gitcreds | 0.1.2 |
glassoFast | 1.0 | gld | 2.6.6 |
glmnet | 4.1-7 | globals | 0.16.2 |
glue | 1.6.2 | gmm | 1.7 |
gmodels | 2.18.1.1 | gmp | 0.7-1 |
GO.db | 3.17.0 | goftest | 1.2-3 |
googledrive | 2.1.0 | googlesheets4 | 1.1.0 |
googleVis | 0.7.1 | gower | 1.0.1 |
GPArotation | 2023.3-1 | GPfit | 1.0-8 |
gplots | 3.1.3 | gradethis | 0.2.12.9004 |
graph | 1.78.0 | gridBase | 0.4-7 |
gridExtra | 2.3 | gridGraphics | 0.5-1 |
gridSVG | 1.7-5 | grImport | 0.9-7 |
grImport2 | 0.2-0 | gsubfn | 0.7 |
gt | 0.9.0 | gtable | 0.3.3 |
gtools | 3.9.4 | HaploSim | 1.8.4.2 |
hardhat | 1.3.0 | haven | 2.5.2 |
hdrcde | 3.4 | hexbin | 1.28.3 |
hflights | 0.1 | HH | 3.1-49 |
highlight | 0.5.1 | highr | 0.10 |
Hmisc | 5.1-0 | hms | 1.1.3 |
htmlTable | 2.4.1 | htmltools | 0.5.5 |
htmlwidgets | 1.6.2 | httpcode | 0.3.0 |
httpuv | 1.6.10 | httr | 1.4.6 |
httr2 | 0.2.3 | HydroMe | 2.0-1 |
HyperbolicDist | 0.6-4 | hypergeo | 1.2-13 |
ICC | 2.4.0 | Icens | 1.72.0 |
ids | 1.0.1 | igraph | 1.4.2 |
igraphdata | 1.0.1 | illuminaio | 0.42.0 |
impute | 1.74.1 | ineq | 0.2-13 |
infer | 1.0.4 | influenceR | 0.1.0.2 |
ini | 0.3.1 | inline | 0.3.19 |
insight | 0.19.1 | interp | 1.1-4 |
intervals | 0.15.3 | inum | 1.0-5 |
ipred | 0.9-14 | IRanges | 2.34.0 |
irlba | 2.3.5.1 | Iso | 0.0-18.1 |
isoband | 0.2.7 | iterators | 1.0.14 |
itertools | 0.1-3 | janitor | 2.2.0 |
jpeg | 0.1-10 | jquerylib | 0.1.4 |
jsonlite | 1.8.4 | juicyjuice | 0.1.0 |
KEGGREST | 1.40.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-32 | klaR | 1.7-2 |
knitr | 1.42 | ks | 1.14.0 |
labeling | 0.4.2 | labelled | 2.11.0 |
LaF | 0.8.4 | Lahman | 11.0-0 |
lambda.r | 1.2.4 | lars | 1.3 |
later | 1.3.1 | latticeExtra | 0.6-30 |
lava | 1.7.2.1 | lavaan | 0.6-15 |
lavaan.survey | 1.1.3.1 | lazyeval | 0.2.2 |
lcda | 0.3.1 | leaflet | 2.1.2 |
leaflet.providers | 1.9.0 | leaps | 3.1 |
LearnBayes | 2.15.1 | learnr | 0.11.3.9000 |
lgr | 0.4.4 | lhs | 1.1.6 |
libcoin | 1.0-9 | lifecycle | 1.0.3 |
LIM | 1.4.7 | limma | 3.56.1 |
limSolve | 1.5.6 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | lme4 | 1.1-33 |
lmom | 2.9 | lmtest | 0.9-40 |
locfit | 1.5-9.7 | lokern | 1.1-10 |
loo | 2.6.0 | lpSolve | 5.6.18 |
lubridate | 1.9.2 | luz | 0.4.0 |
magic | 1.6-1 | magrittr | 2.0.3 |
manipulateWidget | 0.11.1 | mapproj | 1.2.11 |
maps | 3.4.1 | maptools | 1.1-6 |
markdown | 1.6 | MassSpecWavelet | 1.66.0 |
Matching | 4.10-8 | MatchIt | 4.5.3 |
mathjaxr | 1.6-0 | matrixcalc | 1.0-6 |
MatrixModels | 0.5-1 | matrixStats | 0.63.0 |
maxLik | 1.5-2 | mboost | 2.9-7 |
mclust | 6.0.0 | mcmc | 0.9-7 |
MCMCglmm | 2.34 | MEIGOR | 1.33.0 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
Metrics | 0.1.4 | mi | 1.1 |
mice | 3.15.0 | microbenchmark | 1.4.10 |
mime | 0.12 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-3 | minqa | 1.2.5 |
misc3d | 0.9-1 | miscTools | 0.6-28 |
mitools | 2.4 | mixOmics | 6.24.0 |
mlbench | 2.1-3.1 | mlmRev | 1.0-8 |
mlogit | 1.1-1 | mlr3 | 0.16.0 |
mlr3measures | 0.5.0 | mlr3misc | 0.11.0 |
mnormt | 2.1.1 | modeldata | 1.1.0 |
modelenv | 0.1.1 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.11 | modeltime | 1.2.6 |
modeltools | 0.2-23 | moments | 0.14.1 |
mondate | 0.10.02 | mosaic | 1.8.4.2 |
mosaicCore | 0.9.2.1 | mosaicData | 0.20.3 |
mratios | 1.4.2 | multcomp | 1.4-23 |
multicool | 0.1-12 | multtest | 2.56.0 |
munsell | 0.5.0 | mvMORPH | 1.1.7 |
mvtnorm | 1.1-3 | natserv | 1.0.0 |
network | 1.18.1 | networkD3 | 0.4 |
NISTnls | 0.9-13 | nleqslv | 3.3.4 |
nloptr | 2.0.3 | nls2 | 0.3-3 |
nlstools | 2.0-0 | nnls | 1.4 |
nortest | 1.0-4 | np | 0.60-17 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
odbc | 1.3.4 | openssl | 2.0.6 |
openxlsx | 4.2.5.2 | optextras | 2019-12.4 |
optimParallel | 1.0-2 | ordinal | 2022.11-16 |
padr | 0.6.2 | PairedData | 1.1.1 |
palmerpenguins | 0.1.1 | paradox | 0.11.1 |
parallelly | 1.35.0 | parsnip | 1.1.0 |
partitions | 1.10-7 | party | 1.3-13 |
partykit | 1.2-20 | pastecs | 1.3.21 |
patchwork | 1.1.2 | pbapply | 1.7-0 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
pbmcapply | 1.5.1 | PBSmapping | 2.73.2 |
pcaMethods | 1.92.0 | pcaPP | 2.0-3 |
pedigree | 1.4.2 | PerformanceAnalytics | 2.0.4 |
permute | 0.9-7 | phangorn | 2.11.1 |
phyloseq | 1.44.0 | phytools | 1.5-1 |
pillar | 1.9.0 | pins | 1.1.0 |
pixmap | 0.4-12 | pkgbuild | 1.4.0 |
pkgconfig | 2.0.3 | pkgdown | 2.0.7 |
pkgload | 1.3.2 | plm | 2.6-3 |
plogr | 0.2.0 | plot3D | 1.4 |
plotly | 4.10.1 | plotrix | 3.8-2 |
pls | 2.8-1 | plyr | 1.8.8 |
png | 0.1-8 | poLCA | 1.6.0.1 |
polspline | 1.1.22 | polyclip | 1.10-4 |
polycor | 0.8-1 | polynom | 1.4-1 |
posterior | 1.4.1 | prabclus | 2.3-2 |
pracma | 2.4.2 | praise | 1.0.0 |
preprocessCore | 1.62.1 | prettyunits | 1.1.1 |
princurve | 2.1.6 | pROC | 1.18.0 |
processx | 3.8.1 | prodlim | 2023.03.31 |
profileModel | 0.6.1 | profvis | 0.3.8 |
progress | 1.2.2 | progressr | 0.13.0 |
proj4 | 1.0-12 | promises | 1.2.0.1 |
prophet | 1.0 | proto | 1.0.0 |
proxy | 0.4-27 | PRROC | 1.3.1 |
ps | 1.7.5 | pscl | 1.5.5 |
psy | 1.2 | psych | 2.3.3 |
purrr | 1.0.1 | qap | 0.1-2 |
qtl | 1.60 | quadprog | 1.5-8 |
Quandl | 2.11.0 | quantmod | 0.4.22 |
quantreg | 5.95 | questionr | 0.7.8 |
qvalue | 2.32.0 | qvcalc | 1.0.2 |
R.cache | 0.16.0 | R.devices | 2.17.1 |
R.filesets | 2.15.0 | R.huge | 0.9.0 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.25.0 | R.rsp | 0.45.0 |
R.utils | 2.12.2 | R2HTML | 2.3.3 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R6 | 2.5.1 | ragg | 1.2.5 |
rainbow | 3.7 | randomForest | 4.7-1.1 |
rappdirs | 0.3.3 | rARPACK | 0.11-0 |
raster | 3.6-20 | ratelimitr | 0.4.1 |
rbenchmark | 1.0.0 | RBGL | 1.76.0 |
rbibutils | 2.2.13 | Rcgmin | 2022-4.30 |
rcmdcheck | 1.4.0 | RColorBrewer | 1.1-3 |
Rcpp | 1.0.10 | RcppAnnoy | 0.0.20 |
RcppArmadillo | 0.12.2.0.0 | RcppEigen | 0.3.3.9.3 |
RcppParallel | 5.1.7 | RcppProgress | 0.4.2 |
RcppRoll | 0.3.0 | Rcsdp | 0.1.57.5 |
RCurl | 1.98-1.12 | Rdpack | 2.4 |
reactable | 0.4.4 | reactR | 0.4.4 |
readr | 2.1.4 | readstata13 | 0.10.1 |
readxl | 1.4.2 | recipes | 1.0.6 |
registry | 0.5-1 | regress | 1.3-21 |
relimp | 1.0-5 | rematch | 1.0.1 |
rematch2 | 2.1.2 | remotes | 2.4.2 |
rentrez | 1.2.3 | renv | 0.17.3 |
reprex | 2.0.2 | reshape | 0.8.9 |
reshape2 | 1.4.4 | rex | 1.2.1 |
rgl | 1.1.3 | RgoogleMaps | 1.4.5.3 |
RGraphics | 3.0-2 | Rgraphviz | 2.44.0 |
rhdf5 | 2.44.0 | rhdf5filters | 1.12.1 |
Rhdf5lib | 1.22.0 | riingo | 0.3.1 |
ritis | 1.0.0 | rJava | 1.0-6 |
RJDBC | 0.2-10 | rjson | 0.2.21 |
RJSONIO | 1.3-1.8 | rlang | 1.1.1 |
rlecuyer | 0.3-7 | rmarkdown | 2.21 |
rmeta | 3.0 | Rmpfr | 0.9-2 |
rms | 6.7-0 | RMySQL | 0.10.25 |
rncl | 0.8.7 | robustbase | 0.95-1 |
ROCR | 1.0-11 | Rook | 1.2 |
rotl | 3.0.14 | roxygen2 | 7.2.3 |
RPostgreSQL | 0.7-5 | rprojroot | 2.0.3 |
rredlist | 0.7.1 | rsample | 1.1.1 |
Rsolnp | 1.16 | RSpectra | 0.16-1 |
RSQLite | 2.3.1 | rstan | 2.21.8 |
rstantools | 2.3.1 | rstudioapi | 0.14 |
Rttf2pt1 | 1.3.12 | RUnit | 0.4.32 |
rversions | 2.1.2 | rvest | 1.0.3 |
Rvmmin | 2018-4.17.1 | s2 | 1.1.3 |
S4Vectors | 0.38.1 | sandwich | 3.0-2 |
sass | 0.4.6 | scales | 1.2.1 |
scatterplot3d | 0.3-44 | ScottKnott | 1.3-0 |
sealasso | 0.1-3 | segmented | 1.6-4 |
selectr | 0.4-2 | sem | 3.1-15 |
SemiPar | 1.0-4.2 | semTools | 0.5-6 |
seqinr | 4.2-30 | seriation | 1.4.2 |
sessioninfo | 1.2.2 | setRNG | 2022.4-1 |
sets | 1.0-24 | sf | 1.0-12 |
sfsmisc | 1.1-15 | shape | 1.4.6 |
shapefiles | 0.7.2 | shiny | 1.7.4 |
shiny.semantic | 0.4.3 | shinyjs | 2.1.0 |
shinystan | 2.6.0 | shinythemes | 1.2.0 |
SimComp | 3.3 | simsem | 0.5-16 |
sitmo | 2.0.2 | slam | 0.1-50 |
slider | 0.3.0 | sn | 2.1.1 |
sna | 2.7-1 | snakecase | 0.11.0 |
snow | 0.4-4 | snowfall | 1.84-6.2 |
solrium | 1.2.0 | sourcetools | 0.1.7-1 |
sp | 1.6-0 | spam | 2.9-1 |
SparseM | 1.81 | SpatialExtremes | 2.1-0 |
spatstat | 3.0-5 | spatstat.data | 3.0-1 |
spatstat.explore | 3.1-0 | spatstat.geom | 3.1-0 |
spatstat.linnet | 3.1-0 | spatstat.model | 3.2-3 |
spatstat.random | 3.1-4 | spatstat.sparse | 3.0-1 |
spatstat.utils | 3.0-2 | spData | 2.2.2 |
spdep | 1.2-8 | SQUAREM | 2021.1 |
ssgraph | 1.15 | stabs | 0.6-4 |
StanHeaders | 2.21.0-7 | statmod | 1.5.0 |
statnet.common | 4.8.0 | stringi | 1.7.12 |
stringr | 1.5.0 | strucchange | 1.5-3 |
styler | 1.9.1 | subplex | 1.8 |
superml | 0.5.6 | SuppDists | 1.1-9.7 |
survcomp | 1.50.0 | survey | 4.2-1 |
survivalROC | 1.0.3.1 | survPresmooth | 1.1-11 |
svUnit | 1.0.6 | sys | 3.4.1 |
systemfonts | 1.0.4 | tables | 0.9.17 |
tabnet | 0.3.0 | taxize | 0.9.100 |
tensor | 1.5 | tensorA | 0.36.2 |
terra | 1.7-29 | testit | 0.13 |
testthat | 3.1.8 | textplot | 0.2.2 |
textshaping | 0.3.6 | TH.data | 1.1-2 |
threejs | 0.3.3 | tibble | 3.2.1 |
tidymodels | 1.1.0 | tidyquant | 1.0.7 |
tidyr | 1.3.0 | tidyselect | 1.2.0 |
tidytree | 0.4.2 | tidyverse | 2.0.0 |
tiff | 0.1-11 | timechange | 0.2.0 |
timeDate | 4022.108 | timeSeries | 4021.105 |
timetk | 2.8.3 | tinytex | 0.45 |
tis | 1.39 | tkrplot | 0.0-27 |
tmvtnorm | 1.5 | topicmodels.etm | 0.1.0 |
torch | 0.10.0 | torchaudio | 0.3.1.9000 |
torchdatasets | 0.3.0 | torchvision | 0.5.1 |
treeio | 1.24.0 | triebeard | 0.4.1 |
trimcluster | 0.1-5 | tripack | 1.3-9.1 |
truncnorm | 1.0-9 | truncreg | 0.2-5 |
tseries | 0.10-54 | tsfeatures | 1.1 |
TSP | 1.2-4 | TTR | 0.24.3 |
tune | 1.1.1 | tweenr | 2.0.2 |
tzdb | 0.3.0 | ucminf | 1.1-4.1 |
udpipe | 0.8.11 | units | 0.8-2 |
urca | 1.3-3 | urlchecker | 1.0.1 |
urltools | 1.7.3 | usethis | 2.1.6 |
utf8 | 1.2.3 | uuid | 1.1-0 |
uwot | 0.1.14 | V8 | 4.3.0 |
vcd | 1.4-11 | vctrs | 0.6.2 |
vegan | 2.6-4 | VGAM | 1.1-8 |
VGAMdata | 1.1-8 | viridis | 0.6.3 |
viridisLite | 0.4.2 | visNetwork | 2.1.2 |
vroom | 1.6.3 | waldo | 0.5.1 |
warp | 0.2.0 | waveslim | 1.8.4 |
wavethresh | 4.7.2 | webshot | 0.5.4 |
whisker | 0.4.1 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | WikipediR | 1.5.0 |
wikitaxa | 0.4.0 | withr | 2.5.0 |
wk | 0.7.3 | word2vec | 0.3.4 |
workflows | 1.1.3 | workflowsets | 1.0.1 |
worrms | 0.4.2 | xfun | 0.39 |
xgboost | 1.7.5.1 | XLConnect | 1.0.7 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.14 | xml2 | 1.3.4 |
xopen | 1.0.0 | xtable | 1.8-4 |
xts | 0.13.1 | XVector | 0.40.0 |
yaml | 2.3.7 | yardstick | 1.2.0 |
yulab.utils | 0.0.6 | zeallot | 0.1.0 |
zip | 2.3.0 | zlibbioc | 1.46.0 |
zoo | 1.8-12 |
RStudio Server
R: 4.2.3
rstudio-server: 2022.12.0-353
CUDA Version: 12.0
GPU Driver Version: 525.85.12
Release Notes
Increased the maximum number of open connections to 1024, with three of them allocated for stdin, stdout, and stderr.
R packages
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.0 |
abind | 1.4-5 | ACD | 1.5.3 |
acepack | 1.4.1 | actuar | 3.3-2 |
ada | 2.0-5 | ade4 | 1.7-22 |
ade4TkGUI | 0.3-1 | adegraphics | 1.0-18 |
adehabitatLT | 0.3.26 | adehabitatMA | 0.3.15 |
admisc | 0.31 | affxparser | 1.70.0 |
affy | 1.76.0 | affyio | 1.68.0 |
agricolae | 1.3-5 | akima | 0.6-3.4 |
AlgDesign | 1.2.1 | alphavantager | 0.1.2 |
Amelia | 1.8.1 | AnnotationDbi | 1.60.2 |
anytime | 0.3.9 | ape | 5.7-1 |
aplot | 0.1.10 | arm | 1.13-1 |
aroma.apd | 0.6.1 | ascii | 2.4 |
ash | 1.0-15 | askpass | 1.1 |
assertthat | 0.2.1 | AUC | 0.3.2 |
av | 0.8.3 | backports | 1.4.1 |
base64 | 2.0.1 | base64enc | 0.1-3 |
baseballr | 1.3.0 | bayesplot | 1.10.0 |
BB | 2019.10-1 | BDgraph | 2.72 |
bdsmatrix | 1.3-6 | beadarray | 2.48.0 |
BeadDataPackR | 1.50.0 | BGLR | 1.1.0 |
BH | 1.81.0-1 | biganalytics | 1.1.21 |
bigD | 0.2.0 | biglars | 1.0.2 |
biglm | 0.9-2.1 | bigmemory | 4.6.1 |
bigmemory.sri | 0.1.6 | bigml | 0.1.2 |
bindr | 0.1.1 | bindrcpp | 0.2.2 |
Biobase | 2.58.0 | BiocGenerics | 0.44.0 |
BiocManager | 1.30.20 | BiocParallel | 1.32.5 |
BiocVersion | 3.16.0 | biomformat | 1.26.0 |
Biostrings | 2.66.0 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
blob | 1.2.4 | BLR | 1.6 |
bold | 1.2.0 | bootstrap | 2019.6 |
bpca | 1.3-4 | BradleyTerry2 | 1.1-2 |
brew | 1.0-8 | brglm | 0.7.2 |
brglm2 | 0.9 | bridgesampling | 1.1-2 |
brio | 1.1.3 | brms | 2.19.0 |
Brobdingnag | 1.2-9 | broom | 1.0.4 |
bslib | 0.4.2 | BsMD | 2020.4.30 |
ca | 0.71.1 | cachem | 1.0.7 |
calibrator | 1.2-8 | callr | 3.7.3 |
car | 3.1-1 | carData | 3.0-5 |
caret | 6.0-93 | caTools | 1.18.2 |
CellNOptR | 1.44.0 | cellranger | 1.1.0 |
checkmate | 2.1.0 | chron | 2.3-60 |
CircStats | 0.2-6 | classInt | 0.4-9 |
cli | 3.6.0 | clipr | 0.8.0 |
clock | 0.6.1 | clusterGeneration | 1.3.7 |
CNORode | 1.40.0 | coda | 0.19-4 |
coin | 1.4-2 | collapse | 1.9.3 |
colorspace | 2.1-0 | colourpicker | 1.2.0 |
combinat | 0.0-8 | commonmark | 1.9.0 |
conditionz | 0.1.0 | conf.design | 2.0.0 |
conflicted | 1.2.0 | contfrac | 1.1-12 |
coro | 1.0.3 | corpcor | 1.6.10 |
corrgram | 1.14 | corrplot | 0.92 |
cpp11 | 0.4.3 | crayon | 1.5.2 |
credentials | 1.3.2 | crosstalk | 1.2.0 |
crul | 1.3 | ctv | 0.9-4 |
cubature | 2.0.4.6 | curl | 5.0.0 |
CVST | 0.2-3 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | data.table | 1.14.8 |
DataExplorer | 0.8.2 | datapasta | 3.1.0 |
DBI | 1.1.3 | dbplyr | 2.3.1 |
deldir | 1.0-6 | dendextend | 1.16.0 |
DEoptimR | 1.0-11 | Deriv | 4.1.3 |
desc | 1.4.2 | deSolve | 1.35 |
devtools | 2.4.5 | dfidx | 0.0-5 |
dfoptim | 2020.10-1 | diagram | 1.6.5 |
DiagrammeR | 1.0.9 | dials | 1.1.0 |
DiceDesign | 1.9 | dichromat | 2.0-0.1 |
diffobj | 0.3.5 | digest | 0.6.31 |
dimRed | 0.2.6 | diptest | 0.76-0 |
discretization | 1.0-1.1 | distributional | 0.3.1 |
doBy | 4.6.16 | doc2vec | 0.2.0 |
DoE.base | 1.2-1 | doMC | 1.3.8 |
doParallel | 1.0.17 | dotCall64 | 1.0-2 |
downlit | 0.4.2 | downloader | 0.4 |
dplyr | 1.1.0 | dqrng | 0.3.0 |
DRR | 0.0.4 | DT | 0.27 |
dtplyr | 1.3.0 | dummies | 1.5.6 |
dygraphs | 1.1.1.6 | dynamicTreeCut | 1.63-1 |
e1071 | 1.7-13 | EbayesThresh | 1.4-12 |
EBImage | 4.40.0 | effects | 4.2-2 |
ellipse | 0.4.3 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | emulator | 1.2-21 |
enrichwith | 0.3.1 | equivalence | 0.7.2 |
estimability | 1.4.1 | ETLUtils | 1.5 |
evaluate | 0.20 | expint | 0.1-8 |
expm | 0.999-7 | extraDistr | 1.9.1 |
extrafont | 0.19 | extrafontdb | 1.0 |
fansi | 1.0.4 | farver | 2.1.1 |
fastICA | 1.2-3 | fastmap | 1.1.1 |
fastmatch | 1.1-3 | fda | 6.0.5 |
fdaPDE | 1.1-11 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
ff | 4.0.9 | ffbase | 0.13.3 |
fftwtools | 0.9-11 | fields | 14.1 |
filehash | 2.4-5 | filelock | 1.0.2 |
flashClust | 1.01-2 | flexmix | 2.3-19 |
FNN | 1.1.3.1 | fontawesome | 0.5.0 |
forcats | 1.0.0 | foreach | 1.5.2 |
forecast | 8.21 | formatR | 1.14 |
Formula | 1.2-5 | fpc | 2.2-10 |
fracdiff | 1.5-2 | fs | 1.6.1 |
fts | 0.9.9.2 | functional | 0.6 |
furrr | 0.3.1 | futile.logger | 1.4.3 |
futile.options | 1.0.1 | future | 1.32.0 |
future.apply | 1.10.0 | gam | 1.22-1 |
gamlss | 5.4-12 | gamlss.data | 6.0-2 |
gamlss.dist | 6.0-5 | gargle | 1.3.0 |
gclus | 1.3.2 | gdata | 2.18.0.1 |
geepack | 1.3.9 | genalg | 0.2.1 |
generics | 0.1.3 | genetics | 1.3.8.1.3 |
GenomeInfoDb | 1.34.9 | GenomeInfoDbData | 1.2.9 |
GenomicRanges | 1.50.2 | GEOquery | 2.66.0 |
geosphere | 1.5-18 | gert | 1.9.2 |
ggalt | 0.4.0 | ggdendro | 0.1.23 |
ggforce | 0.4.1 | ggformula | 0.10.2 |
ggfun | 0.0.9 | ggmap | 3.0.2 |
ggplot2 | 3.4.1 | ggplotify | 0.1.0 |
ggrepel | 0.9.3 | ggridges | 0.5.4 |
ggstance | 0.3.6 | ggtree | 3.6.2 |
ggvis | 0.4.8 | gh | 1.4.0 |
git2r | 0.31.0 | gitcreds | 0.1.2 |
glassoFast | 1.0 | gld | 2.6.6 |
glmnet | 4.1-6 | globals | 0.16.2 |
glue | 1.6.2 | gmm | 1.7 |
gmodels | 2.18.1.1 | gmp | 0.7-1 |
GO.db | 3.16.0 | goftest | 1.2-3 |
googledrive | 2.0.0 | googlesheets4 | 1.0.1 |
googleVis | 0.7.1 | gower | 1.0.1 |
GPArotation | 2022.10-2 | gpclib | 1.5-6 |
GPfit | 1.0-8 | gplots | 3.1.3 |
gradethis | 0.2.11.9000 | graph | 1.76.0 |
gridBase | 0.4-7 | gridExtra | 2.3 |
gridGraphics | 0.5-1 | gridSVG | 1.7-5 |
grImport | 0.9-7 | grImport2 | 0.2-0 |
gsubfn | 0.7 | gt | 0.8.0 |
gtable | 0.3.2 | gtools | 3.9.4 |
HaploSim | 1.8.4.2 | hardhat | 1.2.0 |
haven | 2.5.2 | hdrcde | 3.4 |
hexbin | 1.28.2 | hflights | 0.1 |
HH | 3.1-49 | highlight | 0.5.1 |
highr | 0.10 | Hmisc | 5.0-1 |
hms | 1.1.2 | htmlTable | 2.4.1 |
htmltools | 0.5.4 | htmlwidgets | 1.6.2 |
httpcode | 0.3.0 | httpuv | 1.6.9 |
httr | 1.4.5 | httr2 | 0.2.2 |
HydroMe | 2.0-1 | HyperbolicDist | 0.6-4 |
hypergeo | 1.2-13 | ICC | 2.4.0 |
Icens | 1.70.0 | ids | 1.0.1 |
igraph | 1.4.1 | igraphdata | 1.0.1 |
illuminaio | 0.40.0 | impute | 1.72.3 |
ineq | 0.2-13 | infer | 1.0.4 |
influenceR | 0.1.0.1 | ini | 0.3.1 |
inline | 0.3.19 | insight | 0.19.0 |
interp | 1.1-3 | intervals | 0.15.2 |
introgress | 1.2.3 | inum | 1.0-5 |
ipred | 0.9-14 | IRanges | 2.32.0 |
irlba | 2.3.5.1 | Iso | 0.0-18.1 |
isoband | 0.2.7 | iterators | 1.0.14 |
itertools | 0.1-3 | janitor | 2.2.0 |
jpeg | 0.1-10 | jquerylib | 0.1.4 |
jsonlite | 1.8.4 | juicyjuice | 0.1.0 |
KEGGREST | 1.38.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-32 | klaR | 1.7-1 |
knitr | 1.42 | ks | 1.14.0 |
labeling | 0.4.2 | labelled | 2.10.0 |
LaF | 0.8.4 | Lahman | 10.0-1 |
lambda.r | 1.2.4 | lars | 1.3 |
later | 1.3.0 | latticeExtra | 0.6-30 |
lava | 1.7.2.1 | lavaan | 0.6-15 |
lavaan.survey | 1.1.3.1 | lazyeval | 0.2.2 |
lcda | 0.3.1 | leaflet | 2.1.2 |
leaflet.providers | 1.9.0 | leaps | 3.1 |
LearnBayes | 2.15.1 | learnr | 0.11.3.9000 |
lgr | 0.4.4 | lhs | 1.1.6 |
libcoin | 1.0-9 | lifecycle | 1.0.3 |
LIM | 1.4.7 | limma | 3.54.2 |
limSolve | 1.5.6 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | lme4 | 1.1-32 |
lmom | 2.9 | lmtest | 0.9-40 |
locfit | 1.5-9.7 | lokern | 1.1-10 |
loo | 2.5.1 | lpSolve | 5.6.18 |
lubridate | 1.9.2 | luz | 0.3.1 |
magic | 1.6-1 | magrittr | 2.0.3 |
manipulateWidget | 0.11.1 | mapproj | 1.2.11 |
maps | 3.4.1 | maptools | 1.1-6 |
markdown | 1.5 | MassSpecWavelet | 1.64.1 |
Matching | 4.10-8 | MatchIt | 4.5.1 |
mathjaxr | 1.6-0 | matrixcalc | 1.0-6 |
MatrixModels | 0.5-1 | matrixStats | 0.63.0 |
maxLik | 1.5-2 | mboost | 2.9-7 |
mclust | 6.0.0 | mcmc | 0.9-7 |
MCMCglmm | 2.34 | MEIGOR | 1.31.0 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
Metrics | 0.1.4 | mi | 1.1 |
mice | 3.15.0 | microbenchmark | 1.4.9 |
mime | 0.12 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-3 | minqa | 1.2.5 |
misc3d | 0.9-1 | miscTools | 0.6-26 |
mitools | 2.4 | mixOmics | 6.22.0 |
mlbench | 2.1-3 | mlmRev | 1.0-8 |
mlogit | 1.1-1 | mlr3 | 0.15.0 |
mlr3measures | 0.5.0 | mlr3misc | 0.11.0 |
mnormt | 2.1.1 | modeldata | 1.1.0 |
modelenv | 0.1.1 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.10 | modeltime | 1.2.5 |
modeltools | 0.2-23 | moments | 0.14.1 |
mondate | 0.10.02 | mosaic | 1.8.4.2 |
mosaicCore | 0.9.2.1 | mosaicData | 0.20.3 |
mratios | 1.4.2 | multcomp | 1.4-23 |
multicool | 0.1-12 | multtest | 2.54.0 |
munsell | 0.5.0 | mvMORPH | 1.1.7 |
mvtnorm | 1.1-3 | natserv | 1.0.0 |
network | 1.18.1 | networkD3 | 0.4 |
NISTnls | 0.9-13 | nleqslv | 3.3.4 |
nloptr | 2.0.3 | nls2 | 0.3-3 |
nlstools | 2.0-0 | nnls | 1.4 |
nortest | 1.0-4 | np | 0.60-17 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
odbc | 1.3.4 | openssl | 2.0.6 |
openxlsx | 4.2.5.2 | optextras | 2019-12.4 |
optimParallel | 1.0-2 | ordinal | 2022.11-16 |
padr | 0.6.2 | PairedData | 1.1.1 |
palmerpenguins | 0.1.1 | paradox | 0.11.1 |
parallelly | 1.34.0 | parsnip | 1.0.4 |
partitions | 1.10-7 | party | 1.3-13 |
partykit | 1.2-18 | pastecs | 1.3.21 |
patchwork | 1.1.2 | pbapply | 1.7-0 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
pbmcapply | 1.5.1 | PBSmapping | 2.73.2 |
pcaMethods | 1.90.0 | pcaPP | 2.0-3 |
pedigree | 1.4.2 | PerformanceAnalytics | 2.0.4 |
permute | 0.9-7 | phangorn | 2.11.1 |
phyloseq | 1.42.0 | phytools | 1.5-1 |
pillar | 1.8.1 | pins | 1.1.0 |
pixmap | 0.4-12 | pkgbuild | 1.4.0 |
pkgconfig | 2.0.3 | pkgdown | 2.0.7 |
pkgload | 1.3.2 | PKPDmodels | 0.3.2 |
plm | 2.6-2 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.1 |
plotrix | 3.8-2 | pls | 2.8-1 |
plyr | 1.8.8 | png | 0.1-8 |
poLCA | 1.6.0.1 | polspline | 1.1.22 |
polyclip | 1.10-4 | polycor | 0.8-1 |
polynom | 1.4-1 | posterior | 1.4.1 |
prabclus | 2.3-2 | pracma | 2.4.2 |
praise | 1.0.0 | preprocessCore | 1.60.2 |
prettyunits | 1.1.1 | princurve | 2.1.6 |
pROC | 1.18.0 | processx | 3.8.0 |
prodlim | 2019.11.13 | profileModel | 0.6.1 |
profvis | 0.3.7 | progress | 1.2.2 |
progressr | 0.13.0 | proj4 | 1.0-12 |
promises | 1.2.0.1 | prophet | 1.0 |
proto | 1.0.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | ps | 1.7.2 |
pscl | 1.5.5 | psy | 1.2 |
psych | 2.2.9 | purrr | 1.0.1 |
qap | 0.1-2 | qtl | 1.58 |
quadprog | 1.5-8 | Quandl | 2.11.0 |
quantmod | 0.4.20 | quantreg | 5.94 |
questionr | 0.7.8 | QUIC | 1.1.1 |
qvalue | 2.30.0 | qvcalc | 1.0.2 |
R.cache | 0.16.0 | R.devices | 2.17.1 |
R.filesets | 2.15.0 | R.huge | 0.9.0 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.25.0 | R.rsp | 0.45.0 |
R.utils | 2.12.2 | R2HTML | 2.3.3 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R6 | 2.5.1 | ragg | 1.2.5 |
rainbow | 3.7 | randomForest | 4.7-1.1 |
rappdirs | 0.3.3 | rARPACK | 0.11-0 |
raster | 3.6-20 | ratelimitr | 0.4.1 |
rbenchmark | 1.0.0 | RBGL | 1.74.0 |
rbibutils | 2.2.13 | Rcgmin | 2022-4.30 |
rcmdcheck | 1.4.0 | RColorBrewer | 1.1-3 |
Rcpp | 1.0.10 | RcppAnnoy | 0.0.20 |
RcppArmadillo | 0.12.0.1.0 | RcppEigen | 0.3.3.9.3 |
RcppParallel | 5.1.7 | RcppProgress | 0.4.2 |
RcppRoll | 0.3.0 | Rcsdp | 0.1.57.4 |
RCurl | 1.98-1.10 | Rdpack | 2.4 |
reactable | 0.4.4 | reactR | 0.4.4 |
readr | 2.1.4 | readstata13 | 0.10.1 |
readxl | 1.4.2 | recipes | 1.0.5 |
registry | 0.5-1 | regress | 1.3-21 |
relaxnet | 0.3-2 | reliaR | 0.01 |
relimp | 1.0-5 | rematch | 1.0.1 |
rematch2 | 2.1.2 | remotes | 2.4.2 |
rentrez | 1.2.3 | renv | 0.17.1 |
reprex | 2.0.2 | reshape | 0.8.9 |
reshape2 | 1.4.4 | rex | 1.2.1 |
rgl | 1.0.1 | RgoogleMaps | 1.4.5.3 |
RGraphics | 3.0-2 | Rgraphviz | 2.42.0 |
rhdf5 | 2.42.0 | rhdf5filters | 1.10.0 |
Rhdf5lib | 1.20.0 | riingo | 0.3.1 |
ritis | 1.0.0 | rJava | 1.0-6 |
RJDBC | 0.2-10 | rjson | 0.2.21 |
RJSONIO | 1.3-1.8 | rlang | 1.1.0 |
rlecuyer | 0.3-5 | rmarkdown | 2.20 |
rmeta | 3.0 | Rmpfr | 0.9-1 |
rms | 6.5-0 | RMySQL | 0.10.25 |
rncl | 0.8.7 | robustbase | 0.95-0 |
ROCR | 1.0-11 | Rook | 1.2 |
rotl | 3.0.14 | roxygen2 | 7.2.3 |
RPostgreSQL | 0.7-5 | rprojroot | 2.0.3 |
rredlist | 0.7.1 | rsample | 1.1.1 |
Rsolnp | 1.16 | RSpectra | 0.16-1 |
RSQLite | 2.3.0 | rstan | 2.21.8 |
rstantools | 2.3.0 | rstudioapi | 0.14 |
Rttf2pt1 | 1.3.12 | RUnit | 0.4.32 |
rversions | 2.1.2 | rvest | 1.0.3 |
Rvmmin | 2018-4.17.1 | s2 | 1.1.2 |
S4Vectors | 0.36.2 | sandwich | 3.0-2 |
sass | 0.4.5 | scales | 1.2.1 |
scatterplot3d | 0.3-43 | ScottKnott | 1.3-0 |
SDMTools | 1.1-221.2 | sealasso | 0.1-3 |
segmented | 1.6-2 | selectr | 0.4-2 |
sem | 3.1-15 | SemiPar | 1.0-4.2 |
semTools | 0.5-6 | seqinr | 4.2-23 |
seriation | 1.4.2 | sessioninfo | 1.2.2 |
setRNG | 2022.4-1 | sets | 1.0-24 |
sf | 1.0-9 | sfsmisc | 1.1-14 |
shape | 1.4.6 | shapefiles | 0.7.2 |
shiny | 1.7.4 | shiny.semantic | 0.4.3 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinythemes | 1.2.0 | SimComp | 3.3 |
simsem | 0.5-16 | sitmo | 2.0.2 |
slam | 0.1-50 | slider | 0.3.0 |
sn | 2.1.0 | sna | 2.7-1 |
snakecase | 0.11.0 | snow | 0.4-4 |
snowfall | 1.84-6.2 | solrium | 1.2.0 |
sourcetools | 0.1.7-1 | sp | 1.6-0 |
spam | 2.9-1 | SparseM | 1.81 |
SpatialExtremes | 2.1-0 | spatstat | 3.0-3 |
spatstat.data | 3.0-1 | spatstat.explore | 3.1-0 |
spatstat.geom | 3.1-0 | spatstat.linnet | 3.0-6 |
spatstat.model | 3.2-1 | spatstat.random | 3.1-4 |
spatstat.sparse | 3.0-1 | spatstat.utils | 3.0-2 |
spData | 2.2.2 | spdep | 1.2-8 |
SQUAREM | 2021.1 | ssgraph | 1.15 |
stabs | 0.6-4 | StanHeaders | 2.21.0-7 |
statmod | 1.5.0 | statnet.common | 4.8.0 |
stringi | 1.7.12 | stringr | 1.5.0 |
strucchange | 1.5-3 | styler | 1.9.1 |
subplex | 1.8 | superml | 0.5.6 |
SuppDists | 1.1-9.7 | survcomp | 1.48.0 |
survey | 4.1-1 | survivalROC | 1.0.3.1 |
survPresmooth | 1.1-11 | svUnit | 1.0.6 |
sybil | 2.2.0 | synbreedData | 1.5 |
sys | 3.4.1 | systemfonts | 1.0.4 |
tables | 0.9.10 | tabnet | 0.3.0 |
taxize | 0.9.100 | tensor | 1.5 |
tensorA | 0.36.2 | terra | 1.7-18 |
testit | 0.13 | testthat | 3.1.7 |
textplot | 0.2.2 | textshaping | 0.3.6 |
TH.data | 1.1-1 | threejs | 0.3.3 |
tibble | 3.2.0 | tidymodels | 1.0.0 |
tidyquant | 1.0.6 | tidyr | 1.3.0 |
tidyselect | 1.2.0 | tidytree | 0.4.2 |
tidyverse | 2.0.0 | tiff | 0.1-11 |
timechange | 0.2.0 | timeDate | 4022.108 |
timeSeries | 4021.105 | timetk | 2.8.2 |
tinytex | 0.44 | tis | 1.39 |
tkrplot | 0.0-27 | tmvtnorm | 1.5 |
topicmodels.etm | 0.1.0 | torch | 0.9.1 |
torchaudio | 0.3.1.9000 | torchdatasets | 0.3.0 |
torchvision | 0.5.0 | treeio | 1.22.0 |
triebeard | 0.4.1 | trimcluster | 0.1-5 |
tripack | 1.3-9.1 | truncnorm | 1.0-8 |
truncreg | 0.2-5 | tseries | 0.10-53 |
tsfeatures | 1.1 | TSP | 1.2-3 |
TTR | 0.24.3 | tune | 1.0.1 |
tweenr | 2.0.2 | tzdb | 0.3.0 |
ucminf | 1.1-4.1 | udpipe | 0.8.11 |
units | 0.8-1 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
usethis | 2.1.6 | utf8 | 1.2.3 |
uuid | 1.1-0 | uwot | 0.1.14 |
V8 | 4.2.2 | vcd | 1.4-11 |
vctrs | 0.6.0 | vegan | 2.6-4 |
VGAM | 1.1-8 | VGAMdata | 1.1-8 |
viridis | 0.6.2 | viridisLite | 0.4.1 |
visNetwork | 2.1.2 | vroom | 1.6.1 |
waldo | 0.4.0 | warp | 0.2.0 |
waveslim | 1.8.4 | wavethresh | 4.7.2 |
webshot | 0.5.4 | whisker | 0.4.1 |
widenet | 0.1-2 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | WikipediR | 1.5.0 |
wikitaxa | 0.4.0 | withr | 2.5.0 |
wk | 0.7.2 | word2vec | 0.3.4 |
workflows | 1.1.3 | workflowsets | 1.0.0 |
worrms | 0.4.2 | xfun | 0.37 |
xgboost | 1.7.3.1 | XLConnect | 1.0.7 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.13 | xml2 | 1.3.3 |
xopen | 1.0.0 | xtable | 1.8-4 |
xts | 0.13.0 | XVector | 0.38.0 |
yaml | 2.3.7 | yardstick | 1.1.0 |
yulab.utils | 0.0.6 | zeallot | 0.1.0 |
zip | 2.2.2 | zlibbioc | 1.44.0 |
zoo | 1.8-11 |
RStudio Server
R: 4.2.3
rstudio-server: 2022.12.0-353
CUDA Version: 12.0
GPU Driver Version: 525.85.12
Release Notes
Applied system patches.
Enabled automatic compression and extraction for exporting and uploading.
Removed the file size limit for uploads, allowing users to upload larger files.
R packages
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.0 |
abind | 1.4-5 | ACD | 1.5.3 |
acepack | 1.4.1 | actuar | 3.3-2 |
ada | 2.0-5 | ade4 | 1.7-22 |
ade4TkGUI | 0.3-1 | adegraphics | 1.0-18 |
adehabitatLT | 0.3.26 | adehabitatMA | 0.3.15 |
admisc | 0.31 | affxparser | 1.70.0 |
affy | 1.76.0 | affyio | 1.68.0 |
agricolae | 1.3-5 | akima | 0.6-3.4 |
AlgDesign | 1.2.1 | alphavantager | 0.1.2 |
Amelia | 1.8.1 | AnnotationDbi | 1.60.2 |
anytime | 0.3.9 | ape | 5.7-1 |
aplot | 0.1.10 | arm | 1.13-1 |
aroma.apd | 0.6.1 | ascii | 2.4 |
ash | 1.0-15 | askpass | 1.1 |
assertthat | 0.2.1 | AUC | 0.3.2 |
av | 0.8.3 | backports | 1.4.1 |
base64 | 2.0.1 | base64enc | 0.1-3 |
baseballr | 1.3.0 | bayesplot | 1.10.0 |
BB | 2019.10-1 | BDgraph | 2.72 |
bdsmatrix | 1.3-6 | beadarray | 2.48.0 |
BeadDataPackR | 1.50.0 | BGLR | 1.1.0 |
BH | 1.81.0-1 | biganalytics | 1.1.21 |
bigD | 0.2.0 | biglars | 1.0.2 |
biglm | 0.9-2.1 | bigmemory | 4.6.1 |
bigmemory.sri | 0.1.6 | bigml | 0.1.2 |
bindr | 0.1.1 | bindrcpp | 0.2.2 |
Biobase | 2.58.0 | BiocGenerics | 0.44.0 |
BiocManager | 1.30.20 | BiocParallel | 1.32.5 |
BiocVersion | 3.16.0 | biomformat | 1.26.0 |
Biostrings | 2.66.0 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
blob | 1.2.4 | BLR | 1.6 |
bold | 1.2.0 | bootstrap | 2019.6 |
bpca | 1.3-4 | BradleyTerry2 | 1.1-2 |
brew | 1.0-8 | brglm | 0.7.2 |
brglm2 | 0.9 | bridgesampling | 1.1-2 |
brio | 1.1.3 | brms | 2.19.0 |
Brobdingnag | 1.2-9 | broom | 1.0.4 |
bslib | 0.4.2 | BsMD | 2020.4.30 |
ca | 0.71.1 | cachem | 1.0.7 |
calibrator | 1.2-8 | callr | 3.7.3 |
car | 3.1-1 | carData | 3.0-5 |
caret | 6.0-93 | caTools | 1.18.2 |
CellNOptR | 1.44.0 | cellranger | 1.1.0 |
checkmate | 2.1.0 | chron | 2.3-60 |
CircStats | 0.2-6 | classInt | 0.4-9 |
cli | 3.6.0 | clipr | 0.8.0 |
clock | 0.6.1 | clusterGeneration | 1.3.7 |
CNORode | 1.40.0 | coda | 0.19-4 |
coin | 1.4-2 | collapse | 1.9.3 |
colorspace | 2.1-0 | colourpicker | 1.2.0 |
combinat | 0.0-8 | commonmark | 1.9.0 |
conditionz | 0.1.0 | conf.design | 2.0.0 |
conflicted | 1.2.0 | contfrac | 1.1-12 |
coro | 1.0.3 | corpcor | 1.6.10 |
corrgram | 1.14 | corrplot | 0.92 |
cpp11 | 0.4.3 | crayon | 1.5.2 |
credentials | 1.3.2 | crosstalk | 1.2.0 |
crul | 1.3 | ctv | 0.9-4 |
cubature | 2.0.4.6 | curl | 5.0.0 |
CVST | 0.2-3 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | data.table | 1.14.8 |
DataExplorer | 0.8.2 | datapasta | 3.1.0 |
DBI | 1.1.3 | dbplyr | 2.3.1 |
deldir | 1.0-6 | dendextend | 1.16.0 |
DEoptimR | 1.0-11 | Deriv | 4.1.3 |
desc | 1.4.2 | deSolve | 1.35 |
devtools | 2.4.5 | dfidx | 0.0-5 |
dfoptim | 2020.10-1 | diagram | 1.6.5 |
DiagrammeR | 1.0.9 | dials | 1.1.0 |
DiceDesign | 1.9 | dichromat | 2.0-0.1 |
diffobj | 0.3.5 | digest | 0.6.31 |
dimRed | 0.2.6 | diptest | 0.76-0 |
discretization | 1.0-1.1 | distributional | 0.3.1 |
doBy | 4.6.16 | doc2vec | 0.2.0 |
DoE.base | 1.2-1 | doMC | 1.3.8 |
doParallel | 1.0.17 | dotCall64 | 1.0-2 |
downlit | 0.4.2 | downloader | 0.4 |
dplyr | 1.1.0 | dqrng | 0.3.0 |
DRR | 0.0.4 | DT | 0.27 |
dtplyr | 1.3.0 | dummies | 1.5.6 |
dygraphs | 1.1.1.6 | dynamicTreeCut | 1.63-1 |
e1071 | 1.7-13 | EbayesThresh | 1.4-12 |
EBImage | 4.40.0 | effects | 4.2-2 |
ellipse | 0.4.3 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | emulator | 1.2-21 |
enrichwith | 0.3.1 | equivalence | 0.7.2 |
estimability | 1.4.1 | ETLUtils | 1.5 |
evaluate | 0.20 | expint | 0.1-8 |
expm | 0.999-7 | extraDistr | 1.9.1 |
extrafont | 0.19 | extrafontdb | 1.0 |
fansi | 1.0.4 | farver | 2.1.1 |
fastICA | 1.2-3 | fastmap | 1.1.1 |
fastmatch | 1.1-3 | fda | 6.0.5 |
fdaPDE | 1.1-11 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
ff | 4.0.9 | ffbase | 0.13.3 |
fftwtools | 0.9-11 | fields | 14.1 |
filehash | 2.4-5 | filelock | 1.0.2 |
flashClust | 1.01-2 | flexmix | 2.3-19 |
FNN | 1.1.3.1 | fontawesome | 0.5.0 |
forcats | 1.0.0 | foreach | 1.5.2 |
forecast | 8.21 | formatR | 1.14 |
Formula | 1.2-5 | fpc | 2.2-10 |
fracdiff | 1.5-2 | fs | 1.6.1 |
fts | 0.9.9.2 | functional | 0.6 |
furrr | 0.3.1 | futile.logger | 1.4.3 |
futile.options | 1.0.1 | future | 1.32.0 |
future.apply | 1.10.0 | gam | 1.22-1 |
gamlss | 5.4-12 | gamlss.data | 6.0-2 |
gamlss.dist | 6.0-5 | gargle | 1.3.0 |
gclus | 1.3.2 | gdata | 2.18.0.1 |
geepack | 1.3.9 | genalg | 0.2.1 |
generics | 0.1.3 | genetics | 1.3.8.1.3 |
GenomeInfoDb | 1.34.9 | GenomeInfoDbData | 1.2.9 |
GenomicRanges | 1.50.2 | GEOquery | 2.66.0 |
geosphere | 1.5-18 | gert | 1.9.2 |
ggalt | 0.4.0 | ggdendro | 0.1.23 |
ggforce | 0.4.1 | ggformula | 0.10.2 |
ggfun | 0.0.9 | ggmap | 3.0.2 |
ggplot2 | 3.4.1 | ggplotify | 0.1.0 |
ggrepel | 0.9.3 | ggridges | 0.5.4 |
ggstance | 0.3.6 | ggtree | 3.6.2 |
ggvis | 0.4.8 | gh | 1.4.0 |
git2r | 0.31.0 | gitcreds | 0.1.2 |
glassoFast | 1.0 | gld | 2.6.6 |
glmnet | 4.1-6 | globals | 0.16.2 |
glue | 1.6.2 | gmm | 1.7 |
gmodels | 2.18.1.1 | gmp | 0.7-1 |
GO.db | 3.16.0 | goftest | 1.2-3 |
googledrive | 2.0.0 | googlesheets4 | 1.0.1 |
googleVis | 0.7.1 | gower | 1.0.1 |
GPArotation | 2022.10-2 | gpclib | 1.5-6 |
GPfit | 1.0-8 | gplots | 3.1.3 |
gradethis | 0.2.11.9000 | graph | 1.76.0 |
gridBase | 0.4-7 | gridExtra | 2.3 |
gridGraphics | 0.5-1 | gridSVG | 1.7-5 |
grImport | 0.9-7 | grImport2 | 0.2-0 |
gsubfn | 0.7 | gt | 0.8.0 |
gtable | 0.3.2 | gtools | 3.9.4 |
HaploSim | 1.8.4.2 | hardhat | 1.2.0 |
haven | 2.5.2 | hdrcde | 3.4 |
hexbin | 1.28.2 | hflights | 0.1 |
HH | 3.1-49 | highlight | 0.5.1 |
highr | 0.10 | Hmisc | 5.0-1 |
hms | 1.1.2 | htmlTable | 2.4.1 |
htmltools | 0.5.4 | htmlwidgets | 1.6.2 |
httpcode | 0.3.0 | httpuv | 1.6.9 |
httr | 1.4.5 | httr2 | 0.2.2 |
HydroMe | 2.0-1 | HyperbolicDist | 0.6-4 |
hypergeo | 1.2-13 | ICC | 2.4.0 |
Icens | 1.70.0 | ids | 1.0.1 |
igraph | 1.4.1 | igraphdata | 1.0.1 |
illuminaio | 0.40.0 | impute | 1.72.3 |
ineq | 0.2-13 | infer | 1.0.4 |
influenceR | 0.1.0.1 | ini | 0.3.1 |
inline | 0.3.19 | insight | 0.19.0 |
interp | 1.1-3 | intervals | 0.15.2 |
introgress | 1.2.3 | inum | 1.0-5 |
ipred | 0.9-14 | IRanges | 2.32.0 |
irlba | 2.3.5.1 | Iso | 0.0-18.1 |
isoband | 0.2.7 | iterators | 1.0.14 |
itertools | 0.1-3 | janitor | 2.2.0 |
jpeg | 0.1-10 | jquerylib | 0.1.4 |
jsonlite | 1.8.4 | juicyjuice | 0.1.0 |
KEGGREST | 1.38.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-32 | klaR | 1.7-1 |
knitr | 1.42 | ks | 1.14.0 |
labeling | 0.4.2 | labelled | 2.10.0 |
LaF | 0.8.4 | Lahman | 10.0-1 |
lambda.r | 1.2.4 | lars | 1.3 |
later | 1.3.0 | latticeExtra | 0.6-30 |
lava | 1.7.2.1 | lavaan | 0.6-15 |
lavaan.survey | 1.1.3.1 | lazyeval | 0.2.2 |
lcda | 0.3.1 | leaflet | 2.1.2 |
leaflet.providers | 1.9.0 | leaps | 3.1 |
LearnBayes | 2.15.1 | learnr | 0.11.3.9000 |
lgr | 0.4.4 | lhs | 1.1.6 |
libcoin | 1.0-9 | lifecycle | 1.0.3 |
LIM | 1.4.7 | limma | 3.54.2 |
limSolve | 1.5.6 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | lme4 | 1.1-32 |
lmom | 2.9 | lmtest | 0.9-40 |
locfit | 1.5-9.7 | lokern | 1.1-10 |
loo | 2.5.1 | lpSolve | 5.6.18 |
lubridate | 1.9.2 | luz | 0.3.1 |
magic | 1.6-1 | magrittr | 2.0.3 |
manipulateWidget | 0.11.1 | mapproj | 1.2.11 |
maps | 3.4.1 | maptools | 1.1-6 |
markdown | 1.5 | MassSpecWavelet | 1.64.1 |
Matching | 4.10-8 | MatchIt | 4.5.1 |
mathjaxr | 1.6-0 | matrixcalc | 1.0-6 |
MatrixModels | 0.5-1 | matrixStats | 0.63.0 |
maxLik | 1.5-2 | mboost | 2.9-7 |
mclust | 6.0.0 | mcmc | 0.9-7 |
MCMCglmm | 2.34 | MEIGOR | 1.31.0 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
Metrics | 0.1.4 | mi | 1.1 |
mice | 3.15.0 | microbenchmark | 1.4.9 |
mime | 0.12 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-3 | minqa | 1.2.5 |
misc3d | 0.9-1 | miscTools | 0.6-26 |
mitools | 2.4 | mixOmics | 6.22.0 |
mlbench | 2.1-3 | mlmRev | 1.0-8 |
mlogit | 1.1-1 | mlr3 | 0.15.0 |
mlr3measures | 0.5.0 | mlr3misc | 0.11.0 |
mnormt | 2.1.1 | modeldata | 1.1.0 |
modelenv | 0.1.1 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.10 | modeltime | 1.2.5 |
modeltools | 0.2-23 | moments | 0.14.1 |
mondate | 0.10.02 | mosaic | 1.8.4.2 |
mosaicCore | 0.9.2.1 | mosaicData | 0.20.3 |
mratios | 1.4.2 | multcomp | 1.4-23 |
multicool | 0.1-12 | multtest | 2.54.0 |
munsell | 0.5.0 | mvMORPH | 1.1.7 |
mvtnorm | 1.1-3 | natserv | 1.0.0 |
network | 1.18.1 | networkD3 | 0.4 |
NISTnls | 0.9-13 | nleqslv | 3.3.4 |
nloptr | 2.0.3 | nls2 | 0.3-3 |
nlstools | 2.0-0 | nnls | 1.4 |
nortest | 1.0-4 | np | 0.60-17 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
odbc | 1.3.4 | openssl | 2.0.6 |
openxlsx | 4.2.5.2 | optextras | 2019-12.4 |
optimParallel | 1.0-2 | ordinal | 2022.11-16 |
padr | 0.6.2 | PairedData | 1.1.1 |
palmerpenguins | 0.1.1 | paradox | 0.11.1 |
parallelly | 1.34.0 | parsnip | 1.0.4 |
partitions | 1.10-7 | party | 1.3-13 |
partykit | 1.2-18 | pastecs | 1.3.21 |
patchwork | 1.1.2 | pbapply | 1.7-0 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
pbmcapply | 1.5.1 | PBSmapping | 2.73.2 |
pcaMethods | 1.90.0 | pcaPP | 2.0-3 |
pedigree | 1.4.2 | PerformanceAnalytics | 2.0.4 |
permute | 0.9-7 | phangorn | 2.11.1 |
phyloseq | 1.42.0 | phytools | 1.5-1 |
pillar | 1.8.1 | pins | 1.1.0 |
pixmap | 0.4-12 | pkgbuild | 1.4.0 |
pkgconfig | 2.0.3 | pkgdown | 2.0.7 |
pkgload | 1.3.2 | PKPDmodels | 0.3.2 |
plm | 2.6-2 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.1 |
plotrix | 3.8-2 | pls | 2.8-1 |
plyr | 1.8.8 | png | 0.1-8 |
poLCA | 1.6.0.1 | polspline | 1.1.22 |
polyclip | 1.10-4 | polycor | 0.8-1 |
polynom | 1.4-1 | posterior | 1.4.1 |
prabclus | 2.3-2 | pracma | 2.4.2 |
praise | 1.0.0 | preprocessCore | 1.60.2 |
prettyunits | 1.1.1 | princurve | 2.1.6 |
pROC | 1.18.0 | processx | 3.8.0 |
prodlim | 2019.11.13 | profileModel | 0.6.1 |
profvis | 0.3.7 | progress | 1.2.2 |
progressr | 0.13.0 | proj4 | 1.0-12 |
promises | 1.2.0.1 | prophet | 1.0 |
proto | 1.0.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | ps | 1.7.2 |
pscl | 1.5.5 | psy | 1.2 |
psych | 2.2.9 | purrr | 1.0.1 |
qap | 0.1-2 | qtl | 1.58 |
quadprog | 1.5-8 | Quandl | 2.11.0 |
quantmod | 0.4.20 | quantreg | 5.94 |
questionr | 0.7.8 | QUIC | 1.1.1 |
qvalue | 2.30.0 | qvcalc | 1.0.2 |
R.cache | 0.16.0 | R.devices | 2.17.1 |
R.filesets | 2.15.0 | R.huge | 0.9.0 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.25.0 | R.rsp | 0.45.0 |
R.utils | 2.12.2 | R2HTML | 2.3.3 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R6 | 2.5.1 | ragg | 1.2.5 |
rainbow | 3.7 | randomForest | 4.7-1.1 |
rappdirs | 0.3.3 | rARPACK | 0.11-0 |
raster | 3.6-20 | ratelimitr | 0.4.1 |
rbenchmark | 1.0.0 | RBGL | 1.74.0 |
rbibutils | 2.2.13 | Rcgmin | 2022-4.30 |
rcmdcheck | 1.4.0 | RColorBrewer | 1.1-3 |
Rcpp | 1.0.10 | RcppAnnoy | 0.0.20 |
RcppArmadillo | 0.12.0.1.0 | RcppEigen | 0.3.3.9.3 |
RcppParallel | 5.1.7 | RcppProgress | 0.4.2 |
RcppRoll | 0.3.0 | Rcsdp | 0.1.57.4 |
RCurl | 1.98-1.10 | Rdpack | 2.4 |
reactable | 0.4.4 | reactR | 0.4.4 |
readr | 2.1.4 | readstata13 | 0.10.1 |
readxl | 1.4.2 | recipes | 1.0.5 |
registry | 0.5-1 | regress | 1.3-21 |
relaxnet | 0.3-2 | reliaR | 0.01 |
relimp | 1.0-5 | rematch | 1.0.1 |
rematch2 | 2.1.2 | remotes | 2.4.2 |
rentrez | 1.2.3 | renv | 0.17.1 |
reprex | 2.0.2 | reshape | 0.8.9 |
reshape2 | 1.4.4 | rex | 1.2.1 |
rgl | 1.0.1 | RgoogleMaps | 1.4.5.3 |
RGraphics | 3.0-2 | Rgraphviz | 2.42.0 |
rhdf5 | 2.42.0 | rhdf5filters | 1.10.0 |
Rhdf5lib | 1.20.0 | riingo | 0.3.1 |
ritis | 1.0.0 | rJava | 1.0-6 |
RJDBC | 0.2-10 | rjson | 0.2.21 |
RJSONIO | 1.3-1.8 | rlang | 1.1.0 |
rlecuyer | 0.3-5 | rmarkdown | 2.20 |
rmeta | 3.0 | Rmpfr | 0.9-1 |
rms | 6.5-0 | RMySQL | 0.10.25 |
rncl | 0.8.7 | robustbase | 0.95-0 |
ROCR | 1.0-11 | Rook | 1.2 |
rotl | 3.0.14 | roxygen2 | 7.2.3 |
RPostgreSQL | 0.7-5 | rprojroot | 2.0.3 |
rredlist | 0.7.1 | rsample | 1.1.1 |
Rsolnp | 1.16 | RSpectra | 0.16-1 |
RSQLite | 2.3.0 | rstan | 2.21.8 |
rstantools | 2.3.0 | rstudioapi | 0.14 |
Rttf2pt1 | 1.3.12 | RUnit | 0.4.32 |
rversions | 2.1.2 | rvest | 1.0.3 |
Rvmmin | 2018-4.17.1 | s2 | 1.1.2 |
S4Vectors | 0.36.2 | sandwich | 3.0-2 |
sass | 0.4.5 | scales | 1.2.1 |
scatterplot3d | 0.3-43 | ScottKnott | 1.3-0 |
SDMTools | 1.1-221.2 | sealasso | 0.1-3 |
segmented | 1.6-2 | selectr | 0.4-2 |
sem | 3.1-15 | SemiPar | 1.0-4.2 |
semTools | 0.5-6 | seqinr | 4.2-23 |
seriation | 1.4.2 | sessioninfo | 1.2.2 |
setRNG | 2022.4-1 | sets | 1.0-24 |
sf | 1.0-9 | sfsmisc | 1.1-14 |
shape | 1.4.6 | shapefiles | 0.7.2 |
shiny | 1.7.4 | shiny.semantic | 0.4.3 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinythemes | 1.2.0 | SimComp | 3.3 |
simsem | 0.5-16 | sitmo | 2.0.2 |
slam | 0.1-50 | slider | 0.3.0 |
sn | 2.1.0 | sna | 2.7-1 |
snakecase | 0.11.0 | snow | 0.4-4 |
snowfall | 1.84-6.2 | solrium | 1.2.0 |
sourcetools | 0.1.7-1 | sp | 1.6-0 |
spam | 2.9-1 | SparseM | 1.81 |
SpatialExtremes | 2.1-0 | spatstat | 3.0-3 |
spatstat.data | 3.0-1 | spatstat.explore | 3.1-0 |
spatstat.geom | 3.1-0 | spatstat.linnet | 3.0-6 |
spatstat.model | 3.2-1 | spatstat.random | 3.1-4 |
spatstat.sparse | 3.0-1 | spatstat.utils | 3.0-2 |
spData | 2.2.2 | spdep | 1.2-8 |
SQUAREM | 2021.1 | ssgraph | 1.15 |
stabs | 0.6-4 | StanHeaders | 2.21.0-7 |
statmod | 1.5.0 | statnet.common | 4.8.0 |
stringi | 1.7.12 | stringr | 1.5.0 |
strucchange | 1.5-3 | styler | 1.9.1 |
subplex | 1.8 | superml | 0.5.6 |
SuppDists | 1.1-9.7 | survcomp | 1.48.0 |
survey | 4.1-1 | survivalROC | 1.0.3.1 |
survPresmooth | 1.1-11 | svUnit | 1.0.6 |
sybil | 2.2.0 | synbreedData | 1.5 |
sys | 3.4.1 | systemfonts | 1.0.4 |
tables | 0.9.10 | tabnet | 0.3.0 |
taxize | 0.9.100 | tensor | 1.5 |
tensorA | 0.36.2 | terra | 1.7-18 |
testit | 0.13 | testthat | 3.1.7 |
textplot | 0.2.2 | textshaping | 0.3.6 |
TH.data | 1.1-1 | threejs | 0.3.3 |
tibble | 3.2.0 | tidymodels | 1.0.0 |
tidyquant | 1.0.6 | tidyr | 1.3.0 |
tidyselect | 1.2.0 | tidytree | 0.4.2 |
tidyverse | 2.0.0 | tiff | 0.1-11 |
timechange | 0.2.0 | timeDate | 4022.108 |
timeSeries | 4021.105 | timetk | 2.8.2 |
tinytex | 0.44 | tis | 1.39 |
tkrplot | 0.0-27 | tmvtnorm | 1.5 |
topicmodels.etm | 0.1.0 | torch | 0.9.1 |
torchaudio | 0.3.1.9000 | torchdatasets | 0.3.0 |
torchvision | 0.5.0 | treeio | 1.22.0 |
triebeard | 0.4.1 | trimcluster | 0.1-5 |
tripack | 1.3-9.1 | truncnorm | 1.0-8 |
truncreg | 0.2-5 | tseries | 0.10-53 |
tsfeatures | 1.1 | TSP | 1.2-3 |
TTR | 0.24.3 | tune | 1.0.1 |
tweenr | 2.0.2 | tzdb | 0.3.0 |
ucminf | 1.1-4.1 | udpipe | 0.8.11 |
units | 0.8-1 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
usethis | 2.1.6 | utf8 | 1.2.3 |
uuid | 1.1-0 | uwot | 0.1.14 |
V8 | 4.2.2 | vcd | 1.4-11 |
vctrs | 0.6.0 | vegan | 2.6-4 |
VGAM | 1.1-8 | VGAMdata | 1.1-8 |
viridis | 0.6.2 | viridisLite | 0.4.1 |
visNetwork | 2.1.2 | vroom | 1.6.1 |
waldo | 0.4.0 | warp | 0.2.0 |
waveslim | 1.8.4 | wavethresh | 4.7.2 |
webshot | 0.5.4 | whisker | 0.4.1 |
widenet | 0.1-2 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | WikipediR | 1.5.0 |
wikitaxa | 0.4.0 | withr | 2.5.0 |
wk | 0.7.2 | word2vec | 0.3.4 |
workflows | 1.1.3 | workflowsets | 1.0.0 |
worrms | 0.4.2 | xfun | 0.37 |
xgboost | 1.7.3.1 | XLConnect | 1.0.7 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.13 | xml2 | 1.3.3 |
xopen | 1.0.0 | xtable | 1.8-4 |
xts | 0.13.0 | XVector | 0.38.0 |
yaml | 2.3.7 | yardstick | 1.1.0 |
yulab.utils | 0.0.6 | zeallot | 0.1.0 |
zip | 2.2.2 | zlibbioc | 1.44.0 |
zoo | 1.8-11 |
RStudio Server
R: 4.2.3
rstudio-server: 2022.12.0-353
CUDA Version: 12.0
GPU Driver Version: 525.85.12
R packages
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.0 |
abind | 1.4-5 | ACD | 1.5.3 |
acepack | 1.4.1 | actuar | 3.3-2 |
ada | 2.0-5 | ade4 | 1.7-22 |
ade4TkGUI | 0.3-1 | adegraphics | 1.0-18 |
adehabitatLT | 0.3.26 | adehabitatMA | 0.3.15 |
admisc | 0.31 | affxparser | 1.70.0 |
affy | 1.76.0 | affyio | 1.68.0 |
agricolae | 1.3-5 | akima | 0.6-3.4 |
AlgDesign | 1.2.1 | alphavantager | 0.1.2 |
Amelia | 1.8.1 | AnnotationDbi | 1.60.2 |
anytime | 0.3.9 | ape | 5.7-1 |
aplot | 0.1.10 | arm | 1.13-1 |
aroma.apd | 0.6.1 | ascii | 2.4 |
ash | 1.0-15 | askpass | 1.1 |
assertthat | 0.2.1 | AUC | 0.3.2 |
av | 0.8.3 | backports | 1.4.1 |
base64 | 2.0.1 | base64enc | 0.1-3 |
baseballr | 1.3.0 | bayesplot | 1.10.0 |
BB | 2019.10-1 | BDgraph | 2.72 |
bdsmatrix | 1.3-6 | beadarray | 2.48.0 |
BeadDataPackR | 1.50.0 | BGLR | 1.1.0 |
BH | 1.81.0-1 | biganalytics | 1.1.21 |
bigD | 0.2.0 | biglars | 1.0.2 |
biglm | 0.9-2.1 | bigmemory | 4.6.1 |
bigmemory.sri | 0.1.6 | bigml | 0.1.2 |
bindr | 0.1.1 | bindrcpp | 0.2.2 |
Biobase | 2.58.0 | BiocGenerics | 0.44.0 |
BiocManager | 1.30.20 | BiocParallel | 1.32.5 |
BiocVersion | 3.16.0 | biomformat | 1.26.0 |
Biostrings | 2.66.0 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
blob | 1.2.4 | BLR | 1.6 |
bold | 1.2.0 | bootstrap | 2019.6 |
bpca | 1.3-4 | BradleyTerry2 | 1.1-2 |
brew | 1.0-8 | brglm | 0.7.2 |
brglm2 | 0.9 | bridgesampling | 1.1-2 |
brio | 1.1.3 | brms | 2.19.0 |
Brobdingnag | 1.2-9 | broom | 1.0.4 |
bslib | 0.4.2 | BsMD | 2020.4.30 |
ca | 0.71.1 | cachem | 1.0.7 |
calibrator | 1.2-8 | callr | 3.7.3 |
car | 3.1-1 | carData | 3.0-5 |
caret | 6.0-93 | caTools | 1.18.2 |
CellNOptR | 1.44.0 | cellranger | 1.1.0 |
checkmate | 2.1.0 | chron | 2.3-60 |
CircStats | 0.2-6 | classInt | 0.4-9 |
cli | 3.6.0 | clipr | 0.8.0 |
clock | 0.6.1 | clusterGeneration | 1.3.7 |
CNORode | 1.40.0 | coda | 0.19-4 |
coin | 1.4-2 | collapse | 1.9.3 |
colorspace | 2.1-0 | colourpicker | 1.2.0 |
combinat | 0.0-8 | commonmark | 1.9.0 |
conditionz | 0.1.0 | conf.design | 2.0.0 |
conflicted | 1.2.0 | contfrac | 1.1-12 |
coro | 1.0.3 | corpcor | 1.6.10 |
corrgram | 1.14 | corrplot | 0.92 |
cpp11 | 0.4.3 | crayon | 1.5.2 |
credentials | 1.3.2 | crosstalk | 1.2.0 |
crul | 1.3 | ctv | 0.9-4 |
cubature | 2.0.4.6 | curl | 5.0.0 |
CVST | 0.2-3 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | data.table | 1.14.8 |
DataExplorer | 0.8.2 | datapasta | 3.1.0 |
DBI | 1.1.3 | dbplyr | 2.3.1 |
deldir | 1.0-6 | dendextend | 1.16.0 |
DEoptimR | 1.0-11 | Deriv | 4.1.3 |
desc | 1.4.2 | deSolve | 1.35 |
devtools | 2.4.5 | dfidx | 0.0-5 |
dfoptim | 2020.10-1 | diagram | 1.6.5 |
DiagrammeR | 1.0.9 | dials | 1.1.0 |
DiceDesign | 1.9 | dichromat | 2.0-0.1 |
diffobj | 0.3.5 | digest | 0.6.31 |
dimRed | 0.2.6 | diptest | 0.76-0 |
discretization | 1.0-1.1 | distributional | 0.3.1 |
doBy | 4.6.16 | doc2vec | 0.2.0 |
DoE.base | 1.2-1 | doMC | 1.3.8 |
doParallel | 1.0.17 | dotCall64 | 1.0-2 |
downlit | 0.4.2 | downloader | 0.4 |
dplyr | 1.1.0 | dqrng | 0.3.0 |
DRR | 0.0.4 | DT | 0.27 |
dtplyr | 1.3.0 | dummies | 1.5.6 |
dygraphs | 1.1.1.6 | dynamicTreeCut | 1.63-1 |
e1071 | 1.7-13 | EbayesThresh | 1.4-12 |
EBImage | 4.40.0 | effects | 4.2-2 |
ellipse | 0.4.3 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | emulator | 1.2-21 |
enrichwith | 0.3.1 | equivalence | 0.7.2 |
estimability | 1.4.1 | ETLUtils | 1.5 |
evaluate | 0.20 | expint | 0.1-8 |
expm | 0.999-7 | extraDistr | 1.9.1 |
extrafont | 0.19 | extrafontdb | 1.0 |
fansi | 1.0.4 | farver | 2.1.1 |
fastICA | 1.2-3 | fastmap | 1.1.1 |
fastmatch | 1.1-3 | fda | 6.0.5 |
fdaPDE | 1.1-11 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
ff | 4.0.9 | ffbase | 0.13.3 |
fftwtools | 0.9-11 | fields | 14.1 |
filehash | 2.4-5 | filelock | 1.0.2 |
flashClust | 1.01-2 | flexmix | 2.3-19 |
FNN | 1.1.3.1 | fontawesome | 0.5.0 |
forcats | 1.0.0 | foreach | 1.5.2 |
forecast | 8.21 | formatR | 1.14 |
Formula | 1.2-5 | fpc | 2.2-10 |
fracdiff | 1.5-2 | fs | 1.6.1 |
fts | 0.9.9.2 | functional | 0.6 |
furrr | 0.3.1 | futile.logger | 1.4.3 |
futile.options | 1.0.1 | future | 1.32.0 |
future.apply | 1.10.0 | gam | 1.22-1 |
gamlss | 5.4-12 | gamlss.data | 6.0-2 |
gamlss.dist | 6.0-5 | gargle | 1.3.0 |
gclus | 1.3.2 | gdata | 2.18.0.1 |
geepack | 1.3.9 | genalg | 0.2.1 |
generics | 0.1.3 | genetics | 1.3.8.1.3 |
GenomeInfoDb | 1.34.9 | GenomeInfoDbData | 1.2.9 |
GenomicRanges | 1.50.2 | GEOquery | 2.66.0 |
geosphere | 1.5-18 | gert | 1.9.2 |
ggalt | 0.4.0 | ggdendro | 0.1.23 |
ggforce | 0.4.1 | ggformula | 0.10.2 |
ggfun | 0.0.9 | ggmap | 3.0.2 |
ggplot2 | 3.4.1 | ggplotify | 0.1.0 |
ggrepel | 0.9.3 | ggridges | 0.5.4 |
ggstance | 0.3.6 | ggtree | 3.6.2 |
ggvis | 0.4.8 | gh | 1.4.0 |
git2r | 0.31.0 | gitcreds | 0.1.2 |
glassoFast | 1.0 | gld | 2.6.6 |
glmnet | 4.1-6 | globals | 0.16.2 |
glue | 1.6.2 | gmm | 1.7 |
gmodels | 2.18.1.1 | gmp | 0.7-1 |
GO.db | 3.16.0 | goftest | 1.2-3 |
googledrive | 2.0.0 | googlesheets4 | 1.0.1 |
googleVis | 0.7.1 | gower | 1.0.1 |
GPArotation | 2022.10-2 | gpclib | 1.5-6 |
GPfit | 1.0-8 | gplots | 3.1.3 |
gradethis | 0.2.11.9000 | graph | 1.76.0 |
gridBase | 0.4-7 | gridExtra | 2.3 |
gridGraphics | 0.5-1 | gridSVG | 1.7-5 |
grImport | 0.9-7 | grImport2 | 0.2-0 |
gsubfn | 0.7 | gt | 0.8.0 |
gtable | 0.3.2 | gtools | 3.9.4 |
HaploSim | 1.8.4.2 | hardhat | 1.2.0 |
haven | 2.5.2 | hdrcde | 3.4 |
hexbin | 1.28.2 | hflights | 0.1 |
HH | 3.1-49 | highlight | 0.5.1 |
highr | 0.10 | Hmisc | 5.0-1 |
hms | 1.1.2 | htmlTable | 2.4.1 |
htmltools | 0.5.4 | htmlwidgets | 1.6.2 |
httpcode | 0.3.0 | httpuv | 1.6.9 |
httr | 1.4.5 | httr2 | 0.2.2 |
HydroMe | 2.0-1 | HyperbolicDist | 0.6-4 |
hypergeo | 1.2-13 | ICC | 2.4.0 |
Icens | 1.70.0 | ids | 1.0.1 |
igraph | 1.4.1 | igraphdata | 1.0.1 |
illuminaio | 0.40.0 | impute | 1.72.3 |
ineq | 0.2-13 | infer | 1.0.4 |
influenceR | 0.1.0.1 | ini | 0.3.1 |
inline | 0.3.19 | insight | 0.19.0 |
interp | 1.1-3 | intervals | 0.15.2 |
introgress | 1.2.3 | inum | 1.0-5 |
ipred | 0.9-14 | IRanges | 2.32.0 |
irlba | 2.3.5.1 | Iso | 0.0-18.1 |
isoband | 0.2.7 | iterators | 1.0.14 |
itertools | 0.1-3 | janitor | 2.2.0 |
jpeg | 0.1-10 | jquerylib | 0.1.4 |
jsonlite | 1.8.4 | juicyjuice | 0.1.0 |
KEGGREST | 1.38.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-32 | klaR | 1.7-1 |
knitr | 1.42 | ks | 1.14.0 |
labeling | 0.4.2 | labelled | 2.10.0 |
LaF | 0.8.4 | Lahman | 10.0-1 |
lambda.r | 1.2.4 | lars | 1.3 |
later | 1.3.0 | latticeExtra | 0.6-30 |
lava | 1.7.2.1 | lavaan | 0.6-15 |
lavaan.survey | 1.1.3.1 | lazyeval | 0.2.2 |
lcda | 0.3.1 | leaflet | 2.1.2 |
leaflet.providers | 1.9.0 | leaps | 3.1 |
LearnBayes | 2.15.1 | learnr | 0.11.3.9000 |
lgr | 0.4.4 | lhs | 1.1.6 |
libcoin | 1.0-9 | lifecycle | 1.0.3 |
LIM | 1.4.7 | limma | 3.54.2 |
limSolve | 1.5.6 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | lme4 | 1.1-32 |
lmom | 2.9 | lmtest | 0.9-40 |
locfit | 1.5-9.7 | lokern | 1.1-10 |
loo | 2.5.1 | lpSolve | 5.6.18 |
lubridate | 1.9.2 | luz | 0.3.1 |
magic | 1.6-1 | magrittr | 2.0.3 |
manipulateWidget | 0.11.1 | mapproj | 1.2.11 |
maps | 3.4.1 | maptools | 1.1-6 |
markdown | 1.5 | MassSpecWavelet | 1.64.1 |
Matching | 4.10-8 | MatchIt | 4.5.1 |
mathjaxr | 1.6-0 | matrixcalc | 1.0-6 |
MatrixModels | 0.5-1 | matrixStats | 0.63.0 |
maxLik | 1.5-2 | mboost | 2.9-7 |
mclust | 6.0.0 | mcmc | 0.9-7 |
MCMCglmm | 2.34 | MEIGOR | 1.31.0 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
Metrics | 0.1.4 | mi | 1.1 |
mice | 3.15.0 | microbenchmark | 1.4.9 |
mime | 0.12 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-3 | minqa | 1.2.5 |
misc3d | 0.9-1 | miscTools | 0.6-26 |
mitools | 2.4 | mixOmics | 6.22.0 |
mlbench | 2.1-3 | mlmRev | 1.0-8 |
mlogit | 1.1-1 | mlr3 | 0.15.0 |
mlr3measures | 0.5.0 | mlr3misc | 0.11.0 |
mnormt | 2.1.1 | modeldata | 1.1.0 |
modelenv | 0.1.1 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.10 | modeltime | 1.2.5 |
modeltools | 0.2-23 | moments | 0.14.1 |
mondate | 0.10.02 | mosaic | 1.8.4.2 |
mosaicCore | 0.9.2.1 | mosaicData | 0.20.3 |
mratios | 1.4.2 | multcomp | 1.4-23 |
multicool | 0.1-12 | multtest | 2.54.0 |
munsell | 0.5.0 | mvMORPH | 1.1.7 |
mvtnorm | 1.1-3 | natserv | 1.0.0 |
network | 1.18.1 | networkD3 | 0.4 |
NISTnls | 0.9-13 | nleqslv | 3.3.4 |
nloptr | 2.0.3 | nls2 | 0.3-3 |
nlstools | 2.0-0 | nnls | 1.4 |
nortest | 1.0-4 | np | 0.60-17 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
odbc | 1.3.4 | openssl | 2.0.6 |
openxlsx | 4.2.5.2 | optextras | 2019-12.4 |
optimParallel | 1.0-2 | ordinal | 2022.11-16 |
padr | 0.6.2 | PairedData | 1.1.1 |
palmerpenguins | 0.1.1 | paradox | 0.11.1 |
parallelly | 1.34.0 | parsnip | 1.0.4 |
partitions | 1.10-7 | party | 1.3-13 |
partykit | 1.2-18 | pastecs | 1.3.21 |
patchwork | 1.1.2 | pbapply | 1.7-0 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
pbmcapply | 1.5.1 | PBSmapping | 2.73.2 |
pcaMethods | 1.90.0 | pcaPP | 2.0-3 |
pedigree | 1.4.2 | PerformanceAnalytics | 2.0.4 |
permute | 0.9-7 | phangorn | 2.11.1 |
phyloseq | 1.42.0 | phytools | 1.5-1 |
pillar | 1.8.1 | pins | 1.1.0 |
pixmap | 0.4-12 | pkgbuild | 1.4.0 |
pkgconfig | 2.0.3 | pkgdown | 2.0.7 |
pkgload | 1.3.2 | PKPDmodels | 0.3.2 |
plm | 2.6-2 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.1 |
plotrix | 3.8-2 | pls | 2.8-1 |
plyr | 1.8.8 | png | 0.1-8 |
poLCA | 1.6.0.1 | polspline | 1.1.22 |
polyclip | 1.10-4 | polycor | 0.8-1 |
polynom | 1.4-1 | posterior | 1.4.1 |
prabclus | 2.3-2 | pracma | 2.4.2 |
praise | 1.0.0 | preprocessCore | 1.60.2 |
prettyunits | 1.1.1 | princurve | 2.1.6 |
pROC | 1.18.0 | processx | 3.8.0 |
prodlim | 2019.11.13 | profileModel | 0.6.1 |
profvis | 0.3.7 | progress | 1.2.2 |
progressr | 0.13.0 | proj4 | 1.0-12 |
promises | 1.2.0.1 | prophet | 1.0 |
proto | 1.0.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | ps | 1.7.2 |
pscl | 1.5.5 | psy | 1.2 |
psych | 2.2.9 | purrr | 1.0.1 |
qap | 0.1-2 | qtl | 1.58 |
quadprog | 1.5-8 | Quandl | 2.11.0 |
quantmod | 0.4.20 | quantreg | 5.94 |
questionr | 0.7.8 | QUIC | 1.1.1 |
qvalue | 2.30.0 | qvcalc | 1.0.2 |
R.cache | 0.16.0 | R.devices | 2.17.1 |
R.filesets | 2.15.0 | R.huge | 0.9.0 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.25.0 | R.rsp | 0.45.0 |
R.utils | 2.12.2 | R2HTML | 2.3.3 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R6 | 2.5.1 | ragg | 1.2.5 |
rainbow | 3.7 | randomForest | 4.7-1.1 |
rappdirs | 0.3.3 | rARPACK | 0.11-0 |
raster | 3.6-20 | ratelimitr | 0.4.1 |
rbenchmark | 1.0.0 | RBGL | 1.74.0 |
rbibutils | 2.2.13 | Rcgmin | 2022-4.30 |
rcmdcheck | 1.4.0 | RColorBrewer | 1.1-3 |
Rcpp | 1.0.10 | RcppAnnoy | 0.0.20 |
RcppArmadillo | 0.12.0.1.0 | RcppEigen | 0.3.3.9.3 |
RcppParallel | 5.1.7 | RcppProgress | 0.4.2 |
RcppRoll | 0.3.0 | Rcsdp | 0.1.57.4 |
RCurl | 1.98-1.10 | Rdpack | 2.4 |
reactable | 0.4.4 | reactR | 0.4.4 |
readr | 2.1.4 | readstata13 | 0.10.1 |
readxl | 1.4.2 | recipes | 1.0.5 |
registry | 0.5-1 | regress | 1.3-21 |
relaxnet | 0.3-2 | reliaR | 0.01 |
relimp | 1.0-5 | rematch | 1.0.1 |
rematch2 | 2.1.2 | remotes | 2.4.2 |
rentrez | 1.2.3 | renv | 0.17.1 |
reprex | 2.0.2 | reshape | 0.8.9 |
reshape2 | 1.4.4 | rex | 1.2.1 |
rgl | 1.0.1 | RgoogleMaps | 1.4.5.3 |
RGraphics | 3.0-2 | Rgraphviz | 2.42.0 |
rhdf5 | 2.42.0 | rhdf5filters | 1.10.0 |
Rhdf5lib | 1.20.0 | riingo | 0.3.1 |
ritis | 1.0.0 | rJava | 1.0-6 |
RJDBC | 0.2-10 | rjson | 0.2.21 |
RJSONIO | 1.3-1.8 | rlang | 1.1.0 |
rlecuyer | 0.3-5 | rmarkdown | 2.20 |
rmeta | 3.0 | Rmpfr | 0.9-1 |
rms | 6.5-0 | RMySQL | 0.10.25 |
rncl | 0.8.7 | robustbase | 0.95-0 |
ROCR | 1.0-11 | Rook | 1.2 |
rotl | 3.0.14 | roxygen2 | 7.2.3 |
RPostgreSQL | 0.7-5 | rprojroot | 2.0.3 |
rredlist | 0.7.1 | rsample | 1.1.1 |
Rsolnp | 1.16 | RSpectra | 0.16-1 |
RSQLite | 2.3.0 | rstan | 2.21.8 |
rstantools | 2.3.0 | rstudioapi | 0.14 |
Rttf2pt1 | 1.3.12 | RUnit | 0.4.32 |
rversions | 2.1.2 | rvest | 1.0.3 |
Rvmmin | 2018-4.17.1 | s2 | 1.1.2 |
S4Vectors | 0.36.2 | sandwich | 3.0-2 |
sass | 0.4.5 | scales | 1.2.1 |
scatterplot3d | 0.3-43 | ScottKnott | 1.3-0 |
SDMTools | 1.1-221.2 | sealasso | 0.1-3 |
segmented | 1.6-2 | selectr | 0.4-2 |
sem | 3.1-15 | SemiPar | 1.0-4.2 |
semTools | 0.5-6 | seqinr | 4.2-23 |
seriation | 1.4.2 | sessioninfo | 1.2.2 |
setRNG | 2022.4-1 | sets | 1.0-24 |
sf | 1.0-9 | sfsmisc | 1.1-14 |
shape | 1.4.6 | shapefiles | 0.7.2 |
shiny | 1.7.4 | shiny.semantic | 0.4.3 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinythemes | 1.2.0 | SimComp | 3.3 |
simsem | 0.5-16 | sitmo | 2.0.2 |
slam | 0.1-50 | slider | 0.3.0 |
sn | 2.1.0 | sna | 2.7-1 |
snakecase | 0.11.0 | snow | 0.4-4 |
snowfall | 1.84-6.2 | solrium | 1.2.0 |
sourcetools | 0.1.7-1 | sp | 1.6-0 |
spam | 2.9-1 | SparseM | 1.81 |
SpatialExtremes | 2.1-0 | spatstat | 3.0-3 |
spatstat.data | 3.0-1 | spatstat.explore | 3.1-0 |
spatstat.geom | 3.1-0 | spatstat.linnet | 3.0-6 |
spatstat.model | 3.2-1 | spatstat.random | 3.1-4 |
spatstat.sparse | 3.0-1 | spatstat.utils | 3.0-2 |
spData | 2.2.2 | spdep | 1.2-8 |
SQUAREM | 2021.1 | ssgraph | 1.15 |
stabs | 0.6-4 | StanHeaders | 2.21.0-7 |
statmod | 1.5.0 | statnet.common | 4.8.0 |
stringi | 1.7.12 | stringr | 1.5.0 |
strucchange | 1.5-3 | styler | 1.9.1 |
subplex | 1.8 | superml | 0.5.6 |
SuppDists | 1.1-9.7 | survcomp | 1.48.0 |
survey | 4.1-1 | survivalROC | 1.0.3.1 |
survPresmooth | 1.1-11 | svUnit | 1.0.6 |
sybil | 2.2.0 | synbreedData | 1.5 |
sys | 3.4.1 | systemfonts | 1.0.4 |
tables | 0.9.10 | tabnet | 0.3.0 |
taxize | 0.9.100 | tensor | 1.5 |
tensorA | 0.36.2 | terra | 1.7-18 |
testit | 0.13 | testthat | 3.1.7 |
textplot | 0.2.2 | textshaping | 0.3.6 |
TH.data | 1.1-1 | threejs | 0.3.3 |
tibble | 3.2.0 | tidymodels | 1.0.0 |
tidyquant | 1.0.6 | tidyr | 1.3.0 |
tidyselect | 1.2.0 | tidytree | 0.4.2 |
tidyverse | 2.0.0 | tiff | 0.1-11 |
timechange | 0.2.0 | timeDate | 4022.108 |
timeSeries | 4021.105 | timetk | 2.8.2 |
tinytex | 0.44 | tis | 1.39 |
tkrplot | 0.0-27 | tmvtnorm | 1.5 |
topicmodels.etm | 0.1.0 | torch | 0.9.1 |
torchaudio | 0.3.1.9000 | torchdatasets | 0.3.0 |
torchvision | 0.5.0 | treeio | 1.22.0 |
triebeard | 0.4.1 | trimcluster | 0.1-5 |
tripack | 1.3-9.1 | truncnorm | 1.0-8 |
truncreg | 0.2-5 | tseries | 0.10-53 |
tsfeatures | 1.1 | TSP | 1.2-3 |
TTR | 0.24.3 | tune | 1.0.1 |
tweenr | 2.0.2 | tzdb | 0.3.0 |
ucminf | 1.1-4.1 | udpipe | 0.8.11 |
units | 0.8-1 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
usethis | 2.1.6 | utf8 | 1.2.3 |
uuid | 1.1-0 | uwot | 0.1.14 |
V8 | 4.2.2 | vcd | 1.4-11 |
vctrs | 0.6.0 | vegan | 2.6-4 |
VGAM | 1.1-8 | VGAMdata | 1.1-8 |
viridis | 0.6.2 | viridisLite | 0.4.1 |
visNetwork | 2.1.2 | vroom | 1.6.1 |
waldo | 0.4.0 | warp | 0.2.0 |
waveslim | 1.8.4 | wavethresh | 4.7.2 |
webshot | 0.5.4 | whisker | 0.4.1 |
widenet | 0.1-2 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | WikipediR | 1.5.0 |
wikitaxa | 0.4.0 | withr | 2.5.0 |
wk | 0.7.2 | word2vec | 0.3.4 |
workflows | 1.1.3 | workflowsets | 1.0.0 |
worrms | 0.4.2 | xfun | 0.37 |
xgboost | 1.7.3.1 | XLConnect | 1.0.7 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.13 | xml2 | 1.3.3 |
xopen | 1.0.0 | xtable | 1.8-4 |
xts | 0.13.0 | XVector | 0.38.0 |
yaml | 2.3.7 | yardstick | 1.1.0 |
yulab.utils | 0.0.6 | zeallot | 0.1.0 |
zip | 2.2.2 | zlibbioc | 1.44.0 |
zoo | 1.8-11 |
RStudio Server
R: 4.2.2
rstudio-server: 2022.12.0-353
CUDA Version: 12.0
GPU Driver Version: 525.85.12
R packages
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.0 |
abind | 1.4-5 | ACD | 1.5.3 |
acepack | 1.4.1 | actuar | 3.3-1 |
ada | 2.0-5 | ade4 | 1.7-20 |
ade4TkGUI | 0.3-1 | adegraphics | 1.0-17 |
adehabitatLT | 0.3.26 | adehabitatMA | 0.3.15 |
admisc | 0.30 | affxparser | 1.70.0 |
agricolae | 1.3-5 | akima | 0.6-3.4 |
AlgDesign | 1.2.1 | alphavantager | 0.1.2 |
Amelia | 1.8.1 | anytime | 0.3.9 |
ape | 5.6-2 | arm | 1.13-1 |
aroma.apd | 0.6.1 | ascii | 2.4 |
ash | 1.0-15 | askpass | 1.1 |
assertthat | 0.2.1 | AUC | 0.3.2 |
backports | 1.4.1 | base64enc | 0.1-3 |
bayesplot | 1.10.0 | BB | 2019.10-1 |
BDgraph | 2.72 | bdsmatrix | 1.3-6 |
BGLR | 1.1.0 | BH | 1.81.0-1 |
biganalytics | 1.1.21 | bigD | 0.2.0 |
biglars | 1.0.2 | biglm | 0.9-2.1 |
bigmemory | 4.6.1 | bigmemory.sri | 0.1.6 |
bigml | 0.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
blob | 1.2.3 | BLR | 1.6 |
bold | 1.2.0 | bpca | 1.3-4 |
BradleyTerry2 | 1.1-2 | brew | 1.0-8 |
brglm | 0.7.2 | brglm2 | 0.8.2 |
bridgesampling | 1.1-2 | brio | 1.1.3 |
brms | 2.18.0 | Brobdingnag | 1.2-9 |
broom | 1.0.3 | bslib | 0.4.2 |
BsMD | 2020.4.30 | ca | 0.71.1 |
cachem | 1.0.6 | calibrator | 1.2-8 |
callr | 3.7.3 | car | 3.1-1 |
carData | 3.0-5 | caret | 6.0-93 |
caTools | 1.18.2 | cellranger | 1.1.0 |
checkmate | 2.1.0 | chron | 2.3-59 |
CircStats | 0.2-6 | classInt | 0.4-8 |
cli | 3.6.0 | clipr | 0.8.0 |
clock | 0.6.1 | clusterGeneration | 1.3.7 |
coda | 0.19-4 | coin | 1.4-2 |
collapse | 1.9.2 | colorspace | 2.1-0 |
colourpicker | 1.2.0 | combinat | 0.0-8 |
commonmark | 1.8.1 | conditionz | 0.1.0 |
conf.design | 2.0.0 | conflicted | 1.2.0 |
contfrac | 1.1-12 | coro | 1.0.3 |
corpcor | 1.6.10 | corrgram | 1.14 |
corrplot | 0.92 | cpp11 | 0.4.3 |
crayon | 1.5.2 | credentials | 1.3.2 |
crosstalk | 1.2.0 | crul | 1.3 |
cubature | 2.0.4.6 | curl | 5.0.0 |
CVST | 0.2-3 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | data.table | 1.14.6 |
DataExplorer | 0.8.2 | datapasta | 3.1.0 |
DBI | 1.1.3 | dbplyr | 2.3.0 |
deldir | 1.0-6 | dendextend | 1.16.0 |
DEoptimR | 1.0-11 | Deriv | 4.1.3 |
desc | 1.4.2 | deSolve | 1.34 |
devtools | 2.4.5 | dfidx | 0.0-5 |
dfoptim | 2020.10-1 | diagram | 1.6.5 |
DiagrammeR | 1.0.9 | dials | 1.1.0 |
DiceDesign | 1.9 | dichromat | 2.0-0.1 |
diffobj | 0.3.5 | digest | 0.6.31 |
dimRed | 0.2.6 | diptest | 0.76-0 |
discretization | 1.0-1.1 | distributional | 0.3.1 |
doBy | 4.6.16 | doc2vec | 0.2.0 |
DoE.base | 1.2-1 | doMC | 1.3.8 |
doParallel | 1.0.17 | dotCall64 | 1.0-2 |
downlit | 0.4.2 | downloader | 0.4 |
dplyr | 1.1.0 | dqrng | 0.3.0 |
DRR | 0.0.4 | DT | 0.27 |
dtplyr | 1.2.2 | dummies | 1.5.6 |
dygraphs | 1.1.1.6 | dynamicTreeCut | 1.63-1 |
e1071 | 1.7-13 | EbayesThresh | 1.4-12 |
effects | 4.2-2 | ellipse | 0.4.3 |
ellipsis | 0.3.2 | elliptic | 1.4-0 |
emulator | 1.2-21 | enrichwith | 0.3.1 |
equivalence | 0.7.2 | estimability | 1.4.1 |
ETLUtils | 1.5 | evaluate | 0.20 |
expint | 0.1-8 | expm | 0.999-7 |
extraDistr | 1.9.1 | extrafont | 0.19 |
extrafontdb | 1.0 | fansi | 1.0.4 |
farver | 2.1.1 | fastICA | 1.2-3 |
fastmap | 1.1.0 | fastmatch | 1.1-3 |
fda | 6.0.5 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
ff | 4.0.9 | ffbase | 0.13.3 |
fields | 14.1 | filehash | 2.4-3 |
filelock | 1.0.2 | flashClust | 1.01-2 |
flexmix | 2.3-18 | FNN | 1.1.3.1 |
fontawesome | 0.5.0 | forcats | 1.0.0 |
foreach | 1.5.2 | forecast | 8.20 |
formatR | 1.14 | Formula | 1.2-4 |
fpc | 2.2-10 | fracdiff | 1.5-2 |
fs | 1.6.0 | fts | 0.9.9.2 |
functional | 0.6 | furrr | 0.3.1 |
future | 1.31.0 | future.apply | 1.10.0 |
gam | 1.22-1 | gamlss | 5.4-12 |
gamlss.data | 6.0-2 | gamlss.dist | 6.0-5 |
gargle | 1.3.0 | gclus | 1.3.2 |
gdata | 2.18.0.1 | geepack | 1.3.9 |
genalg | 0.2.1 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | geosphere | 1.5-18 |
gert | 1.9.2 | ggalt | 0.4.0 |
ggdendro | 0.1.23 | ggforce | 0.4.1 |
ggformula | 0.10.2 | ggmap | 3.0.1 |
ggplot2 | 3.4.0 | ggrepel | 0.9.3 |
ggridges | 0.5.4 | ggstance | 0.3.6 |
ggvis | 0.4.7 | gh | 1.3.1 |
git2r | 0.31.0 | gitcreds | 0.1.2 |
glassoFast | 1.0 | gld | 2.6.6 |
glmnet | 4.1-6 | globals | 0.16.2 |
glue | 1.6.2 | gmm | 1.7 |
gmodels | 2.18.1.1 | gmp | 0.6-10 |
goftest | 1.2-3 | googledrive | 2.0.0 |
googlesheets4 | 1.0.1 | googleVis | 0.7.0 |
gower | 1.0.1 | GPArotation | 2022.10-2 |
gpclib | 1.5-6 | GPfit | 1.0-8 |
gplots | 3.1.3 | gradethis | 0.2.11.9000 |
gridBase | 0.4-7 | gridExtra | 2.3 |
gridGraphics | 0.5-1 | gridSVG | 1.7-4 |
grImport | 0.9-5 | grImport2 | 0.2-0 |
gsubfn | 0.7 | gt | 0.8.0 |
gtable | 0.3.1 | gtools | 3.9.4 |
HaploSim | 1.8.4.2 | hardhat | 1.2.0 |
haven | 2.5.1 | hdrcde | 3.4 |
hexbin | 1.28.2 | hflights | 0.1 |
HH | 3.1-49 | highlight | 0.5.1 |
highr | 0.10 | Hmisc | 4.7-2 |
hms | 1.1.2 | htmlTable | 2.4.1 |
htmltools | 0.5.4 | htmlwidgets | 1.6.1 |
httpcode | 0.3.0 | httpuv | 1.6.8 |
httr | 1.4.4 | HydroMe | 2.0-1 |
HyperbolicDist | 0.6-4 | hypergeo | 1.2-13 |
ICC | 2.4.0 | ids | 1.0.1 |
igraph | 1.3.5 | igraphdata | 1.0.1 |
ineq | 0.2-13 | infer | 1.0.4 |
influenceR | 0.1.0.1 | ini | 0.3.1 |
inline | 0.3.19 | insight | 0.19.0 |
interp | 1.1-3 | intervals | 0.15.2 |
introgress | 1.2.3 | inum | 1.0-4 |
ipred | 0.9-13 | irlba | 2.3.5.1 |
Iso | 0.0-18.1 | isoband | 0.2.7 |
iterators | 1.0.14 | itertools | 0.1-3 |
janitor | 2.2.0 | jpeg | 0.1-10 |
jquerylib | 0.1.4 | jsonlite | 1.8.4 |
juicyjuice | 0.1.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-32 | klaR | 1.7-1 |
knitr | 1.42 | ks | 1.14.0 |
labeling | 0.4.2 | labelled | 2.10.0 |
LaF | 0.8.4 | Lahman | 10.0-1 |
lars | 1.3 | later | 1.3.0 |
latticeExtra | 0.6-30 | lava | 1.7.1 |
lavaan | 0.6-13 | lavaan.survey | 1.1.3.1 |
lazyeval | 0.2.2 | lcda | 0.3.1 |
leaflet | 2.1.1 | leaflet.providers | 1.9.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
learnr | 0.11.2.9000 | lgr | 0.4.4 |
lhs | 1.1.6 | libcoin | 1.0-9 |
lifecycle | 1.0.3 | LIM | 1.4.7 |
limSolve | 1.5.6 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | lme4 | 1.1-31 |
lmom | 2.9 | lmtest | 0.9-40 |
locfit | 1.5-9.7 | lokern | 1.1-9 |
loo | 2.5.1 | lpSolve | 5.6.18 |
lubridate | 1.9.1 | luz | 0.3.1 |
magic | 1.6-1 | magrittr | 2.0.3 |
manipulateWidget | 0.11.1 | mapproj | 1.2.11 |
maps | 3.4.1 | maptools | 1.1-6 |
markdown | 1.5 | Matching | 4.10-8 |
MatchIt | 4.5.0 | mathjaxr | 1.6-0 |
matrixcalc | 1.0-6 | MatrixModels | 0.5-1 |
matrixStats | 0.63.0 | maxLik | 1.5-2 |
mboost | 2.9-7 | mclust | 6.0.0 |
mcmc | 0.9-7 | MCMCglmm | 2.34 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
Metrics | 0.1.4 | mi | 1.1 |
mice | 3.15.0 | microbenchmark | 1.4.9 |
mime | 0.12 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-3 | minqa | 1.2.5 |
misc3d | 0.9-1 | miscTools | 0.6-26 |
mitools | 2.4 | mlbench | 2.1-3 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlr3 | 0.14.1 | mlr3measures | 0.5.0 |
mlr3misc | 0.11.0 | mnormt | 2.1.1 |
modeldata | 1.1.0 | modelenv | 0.1.0 |
ModelMetrics | 1.2.2.2 | modelr | 0.1.10 |
modeltime | 1.2.4 | modeltools | 0.2-23 |
moments | 0.14.1 | mondate | 0.10.02 |
mosaic | 1.8.4.2 | mosaicCore | 0.9.2.1 |
mosaicData | 0.20.3 | mratios | 1.4.2 |
multcomp | 1.4-20 | multicool | 0.1-12 |
munsell | 0.5.0 | mvMORPH | 1.1.6 |
mvtnorm | 1.1-3 | natserv | 1.0.0 |
network | 1.18.1 | networkD3 | 0.4 |
NISTnls | 0.9-13 | nleqslv | 3.3.4 |
nloptr | 2.0.3 | nls2 | 0.3-3 |
nlstools | 2.0-0 | nnls | 1.4 |
nortest | 1.0-4 | np | 0.60-16 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
odbc | 1.3.4 | openssl | 2.0.5 |
openxlsx | 4.2.5.1 | optextras | 2019-12.4 |
optimParallel | 1.0-2 | ordinal | 2022.11-16 |
padr | 0.6.2 | PairedData | 1.1.1 |
palmerpenguins | 0.1.1 | paradox | 0.11.0 |
parallelly | 1.34.0 | parsnip | 1.0.3 |
partitions | 1.10-7 | party | 1.3-11 |
partykit | 1.2-16 | pastecs | 1.3.21 |
patchwork | 1.1.2 | pbapply | 1.7-0 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
pbmcapply | 1.5.1 | PBSmapping | 2.73.2 |
pcaPP | 2.0-3 | pedigree | 1.4.2 |
PerformanceAnalytics | 2.0.4 | permute | 0.9-7 |
phangorn | 2.11.1 | phytools | 1.2-0 |
pillar | 1.8.1 | pins | 1.1.0 |
pixmap | 0.4-12 | pkgbuild | 1.4.0 |
pkgconfig | 2.0.3 | pkgdown | 2.0.7 |
pkgload | 1.3.2 | PKPDmodels | 0.3.2 |
plm | 2.6-2 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.1 |
plotrix | 3.8-2 | pls | 2.8-1 |
plyr | 1.8.8 | png | 0.1-8 |
poLCA | 1.6.0.1 | polspline | 1.1.22 |
polyclip | 1.10-4 | polycor | 0.8-1 |
polynom | 1.4-1 | posterior | 1.3.1 |
prabclus | 2.3-2 | pracma | 2.4.2 |
praise | 1.0.0 | prettyunits | 1.1.1 |
princurve | 2.1.6 | pROC | 1.18.0 |
processx | 3.8.0 | prodlim | 2019.11.13 |
profileModel | 0.6.1 | profvis | 0.3.7 |
progress | 1.2.2 | progressr | 0.13.0 |
proj4 | 1.0-12 | promises | 1.2.0.1 |
prophet | 1.0 | proto | 1.0.0 |
proxy | 0.4-27 | PRROC | 1.3.1 |
ps | 1.7.2 | pscl | 1.5.5 |
psy | 1.2 | psych | 2.2.9 |
purrr | 1.0.1 | qap | 0.1-2 |
qtl | 1.58 | quadprog | 1.5-8 |
Quandl | 2.11.0 | quantmod | 0.4.20 |
quantreg | 5.94 | questionr | 0.7.8 |
QUIC | 1.1.1 | qvcalc | 1.0.2 |
R.cache | 0.16.0 | R.devices | 2.17.1 |
R.filesets | 2.15.0 | R.huge | 0.9.0 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.25.0 | R.rsp | 0.45.0 |
R.utils | 2.12.2 | R2HTML | 2.3.3 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R6 | 2.5.1 | ragg | 1.2.5 |
rainbow | 3.7 | randomForest | 4.7-1.1 |
rappdirs | 0.3.3 | raster | 3.6-14 |
ratelimitr | 0.4.1 | rbenchmark | 1.0.0 |
rbibutils | 2.2.13 | Rcgmin | 2022-4.30 |
rcmdcheck | 1.4.0 | RColorBrewer | 1.1-3 |
Rcpp | 1.0.10 | RcppAnnoy | 0.0.20 |
RcppArmadillo | 0.11.4.3.1 | RcppEigen | 0.3.3.9.3 |
RcppParallel | 5.1.6 | RcppProgress | 0.4.2 |
RcppRoll | 0.3.0 | Rcsdp | 0.1.57.4 |
RCurl | 1.98-1.10 | Rdpack | 2.4 |
reactable | 0.4.3 | reactR | 0.4.4 |
readr | 2.1.3 | readstata13 | 0.10.0 |
readxl | 1.4.1 | recipes | 1.0.4 |
registry | 0.5-1 | regress | 1.3-21 |
relaxnet | 0.3-2 | reliaR | 0.01 |
relimp | 1.0-5 | rematch | 1.0.1 |
rematch2 | 2.1.2 | remotes | 2.4.2 |
rentrez | 1.2.3 | renv | 0.16.0 |
reprex | 2.0.2 | reshape | 0.8.9 |
reshape2 | 1.4.4 | rex | 1.2.1 |
rgl | 1.0.1 | RgoogleMaps | 1.4.5.3 |
RGraphics | 3.0-2 | riingo | 0.3.1 |
ritis | 1.0.0 | rJava | 1.0-6 |
RJDBC | 0.2-10 | rjson | 0.2.21 |
RJSONIO | 1.3-1.8 | rlang | 1.0.6 |
rlecuyer | 0.3-5 | rmarkdown | 2.20 |
Rmpfr | 0.9-1 | rms | 6.4-1 |
RMySQL | 0.10.25 | rncl | 0.8.7 |
robustbase | 0.95-0 | ROCR | 1.0-11 |
Rook | 1.2 | rotl | 3.0.14 |
roxygen2 | 7.2.3 | RPostgreSQL | 0.7-4 |
rprojroot | 2.0.3 | rredlist | 0.7.1 |
rsample | 1.1.1 | RSQLite | 2.2.20 |
rstan | 2.21.8 | rstantools | 2.2.0 |
rstudioapi | 0.14 | Rttf2pt1 | 1.3.12 |
RUnit | 0.4.32 | rversions | 2.1.2 |
rvest | 1.0.3 | Rvmmin | 2018-4.17.1 |
s2 | 1.1.2 | sandwich | 3.0-2 |
sass | 0.4.5 | scales | 1.2.1 |
scatterplot3d | 0.3-42 | ScottKnott | 1.3-0 |
SDMTools | 1.1-221.2 | sealasso | 0.1-3 |
segmented | 1.6-2 | selectr | 0.4-2 |
sem | 3.1-15 | SemiPar | 1.0-4.2 |
semTools | 0.5-6 | seqinr | 4.2-23 |
seriation | 1.4.1 | sessioninfo | 1.2.2 |
setRNG | 2022.4-1 | sets | 1.0-22 |
sf | 1.0-9 | sfsmisc | 1.1-14 |
shape | 1.4.6 | shapefiles | 0.7.2 |
shiny | 1.7.4 | shiny.semantic | 0.4.3 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinythemes | 1.2.0 | SimComp | 3.3 |
simsem | 0.5-16 | sitmo | 2.0.2 |
slam | 0.1-50 | slider | 0.3.0 |
sn | 2.1.0 | sna | 2.7-1 |
snakecase | 0.11.0 | snow | 0.4-4 |
snowfall | 1.84-6.2 | solrium | 1.2.0 |
sourcetools | 0.1.7-1 | sp | 1.6-0 |
spam | 2.9-1 | SparseM | 1.81 |
SpatialExtremes | 2.1-0 | spatstat | 3.0-3 |
spatstat.data | 3.0-0 | spatstat.explore | 3.0-6 |
spatstat.geom | 3.0-6 | spatstat.linnet | 3.0-4 |
spatstat.model | 3.1-2 | spatstat.random | 3.1-3 |
spatstat.sparse | 3.0-0 | spatstat.utils | 3.0-1 |
spData | 2.2.1 | spdep | 1.2-7 |
SQUAREM | 2021.1 | ssgraph | 1.15 |
stabs | 0.6-4 | StanHeaders | 2.21.0-7 |
statmod | 1.5.0 | statnet.common | 4.8.0 |
stringi | 1.7.12 | stringr | 1.5.0 |
strucchange | 1.5-3 | styler | 1.9.0 |
subplex | 1.8 | superml | 0.5.6 |
SuppDists | 1.1-9.7 | survey | 4.1-1 |
survPresmooth | 1.1-11 | svUnit | 1.0.6 |
synbreedData | 1.5 | sys | 3.4.1 |
systemfonts | 1.0.4 | tables | 0.9.10 |
tabnet | 0.3.0 | taxize | 0.9.100 |
tensor | 1.5 | tensorA | 0.36.2 |
terra | 1.7-3 | testit | 0.13 |
testthat | 3.1.6 | textplot | 0.2.2 |
textshaping | 0.3.6 | TH.data | 1.1-1 |
threejs | 0.3.3 | tibble | 3.1.8 |
tidymodels | 1.0.0 | tidyquant | 1.0.6 |
tidyr | 1.3.0 | tidyselect | 1.2.0 |
tidyverse | 1.3.2 | timechange | 0.2.0 |
timeDate | 4022.108 | timeSeries | 4021.105 |
timetk | 2.8.2 | tinytex | 0.44 |
tis | 1.39 | tkrplot | 0.0-27 |
tmvtnorm | 1.5 | topicmodels.etm | 0.1.0 |
torch | 0.9.1 | torchaudio | 0.2.2 |
torchdatasets | 0.2.0 | torchvision | 0.4.1 |
triebeard | 0.3.0 | trimcluster | 0.1-5 |
tripack | 1.3-9.1 | truncnorm | 1.0-8 |
truncreg | 0.2-5 | tseries | 0.10-53 |
tsfeatures | 1.1 | TSP | 1.2-2 |
TTR | 0.24.3 | tune | 1.0.1 |
tweenr | 2.0.2 | tzdb | 0.3.0 |
ucminf | 1.1-4.1 | udpipe | 0.8.11 |
units | 0.8-1 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
usethis | 2.1.6 | utf8 | 1.2.3 |
uuid | 1.1-0 | uwot | 0.1.14 |
V8 | 4.2.2 | vcd | 1.4-11 |
vctrs | 0.5.2 | vegan | 2.6-4 |
VGAM | 1.1-7 | VGAMdata | 1.1-8 |
viridis | 0.6.2 | viridisLite | 0.4.1 |
visNetwork | 2.1.2 | vroom | 1.6.1 |
waldo | 0.4.0 | warp | 0.2.0 |
waveslim | 1.8.4 | wavethresh | 4.7.2 |
webshot | 0.5.4 | whisker | 0.4.1 |
widenet | 0.1-2 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | WikipediR | 1.5.0 |
wikitaxa | 0.4.0 | withr | 2.5.0 |
wk | 0.7.1 | word2vec | 0.3.4 |
workflows | 1.1.2 | workflowsets | 1.0.0 |
worrms | 0.4.2 | xfun | 0.37 |
xgboost | 1.7.3.1 | XLConnect | 1.0.7 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.13 | xml2 | 1.3.3 |
xopen | 1.0.0 | xtable | 1.8-4 |
xts | 0.12.2 | yaml | 2.3.7 |
yardstick | 1.1.0 | zeallot | 0.1.0 |
zip | 2.2.2 | zoo | 1.8-11 |
RStudio Server
R: 4.2.2
rstudio-server: 2022.12.0-353
CUDA Version: 12.0
GPU Driver Version: 525.85.12
R packages
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.0 |
abind | 1.4-5 | ACD | 1.5.3 |
acepack | 1.4.1 | actuar | 3.3-1 |
ada | 2.0-5 | ade4 | 1.7-20 |
ade4TkGUI | 0.3-1 | adegraphics | 1.0-17 |
adehabitatLT | 0.3.26 | adehabitatMA | 0.3.15 |
admisc | 0.30 | affxparser | 1.70.0 |
agricolae | 1.3-5 | akima | 0.6-3.4 |
AlgDesign | 1.2.1 | alphavantager | 0.1.2 |
Amelia | 1.8.1 | anytime | 0.3.9 |
ape | 5.6-2 | arm | 1.13-1 |
aroma.apd | 0.6.1 | ascii | 2.4 |
ash | 1.0-15 | askpass | 1.1 |
assertthat | 0.2.1 | AUC | 0.3.2 |
backports | 1.4.1 | base64enc | 0.1-3 |
bayesplot | 1.10.0 | BB | 2019.10-1 |
BDgraph | 2.72 | bdsmatrix | 1.3-6 |
BGLR | 1.1.0 | BH | 1.81.0-1 |
biganalytics | 1.1.21 | bigD | 0.2.0 |
biglars | 1.0.2 | biglm | 0.9-2.1 |
bigmemory | 4.6.1 | bigmemory.sri | 0.1.6 |
bigml | 0.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
blob | 1.2.3 | BLR | 1.6 |
bold | 1.2.0 | bpca | 1.3-4 |
BradleyTerry2 | 1.1-2 | brew | 1.0-8 |
brglm | 0.7.2 | brglm2 | 0.8.2 |
bridgesampling | 1.1-2 | brio | 1.1.3 |
brms | 2.18.0 | Brobdingnag | 1.2-9 |
broom | 1.0.3 | bslib | 0.4.2 |
BsMD | 2020.4.30 | ca | 0.71.1 |
cachem | 1.0.6 | calibrator | 1.2-8 |
callr | 3.7.3 | car | 3.1-1 |
carData | 3.0-5 | caret | 6.0-93 |
caTools | 1.18.2 | cellranger | 1.1.0 |
checkmate | 2.1.0 | chron | 2.3-59 |
CircStats | 0.2-6 | classInt | 0.4-8 |
cli | 3.6.0 | clipr | 0.8.0 |
clock | 0.6.1 | clusterGeneration | 1.3.7 |
coda | 0.19-4 | coin | 1.4-2 |
collapse | 1.9.2 | colorspace | 2.1-0 |
colourpicker | 1.2.0 | combinat | 0.0-8 |
commonmark | 1.8.1 | conditionz | 0.1.0 |
conf.design | 2.0.0 | conflicted | 1.2.0 |
contfrac | 1.1-12 | coro | 1.0.3 |
corpcor | 1.6.10 | corrgram | 1.14 |
corrplot | 0.92 | cpp11 | 0.4.3 |
crayon | 1.5.2 | credentials | 1.3.2 |
crosstalk | 1.2.0 | crul | 1.3 |
cubature | 2.0.4.6 | curl | 5.0.0 |
CVST | 0.2-3 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | data.table | 1.14.6 |
DataExplorer | 0.8.2 | datapasta | 3.1.0 |
DBI | 1.1.3 | dbplyr | 2.3.0 |
deldir | 1.0-6 | dendextend | 1.16.0 |
DEoptimR | 1.0-11 | Deriv | 4.1.3 |
desc | 1.4.2 | deSolve | 1.34 |
devtools | 2.4.5 | dfidx | 0.0-5 |
dfoptim | 2020.10-1 | diagram | 1.6.5 |
DiagrammeR | 1.0.9 | dials | 1.1.0 |
DiceDesign | 1.9 | dichromat | 2.0-0.1 |
diffobj | 0.3.5 | digest | 0.6.31 |
dimRed | 0.2.6 | diptest | 0.76-0 |
discretization | 1.0-1.1 | distributional | 0.3.1 |
doBy | 4.6.16 | doc2vec | 0.2.0 |
DoE.base | 1.2-1 | doMC | 1.3.8 |
doParallel | 1.0.17 | dotCall64 | 1.0-2 |
downlit | 0.4.2 | downloader | 0.4 |
dplyr | 1.1.0 | dqrng | 0.3.0 |
DRR | 0.0.4 | DT | 0.27 |
dtplyr | 1.2.2 | dummies | 1.5.6 |
dygraphs | 1.1.1.6 | dynamicTreeCut | 1.63-1 |
e1071 | 1.7-13 | EbayesThresh | 1.4-12 |
effects | 4.2-2 | ellipse | 0.4.3 |
ellipsis | 0.3.2 | elliptic | 1.4-0 |
emulator | 1.2-21 | enrichwith | 0.3.1 |
equivalence | 0.7.2 | estimability | 1.4.1 |
ETLUtils | 1.5 | evaluate | 0.20 |
expint | 0.1-8 | expm | 0.999-7 |
extraDistr | 1.9.1 | extrafont | 0.19 |
extrafontdb | 1.0 | fansi | 1.0.4 |
farver | 2.1.1 | fastICA | 1.2-3 |
fastmap | 1.1.0 | fastmatch | 1.1-3 |
fda | 6.0.5 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
ff | 4.0.9 | ffbase | 0.13.3 |
fields | 14.1 | filehash | 2.4-3 |
filelock | 1.0.2 | flashClust | 1.01-2 |
flexmix | 2.3-18 | FNN | 1.1.3.1 |
fontawesome | 0.5.0 | forcats | 1.0.0 |
foreach | 1.5.2 | forecast | 8.20 |
formatR | 1.14 | Formula | 1.2-4 |
fpc | 2.2-10 | fracdiff | 1.5-2 |
fs | 1.6.0 | fts | 0.9.9.2 |
functional | 0.6 | furrr | 0.3.1 |
future | 1.31.0 | future.apply | 1.10.0 |
gam | 1.22-1 | gamlss | 5.4-12 |
gamlss.data | 6.0-2 | gamlss.dist | 6.0-5 |
gargle | 1.3.0 | gclus | 1.3.2 |
gdata | 2.18.0.1 | geepack | 1.3.9 |
genalg | 0.2.1 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | geosphere | 1.5-18 |
gert | 1.9.2 | ggalt | 0.4.0 |
ggdendro | 0.1.23 | ggforce | 0.4.1 |
ggformula | 0.10.2 | ggmap | 3.0.1 |
ggplot2 | 3.4.0 | ggrepel | 0.9.3 |
ggridges | 0.5.4 | ggstance | 0.3.6 |
ggvis | 0.4.7 | gh | 1.3.1 |
git2r | 0.31.0 | gitcreds | 0.1.2 |
glassoFast | 1.0 | gld | 2.6.6 |
glmnet | 4.1-6 | globals | 0.16.2 |
glue | 1.6.2 | gmm | 1.7 |
gmodels | 2.18.1.1 | gmp | 0.6-10 |
goftest | 1.2-3 | googledrive | 2.0.0 |
googlesheets4 | 1.0.1 | googleVis | 0.7.0 |
gower | 1.0.1 | GPArotation | 2022.10-2 |
gpclib | 1.5-6 | GPfit | 1.0-8 |
gplots | 3.1.3 | gradethis | 0.2.11.9000 |
gridBase | 0.4-7 | gridExtra | 2.3 |
gridGraphics | 0.5-1 | gridSVG | 1.7-4 |
grImport | 0.9-5 | grImport2 | 0.2-0 |
gsubfn | 0.7 | gt | 0.8.0 |
gtable | 0.3.1 | gtools | 3.9.4 |
HaploSim | 1.8.4.2 | hardhat | 1.2.0 |
haven | 2.5.1 | hdrcde | 3.4 |
hexbin | 1.28.2 | hflights | 0.1 |
HH | 3.1-49 | highlight | 0.5.1 |
highr | 0.10 | Hmisc | 4.7-2 |
hms | 1.1.2 | htmlTable | 2.4.1 |
htmltools | 0.5.4 | htmlwidgets | 1.6.1 |
httpcode | 0.3.0 | httpuv | 1.6.8 |
httr | 1.4.4 | HydroMe | 2.0-1 |
HyperbolicDist | 0.6-4 | hypergeo | 1.2-13 |
ICC | 2.4.0 | ids | 1.0.1 |
igraph | 1.3.5 | igraphdata | 1.0.1 |
ineq | 0.2-13 | infer | 1.0.4 |
influenceR | 0.1.0.1 | ini | 0.3.1 |
inline | 0.3.19 | insight | 0.19.0 |
interp | 1.1-3 | intervals | 0.15.2 |
introgress | 1.2.3 | inum | 1.0-4 |
ipred | 0.9-13 | irlba | 2.3.5.1 |
Iso | 0.0-18.1 | isoband | 0.2.7 |
iterators | 1.0.14 | itertools | 0.1-3 |
janitor | 2.2.0 | jpeg | 0.1-10 |
jquerylib | 0.1.4 | jsonlite | 1.8.4 |
juicyjuice | 0.1.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-32 | klaR | 1.7-1 |
knitr | 1.42 | ks | 1.14.0 |
labeling | 0.4.2 | labelled | 2.10.0 |
LaF | 0.8.4 | Lahman | 10.0-1 |
lars | 1.3 | later | 1.3.0 |
latticeExtra | 0.6-30 | lava | 1.7.1 |
lavaan | 0.6-13 | lavaan.survey | 1.1.3.1 |
lazyeval | 0.2.2 | lcda | 0.3.1 |
leaflet | 2.1.1 | leaflet.providers | 1.9.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
learnr | 0.11.2.9000 | lgr | 0.4.4 |
lhs | 1.1.6 | libcoin | 1.0-9 |
lifecycle | 1.0.3 | LIM | 1.4.7 |
limSolve | 1.5.6 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | lme4 | 1.1-31 |
lmom | 2.9 | lmtest | 0.9-40 |
locfit | 1.5-9.7 | lokern | 1.1-9 |
loo | 2.5.1 | lpSolve | 5.6.18 |
lubridate | 1.9.1 | luz | 0.3.1 |
magic | 1.6-1 | magrittr | 2.0.3 |
manipulateWidget | 0.11.1 | mapproj | 1.2.11 |
maps | 3.4.1 | maptools | 1.1-6 |
markdown | 1.5 | Matching | 4.10-8 |
MatchIt | 4.5.0 | mathjaxr | 1.6-0 |
matrixcalc | 1.0-6 | MatrixModels | 0.5-1 |
matrixStats | 0.63.0 | maxLik | 1.5-2 |
mboost | 2.9-7 | mclust | 6.0.0 |
mcmc | 0.9-7 | MCMCglmm | 2.34 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
Metrics | 0.1.4 | mi | 1.1 |
mice | 3.15.0 | microbenchmark | 1.4.9 |
mime | 0.12 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-3 | minqa | 1.2.5 |
misc3d | 0.9-1 | miscTools | 0.6-26 |
mitools | 2.4 | mlbench | 2.1-3 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlr3 | 0.14.1 | mlr3measures | 0.5.0 |
mlr3misc | 0.11.0 | mnormt | 2.1.1 |
modeldata | 1.1.0 | modelenv | 0.1.0 |
ModelMetrics | 1.2.2.2 | modelr | 0.1.10 |
modeltime | 1.2.4 | modeltools | 0.2-23 |
moments | 0.14.1 | mondate | 0.10.02 |
mosaic | 1.8.4.2 | mosaicCore | 0.9.2.1 |
mosaicData | 0.20.3 | mratios | 1.4.2 |
multcomp | 1.4-20 | multicool | 0.1-12 |
munsell | 0.5.0 | mvMORPH | 1.1.6 |
mvtnorm | 1.1-3 | natserv | 1.0.0 |
network | 1.18.1 | networkD3 | 0.4 |
NISTnls | 0.9-13 | nleqslv | 3.3.4 |
nloptr | 2.0.3 | nls2 | 0.3-3 |
nlstools | 2.0-0 | nnls | 1.4 |
nortest | 1.0-4 | np | 0.60-16 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
odbc | 1.3.4 | openssl | 2.0.5 |
openxlsx | 4.2.5.1 | optextras | 2019-12.4 |
optimParallel | 1.0-2 | ordinal | 2022.11-16 |
padr | 0.6.2 | PairedData | 1.1.1 |
palmerpenguins | 0.1.1 | paradox | 0.11.0 |
parallelly | 1.34.0 | parsnip | 1.0.3 |
partitions | 1.10-7 | party | 1.3-11 |
partykit | 1.2-16 | pastecs | 1.3.21 |
patchwork | 1.1.2 | pbapply | 1.7-0 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
pbmcapply | 1.5.1 | PBSmapping | 2.73.2 |
pcaPP | 2.0-3 | pedigree | 1.4.2 |
PerformanceAnalytics | 2.0.4 | permute | 0.9-7 |
phangorn | 2.11.1 | phytools | 1.2-0 |
pillar | 1.8.1 | pins | 1.1.0 |
pixmap | 0.4-12 | pkgbuild | 1.4.0 |
pkgconfig | 2.0.3 | pkgdown | 2.0.7 |
pkgload | 1.3.2 | PKPDmodels | 0.3.2 |
plm | 2.6-2 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.1 |
plotrix | 3.8-2 | pls | 2.8-1 |
plyr | 1.8.8 | png | 0.1-8 |
poLCA | 1.6.0.1 | polspline | 1.1.22 |
polyclip | 1.10-4 | polycor | 0.8-1 |
polynom | 1.4-1 | posterior | 1.3.1 |
prabclus | 2.3-2 | pracma | 2.4.2 |
praise | 1.0.0 | prettyunits | 1.1.1 |
princurve | 2.1.6 | pROC | 1.18.0 |
processx | 3.8.0 | prodlim | 2019.11.13 |
profileModel | 0.6.1 | profvis | 0.3.7 |
progress | 1.2.2 | progressr | 0.13.0 |
proj4 | 1.0-12 | promises | 1.2.0.1 |
prophet | 1.0 | proto | 1.0.0 |
proxy | 0.4-27 | PRROC | 1.3.1 |
ps | 1.7.2 | pscl | 1.5.5 |
psy | 1.2 | psych | 2.2.9 |
purrr | 1.0.1 | qap | 0.1-2 |
qtl | 1.58 | quadprog | 1.5-8 |
Quandl | 2.11.0 | quantmod | 0.4.20 |
quantreg | 5.94 | questionr | 0.7.8 |
QUIC | 1.1.1 | qvcalc | 1.0.2 |
R.cache | 0.16.0 | R.devices | 2.17.1 |
R.filesets | 2.15.0 | R.huge | 0.9.0 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.25.0 | R.rsp | 0.45.0 |
R.utils | 2.12.2 | R2HTML | 2.3.3 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R6 | 2.5.1 | ragg | 1.2.5 |
rainbow | 3.7 | randomForest | 4.7-1.1 |
rappdirs | 0.3.3 | raster | 3.6-14 |
ratelimitr | 0.4.1 | rbenchmark | 1.0.0 |
rbibutils | 2.2.13 | Rcgmin | 2022-4.30 |
rcmdcheck | 1.4.0 | RColorBrewer | 1.1-3 |
Rcpp | 1.0.10 | RcppAnnoy | 0.0.20 |
RcppArmadillo | 0.11.4.3.1 | RcppEigen | 0.3.3.9.3 |
RcppParallel | 5.1.6 | RcppProgress | 0.4.2 |
RcppRoll | 0.3.0 | Rcsdp | 0.1.57.4 |
RCurl | 1.98-1.10 | Rdpack | 2.4 |
reactable | 0.4.3 | reactR | 0.4.4 |
readr | 2.1.3 | readstata13 | 0.10.0 |
readxl | 1.4.1 | recipes | 1.0.4 |
registry | 0.5-1 | regress | 1.3-21 |
relaxnet | 0.3-2 | reliaR | 0.01 |
relimp | 1.0-5 | rematch | 1.0.1 |
rematch2 | 2.1.2 | remotes | 2.4.2 |
rentrez | 1.2.3 | renv | 0.16.0 |
reprex | 2.0.2 | reshape | 0.8.9 |
reshape2 | 1.4.4 | rex | 1.2.1 |
rgl | 1.0.1 | RgoogleMaps | 1.4.5.3 |
RGraphics | 3.0-2 | riingo | 0.3.1 |
ritis | 1.0.0 | rJava | 1.0-6 |
RJDBC | 0.2-10 | rjson | 0.2.21 |
RJSONIO | 1.3-1.8 | rlang | 1.0.6 |
rlecuyer | 0.3-5 | rmarkdown | 2.20 |
Rmpfr | 0.9-1 | rms | 6.4-1 |
RMySQL | 0.10.25 | rncl | 0.8.7 |
robustbase | 0.95-0 | ROCR | 1.0-11 |
Rook | 1.2 | rotl | 3.0.14 |
roxygen2 | 7.2.3 | RPostgreSQL | 0.7-4 |
rprojroot | 2.0.3 | rredlist | 0.7.1 |
rsample | 1.1.1 | RSQLite | 2.2.20 |
rstan | 2.21.8 | rstantools | 2.2.0 |
rstudioapi | 0.14 | Rttf2pt1 | 1.3.12 |
RUnit | 0.4.32 | rversions | 2.1.2 |
rvest | 1.0.3 | Rvmmin | 2018-4.17.1 |
s2 | 1.1.2 | sandwich | 3.0-2 |
sass | 0.4.5 | scales | 1.2.1 |
scatterplot3d | 0.3-42 | ScottKnott | 1.3-0 |
SDMTools | 1.1-221.2 | sealasso | 0.1-3 |
segmented | 1.6-2 | selectr | 0.4-2 |
sem | 3.1-15 | SemiPar | 1.0-4.2 |
semTools | 0.5-6 | seqinr | 4.2-23 |
seriation | 1.4.1 | sessioninfo | 1.2.2 |
setRNG | 2022.4-1 | sets | 1.0-22 |
sf | 1.0-9 | sfsmisc | 1.1-14 |
shape | 1.4.6 | shapefiles | 0.7.2 |
shiny | 1.7.4 | shiny.semantic | 0.4.3 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinythemes | 1.2.0 | SimComp | 3.3 |
simsem | 0.5-16 | sitmo | 2.0.2 |
slam | 0.1-50 | slider | 0.3.0 |
sn | 2.1.0 | sna | 2.7-1 |
snakecase | 0.11.0 | snow | 0.4-4 |
snowfall | 1.84-6.2 | solrium | 1.2.0 |
sourcetools | 0.1.7-1 | sp | 1.6-0 |
spam | 2.9-1 | SparseM | 1.81 |
SpatialExtremes | 2.1-0 | spatstat | 3.0-3 |
spatstat.data | 3.0-0 | spatstat.explore | 3.0-6 |
spatstat.geom | 3.0-6 | spatstat.linnet | 3.0-4 |
spatstat.model | 3.1-2 | spatstat.random | 3.1-3 |
spatstat.sparse | 3.0-0 | spatstat.utils | 3.0-1 |
spData | 2.2.1 | spdep | 1.2-7 |
SQUAREM | 2021.1 | ssgraph | 1.15 |
stabs | 0.6-4 | StanHeaders | 2.21.0-7 |
statmod | 1.5.0 | statnet.common | 4.8.0 |
stringi | 1.7.12 | stringr | 1.5.0 |
strucchange | 1.5-3 | styler | 1.9.0 |
subplex | 1.8 | superml | 0.5.6 |
SuppDists | 1.1-9.7 | survey | 4.1-1 |
survPresmooth | 1.1-11 | svUnit | 1.0.6 |
synbreedData | 1.5 | sys | 3.4.1 |
systemfonts | 1.0.4 | tables | 0.9.10 |
tabnet | 0.3.0 | taxize | 0.9.100 |
tensor | 1.5 | tensorA | 0.36.2 |
terra | 1.7-3 | testit | 0.13 |
testthat | 3.1.6 | textplot | 0.2.2 |
textshaping | 0.3.6 | TH.data | 1.1-1 |
threejs | 0.3.3 | tibble | 3.1.8 |
tidymodels | 1.0.0 | tidyquant | 1.0.6 |
tidyr | 1.3.0 | tidyselect | 1.2.0 |
tidyverse | 1.3.2 | timechange | 0.2.0 |
timeDate | 4022.108 | timeSeries | 4021.105 |
timetk | 2.8.2 | tinytex | 0.44 |
tis | 1.39 | tkrplot | 0.0-27 |
tmvtnorm | 1.5 | topicmodels.etm | 0.1.0 |
torch | 0.9.1 | torchaudio | 0.2.2 |
torchdatasets | 0.2.0 | torchvision | 0.4.1 |
triebeard | 0.3.0 | trimcluster | 0.1-5 |
tripack | 1.3-9.1 | truncnorm | 1.0-8 |
truncreg | 0.2-5 | tseries | 0.10-53 |
tsfeatures | 1.1 | TSP | 1.2-2 |
TTR | 0.24.3 | tune | 1.0.1 |
tweenr | 2.0.2 | tzdb | 0.3.0 |
ucminf | 1.1-4.1 | udpipe | 0.8.11 |
units | 0.8-1 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
usethis | 2.1.6 | utf8 | 1.2.3 |
uuid | 1.1-0 | uwot | 0.1.14 |
V8 | 4.2.2 | vcd | 1.4-11 |
vctrs | 0.5.2 | vegan | 2.6-4 |
VGAM | 1.1-7 | VGAMdata | 1.1-8 |
viridis | 0.6.2 | viridisLite | 0.4.1 |
visNetwork | 2.1.2 | vroom | 1.6.1 |
waldo | 0.4.0 | warp | 0.2.0 |
waveslim | 1.8.4 | wavethresh | 4.7.2 |
webshot | 0.5.4 | whisker | 0.4.1 |
widenet | 0.1-2 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | WikipediR | 1.5.0 |
wikitaxa | 0.4.0 | withr | 2.5.0 |
wk | 0.7.1 | word2vec | 0.3.4 |
workflows | 1.1.2 | workflowsets | 1.0.0 |
worrms | 0.4.2 | xfun | 0.37 |
xgboost | 1.7.3.1 | XLConnect | 1.0.7 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.13 | xml2 | 1.3.3 |
xopen | 1.0.0 | xtable | 1.8-4 |
xts | 0.12.2 | yaml | 2.3.7 |
yardstick | 1.1.0 | zeallot | 0.1.0 |
zip | 2.2.2 | zoo | 1.8-11 |
RStudio Server
R: 4.2.2
rstudio-server: 2022.12.0-353
R packages
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.0 |
abind | 1.4-5 | ACD | 1.5.3 |
acepack | 1.4.1 | actuar | 3.3-1 |
ada | 2.0-5 | ade4 | 1.7-20 |
ade4TkGUI | 0.3-1 | adegraphics | 1.0-16 |
adehabitatLT | 0.3.26 | adehabitatMA | 0.3.15 |
admisc | 0.30 | affxparser | 1.70.0 |
agricolae | 1.3-5 | akima | 0.6-3.4 |
AlgDesign | 1.2.1 | alphavantager | 0.1.2 |
Amelia | 1.8.1 | anytime | 0.3.9 |
ape | 5.6-2 | arm | 1.13-1 |
aroma.apd | 0.6.1 | ascii | 2.4 |
ash | 1.0-15 | askpass | 1.1 |
assertthat | 0.2.1 | AUC | 0.3.2 |
backports | 1.4.1 | base64enc | 0.1-3 |
bayesplot | 1.10.0 | BB | 2019.10-1 |
BDgraph | 2.71 | bdsmatrix | 1.3-6 |
BGLR | 1.1.0 | BH | 1.78.0-0 |
biganalytics | 1.1.21 | bigD | 0.2.0 |
biglars | 1.0.2 | biglm | 0.9-2.1 |
bigmemory | 4.6.1 | bigmemory.sri | 0.1.6 |
bigml | 0.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
blob | 1.2.3 | BLR | 1.6 |
bold | 1.2.0 | bpca | 1.3-4 |
BradleyTerry2 | 1.1-2 | brew | 1.0-8 |
brglm | 0.7.2 | brglm2 | 0.8.2 |
bridgesampling | 1.1-2 | brio | 1.1.3 |
brms | 2.18.0 | Brobdingnag | 1.2-9 |
broom | 1.0.2 | bslib | 0.4.2 |
BsMD | 2020.4.30 | ca | 0.71.1 |
cachem | 1.0.6 | calibrator | 1.2-8 |
callr | 3.7.3 | car | 3.1-1 |
carData | 3.0-5 | caret | 6.0-93 |
caTools | 1.18.2 | cellranger | 1.1.0 |
checkmate | 2.1.0 | chron | 2.3-58 |
CircStats | 0.2-6 | classInt | 0.4-8 |
cli | 3.4.1 | clipr | 0.8.0 |
clock | 0.6.1 | clusterGeneration | 1.3.7 |
coda | 0.19-4 | coin | 1.4-2 |
collapse | 1.8.9 | colorspace | 2.0-3 |
colourpicker | 1.2.0 | combinat | 0.0-8 |
commonmark | 1.8.1 | conditionz | 0.1.0 |
conf.design | 2.0.0 | conflicted | 1.1.0 |
contfrac | 1.1-12 | coro | 1.0.3 |
corpcor | 1.6.10 | corrgram | 1.14 |
corrplot | 0.92 | cpp11 | 0.4.3 |
crayon | 1.5.2 | credentials | 1.3.2 |
crosstalk | 1.2.0 | crul | 1.3 |
cubature | 2.0.4.5 | curl | 4.3.3 |
CVST | 0.2-3 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | data.table | 1.14.6 |
DataExplorer | 0.8.2 | datapasta | 3.1.0 |
DBI | 1.1.3 | dbplyr | 2.2.1 |
deldir | 1.0-6 | dendextend | 1.16.0 |
DEoptimR | 1.0-11 | Deriv | 4.1.3 |
desc | 1.4.2 | deSolve | 1.34 |
devtools | 2.4.5 | dfidx | 0.0-5 |
dfoptim | 2020.10-1 | diagram | 1.6.5 |
DiagrammeR | 1.0.9 | dials | 1.1.0 |
DiceDesign | 1.9 | dichromat | 2.0-0.1 |
diffobj | 0.3.5 | digest | 0.6.31 |
dimRed | 0.2.6 | diptest | 0.76-0 |
discretization | 1.0-1.1 | distributional | 0.3.1 |
doBy | 4.6.15 | doc2vec | 0.2.0 |
DoE.base | 1.2-1 | doMC | 1.3.8 |
doParallel | 1.0.17 | dotCall64 | 1.0-2 |
downlit | 0.4.2 | downloader | 0.4 |
dplyr | 1.0.10 | dqrng | 0.3.0 |
DRR | 0.0.4 | DT | 0.26 |
dtplyr | 1.2.2 | dummies | 1.5.6 |
dygraphs | 1.1.1.6 | dynamicTreeCut | 1.63-1 |
e1071 | 1.7-12 | EbayesThresh | 1.4-12 |
effects | 4.2-2 | ellipse | 0.4.3 |
ellipsis | 0.3.2 | elliptic | 1.4-0 |
emulator | 1.2-21 | enrichwith | 0.3.1 |
equivalence | 0.7.2 | estimability | 1.4.1 |
ETLUtils | 1.5 | evaluate | 0.19 |
expint | 0.1-8 | expm | 0.999-6 |
extraDistr | 1.9.1 | extrafont | 0.18 |
extrafontdb | 1.0 | fansi | 1.0.3 |
farver | 2.1.1 | fastICA | 1.2-3 |
fastmap | 1.1.0 | fastmatch | 1.1-3 |
fda | 6.0.5 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
ff | 4.0.7 | ffbase | 0.13.3 |
fields | 14.1 | filehash | 2.4-3 |
filelock | 1.0.2 | flashClust | 1.01-2 |
flexmix | 2.3-18 | FNN | 1.1.3.1 |
fontawesome | 0.4.0 | forcats | 0.5.2 |
foreach | 1.5.2 | forecast | 8.19 |
formatR | 1.12 | Formula | 1.2-4 |
fpc | 2.2-9 | fracdiff | 1.5-2 |
fs | 1.5.2 | fts | 0.9.9.2 |
functional | 0.6 | furrr | 0.3.1 |
future | 1.30.0 | future.apply | 1.10.0 |
gam | 1.22 | gamlss | 5.4-10 |
gamlss.data | 6.0-2 | gamlss.dist | 6.0-5 |
gargle | 1.2.1 | gclus | 1.3.2 |
gdata | 2.18.0.1 | geepack | 1.3.9 |
genalg | 0.2.1 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | geosphere | 1.5-18 |
gert | 1.9.2 | ggalt | 0.4.0 |
ggdendro | 0.1.23 | ggforce | 0.4.1 |
ggformula | 0.10.2 | ggmap | 3.0.1 |
ggplot2 | 3.4.0 | ggrepel | 0.9.2 |
ggridges | 0.5.4 | ggstance | 0.3.6 |
ggvis | 0.4.7 | gh | 1.3.1 |
git2r | 0.30.1 | gitcreds | 0.1.2 |
glassoFast | 1.0 | gld | 2.6.6 |
glmnet | 4.1-6 | globals | 0.16.2 |
glue | 1.6.2 | gmm | 1.7 |
gmodels | 2.18.1.1 | gmp | 0.6-9 |
goftest | 1.2-3 | googledrive | 2.0.0 |
googlesheets4 | 1.0.1 | googleVis | 0.7.0 |
gower | 1.0.0 | GPArotation | 2022.10-2 |
gpclib | 1.5-6 | GPfit | 1.0-8 |
gplots | 3.1.3 | gradethis | 0.2.11.9000 |
gridBase | 0.4-7 | gridExtra | 2.3 |
gridGraphics | 0.5-1 | gridSVG | 1.7-4 |
grImport | 0.9-5 | grImport2 | 0.2-0 |
gsubfn | 0.7 | gt | 0.8.0 |
gtable | 0.3.1 | gtools | 3.9.4 |
HaploSim | 1.8.4.2 | hardhat | 1.2.0 |
haven | 2.5.1 | hdrcde | 3.4 |
hexbin | 1.28.2 | hflights | 0.1 |
HH | 3.1-49 | highlight | 0.5.0 |
highr | 0.9 | Hmisc | 4.7-2 |
hms | 1.1.2 | htmlTable | 2.4.1 |
htmltools | 0.5.4 | htmlwidgets | 1.6.0 |
httpcode | 0.3.0 | httpuv | 1.6.7 |
httr | 1.4.4 | HydroMe | 2.0-1 |
HyperbolicDist | 0.6-4 | hypergeo | 1.2-13 |
ICC | 2.4.0 | ids | 1.0.1 |
igraph | 1.3.5 | igraphdata | 1.0.1 |
ineq | 0.2-13 | infer | 1.0.4 |
influenceR | 0.1.0.1 | ini | 0.3.1 |
inline | 0.3.19 | insight | 0.18.8 |
interp | 1.1-3 | intervals | 0.15.2 |
introgress | 1.2.3 | inum | 1.0-4 |
ipred | 0.9-13 | irlba | 2.3.5.1 |
Iso | 0.0-18.1 | isoband | 0.2.6 |
iterators | 1.0.14 | itertools | 0.1-3 |
janitor | 2.1.0 | jpeg | 0.1-10 |
jquerylib | 0.1.4 | jsonlite | 1.8.4 |
juicyjuice | 0.1.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-31 | klaR | 1.7-1 |
knitr | 1.41 | ks | 1.14.0 |
labeling | 0.4.2 | labelled | 2.10.0 |
LaF | 0.8.4 | Lahman | 10.0-1 |
lars | 1.3 | later | 1.3.0 |
latticeExtra | 0.6-30 | lava | 1.7.0 |
lavaan | 0.6-12 | lavaan.survey | 1.1.3.1 |
lazyeval | 0.2.2 | lcda | 0.3.1 |
leaflet | 2.1.1 | leaflet.providers | 1.9.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
learnr | 0.11.2.9000 | lgr | 0.4.4 |
lhs | 1.1.6 | libcoin | 1.0-9 |
lifecycle | 1.0.3 | LIM | 1.4.7 |
limSolve | 1.5.6 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | lme4 | 1.1-31 |
lmom | 2.9 | lmtest | 0.9-40 |
locfit | 1.5-9.6 | lokern | 1.1-9 |
loo | 2.5.1 | lpSolve | 5.6.17 |
lubridate | 1.9.0 | luz | 0.3.1 |
magic | 1.6-1 | magrittr | 2.0.3 |
manipulateWidget | 0.11.1 | mapproj | 1.2.9 |
maps | 3.4.1 | maptools | 1.1-6 |
markdown | 1.4 | Matching | 4.10-8 |
MatchIt | 4.5.0 | mathjaxr | 1.6-0 |
matrixcalc | 1.0-6 | MatrixModels | 0.5-1 |
matrixStats | 0.63.0 | maxLik | 1.5-2 |
mboost | 2.9-7 | mclust | 6.0.0 |
mcmc | 0.9-7 | MCMCglmm | 2.34 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
Metrics | 0.1.4 | mi | 1.1 |
mice | 3.15.0 | microbenchmark | 1.4.9 |
mime | 0.12 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-2 | minqa | 1.2.5 |
misc3d | 0.9-1 | miscTools | 0.6-26 |
mitools | 2.4 | mlbench | 2.1-3 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlr3 | 0.14.1 | mlr3measures | 0.5.0 |
mlr3misc | 0.11.0 | mnormt | 2.1.1 |
modeldata | 1.0.1 | modelenv | 0.1.0 |
ModelMetrics | 1.2.2.2 | modelr | 0.1.10 |
modeltime | 1.2.4 | modeltools | 0.2-23 |
moments | 0.14.1 | mondate | 0.10.02 |
mosaic | 1.8.4.2 | mosaicCore | 0.9.2.1 |
mosaicData | 0.20.3 | mratios | 1.4.2 |
multcomp | 1.4-20 | multicool | 0.1-12 |
munsell | 0.5.0 | mvMORPH | 1.1.6 |
mvtnorm | 1.1-3 | natserv | 1.0.0 |
network | 1.18.0 | networkD3 | 0.4 |
NISTnls | 0.9-13 | nleqslv | 3.3.3 |
nloptr | 2.0.3 | nls2 | 0.3-3 |
nlstools | 2.0-0 | nnls | 1.4 |
nortest | 1.0-4 | np | 0.60-16 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
odbc | 1.3.3 | openssl | 2.0.5 |
openxlsx | 4.2.5.1 | optextras | 2019-12.4 |
optimParallel | 1.0-2 | ordinal | 2022.11-16 |
padr | 0.6.2 | PairedData | 1.1.1 |
palmerpenguins | 0.1.1 | paradox | 0.11.0 |
parallelly | 1.33.0 | parsnip | 1.0.3 |
partitions | 1.10-7 | party | 1.3-11 |
partykit | 1.2-16 | pastecs | 1.3.21 |
patchwork | 1.1.2 | pbapply | 1.6-0 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.1 |
pbmcapply | 1.5.1 | PBSmapping | 2.73.2 |
pcaPP | 2.0-3 | pedigree | 1.4.2 |
PerformanceAnalytics | 2.0.4 | permute | 0.9-7 |
phangorn | 2.10.0 | phytools | 1.2-0 |
pillar | 1.8.1 | pins | 1.0.3 |
pixmap | 0.4-12 | pkgbuild | 1.4.0 |
pkgconfig | 2.0.3 | pkgdown | 2.0.7 |
pkgload | 1.3.2 | PKPDmodels | 0.3.2 |
plm | 2.6-2 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.1 |
plotrix | 3.8-2 | pls | 2.8-1 |
plyr | 1.8.8 | png | 0.1-8 |
poLCA | 1.6.0.1 | polspline | 1.1.22 |
polyclip | 1.10-4 | polycor | 0.8-1 |
polynom | 1.4-1 | posterior | 1.3.1 |
prabclus | 2.3-2 | pracma | 2.4.2 |
praise | 1.0.0 | prettyunits | 1.1.1 |
princurve | 2.1.6 | pROC | 1.18.0 |
processx | 3.8.0 | prodlim | 2019.11.13 |
profileModel | 0.6.1 | profvis | 0.3.7 |
progress | 1.2.2 | progressr | 0.12.0 |
proj4 | 1.0-12 | promises | 1.2.0.1 |
prophet | 1.0 | proto | 1.0.0 |
proxy | 0.4-27 | PRROC | 1.3.1 |
ps | 1.7.2 | pscl | 1.5.5 |
psy | 1.2 | psych | 2.2.9 |
purrr | 0.3.5 | qap | 0.1-2 |
qtl | 1.54 | quadprog | 1.5-8 |
Quandl | 2.11.0 | quantmod | 0.4.20 |
quantreg | 5.94 | questionr | 0.7.7 |
QUIC | 1.1.1 | qvcalc | 1.0.2 |
R.cache | 0.16.0 | R.devices | 2.17.1 |
R.filesets | 2.15.0 | R.huge | 0.9.0 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.25.0 | R.rsp | 0.45.0 |
R.utils | 2.12.2 | R2HTML | 2.3.3 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R6 | 2.5.1 | ragg | 1.2.4 |
rainbow | 3.7 | randomForest | 4.7-1.1 |
rappdirs | 0.3.3 | raster | 3.6-11 |
ratelimitr | 0.4.1 | rbenchmark | 1.0.0 |
rbibutils | 2.2.11 | Rcgmin | 2022-4.30 |
rcmdcheck | 1.4.0 | RColorBrewer | 1.1-3 |
Rcpp | 1.0.9 | RcppAnnoy | 0.0.20 |
RcppArmadillo | 0.11.4.2.1 | RcppEigen | 0.3.3.9.3 |
RcppParallel | 5.1.5 | RcppProgress | 0.4.2 |
RcppRoll | 0.3.0 | Rcsdp | 0.1.57.4 |
RCurl | 1.98-1.9 | Rdpack | 2.4 |
reactable | 0.4.1 | reactR | 0.4.4 |
readr | 2.1.3 | readstata13 | 0.10.0 |
readxl | 1.4.1 | recipes | 1.0.3 |
registry | 0.5-1 | regress | 1.3-21 |
relaxnet | 0.3-2 | reliaR | 0.01 |
relimp | 1.0-5 | rematch | 1.0.1 |
rematch2 | 2.1.2 | remotes | 2.4.2 |
rentrez | 1.2.3 | renv | 0.16.0 |
reprex | 2.0.2 | reshape | 0.8.9 |
reshape2 | 1.4.4 | rex | 1.2.1 |
rgl | 0.110.2 | RgoogleMaps | 1.4.5.3 |
RGraphics | 3.0-2 | riingo | 0.3.1 |
ritis | 1.0.0 | rJava | 1.0-6 |
RJDBC | 0.2-10 | rjson | 0.2.21 |
RJSONIO | 1.3-1.6 | rlang | 1.0.6 |
rlecuyer | 0.3-5 | rmarkdown | 2.19 |
Rmpfr | 0.8-9 | rms | 6.3-0 |
RMySQL | 0.10.25 | rncl | 0.8.6 |
robustbase | 0.95-0 | ROCR | 1.0-11 |
Rook | 1.2 | rotl | 3.0.14 |
roxygen2 | 7.2.3 | RPostgreSQL | 0.7-4 |
rprojroot | 2.0.3 | rredlist | 0.7.1 |
rsample | 1.1.1 | RSQLite | 2.2.19 |
rstan | 2.21.7 | rstantools | 2.2.0 |
rstudioapi | 0.14 | Rttf2pt1 | 1.3.11 |
RUnit | 0.4.32 | rversions | 2.1.2 |
rvest | 1.0.3 | Rvmmin | 2018-4.17.1 |
s2 | 1.1.1 | sandwich | 3.0-2 |
sass | 0.4.4 | scales | 1.2.1 |
scatterplot3d | 0.3-42 | ScottKnott | 1.3-0 |
SDMTools | 1.1-221.2 | sealasso | 0.1-3 |
segmented | 1.6-2 | selectr | 0.4-2 |
sem | 3.1-15 | SemiPar | 1.0-4.2 |
semTools | 0.5-6 | seqinr | 4.2-23 |
seriation | 1.4.0 | sessioninfo | 1.2.2 |
setRNG | 2022.4-1 | sets | 1.0-21 |
sf | 1.0-9 | sfsmisc | 1.1-14 |
shape | 1.4.6 | shapefiles | 0.7.2 |
shiny | 1.7.4 | shiny.semantic | 0.4.3 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinythemes | 1.2.0 | SimComp | 3.3 |
simsem | 0.5-16 | sitmo | 2.0.2 |
slam | 0.1-50 | slider | 0.3.0 |
sn | 2.1.0 | sna | 2.7 |
snakecase | 0.11.0 | snow | 0.4-4 |
snowfall | 1.84-6.2 | solrium | 1.2.0 |
sourcetools | 0.1.7 | sp | 1.5-1 |
spam | 2.9-1 | SparseM | 1.81 |
SpatialExtremes | 2.1-0 | spatstat | 3.0-2 |
spatstat.data | 3.0-0 | spatstat.explore | 3.0-5 |
spatstat.geom | 3.0-3 | spatstat.linnet | 3.0-3 |
spatstat.model | 3.0-2 | spatstat.random | 3.0-1 |
spatstat.sparse | 3.0-0 | spatstat.utils | 3.0-1 |
spData | 2.2.1 | spdep | 1.2-7 |
SQUAREM | 2021.1 | ssgraph | 1.14 |
stabs | 0.6-4 | StanHeaders | 2.21.0-7 |
statmod | 1.4.37 | statnet.common | 4.7.0 |
stringi | 1.7.8 | stringr | 1.5.0 |
strucchange | 1.5-3 | styler | 1.8.1 |
subplex | 1.8 | superml | 0.5.6 |
SuppDists | 1.1-9.7 | survey | 4.1-1 |
survPresmooth | 1.1-11 | svUnit | 1.0.6 |
synbreedData | 1.5 | sys | 3.4.1 |
systemfonts | 1.0.4 | tables | 0.9.10 |
tabnet | 0.3.0 | taxize | 0.9.100 |
tensor | 1.5 | tensorA | 0.36.2 |
terra | 1.6-47 | testit | 0.13 |
testthat | 3.1.6 | textplot | 0.2.2 |
textshaping | 0.3.6 | TH.data | 1.1-1 |
threejs | 0.3.3 | tibble | 3.1.8 |
tidymodels | 1.0.0 | tidyquant | 1.0.6 |
tidyr | 1.2.1 | tidyselect | 1.2.0 |
tidyverse | 1.3.2 | timechange | 0.1.1 |
timeDate | 4021.107 | timeSeries | 4021.105 |
timetk | 2.8.2 | tinytex | 0.43 |
tis | 1.39 | tkrplot | 0.0-27 |
tmvtnorm | 1.5 | topicmodels.etm | 0.1.0 |
torch | 0.9.0 | torchaudio | 0.2.0 |
torchdatasets | 0.2.0 | torchvision | 0.4.1 |
triebeard | 0.3.0 | trimcluster | 0.1-5 |
tripack | 1.3-9.1 | truncnorm | 1.0-8 |
truncreg | 0.2-5 | tseries | 0.10-52 |
tsfeatures | 1.1 | TSP | 1.2-1 |
TTR | 0.24.3 | tune | 1.0.1 |
tweenr | 2.0.2 | tzdb | 0.3.0 |
ucminf | 1.1-4.1 | udpipe | 0.8.10 |
units | 0.8-1 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
usethis | 2.1.6 | utf8 | 1.2.2 |
uuid | 1.1-0 | uwot | 0.1.14 |
V8 | 4.2.2 | vcd | 1.4-10 |
vctrs | 0.5.1 | vegan | 2.6-4 |
VGAM | 1.1-7 | VGAMdata | 1.1-6 |
viridis | 0.6.2 | viridisLite | 0.4.1 |
visNetwork | 2.1.2 | vroom | 1.6.0 |
waldo | 0.4.0 | warp | 0.2.0 |
waveslim | 1.8.4 | wavethresh | 4.7.2 |
webshot | 0.5.4 | whisker | 0.4.1 |
widenet | 0.1-2 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | WikipediR | 1.5.0 |
wikitaxa | 0.4.0 | withr | 2.5.0 |
wk | 0.7.1 | word2vec | 0.3.4 |
workflows | 1.1.2 | workflowsets | 1.0.0 |
worrms | 0.4.2 | xfun | 0.35 |
xgboost | 1.6.0.1 | XLConnect | 1.0.6 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.13 | xml2 | 1.3.3 |
xopen | 1.0.0 | xtable | 1.8-4 |
xts | 0.12.2 | yaml | 2.3.6 |
yardstick | 1.1.0 | zeallot | 0.1.0 |
zip | 2.2.2 | zoo | 1.8-11 |
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.0 |
abind | 1.4-5 | ACD | 1.5.3 |
acepack | 1.4.1 | actuar | 3.3-1 |
ada | 2.0-5 | ade4 | 1.7-20 |
ade4TkGUI | 0.3-1 | adegraphics | 1.0-16 |
adehabitatLT | 0.3.26 | adehabitatMA | 0.3.15 |
admisc | 0.30 | affxparser | 1.70.0 |
agricolae | 1.3-5 | akima | 0.6-3.4 |
AlgDesign | 1.2.1 | alphavantager | 0.1.2 |
Amelia | 1.8.1 | anytime | 0.3.9 |
ape | 5.6-2 | arm | 1.13-1 |
aroma.apd | 0.6.1 | ascii | 2.4 |
ash | 1.0-15 | askpass | 1.1 |
assertthat | 0.2.1 | AUC | 0.3.2 |
backports | 1.4.1 | base64enc | 0.1-3 |
bayesplot | 1.10.0 | BB | 2019.10-1 |
BDgraph | 2.71 | bdsmatrix | 1.3-6 |
BGLR | 1.1.0 | BH | 1.78.0-0 |
biganalytics | 1.1.21 | bigD | 0.2.0 |
biglars | 1.0.2 | biglm | 0.9-2.1 |
bigmemory | 4.6.1 | bigmemory.sri | 0.1.6 |
bigml | 0.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
blob | 1.2.3 | BLR | 1.6 |
bold | 1.2.0 | bpca | 1.3-4 |
BradleyTerry2 | 1.1-2 | brew | 1.0-8 |
brglm | 0.7.2 | brglm2 | 0.8.2 |
bridgesampling | 1.1-2 | brio | 1.1.3 |
brms | 2.18.0 | Brobdingnag | 1.2-9 |
broom | 1.0.2 | bslib | 0.4.2 |
BsMD | 2020.4.30 | ca | 0.71.1 |
cachem | 1.0.6 | calibrator | 1.2-8 |
callr | 3.7.3 | car | 3.1-1 |
carData | 3.0-5 | caret | 6.0-93 |
caTools | 1.18.2 | cellranger | 1.1.0 |
checkmate | 2.1.0 | chron | 2.3-58 |
CircStats | 0.2-6 | classInt | 0.4-8 |
cli | 3.4.1 | clipr | 0.8.0 |
clock | 0.6.1 | clusterGeneration | 1.3.7 |
coda | 0.19-4 | coin | 1.4-2 |
collapse | 1.8.9 | colorspace | 2.0-3 |
colourpicker | 1.2.0 | combinat | 0.0-8 |
commonmark | 1.8.1 | conditionz | 0.1.0 |
conf.design | 2.0.0 | conflicted | 1.1.0 |
contfrac | 1.1-12 | coro | 1.0.3 |
corpcor | 1.6.10 | corrgram | 1.14 |
corrplot | 0.92 | cpp11 | 0.4.3 |
crayon | 1.5.2 | credentials | 1.3.2 |
crosstalk | 1.2.0 | crul | 1.3 |
cubature | 2.0.4.5 | curl | 4.3.3 |
CVST | 0.2-3 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | data.table | 1.14.6 |
DataExplorer | 0.8.2 | datapasta | 3.1.0 |
DBI | 1.1.3 | dbplyr | 2.2.1 |
deldir | 1.0-6 | dendextend | 1.16.0 |
DEoptimR | 1.0-11 | Deriv | 4.1.3 |
desc | 1.4.2 | deSolve | 1.34 |
devtools | 2.4.5 | dfidx | 0.0-5 |
dfoptim | 2020.10-1 | diagram | 1.6.5 |
DiagrammeR | 1.0.9 | dials | 1.1.0 |
DiceDesign | 1.9 | dichromat | 2.0-0.1 |
diffobj | 0.3.5 | digest | 0.6.31 |
dimRed | 0.2.6 | diptest | 0.76-0 |
discretization | 1.0-1.1 | distributional | 0.3.1 |
doBy | 4.6.15 | doc2vec | 0.2.0 |
DoE.base | 1.2-1 | doMC | 1.3.8 |
doParallel | 1.0.17 | dotCall64 | 1.0-2 |
downlit | 0.4.2 | downloader | 0.4 |
dplyr | 1.0.10 | dqrng | 0.3.0 |
DRR | 0.0.4 | DT | 0.26 |
dtplyr | 1.2.2 | dummies | 1.5.6 |
dygraphs | 1.1.1.6 | dynamicTreeCut | 1.63-1 |
e1071 | 1.7-12 | EbayesThresh | 1.4-12 |
effects | 4.2-2 | ellipse | 0.4.3 |
ellipsis | 0.3.2 | elliptic | 1.4-0 |
emulator | 1.2-21 | enrichwith | 0.3.1 |
equivalence | 0.7.2 | estimability | 1.4.1 |
ETLUtils | 1.5 | evaluate | 0.19 |
expint | 0.1-8 | expm | 0.999-6 |
extraDistr | 1.9.1 | extrafont | 0.18 |
extrafontdb | 1.0 | fansi | 1.0.3 |
farver | 2.1.1 | fastICA | 1.2-3 |
fastmap | 1.1.0 | fastmatch | 1.1-3 |
fda | 6.0.5 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
ff | 4.0.7 | ffbase | 0.13.3 |
fields | 14.1 | filehash | 2.4-3 |
filelock | 1.0.2 | flashClust | 1.01-2 |
flexmix | 2.3-18 | FNN | 1.1.3.1 |
fontawesome | 0.4.0 | forcats | 0.5.2 |
foreach | 1.5.2 | forecast | 8.19 |
formatR | 1.12 | Formula | 1.2-4 |
fpc | 2.2-9 | fracdiff | 1.5-2 |
fs | 1.5.2 | fts | 0.9.9.2 |
functional | 0.6 | furrr | 0.3.1 |
future | 1.30.0 | future.apply | 1.10.0 |
gam | 1.22 | gamlss | 5.4-10 |
gamlss.data | 6.0-2 | gamlss.dist | 6.0-5 |
gargle | 1.2.1 | gclus | 1.3.2 |
gdata | 2.18.0.1 | geepack | 1.3.9 |
genalg | 0.2.1 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | geosphere | 1.5-18 |
gert | 1.9.2 | ggalt | 0.4.0 |
ggdendro | 0.1.23 | ggforce | 0.4.1 |
ggformula | 0.10.2 | ggmap | 3.0.1 |
ggplot2 | 3.4.0 | ggrepel | 0.9.2 |
ggridges | 0.5.4 | ggstance | 0.3.6 |
ggvis | 0.4.7 | gh | 1.3.1 |
git2r | 0.30.1 | gitcreds | 0.1.2 |
glassoFast | 1.0 | gld | 2.6.6 |
glmnet | 4.1-6 | globals | 0.16.2 |
glue | 1.6.2 | gmm | 1.7 |
gmodels | 2.18.1.1 | gmp | 0.6-9 |
goftest | 1.2-3 | googledrive | 2.0.0 |
googlesheets4 | 1.0.1 | googleVis | 0.7.0 |
gower | 1.0.0 | GPArotation | 2022.10-2 |
gpclib | 1.5-6 | GPfit | 1.0-8 |
gplots | 3.1.3 | gradethis | 0.2.11.9000 |
gridBase | 0.4-7 | gridExtra | 2.3 |
gridGraphics | 0.5-1 | gridSVG | 1.7-4 |
grImport | 0.9-5 | grImport2 | 0.2-0 |
gsubfn | 0.7 | gt | 0.8.0 |
gtable | 0.3.1 | gtools | 3.9.4 |
HaploSim | 1.8.4.2 | hardhat | 1.2.0 |
haven | 2.5.1 | hdrcde | 3.4 |
hexbin | 1.28.2 | hflights | 0.1 |
HH | 3.1-49 | highlight | 0.5.0 |
highr | 0.9 | Hmisc | 4.7-2 |
hms | 1.1.2 | htmlTable | 2.4.1 |
htmltools | 0.5.4 | htmlwidgets | 1.6.0 |
httpcode | 0.3.0 | httpuv | 1.6.7 |
httr | 1.4.4 | HydroMe | 2.0-1 |
HyperbolicDist | 0.6-4 | hypergeo | 1.2-13 |
ICC | 2.4.0 | ids | 1.0.1 |
igraph | 1.3.5 | igraphdata | 1.0.1 |
ineq | 0.2-13 | infer | 1.0.4 |
influenceR | 0.1.0.1 | ini | 0.3.1 |
inline | 0.3.19 | insight | 0.18.8 |
interp | 1.1-3 | intervals | 0.15.2 |
introgress | 1.2.3 | inum | 1.0-4 |
ipred | 0.9-13 | irlba | 2.3.5.1 |
Iso | 0.0-18.1 | isoband | 0.2.6 |
iterators | 1.0.14 | itertools | 0.1-3 |
janitor | 2.1.0 | jpeg | 0.1-10 |
jquerylib | 0.1.4 | jsonlite | 1.8.4 |
juicyjuice | 0.1.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-31 | klaR | 1.7-1 |
knitr | 1.41 | ks | 1.14.0 |
labeling | 0.4.2 | labelled | 2.10.0 |
LaF | 0.8.4 | Lahman | 10.0-1 |
lars | 1.3 | later | 1.3.0 |
latticeExtra | 0.6-30 | lava | 1.7.0 |
lavaan | 0.6-12 | lavaan.survey | 1.1.3.1 |
lazyeval | 0.2.2 | lcda | 0.3.1 |
leaflet | 2.1.1 | leaflet.providers | 1.9.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
learnr | 0.11.2.9000 | lgr | 0.4.4 |
lhs | 1.1.6 | libcoin | 1.0-9 |
lifecycle | 1.0.3 | LIM | 1.4.7 |
limSolve | 1.5.6 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | lme4 | 1.1-31 |
lmom | 2.9 | lmtest | 0.9-40 |
locfit | 1.5-9.6 | lokern | 1.1-9 |
loo | 2.5.1 | lpSolve | 5.6.17 |
lubridate | 1.9.0 | luz | 0.3.1 |
magic | 1.6-1 | magrittr | 2.0.3 |
manipulateWidget | 0.11.1 | mapproj | 1.2.9 |
maps | 3.4.1 | maptools | 1.1-6 |
markdown | 1.4 | Matching | 4.10-8 |
MatchIt | 4.5.0 | mathjaxr | 1.6-0 |
matrixcalc | 1.0-6 | MatrixModels | 0.5-1 |
matrixStats | 0.63.0 | maxLik | 1.5-2 |
mboost | 2.9-7 | mclust | 6.0.0 |
mcmc | 0.9-7 | MCMCglmm | 2.34 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
Metrics | 0.1.4 | mi | 1.1 |
mice | 3.15.0 | microbenchmark | 1.4.9 |
mime | 0.12 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-2 | minqa | 1.2.5 |
misc3d | 0.9-1 | miscTools | 0.6-26 |
mitools | 2.4 | mlbench | 2.1-3 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlr3 | 0.14.1 | mlr3measures | 0.5.0 |
mlr3misc | 0.11.0 | mnormt | 2.1.1 |
modeldata | 1.0.1 | modelenv | 0.1.0 |
ModelMetrics | 1.2.2.2 | modelr | 0.1.10 |
modeltime | 1.2.4 | modeltools | 0.2-23 |
moments | 0.14.1 | mondate | 0.10.02 |
mosaic | 1.8.4.2 | mosaicCore | 0.9.2.1 |
mosaicData | 0.20.3 | mratios | 1.4.2 |
multcomp | 1.4-20 | multicool | 0.1-12 |
munsell | 0.5.0 | mvMORPH | 1.1.6 |
mvtnorm | 1.1-3 | natserv | 1.0.0 |
network | 1.18.0 | networkD3 | 0.4 |
NISTnls | 0.9-13 | nleqslv | 3.3.3 |
nloptr | 2.0.3 | nls2 | 0.3-3 |
nlstools | 2.0-0 | nnls | 1.4 |
nortest | 1.0-4 | np | 0.60-16 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
odbc | 1.3.3 | openssl | 2.0.5 |
openxlsx | 4.2.5.1 | optextras | 2019-12.4 |
optimParallel | 1.0-2 | ordinal | 2022.11-16 |
padr | 0.6.2 | PairedData | 1.1.1 |
palmerpenguins | 0.1.1 | paradox | 0.11.0 |
parallelly | 1.33.0 | parsnip | 1.0.3 |
partitions | 1.10-7 | party | 1.3-11 |
partykit | 1.2-16 | pastecs | 1.3.21 |
patchwork | 1.1.2 | pbapply | 1.6-0 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.1 |
pbmcapply | 1.5.1 | PBSmapping | 2.73.2 |
pcaPP | 2.0-3 | pedigree | 1.4.2 |
PerformanceAnalytics | 2.0.4 | permute | 0.9-7 |
phangorn | 2.10.0 | phytools | 1.2-0 |
pillar | 1.8.1 | pins | 1.0.3 |
pixmap | 0.4-12 | pkgbuild | 1.4.0 |
pkgconfig | 2.0.3 | pkgdown | 2.0.7 |
pkgload | 1.3.2 | PKPDmodels | 0.3.2 |
plm | 2.6-2 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.1 |
plotrix | 3.8-2 | pls | 2.8-1 |
plyr | 1.8.8 | png | 0.1-8 |
poLCA | 1.6.0.1 | polspline | 1.1.22 |
polyclip | 1.10-4 | polycor | 0.8-1 |
polynom | 1.4-1 | posterior | 1.3.1 |
prabclus | 2.3-2 | pracma | 2.4.2 |
praise | 1.0.0 | prettyunits | 1.1.1 |
princurve | 2.1.6 | pROC | 1.18.0 |
processx | 3.8.0 | prodlim | 2019.11.13 |
profileModel | 0.6.1 | profvis | 0.3.7 |
progress | 1.2.2 | progressr | 0.12.0 |
proj4 | 1.0-12 | promises | 1.2.0.1 |
prophet | 1.0 | proto | 1.0.0 |
proxy | 0.4-27 | PRROC | 1.3.1 |
ps | 1.7.2 | pscl | 1.5.5 |
psy | 1.2 | psych | 2.2.9 |
purrr | 0.3.5 | qap | 0.1-2 |
qtl | 1.54 | quadprog | 1.5-8 |
Quandl | 2.11.0 | quantmod | 0.4.20 |
quantreg | 5.94 | questionr | 0.7.7 |
QUIC | 1.1.1 | qvcalc | 1.0.2 |
R.cache | 0.16.0 | R.devices | 2.17.1 |
R.filesets | 2.15.0 | R.huge | 0.9.0 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.25.0 | R.rsp | 0.45.0 |
R.utils | 2.12.2 | R2HTML | 2.3.3 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R6 | 2.5.1 | ragg | 1.2.4 |
rainbow | 3.7 | randomForest | 4.7-1.1 |
rappdirs | 0.3.3 | raster | 3.6-11 |
ratelimitr | 0.4.1 | rbenchmark | 1.0.0 |
rbibutils | 2.2.11 | Rcgmin | 2022-4.30 |
rcmdcheck | 1.4.0 | RColorBrewer | 1.1-3 |
Rcpp | 1.0.9 | RcppAnnoy | 0.0.20 |
RcppArmadillo | 0.11.4.2.1 | RcppEigen | 0.3.3.9.3 |
RcppParallel | 5.1.5 | RcppProgress | 0.4.2 |
RcppRoll | 0.3.0 | Rcsdp | 0.1.57.4 |
RCurl | 1.98-1.9 | Rdpack | 2.4 |
reactable | 0.4.1 | reactR | 0.4.4 |
readr | 2.1.3 | readstata13 | 0.10.0 |
readxl | 1.4.1 | recipes | 1.0.3 |
registry | 0.5-1 | regress | 1.3-21 |
relaxnet | 0.3-2 | reliaR | 0.01 |
relimp | 1.0-5 | rematch | 1.0.1 |
rematch2 | 2.1.2 | remotes | 2.4.2 |
rentrez | 1.2.3 | renv | 0.16.0 |
reprex | 2.0.2 | reshape | 0.8.9 |
reshape2 | 1.4.4 | rex | 1.2.1 |
rgl | 0.110.2 | RgoogleMaps | 1.4.5.3 |
RGraphics | 3.0-2 | riingo | 0.3.1 |
ritis | 1.0.0 | rJava | 1.0-6 |
RJDBC | 0.2-10 | rjson | 0.2.21 |
RJSONIO | 1.3-1.6 | rlang | 1.0.6 |
rlecuyer | 0.3-5 | rmarkdown | 2.19 |
Rmpfr | 0.8-9 | rms | 6.3-0 |
RMySQL | 0.10.25 | rncl | 0.8.6 |
robustbase | 0.95-0 | ROCR | 1.0-11 |
Rook | 1.2 | rotl | 3.0.14 |
roxygen2 | 7.2.3 | RPostgreSQL | 0.7-4 |
rprojroot | 2.0.3 | rredlist | 0.7.1 |
rsample | 1.1.1 | RSQLite | 2.2.19 |
rstan | 2.21.7 | rstantools | 2.2.0 |
rstudioapi | 0.14 | Rttf2pt1 | 1.3.11 |
RUnit | 0.4.32 | rversions | 2.1.2 |
rvest | 1.0.3 | Rvmmin | 2018-4.17.1 |
s2 | 1.1.1 | sandwich | 3.0-2 |
sass | 0.4.4 | scales | 1.2.1 |
scatterplot3d | 0.3-42 | ScottKnott | 1.3-0 |
SDMTools | 1.1-221.2 | sealasso | 0.1-3 |
segmented | 1.6-2 | selectr | 0.4-2 |
sem | 3.1-15 | SemiPar | 1.0-4.2 |
semTools | 0.5-6 | seqinr | 4.2-23 |
seriation | 1.4.0 | sessioninfo | 1.2.2 |
setRNG | 2022.4-1 | sets | 1.0-21 |
sf | 1.0-9 | sfsmisc | 1.1-14 |
shape | 1.4.6 | shapefiles | 0.7.2 |
shiny | 1.7.4 | shiny.semantic | 0.4.3 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinythemes | 1.2.0 | SimComp | 3.3 |
simsem | 0.5-16 | sitmo | 2.0.2 |
slam | 0.1-50 | slider | 0.3.0 |
sn | 2.1.0 | sna | 2.7 |
snakecase | 0.11.0 | snow | 0.4-4 |
snowfall | 1.84-6.2 | solrium | 1.2.0 |
sourcetools | 0.1.7 | sp | 1.5-1 |
spam | 2.9-1 | SparseM | 1.81 |
SpatialExtremes | 2.1-0 | spatstat | 3.0-2 |
spatstat.data | 3.0-0 | spatstat.explore | 3.0-5 |
spatstat.geom | 3.0-3 | spatstat.linnet | 3.0-3 |
spatstat.model | 3.0-2 | spatstat.random | 3.0-1 |
spatstat.sparse | 3.0-0 | spatstat.utils | 3.0-1 |
spData | 2.2.1 | spdep | 1.2-7 |
SQUAREM | 2021.1 | ssgraph | 1.14 |
stabs | 0.6-4 | StanHeaders | 2.21.0-7 |
statmod | 1.4.37 | statnet.common | 4.7.0 |
stringi | 1.7.8 | stringr | 1.5.0 |
strucchange | 1.5-3 | styler | 1.8.1 |
subplex | 1.8 | superml | 0.5.6 |
SuppDists | 1.1-9.7 | survey | 4.1-1 |
survPresmooth | 1.1-11 | svUnit | 1.0.6 |
synbreedData | 1.5 | sys | 3.4.1 |
systemfonts | 1.0.4 | tables | 0.9.10 |
tabnet | 0.3.0 | taxize | 0.9.100 |
tensor | 1.5 | tensorA | 0.36.2 |
terra | 1.6-47 | testit | 0.13 |
testthat | 3.1.6 | textplot | 0.2.2 |
textshaping | 0.3.6 | TH.data | 1.1-1 |
threejs | 0.3.3 | tibble | 3.1.8 |
tidymodels | 1.0.0 | tidyquant | 1.0.6 |
tidyr | 1.2.1 | tidyselect | 1.2.0 |
tidyverse | 1.3.2 | timechange | 0.1.1 |
timeDate | 4021.107 | timeSeries | 4021.105 |
timetk | 2.8.2 | tinytex | 0.43 |
tis | 1.39 | tkrplot | 0.0-27 |
tmvtnorm | 1.5 | topicmodels.etm | 0.1.0 |
torch | 0.9.0 | torchaudio | 0.2.0 |
torchdatasets | 0.2.0 | torchvision | 0.4.1 |
triebeard | 0.3.0 | trimcluster | 0.1-5 |
tripack | 1.3-9.1 | truncnorm | 1.0-8 |
truncreg | 0.2-5 | tseries | 0.10-52 |
tsfeatures | 1.1 | TSP | 1.2-1 |
TTR | 0.24.3 | tune | 1.0.1 |
tweenr | 2.0.2 | tzdb | 0.3.0 |
ucminf | 1.1-4.1 | udpipe | 0.8.10 |
units | 0.8-1 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
usethis | 2.1.6 | utf8 | 1.2.2 |
uuid | 1.1-0 | uwot | 0.1.14 |
V8 | 4.2.2 | vcd | 1.4-10 |
vctrs | 0.5.1 | vegan | 2.6-4 |
VGAM | 1.1-7 | VGAMdata | 1.1-6 |
viridis | 0.6.2 | viridisLite | 0.4.1 |
visNetwork | 2.1.2 | vroom | 1.6.0 |
waldo | 0.4.0 | warp | 0.2.0 |
waveslim | 1.8.4 | wavethresh | 4.7.2 |
webshot | 0.5.4 | whisker | 0.4.1 |
widenet | 0.1-2 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | WikipediR | 1.5.0 |
wikitaxa | 0.4.0 | withr | 2.5.0 |
wk | 0.7.1 | word2vec | 0.3.4 |
workflows | 1.1.2 | workflowsets | 1.0.0 |
worrms | 0.4.2 | xfun | 0.35 |
xgboost | 1.6.0.1 | XLConnect | 1.0.6 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.13 | xml2 | 1.3.3 |
xopen | 1.0.0 | xtable | 1.8-4 |
xts | 0.12.2 | yaml | 2.3.6 |
yardstick | 1.1.0 | zeallot | 0.1.0 |
zip | 2.2.2 | zoo | 1.8-11 |
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.0 |
abind | 1.4-5 | ACD | 1.5.3 |
acepack | 1.4.1 | actuar | 3.3-1 |
ada | 2.0-5 | ade4 | 1.7-20 |
ade4TkGUI | 0.3-1 | adegraphics | 1.0-16 |
adehabitatLT | 0.3.26 | adehabitatMA | 0.3.15 |
admisc | 0.30 | affxparser | 1.70.0 |
agricolae | 1.3-5 | akima | 0.6-3.4 |
AlgDesign | 1.2.1 | alphavantager | 0.1.2 |
Amelia | 1.8.0 | anytime | 0.3.9 |
ape | 5.6-2 | arm | 1.13-1 |
aroma.apd | 0.6.1 | ascii | 2.4 |
ash | 1.0-15 | askpass | 1.1 |
assertthat | 0.2.1 | AUC | 0.3.2 |
backports | 1.4.1 | base64enc | 0.1-3 |
bayesplot | 1.9.0 | BB | 2019.10-1 |
BDgraph | 2.70 | bdsmatrix | 1.3-6 |
BGLR | 1.1.0 | BH | 1.78.0-0 |
biganalytics | 1.1.21 | bigD | 0.2.0 |
biglars | 1.0.2 | biglm | 0.9-2.1 |
bigmemory | 4.6.1 | bigmemory.sri | 0.1.6 |
bigml | 0.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | bit | 4.0.4 |
bit64 | 4.0.5 | bitops | 1.0-7 |
blob | 1.2.3 | BLR | 1.6 |
bold | 1.2.0 | bpca | 1.3-4 |
BradleyTerry2 | 1.1-2 | brew | 1.0-8 |
brglm | 0.7.2 | brglm2 | 0.8.2 |
bridgesampling | 1.1-2 | brio | 1.1.3 |
brms | 2.18.0 | Brobdingnag | 1.2-9 |
broom | 1.0.1 | bslib | 0.4.1 |
BsMD | 2020.4.30 | ca | 0.71.1 |
cachem | 1.0.6 | calibrator | 1.2-8 |
callr | 3.7.3 | car | 3.1-1 |
carData | 3.0-5 | caret | 6.0-93 |
caTools | 1.18.2 | cellranger | 1.1.0 |
checkmate | 2.1.0 | chron | 2.3-58 |
CircStats | 0.2-6 | classInt | 0.4-8 |
cli | 3.4.1 | clipr | 0.8.0 |
clock | 0.6.1 | clusterGeneration | 1.3.7 |
coda | 0.19-4 | coin | 1.4-2 |
collapse | 1.8.9 | colorspace | 2.0-3 |
colourpicker | 1.2.0 | combinat | 0.0-8 |
commonmark | 1.8.1 | conditionz | 0.1.0 |
conf.design | 2.0.0 | conflicted | 1.1.0 |
contfrac | 1.1-12 | corpcor | 1.6.10 |
corrgram | 1.14 | corrplot | 0.92 |
cpp11 | 0.4.3 | crayon | 1.5.2 |
credentials | 1.3.2 | crosstalk | 1.2.0 |
crul | 1.3 | cubature | 2.0.4.5 |
curl | 4.3.3 | CVST | 0.2-3 |
d3Network | 0.5.2.1 | DAAG | 1.25.4 |
data.table | 1.14.4 | DataExplorer | 0.8.2 |
datapasta | 3.1.0 | DBI | 1.1.3 |
dbplyr | 2.2.1 | deldir | 1.0-6 |
dendextend | 1.16.0 | DEoptimR | 1.0-11 |
Deriv | 4.1.3 | desc | 1.4.2 |
deSolve | 1.34 | devtools | 2.4.5 |
dfidx | 0.0-5 | dfoptim | 2020.10-1 |
diagram | 1.6.5 | DiagrammeR | 1.0.9 |
dials | 1.1.0 | DiceDesign | 1.9 |
dichromat | 2.0-0.1 | diffobj | 0.3.5 |
digest | 0.6.30 | dimRed | 0.2.6 |
diptest | 0.76-0 | discretization | 1.0-1.1 |
distributional | 0.3.1 | doBy | 4.6.14 |
DoE.base | 1.2-1 | doMC | 1.3.8 |
doParallel | 1.0.17 | dotCall64 | 1.0-2 |
downlit | 0.4.2 | downloader | 0.4 |
dplyr | 1.0.10 | DRR | 0.0.4 |
DT | 0.26 | dtplyr | 1.2.2 |
dummies | 1.5.6 | dygraphs | 1.1.1.6 |
dynamicTreeCut | 1.63-1 | e1071 | 1.7-12 |
EbayesThresh | 1.4-12 | effects | 4.2-2 |
ellipse | 0.4.3 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | emulator | 1.2-21 |
enrichwith | 0.3.1 | equivalence | 0.7.2 |
estimability | 1.4.1 | ETLUtils | 1.5 |
evaluate | 0.18 | expint | 0.1-8 |
expm | 0.999-6 | extraDistr | 1.9.1 |
fansi | 1.0.3 | farver | 2.1.1 |
fastICA | 1.2-3 | fastmap | 1.1.0 |
fastmatch | 1.1-3 | fda | 6.0.5 |
fdrtool | 1.2.17 | fds | 1.8 |
fdth | 1.2-6 | ff | 4.0.7 |
ffbase | 0.13.3 | fields | 14.1 |
filehash | 2.4-3 | flashClust | 1.01-2 |
flexmix | 2.3-18 | FNN | 1.1.3.1 |
fontawesome | 0.4.0 | forcats | 0.5.2 |
foreach | 1.5.2 | forecast | 8.18 |
formatR | 1.12 | Formula | 1.2-4 |
fpc | 2.2-9 | fracdiff | 1.5-2 |
fs | 1.5.2 | fts | 0.9.9.2 |
functional | 0.6 | furrr | 0.3.1 |
future | 1.29.0 | future.apply | 1.10.0 |
gam | 1.22 | gamlss | 5.4-3 |
gamlss.data | 6.0-2 | gamlss.dist | 6.0-5 |
gargle | 1.2.1 | gclus | 1.3.2 |
gdata | 2.18.0.1 | geepack | 1.3.9 |
genalg | 0.2.1 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | geosphere | 1.5-14 |
gert | 1.9.1 | ggdendro | 0.1.23 |
ggforce | 0.4.1 | ggformula | 0.10.2 |
ggmap | 3.0.1 | ggplot2 | 3.4.0 |
ggridges | 0.5.4 | ggstance | 0.3.5 |
ggvis | 0.4.7 | gh | 1.3.1 |
git2r | 0.30.1 | gitcreds | 0.1.2 |
glassoFast | 1.0 | gld | 2.6.6 |
glmnet | 4.1-4 | globals | 0.16.1 |
glue | 1.6.2 | gmm | 1.7 |
gmodels | 2.18.1.1 | gmp | 0.6-8 |
goftest | 1.2-3 | googledrive | 2.0.0 |
googlesheets4 | 1.0.1 | googleVis | 0.7.0 |
gower | 1.0.0 | GPArotation | 2022.10-2 |
gpclib | 1.5-6 | GPfit | 1.0-8 |
gplots | 3.1.3 | gradethis | 0.2.11.9000 |
gridBase | 0.4-7 | gridExtra | 2.3 |
gridGraphics | 0.5-1 | gridSVG | 1.7-4 |
grImport | 0.9-5 | grImport2 | 0.2-0 |
gsubfn | 0.7 | gt | 0.8.0 |
gtable | 0.3.1 | gtools | 3.9.3 |
HaploSim | 1.8.4.2 | hardhat | 1.2.0 |
haven | 2.5.1 | hdrcde | 3.4 |
hexbin | 1.28.2 | hflights | 0.1 |
HH | 3.1-49 | highlight | 0.5.0 |
highr | 0.9 | Hmisc | 4.7-1 |
hms | 1.1.2 | htmlTable | 2.4.1 |
htmltools | 0.5.3 | htmlwidgets | 1.5.4 |
httpcode | 0.3.0 | httpuv | 1.6.6 |
httr | 1.4.4 | HydroMe | 2.0-1 |
HyperbolicDist | 0.6-4 | hypergeo | 1.2-13 |
ICC | 2.4.0 | ids | 1.0.1 |
igraph | 1.3.5 | igraphdata | 1.0.1 |
ineq | 0.2-13 | infer | 1.0.3 |
influenceR | 0.1.0.1 | ini | 0.3.1 |
inline | 0.3.19 | insight | 0.18.6 |
interp | 1.1-3 | intervals | 0.15.2 |
introgress | 1.2.3 | inum | 1.0-4 |
ipred | 0.9-13 | Iso | 0.0-18.1 |
isoband | 0.2.6 | iterators | 1.0.14 |
itertools | 0.1-3 | janitor | 2.1.0 |
jpeg | 0.1-9 | jquerylib | 0.1.4 |
jsonlite | 1.8.3 | juicyjuice | 0.1.0 |
kernelFactory | 0.3.0 | kernlab | 0.9-31 |
klaR | 1.7-1 | knitr | 1.40 |
ks | 1.13.5 | labeling | 0.4.2 |
labelled | 2.10.0 | LaF | 0.8.4 |
Lahman | 10.0-1 | lars | 1.3 |
later | 1.3.0 | latticeExtra | 0.6-30 |
lava | 1.7.0 | lavaan | 0.6-12 |
lavaan.survey | 1.1.3.1 | lazyeval | 0.2.2 |
lcda | 0.3.1 | leaflet | 2.1.1 |
leaflet.providers | 1.9.0 | leaps | 3.1 |
LearnBayes | 2.15.1 | learnr | 0.11.2 |
lgr | 0.4.4 | lhs | 1.1.5 |
libcoin | 1.0-9 | lifecycle | 1.0.3 |
LIM | 1.4.7 | limSolve | 1.5.6 |
lisrelToR | 0.1.5 | listenv | 0.8.0 |
lme4 | 1.1-31 | lmom | 2.9 |
lmtest | 0.9-40 | locfit | 1.5-9.6 |
lokern | 1.1-9 | loo | 2.5.1 |
lpSolve | 5.6.17 | lubridate | 1.9.0 |
magic | 1.6-0 | magrittr | 2.0.3 |
manipulateWidget | 0.11.1 | mapdata | 2.3.1 |
mapproj | 1.2.9 | maps | 3.4.1 |
maptools | 1.1-5 | markdown | 1.3 |
Matching | 4.10-8 | MatchIt | 4.4.0 |
mathjaxr | 1.6-0 | matrixcalc | 1.0-6 |
MatrixModels | 0.5-1 | matrixStats | 0.62.0 |
maxLik | 1.5-2 | mboost | 2.9-7 |
mclust | 6.0.0 | mcmc | 0.9-7 |
MCMCglmm | 2.34 | memoise | 2.0.1 |
MEMSS | 0.9-3 | Metrics | 0.1.4 |
mi | 1.1 | mice | 3.14.0 |
microbenchmark | 1.4.9 | mime | 0.12 |
miniUI | 0.1.1.1 | minpack.lm | 1.2-2 |
minqa | 1.2.5 | misc3d | 0.9-1 |
miscTools | 0.6-26 | mitools | 2.4 |
mlbench | 2.1-3 | mlmRev | 1.0-8 |
mlogit | 1.1-1 | mlr3 | 0.14.1 |
mlr3measures | 0.5.0 | mlr3misc | 0.11.0 |
mnormt | 2.1.1 | modeldata | 1.0.1 |
modelenv | 0.1.0 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.10 | modeltime | 1.2.4 |
modeltools | 0.2-23 | moments | 0.14.1 |
mondate | 0.10.02 | mosaic | 1.8.4.2 |
mosaicCore | 0.9.2.1 | mosaicData | 0.20.3 |
mratios | 1.4.2 | multcomp | 1.4-20 |
multicool | 0.1-12 | munsell | 0.5.0 |
mvMORPH | 1.1.6 | mvtnorm | 1.1-3 |
natserv | 1.0.0 | network | 1.18.0 |
networkD3 | 0.4 | NISTnls | 0.9-13 |
nleqslv | 3.3.3 | nloptr | 2.0.3 |
nls2 | 0.3-3 | nlstools | 2.0-0 |
nnls | 1.4 | nortest | 1.0-4 |
np | 0.60-16 | numbers | 0.8-2 |
numDeriv | 2016.8-1.1 | odbc | 1.3.3 |
openssl | 2.0.4 | openxlsx | 4.2.5.1 |
optextras | 2019-12.4 | optimParallel | 1.0-2 |
ordinal | 2019.12-10 | padr | 0.6.1 |
PairedData | 1.1.1 | palmerpenguins | 0.1.1 |
paradox | 0.10.0 | parallelly | 1.32.1 |
parsnip | 1.0.3 | partitions | 1.10-7 |
party | 1.3-11 | partykit | 1.2-16 |
pastecs | 1.3.21 | patchwork | 1.1.2 |
pbapply | 1.5-0 | pbivnorm | 0.6.0 |
pbkrtest | 0.5.1 | pbmcapply | 1.5.1 |
PBSmapping | 2.73.2 | pcaPP | 2.0-3 |
pedigree | 1.4.2 | PerformanceAnalytics | 2.0.4 |
permute | 0.9-7 | phangorn | 2.10.0 |
phytools | 1.2-0 | pillar | 1.8.1 |
pixmap | 0.4-12 | pkgbuild | 1.3.1 |
pkgconfig | 2.0.3 | pkgdown | 2.0.6 |
pkgload | 1.3.1 | PKPDmodels | 0.3.2 |
plm | 2.6-2 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.1 |
plotrix | 3.8-2 | pls | 2.8-1 |
plyr | 1.8.8 | png | 0.1-7 |
poLCA | 1.6.0.1 | polspline | 1.1.20 |
polyclip | 1.10-4 | polycor | 0.8-1 |
polynom | 1.4-1 | posterior | 1.3.1 |
prabclus | 2.3-2 | pracma | 2.4.2 |
praise | 1.0.0 | prettyunits | 1.1.1 |
princurve | 2.1.6 | pROC | 1.18.0 |
processx | 3.8.0 | prodlim | 2019.11.13 |
profileModel | 0.6.1 | profvis | 0.3.7 |
progress | 1.2.2 | progressr | 0.11.0 |
promises | 1.2.0.1 | prophet | 1.0 |
proto | 1.0.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | ps | 1.7.2 |
pscl | 1.5.5 | psy | 1.2 |
psych | 2.2.9 | purrr | 0.3.5 |
qap | 0.1-2 | qtl | 1.52 |
quadprog | 1.5-8 | Quandl | 2.11.0 |
quantmod | 0.4.20 | quantreg | 5.94 |
questionr | 0.7.7 | QUIC | 1.1.1 |
qvcalc | 1.0.2 | R.cache | 0.16.0 |
R.devices | 2.17.1 | R.filesets | 2.15.0 |
R.huge | 0.9.0 | R.matlab | 3.7.0 |
R.methodsS3 | 1.8.2 | R.oo | 1.25.0 |
R.rsp | 0.45.0 | R.utils | 2.12.2 |
R2HTML | 2.3.3 | R2OpenBUGS | 3.2-3.2.1 |
R2WinBUGS | 2.1-21 | R6 | 2.5.1 |
ragg | 1.2.4 | rainbow | 3.7 |
randomForest | 4.7-1.1 | rappdirs | 0.3.3 |
raster | 3.6-3 | ratelimitr | 0.4.1 |
rbenchmark | 1.0.0 | rbibutils | 2.2.9 |
Rcgmin | 2022-4.30 | rcmdcheck | 1.4.0 |
RColorBrewer | 1.1-3 | Rcpp | 1.0.9 |
RcppArmadillo | 0.11.4.2.1 | RcppEigen | 0.3.3.9.3 |
RcppParallel | 5.1.5 | RcppProgress | 0.4.2 |
RcppRoll | 0.3.0 | Rcsdp | 0.1.57.2 |
RCurl | 1.98-1.9 | Rdpack | 2.4 |
reactable | 0.3.0 | reactR | 0.4.4 |
readr | 2.1.3 | readstata13 | 0.10.0 |
readxl | 1.4.1 | recipes | 1.0.3 |
registry | 0.5-1 | regress | 1.3-21 |
relaxnet | 0.3-2 | reliaR | 0.01 |
relimp | 1.0-5 | rematch | 1.0.1 |
rematch2 | 2.1.2 | remote | 1.2.1 |
remotes | 2.4.2 | rentrez | 1.2.3 |
renv | 0.16.0 | reprex | 2.0.2 |
reshape | 0.8.9 | reshape2 | 1.4.4 |
rex | 1.2.1 | rgl | 0.110.2 |
RgoogleMaps | 1.4.5.3 | RGraphics | 3.0-2 |
riingo | 0.3.1 | ritis | 1.0.0 |
rJava | 1.0-6 | RJDBC | 0.2-10 |
rjson | 0.2.21 | RJSONIO | 1.3-1.6 |
rlang | 1.0.6 | rlecuyer | 0.3-5 |
rmarkdown | 2.18 | Rmpfr | 0.8-9 |
rms | 6.3-0 | RMySQL | 0.10.24 |
rncl | 0.8.6 | robustbase | 0.95-0 |
ROCR | 1.0-11 | Rook | 1.2 |
rotl | 3.0.14 | roxygen2 | 7.2.2 |
RPostgreSQL | 0.7-4 | rprojroot | 2.0.3 |
rredlist | 0.7.1 | rsample | 1.1.0 |
RSQLite | 2.2.18 | rstan | 2.21.7 |
rstantools | 2.2.0 | rstudioapi | 0.14 |
RUnit | 0.4.32 | rversions | 2.1.2 |
rvest | 1.0.3 | Rvmmin | 2018-4.17.1 |
s2 | 1.1.0 | sandwich | 3.0-2 |
sass | 0.4.2 | scales | 1.2.1 |
scatterplot3d | 0.3-42 | ScottKnott | 1.3-0 |
SDMTools | 1.1-221.2 | sealasso | 0.1-3 |
segmented | 1.6-1 | selectr | 0.4-2 |
sem | 3.1-15 | SemiPar | 1.0-4.2 |
semTools | 0.5-6 | seqinr | 4.2-16 |
seriation | 1.4.0 | sessioninfo | 1.2.2 |
setRNG | 2022.4-1 | sets | 1.0-21 |
sf | 1.0-9 | sfsmisc | 1.1-13 |
shape | 1.4.6 | shapefiles | 0.7.2 |
shiny | 1.7.3 | shiny.semantic | 0.4.3 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinythemes | 1.2.0 | SimComp | 3.3 |
simsem | 0.5-16 | slam | 0.1-50 |
slider | 0.3.0 | sn | 2.1.0 |
sna | 2.7 | snakecase | 0.11.0 |
snow | 0.4-4 | snowfall | 1.84-6.2 |
solrium | 1.2.0 | sourcetools | 0.1.7 |
sp | 1.5-1 | spam | 2.9-1 |
SparseM | 1.81 | SpatialExtremes | 2.1-0 |
spatstat | 3.0-2 | spatstat.data | 3.0-0 |
spatstat.explore | 3.0-5 | spatstat.geom | 3.0-3 |
spatstat.linnet | 3.0-2 | spatstat.model | 3.0-2 |
spatstat.random | 3.0-1 | spatstat.sparse | 3.0-0 |
spatstat.utils | 3.0-1 | spData | 2.2.0 |
spdep | 1.2-7 | SQUAREM | 2021.1 |
ssgraph | 1.14 | stabs | 0.6-4 |
StanHeaders | 2.21.0-7 | statmod | 1.4.37 |
statnet.common | 4.7.0 | stringi | 1.7.8 |
stringr | 1.4.1 | strucchange | 1.5-3 |
styler | 1.8.1 | subplex | 1.8 |
superml | 0.5.6 | SuppDists | 1.1-9.7 |
survey | 4.1-1 | survPresmooth | 1.1-11 |
svUnit | 1.0.6 | sybil | 2.2.0 |
synbreedData | 1.5 | sys | 3.4.1 |
systemfonts | 1.0.4 | tables | 0.9.10 |
taxize | 0.9.100 | tensor | 1.5 |
tensorA | 0.36.2 | terra | 1.6-17 |
testit | 0.13 | testthat | 3.1.5 |
textshaping | 0.3.6 | TH.data | 1.1-1 |
threejs | 0.3.3 | tibble | 3.1.8 |
tidymodels | 1.0.0 | tidyquant | 1.0.6 |
tidyr | 1.2.1 | tidyselect | 1.2.0 |
tidyverse | 1.3.2 | timechange | 0.1.1 |
timeDate | 4021.106 | timeSeries | 4021.105 |
timetk | 2.8.1 | tinytex | 0.42 |
tis | 1.39 | tkrplot | 0.0-27 |
tmvtnorm | 1.5 | triebeard | 0.3.0 |
trimcluster | 0.1-5 | tripack | 1.3-9.1 |
truncnorm | 1.0-8 | truncreg | 0.2-5 |
tseries | 0.10-52 | tsfeatures | 1.1 |
TSP | 1.2-1 | TTR | 0.24.3 |
tune | 1.0.1 | tweenr | 2.0.2 |
tzdb | 0.3.0 | ucminf | 1.1-4.1 |
units | 0.8-0 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
usethis | 2.1.6 | utf8 | 1.2.2 |
uuid | 1.1-0 | V8 | 4.2.2 |
vcd | 1.4-10 | vctrs | 0.5.0 |
vegan | 2.6-4 | VGAM | 1.1-7 |
VGAMdata | 1.1-6 | viridis | 0.6.2 |
viridisLite | 0.4.1 | visNetwork | 2.1.2 |
vroom | 1.6.0 | waldo | 0.4.0 |
warp | 0.2.0 | waveslim | 1.8.4 |
wavethresh | 4.7.1 | webshot | 0.5.4 |
whisker | 0.4 | widenet | 0.1-2 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
WikipediR | 1.5.0 | wikitaxa | 0.4.0 |
withr | 2.5.0 | wk | 0.7.0 |
workflows | 1.1.2 | workflowsets | 1.0.0 |
worrms | 0.4.2 | xfun | 0.34 |
xgboost | 1.6.0.1 | XLConnect | 1.0.6 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.12 | xml2 | 1.3.3 |
xopen | 1.0.0 | xtable | 1.8-4 |
xts | 0.12.2 | yaml | 2.3.6 |
yardstick | 1.1.0 | zip | 2.2.2 |
zoo | 1.8-11 |
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.0 |
abind | 1.4-5 | ACD | 1.5.3 |
acepack | 1.4.1 | actuar | 3.3-0 |
ada | 2.0-5 | ade4 | 1.7-19 |
ade4TkGUI | 0.3-1 | adegraphics | 1.0-16 |
adehabitatLT | 0.3.25 | adehabitatMA | 0.3.14 |
admisc | 0.29 | affxparser | 1.68.1 |
agricolae | 1.3-5 | akima | 0.6-3.4 |
AlgDesign | 1.2.1 | Amelia | 1.8.0 |
ape | 5.6-2 | arm | 1.12-2 |
aroma.apd | 0.6.1 | ascii | 2.4 |
ash | 1.0-15 | askpass | 1.1 |
assertthat | 0.2.1 | AUC | 0.3.2 |
backports | 1.4.1 | base64enc | 0.1-3 |
BB | 2019.10-1 | BDgraph | 2.68 |
bdsmatrix | 1.3-6 | BGLR | 1.1.0 |
BH | 1.78.0-0 | biganalytics | 1.1.21 |
biglars | 1.0.2 | biglm | 0.9-2.1 |
bigmemory | 4.6.1 | bigmemory.sri | 0.1.3 |
bigml | 0.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | bit | 4.0.4 |
bit64 | 4.0.5 | bitops | 1.0-7 |
blob | 1.2.3 | BLR | 1.6 |
bold | 1.2.0 | bpca | 1.3-4 |
BradleyTerry2 | 1.1-2 | brew | 1.0-7 |
brglm | 0.7.2 | brio | 1.1.3 |
broom | 1.0.0 | bslib | 0.4.0 |
BsMD | 2020.4.30 | cachem | 1.0.6 |
calibrator | 1.2-8 | callr | 3.7.1 |
carData | 3.0-5 | caret | 6.0-92 |
caTools | 1.18.2 | cellranger | 1.1.0 |
checkmate | 2.1.0 | chron | 2.3-57 |
CircStats | 0.2-6 | classInt | 0.4-7 |
cli | 3.3.0 | clipr | 0.8.0 |
clusterGeneration | 1.3.7 | coda | 0.19-4 |
coin | 1.4-2 | collapse | 1.8.6 |
colorspace | 2.0-3 | combinat | 0.0-8 |
commonmark | 1.8.0 | conditionz | 0.1.0 |
conf.design | 2.0.0 | contfrac | 1.1-12 |
corpcor | 1.6.10 | corrgram | 1.14 |
corrplot | 0.92 | cpp11 | 0.4.2 |
crayon | 1.5.1 | credentials | 1.3.2 |
crosstalk | 1.2.0 | crul | 1.2.0 |
cubature | 2.0.4.4 | curl | 4.3.2 |
CVST | 0.2-3 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | data.table | 1.14.2 |
DataExplorer | 0.8.2 | DBI | 1.1.3 |
deldir | 1.0-6 | dendextend | 1.16.0 |
DEoptimR | 1.0-11 | Deriv | 4.1.3 |
desc | 1.4.1 | deSolve | 1.33 |
devtools | 2.4.4 | dfidx | 0.0-5 |
dfoptim | 2020.10-1 | diagram | 1.6.5 |
dichromat | 2.0-0.1 | diffobj | 0.3.5 |
digest | 0.6.29 | dimRed | 0.2.6 |
diptest | 0.76-0 | discretization | 1.0-1.1 |
doBy | 4.6.13 | DoE.base | 1.2-1 |
doMC | 1.3.8 | doParallel | 1.0.17 |
dotCall64 | 1.0-1 | downlit | 0.4.2 |
dplyr | 1.0.9 | DRR | 0.0.4 |
dummies | 1.5.6 | dynamicTreeCut | 1.63-1 |
e1071 | 1.7-11 | EbayesThresh | 1.4-12 |
effects | 4.2-2 | ellipse | 0.4.3 |
ellipsis | 0.3.2 | elliptic | 1.4-0 |
emulator | 1.2-21 | equivalence | 0.7.2 |
estimability | 1.4.1 | ETLUtils | 1.5 |
evaluate | 0.15 | expint | 0.1-7 |
expm | 0.999-6 | fansi | 1.0.3 |
farver | 2.1.1 | fastICA | 1.2-3 |
fastmap | 1.1.0 | fastmatch | 1.1-3 |
fda | 6.0.5 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
ff | 4.0.7 | ffbase | 0.13.3 |
fields | 14.0 | filehash | 2.4-3 |
flashClust | 1.01-2 | flexmix | 2.3-18 |
FNN | 1.1.3.1 | fontawesome | 0.3.0 |
forcats | 0.5.1 | foreach | 1.5.2 |
formatR | 1.12 | Formula | 1.2-4 |
fpc | 2.2-9 | fs | 1.5.2 |
fts | 0.9.9.2 | functional | 0.6 |
future | 1.27.0 | future.apply | 1.9.0 |
gam | 1.20.2 | gamlss | 5.4-3 |
gamlss.data | 6.0-2 | gamlss.dist | 6.0-3 |
gclus | 1.3.2 | gdata | 2.18.0.1 |
geepack | 1.3.4 | genalg | 0.2.1 |
generics | 0.1.3 | genetics | 1.3.8.1.3 |
geosphere | 1.5-14 | gert | 1.7.0 |
ggdendro | 0.1.23 | ggforce | 0.3.3 |
ggformula | 0.10.1 | ggmap | 3.0.0 |
ggplot2 | 3.3.6 | ggrepel | 0.9.1 |
ggridges | 0.5.3 | ggstance | 0.3.5 |
gh | 1.3.0 | git2r | 0.30.1 |
gitcreds | 0.1.1 | glassoFast | 1.0 |
gld | 2.6.5 | glmnet | 4.1-4 |
globals | 0.16.0 | glue | 1.6.2 |
gmm | 1.6-6 | gmodels | 2.18.1.1 |
gmp | 0.6-5 | goftest | 1.2-3 |
googleVis | 0.7.0 | gower | 1.0.0 |
GPArotation | 2022.4-1 | gpclib | 1.5-6 |
gplots | 3.1.3 | gridBase | 0.4-7 |
gridExtra | 2.3 | gridGraphics | 0.5-1 |
gridSVG | 1.7-4 | grImport | 0.9-5 |
grImport2 | 0.2-0 | gsubfn | 0.7 |
gtable | 0.3.0 | gtools | 3.9.3 |
HaploSim | 1.8.4.1 | hardhat | 1.2.0 |
haven | 2.5.0 | hdrcde | 3.4 |
hexbin | 1.28.2 | hflights | 0.1 |
HH | 3.1-47 | highlight | 0.5.0 |
highr | 0.9 | Hmisc | 4.7-0 |
hms | 1.1.1 | htmlTable | 2.4.1 |
htmltools | 0.5.3 | htmlwidgets | 1.5.4 |
httpcode | 0.3.0 | httpuv | 1.6.5 |
httr | 1.4.3 | HydroMe | 2.0-1 |
HyperbolicDist | 0.6-4 | hypergeo | 1.2-13 |
ICC | 2.4.0 | igraph | 1.3.4 |
igraphdata | 1.0.1 | ineq | 0.2-13 |
ini | 0.3.1 | inline | 0.3.19 |
insight | 0.18.0 | interp | 1.1-3 |
intervals | 0.15.2 | introgress | 1.2.3 |
inum | 1.0-4 | ipred | 0.9-13 |
IRdisplay | 1.1 | IRkernel | 1.3 |
Iso | 0.0-18.1 | isoband | 0.2.5 |
iterators | 1.0.14 | itertools | 0.1-3 |
jpeg | 0.1-9 | jquerylib | 0.1.4 |
jsonlite | 1.8.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-31 | klaR | 1.7-1 |
knitr | 1.39 | ks | 1.13.5 |
labeling | 0.4.2 | labelled | 2.9.1 |
LaF | 0.8.4 | Lahman | 10.0-1 |
lars | 1.3 | later | 1.3.0 |
latticeExtra | 0.6-30 | lava | 1.6.10 |
lavaan | 0.6-12 | lavaan.survey | 1.1.3.1 |
lazyeval | 0.2.2 | lcda | 0.3.1 |
leaflet | 2.1.1 | leaflet.providers | 1.9.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
lgr | 0.4.3 | libcoin | 1.0-9 |
lifecycle | 1.0.1 | LIM | 1.4.7 |
limSolve | 1.5.6 | lisrelToR | 0.1.5 |
listenv | 0.8.0 | lme4 | 1.1-30 |
lmom | 2.9 | lmtest | 0.9-40 |
locfit | 1.5-9.6 | lokern | 1.1-9 |
lpSolve | 5.6.15 | lubridate | 1.8.0 |
magic | 1.6-0 | magrittr | 2.0.3 |
manipulateWidget | 0.11.1 | mapproj | 1.2.8 |
maps | 3.4.0 | maptools | 1.1-4 |
markdown | 1.1 | Matching | 4.10-2 |
MatchIt | 4.4.0 | mathjaxr | 1.6-0 |
matrixcalc | 1.0-5 | MatrixModels | 0.5-0 |
matrixStats | 0.62.0 | maxLik | 1.5-2 |
mboost | 2.9-7 | mclust | 5.4.10 |
mcmc | 0.9-7 | MCMCglmm | 2.34 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
Metrics | 0.1.4 | mi | 1.1 |
mice | 3.14.0 | microbenchmark | 1.4.9 |
mime | 0.12 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-2 | minqa | 1.2.4 |
misc3d | 0.9-1 | miscTools | 0.6-26 |
mitools | 2.4 | mlbench | 2.1-3 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlr3 | 0.13.4 | mlr3measures | 0.5.0 |
mlr3misc | 0.10.0 | mnormt | 2.1.0 |
ModelMetrics | 1.2.2.2 | modeltools | 0.2-23 |
moments | 0.14.1 | mondate | 0.10.02 |
mosaic | 1.8.3 | mosaicCore | 0.9.0 |
mosaicData | 0.20.2 | mratios | 1.4.2 |
multcomp | 1.4-20 | multicool | 0.1-12 |
munsell | 0.5.0 | mvMORPH | 1.1.6 |
mvtnorm | 1.1-3 | natserv | 1.0.0 |
network | 1.17.2 | networkD3 | 0.4 |
NISTnls | 0.9-13 | nloptr | 2.0.3 |
nls2 | 0.3-3 | nlstools | 2.0-0 |
nnls | 1.4 | nortest | 1.0-4 |
np | 0.60-11 | numbers | 0.8-2 |
numDeriv | 2016.8-1.1 | openssl | 2.0.2 |
openxlsx | 4.2.5 | optextras | 2019-12.4 |
ordinal | 2019.12-10 | PairedData | 1.1.1 |
palmerpenguins | 0.1.0 | paradox | 0.10.0 |
parallelly | 1.32.1 | partitions | 1.10-7 |
party | 1.3-10 | partykit | 1.2-16 |
pastecs | 1.3.21 | pbapply | 1.5-0 |
pbdZMQ | 0.3-7 | pbivnorm | 0.6.0 |
pbkrtest | 0.5.1 | pbmcapply | 1.5.1 |
PBSmapping | 2.73.1 | pcaPP | 2.0-2 |
pedigree | 1.4.1 | permute | 0.9-7 |
phangorn | 2.9.0 | phytools | 1.0-3 |
pillar | 1.8.0 | pixmap | 0.4-12 |
pkgbuild | 1.3.1 | pkgconfig | 2.0.3 |
pkgdown | 2.0.6 | pkgload | 1.3.0 |
plm | 2.6-1 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.0 |
plotrix | 3.8-2 | pls | 2.8-1 |
plyr | 1.8.7 | png | 0.1-7 |
poLCA | 1.6.0.1 | polspline | 1.1.20 |
polyclip | 1.10-0 | polycor | 0.8-1 |
polynom | 1.4-1 | prabclus | 2.3-2 |
pracma | 2.3.8 | praise | 1.0.0 |
prettyunits | 1.1.1 | princurve | 2.1.6 |
pROC | 1.18.0 | processx | 3.7.0 |
prodlim | 2019.11.13 | profileModel | 0.6.1 |
profvis | 0.3.7 | progress | 1.2.2 |
progressr | 0.10.1 | promises | 1.2.0.1 |
proto | 1.0.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | ps | 1.7.1 |
pscl | 1.5.5 | psy | 1.2 |
psych | 2.2.5 | purrr | 0.3.4 |
qap | 0.1-2 | qtl | 1.52 |
quadprog | 1.5-8 | quantmod | 0.4.20 |
quantreg | 5.94 | questionr | 0.7.7 |
qvcalc | 1.0.2 | R.cache | 0.16.0 |
R.devices | 2.17.1 | R.filesets | 2.15.0 |
R.huge | 0.9.0 | R.matlab | 3.6.2 |
R.methodsS3 | 1.8.2 | R.oo | 1.25.0 |
R.rsp | 0.45.0 | R.utils | 2.12.0 |
R2HTML | 2.3.3 | R2OpenBUGS | 3.2-3.2.1 |
R2WinBUGS | 2.1-21 | R6 | 2.5.1 |
ragg | 1.2.2 | rainbow | 3.6 |
randomForest | 4.7-1.1 | rappdirs | 0.3.3 |
raster | 3.5-21 | ratelimitr | 0.4.1 |
rbenchmark | 1.0.0 | rbibutils | 2.2.8 |
Rcgmin | 2022-4.30 | rcmdcheck | 1.4.0 |
RColorBrewer | 1.1-3 | Rcpp | 1.0.9 |
RcppArmadillo | 0.11.2.0.0 | RcppEigen | 0.3.3.9.2 |
RcppParallel | 5.1.5 | RcppProgress | 0.4.2 |
RcppRoll | 0.3.0 | Rcsdp | 0.1.57.2 |
RCurl | 1.98-1.8 | Rdpack | 2.4 |
readr | 2.1.2 | readstata13 | 0.10.0 |
recipes | 1.0.1 | registry | 0.5-1 |
regress | 1.3-21 | relaxnet | 0.3-2 |
reliaR | 0.01 | relimp | 1.0-5 |
rematch | 1.0.1 | rematch2 | 2.1.2 |
remotes | 2.4.2 | rentrez | 1.2.3 |
repr | 1.1.4 | reshape | 0.8.9 |
reshape2 | 1.4.4 | rex | 1.2.1 |
rgl | 0.109.6 | RgoogleMaps | 1.4.5.3 |
RGraphics | 3.0-2 | ritis | 1.0.0 |
rJava | 1.0-6 | RJDBC | 0.2-10 |
rjson | 0.2.21 | RJSONIO | 1.3-1.6 |
rlang | 1.0.4 | rlecuyer | 0.3-5 |
rmarkdown | 2.14 | Rmpfr | 0.8-9 |
rms | 6.3-0 | RMySQL | 0.10.23 |
rncl | 0.8.6 | robustbase | 0.95-0 |
ROCR | 1.0-11 | Rook | 1.1-1 |
rotl | 3.0.12 | roxygen2 | 7.2.1 |
rprojroot | 2.0.3 | rredlist | 0.7.0 |
RSQLite | 2.2.15 | rstudioapi | 0.13 |
RUnit | 0.4.32 | rversions | 2.1.1 |
Rvmmin | 2018-4.17.1 | s2 | 1.1.0 |
sandwich | 3.0-2 | sass | 0.4.2 |
scales | 1.2.0 | scatterplot3d | 0.3-41 |
ScottKnott | 1.3-0 | SDMTools | 1.1-221.2 |
sealasso | 0.1-3 | segmented | 1.6-0 |
sem | 3.1-15 | SemiPar | 1.0-4.2 |
semTools | 0.5-6 | seqinr | 4.2-16 |
seriation | 1.3.6 | sessioninfo | 1.2.2 |
setRNG | 2022.4-1 | sets | 1.0-21 |
sf | 1.0-8 | sfsmisc | 1.1-13 |
shape | 1.4.6 | shapefiles | 0.7 |
shiny | 1.7.2 | shinyjs | 2.1.0 |
SimComp | 3.3 | simsem | 0.5-16 |
slam | 0.1-50 | sn | 2.0.2 |
sna | 2.7 | snow | 0.4-4 |
snowfall | 1.84-6.2 | solrium | 1.2.0 |
sourcetools | 0.1.7 | sp | 1.5-0 |
spam | 2.9-1 | SparseM | 1.81 |
SpatialExtremes | 2.1-0 | spatstat | 2.3-4 |
spatstat.core | 2.4-4 | spatstat.data | 2.2-0 |
spatstat.geom | 2.4-0 | spatstat.linnet | 2.3-2 |
spatstat.random | 2.2-0 | spatstat.sparse | 2.1-1 |
spatstat.utils | 2.3-1 | spData | 2.0.1 |
spdep | 1.2-4 | SQUAREM | 2021.1 |
ssgraph | 1.13 | stabs | 0.6-4 |
StanHeaders | 2.21.0-7 | statmod | 1.4.36 |
statnet.common | 4.6.0 | stringi | 1.7.8 |
stringr | 1.4.0 | strucchange | 1.5-3 |
styler | 1.7.0 | subplex | 1.8 |
superml | 0.5.5 | SuppDists | 1.1-9.7 |
survey | 4.1-1 | survPresmooth | 1.1-11 |
svUnit | 1.0.6 | sybil | 2.2.0 |
synbreedData | 1.5 | sys | 3.4 |
systemfonts | 1.0.4 | tables | 0.9.6 |
taxize | 0.9.100 | tensor | 1.5 |
tensorA | 0.36.2 | terra | 1.6-7 |
testit | 0.13 | testthat | 3.1.4 |
textshaping | 0.3.6 | TH.data | 1.1-1 |
tibble | 3.1.8 | tidyr | 1.2.0 |
tidyselect | 1.1.2 | timeDate | 4021.104 |
timeSeries | 4021.104 | tinytex | 0.40 |
tis | 1.39 | tkrplot | 0.0-26 |
tmvtnorm | 1.5 | triebeard | 0.3.0 |
trimcluster | 0.1-5 | tripack | 1.3-9.1 |
truncnorm | 1.0-8 | truncreg | 0.2-5 |
tseries | 0.10-51 | TSP | 1.2-1 |
TTR | 0.24.3 | tweenr | 1.0.2 |
tzdb | 0.3.0 | ucminf | 1.1-4 |
units | 0.8-0 | urca | 1.3-0 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
usethis | 2.1.6 | utf8 | 1.2.2 |
uuid | 1.1-0 | vcd | 1.4-10 |
vctrs | 0.4.1 | vegan | 2.6-2 |
VGAM | 1.1-7 | VGAMdata | 1.1-6 |
viridis | 0.6.2 | viridisLite | 0.4.0 |
vroom | 1.5.7 | waldo | 0.4.0 |
waveslim | 1.8.3 | wavethresh | 4.7.0 |
webshot | 0.5.3 | whisker | 0.4 |
widenet | 0.1-2 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | WikipediR | 1.5.0 |
wikitaxa | 0.4.0 | withr | 2.5.0 |
wk | 0.6.0 | worrms | 0.4.2 |
xfun | 0.31 | xlsx | 0.6.5 |
xlsxjars | 0.6.1 | XML | 3.99-0.10 |
xml2 | 1.3.3 | xopen | 1.0.0 |
xtable | 1.8-4 | xts | 0.12.1 |
yaml | 2.3.5 | zip | 2.2.0 |
zoo | 1.8-10 |
After the EC2 instance is started, you can access the RShiny 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 RShiny applications are served from the directory /srv/shiny-server.
RShiny Server
R: 4.4.2
rshiny-server: 1.5.22.1017
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 |
RShiny Server
R: 4.4.1
rshiny-server: 1.5.22.1017
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 |
RShiny Server
R: 4.4.0
rshiny-server: 1.5.22.1017
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.
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 |
RShiny Server
R: 4.3.3
rshiny-server: 1.5.21.1012
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
Upgraded R to version 4.3.3 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 (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 | 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.12.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.7.3 |
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 | 2020-3.3 | LCAvarsel | 1.1 |
lcda | 0.3.2 | lcmm | 2.1.0 |
lctools | 0.2-8 | lda | 1.4.2 |
ldat | 0.3.3 | ldbounds | 2.0.2 |
leafem | 0.2.3 | leaflet | 2.2.1 |
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.0 | 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.0 | 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.1 |
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.2.2 | logging | 0.10-108 |
logitnorm | 0.8.39 | logitr | 1.1.1 |
logspline | 2.1.21 | lokern | 1.1-10.1 |
lomb | 2.2.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 | 2.9 |
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.1 |
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.6 | 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.0.6 |
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.18.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.1.0 | 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.2.0 | matrixTests | 0.2.3 |
maxLik | 1.5-2 | MaxPro | 4.1-2 |
maxstat | 0.7-25 | MBA | 0.1-0 |
mbbefd | 0.8.11 | MBC | 0.10-6 |
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.0.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.4-0 | metaheuristicOpt | 2.0.0 |
metaMA | 3.1.3 | metap | 1.9 |
metaplot | 0.8.4 | metaRNASeq | 1.0.7 |
metaSEM | 1.3.1 | metasens | 1.5-2 |
meteo | 2.0-2 | 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.2.16 |
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.12.1 |
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.1 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlogitBMA | 0.1-7 | mlr | 2.19.1 |
mlr3 | 0.17.2 | mlr3learners | 0.5.8 |
mlr3measures | 0.5.0 | mlr3misc | 0.14.0 |
mlr3spatiotempcv | 2.3.0 | mlr3tuning | 0.19.2 |
mlrMBO | 1.1.5.1 | mlVAR | 0.5.2 |
mma | 10.7-1 | mmand | 1.6.3 |
mmrm | 0.3.10 | 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 | 1.4.5 |
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.7.3 |
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 | 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-9 |
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.0 |
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 |
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.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.3.6 | NCmisc | 1.2.0 |
ncvreg | 3.14.1 | 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.0 | nflreadr | 1.4.0 |
nflseedR | 1.2.0 | NFLSimulatoR | 0.4.0 |
nflverse | 1.0.3 | ngspatial | 1.2-2 |
nhanesA | 1.0 | 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.6 | noaastormevents | 0.2.0 |
nodbi | 0.10.2 | nomisr | 0.4.7 |
nomnoml | 0.3.0 | NonCompart | 0.7.0 |
nonlinearTseries | 0.2.12 | nonmemica | 1.0.8 |
nonneg.cg | 0.1.6-1 | nonnest2 | 0.5-6 |
nor1mix | 1.3-2 | 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-0 | o2geosocial | 1.1.0 |
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.3 |
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.1 |
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 | 0.8.3 |
OPDOE | 1.0-10 | openair | 2.18-0 |
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-4 | openssl | 2.1.1 |
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.5.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.5 |
ParamHelpers | 1.14.1 | params | 0.7.3 |
paran | 1.5.2 | Pareto | 2.4.5 |
parma | 1.7 | parmigene | 1.1.0 |
parsedate | 1.3.1 | parsnip | 1.2.0 |
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.0 | 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.10.9 |
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.6 | 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.3 | pkgcache | 2.2.1 |
pkgconfig | 2.0.3 | pkgdepends | 0.7.1 |
pkgdown | 2.0.7 | 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-3 |
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.1 |
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.0 | 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.6 | 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-4 |
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.2 | praise | 1.0.0 |
pRecipe | 3.0.1-3 | PreciseSums | 0.6 |
PredCRG | 1.0.2 | prediction | 0.3.14 |
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.1 |
ProbitSpatial | 1.1 | pROC | 1.18.5 |
processx | 3.8.3 | prodigenr | 0.6.2 |
prodlim | 2023.08.28 | ProfessR | 2.4-3 |
profileModel | 0.6.1 | profileR | 0.3-5 |
profoc | 1.3.1 | 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.2.1 | prophet | 1.0 |
PROsetta | 0.4.1 | proto | 1.0.0 |
protoclust | 1.6.4 | protolite | 2.3.0 |
protr | 1.7-0 | protti | 0.7.0 |
protViz | 0.7.9 | proxy | 0.4-27 |
proxyC | 0.3.4 | 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.1 |
psychomix | 1.1-8 | psychonetrics | 0.11.5 |
psychotools | 0.7-3 | psychotree | 0.16-0 |
psychTools | 2.4.2 | psyphy | 0.3 |
PTAk | 2.0.0 | PTSR | 0.1.2 |
ptw | 1.9-16 | PTXQC | 1.1.0 |
pubmed.mineR | 1.0.19 | 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.2 | qpmadr | 1.1.0-0 |
qpNCA | 1.1.6 | qqconf | 1.3.2 |
qqplotr | 0.0.6 | QRM | 0.4-31 |
qrmdata | 2022-05-31-1 | qrmtools | 0.0-16 |
qrng | 0.0-10 | qs | 0.25.7 |
qtl | 1.66 | quadprog | 1.5-8 |
quadprogXT | 0.0.5 | qualmap | 0.2.2 |
qualtRics | 3.2.0 | Quandl | 2.11.0 |
quanteda | 3.3.1 | 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.2.7 |
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.3 |
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.0 |
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.1.0 |
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 | 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.8.4 |
REDCapR | 1.1.0 | REDCapTidieR | 1.0.0 |
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.4.2.1 |
REndo | 2.4.9 | rentrez | 1.2.3 |
renv | 1.0.5 | 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.6 | represtools | 0.1.3 |
reprex | 2.1.0 | reproducible | 2.0.10 |
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.35.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.1 | 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.2.8 |
Rglpk | 0.6-5.1 | RgoogleMaps | 1.5.1 |
RGraphics | 3.0-2 | Rgraphviz | 2.44.0 |
rgrass | 0.4-1 | 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 | 1.1.2 | rib | 0.19.3 |
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.5 | 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.25 | 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.7-1 |
RMTstat | 0.3.1 | rmutil | 1.1.10 |
RMySQL | 0.10.27 | rmzqc | 0.5.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-1 |
RNeXML | 2.4.11 | rngtools | 1.5.2 |
rngWELL | 0.10-9 | RNifti | 1.6.0 |
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.6 | 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.0 | 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.5 | Rssa | 1.0.5 |
rstac | 1.0.0 | rstan | 2.32.5 |
rstanarm | 2.32.1 | rstantools | 2.4.0 |
rstatix | 0.7.2 | rstiefel | 1.0.1 |
rStrava | 1.3.0 | rstudioapi | 0.15.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.26 | 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-1.1 | runner | 0.4.3 |
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.4.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.2 |
SAScii | 1.0.2 | sass | 0.4.8 |
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.7 |
sdcSpatial | 0.5.2 | sdcTable | 0.32.6 |
sde | 2.0.18 | sdmTMB | 0.4.3 |
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.3.0.1 | secsse | 3.0.2 |
seer | 1.1.8 | seg | 0.5-7 |
segmented | 2.0-3 | 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.19 |
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.4 |
servr | 0.29 | sessioninfo | 1.2.2 |
setartree | 0.2.1 | setRNG | 2024.2-1 |
sets | 1.0-25 | settings | 0.2.7 |
Seurat | 5.0.2 | SeuratObject | 5.0.1 |
sf | 1.0-15 | 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.0 | shiny.semantic | 0.5.0 |
shinyAce | 0.4.2 | shinyalert | 3.0.0 |
shinybrms | 1.8.0 | shinyBS | 0.61.1 |
shinybusy | 0.3.2 | shinycssloaders | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.0 |
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.2 | showimage | 1.0.0 |
showtext | 0.9-7 | showtextdb | 3.0 |
SIBERG | 2.0.3 | sigmoid | 1.4.0 |
Signac | 1.12.0 | SignacX | 2.2.5 |
signal | 1.8-0 | signs | 0.1.2 |
sigora | 3.1.1 | SigTree | 1.10.6 |
Sim.DiffProc | 4.8 | simcdm | 0.1.2 |
SimComp | 3.3 | simex | 1.8 |
simfinapi | 1.0.0 | simglm | 0.8.9 |
SimilarityMeasures | 1.4 | SimInf | 9.6.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.6.2 | 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.0 | smoother | 1.1 |
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.0 | SOAs | 1.4 |
soc.ca | 0.8.0 | socceR | 0.1.1 |
socialmixr | 0.3.1 | 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.18.0 | sparklyr | 1.8.4 |
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-7 |
spatstat.data | 3.0-4 | spatstat.explore | 3.2-6 |
spatstat.geom | 3.2-9 | spatstat.linnet | 3.1-4 |
spatstat.model | 3.2-10 | 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.2.1 | sperrorest | 3.0.5 |
sphet | 2.0 | spiderbar | 0.2.5 |
spikeslab | 1.1.6 | spikeSlabGAM | 1.1-19 |
spINAR | 0.1.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.5.1 | 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.16.1 | 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-4 | starter | 0.1.14 |
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.4 |
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.0.0 | stringr | 1.5.1 |
strucchange | 1.5-3 | strucchangeRcpp | 1.5-3-1.0.4 |
StructuralDecompose | 0.1.1 | styler | 1.10.2 |
subplex | 1.8 | subscore | 3.3 |
sufficientForecasting | 0.1.0 | sugrrants | 0.2.8 |
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.2-1 | 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.5 | table1 | 1.4.3 |
tables | 0.9.17 | 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.5.1 | 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.15.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.5.1 | tester | 0.1.7 |
TestFunctions | 0.2.1 | testit | 0.13 |
TestScorer | 1.7.2 | testthat | 3.2.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.2 |
tgp | 2.4-22 | TH.data | 1.1-2 |
theft | 0.5.4.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.4 |
tibble | 3.2.1 | tibbletime | 0.1.8 |
tictoc | 1.2 | Tides | 2.1 |
tidyBdE | 0.3.5 | tidycensus | 1.6 |
tidyestimate | 1.1.1 | tidygraph | 1.3.1 |
tidyhydat | 0.6.1 | tidyLPA | 1.1.0 |
tidymodels | 1.1.1 | tidyquant | 1.0.7 |
tidyqwi | 0.1.2 | tidyr | 1.3.1 |
tidyREDCap | 1.1.1 | tidyRSS | 2.0.7 |
tidyselect | 1.2.0 | tidysynth | 0.2.0 |
tidytable | 0.11.0 | tidytext | 0.4.1 |
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.0.5 | tinytex | 0.49 |
tis | 1.39 | tkrplot | 0.0-27 |
TLMoments | 0.7.5.3 | tm | 0.7-11 |
tm.plugin.alceste | 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.10 | 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.2 |
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.4.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 | 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.1.2 |
turner | 0.1.7 | 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.1 |
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.0 | usmapdata | 0.2.1 |
utf8 | 1.2.4 | utility | 1.4.6 |
uuid | 1.2-0 | uwot | 0.1.16 |
V8 | 4.4.2 | VALERIE | 1.1.0 |
validate | 1.1.5 | validatetools | 0.5.2 |
valr | 0.7.0 | 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-0 |
VARshrink | 0.3.1 | varycoef | 0.3.4 |
VCA | 1.5.0 | vcd | 1.4-12 |
vcdExtra | 0.8-5 | vcr | 1.2.2 |
vctrs | 0.6.5 | vdg | 1.2.2 |
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.3 |
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 | 0.14.2 |
weights | 1.0.4 | welo | 0.1.3 |
WeMix | 4.0.3 | WGCNA | 1.72-5 |
WH | 1.1.0 | 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.5.0 |
wikitaxa | 0.4.0 | wildlifeDI | 0.5.1 |
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.0.1 | 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.29 | XBRL | 0.99.19.1 |
xfun | 0.42 | xgboost | 1.7.7.1 |
xgxr | 1.1.2 | XLConnect | 1.0.8 |
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.4 |
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.0 | yesno | 0.1.2 |
yhatr | 0.15.1 | yorkr | 0.0.41 |
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 |
RShiny Server
R: 4.3.2
rshiny-server: 1.5.21.1012
CUDA Version: 11.7
GPU Driver Version: 515.43.04
Release Notes
Upgraded R to 4.3.2 and shiny-server to version shiny-server-1.5.21.1012, 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 and natural language processing.
R packages (3638)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.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 |
actuar | 3.3-4 | ada | 2.0-5 |
adagio | 0.9.2 | adaptivetau | 2.3 |
adaptMCMC | 1.4 | adaptr | 1.3.2 |
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 | admisc | 0.34 |
AdMit | 2.1.9 | ads | 1.5-10 |
AdvancedBasketballStats | 1.0.1 | AER | 1.2-10 |
affy | 1.78.0 | affyio | 1.70.0 |
africamonitor | 0.2.3 | agricolae | 1.3-7 |
agricolaeplotr | 0.3.1 | agridat | 1.22 |
agriwater | 1.0.2 | airGR | 1.7.6 |
airGRdatassim | 0.1.3 | airGRiwrm | 0.6.2 |
airGRteaching | 0.3.2 | airports | 0.1.0 |
ajv | 1.0.0 | akima | 0.6-3.4 |
alabama | 2023.1.0 | AlgDesign | 1.2.1 |
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-1 | AMR | 2.1.1 |
AnaCoDa | 0.1.4.4 | anacor | 1.1-4 |
analogsea | 1.0.7.2 | anesrake | 0.80 |
animation | 2.7 | anipaths | 0.10.2 |
AnnotationDbi | 1.62.1 | Anthropometry | 1.19 |
anytime | 0.3.9 | aod | 1.3.3 |
aoos | 0.5.0 | AovBay | 0.1.0 |
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.2.3 |
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.0.2 |
ars | 0.6 | aRxiv | 0.6 |
ascii | 2.4 | 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 |
aTSA | 3.1.2 | 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.2 | av | 0.9.0 |
aweek | 1.0.3 | aws | 2.5-3 |
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 |
BACCO | 2.1-0 | BACCT | 1.0 |
backports | 1.4.1 | backtest | 0.3-4 |
bacondecomp | 0.1.1 | baggr | 0.7.6 |
bain | 0.2.10 | BalancedSampling | 1.6.3 |
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 | 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 | 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.1 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.6 |
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 | 1.5.0 |
BayesMassBal | 1.1.0 | bayesmeta | 3.3 |
bayesmix | 0.7-6 | bayesnec | 2.1.1.0 |
bayesplot | 1.10.0 | bayesQR | 2.4 |
BayesSAE | 1.0-2 | bayestestR | 0.13.1 |
bayesTFR | 7.4-2 | BayesTools | 0.2.16 |
BayesTree | 0.3-1.4 | BayesVarSel | 2.2.5 |
BayesX | 0.3-3 | BAYSTAR | 0.2-10 |
baytrends | 2.0.9 | BB | 2019.10-1 |
BBmisc | 1.13 | bbmle | 1.0.25.1 |
bbotk | 0.7.3 | BCBCSF | 1.0-1 |
BCC1997 | 0.1.1 | BCE | 2.2.0 |
Bchron | 4.7.6 | bcp | 4.0.3 |
bcpa | 1.3.2 | bcrm | 0.5.4 |
BDgraph | 2.72 | bdrc | 1.1.0 |
bdsmatrix | 1.3-6 | BE | 0.2.4 |
beadarray | 2.50.0 | BeadDataPackR | 1.52.0 |
beakr | 0.4.3 | bearishTrader | 1.0.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 | berryFunctions | 1.22.0 |
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.0.4 |
BGLR | 1.1.1 | BGVAR | 2.5.5 |
bgw | 0.1.2 | BH | 1.84.0-0 |
BHH2 | 2016.05.31 | BiasedUrn | 2.0.11 |
bibtex | 0.5.1 | biclust | 2.0.3.1 |
bidask | 2.0.2 | bife | 0.7.2 |
BIFIEsurvey | 3.4-15 | 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.4.2 | 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 |
Biobase | 2.60.0 | BiocGenerics | 0.46.0 |
BiocManager | 1.30.22 | BiocParallel | 1.34.1 |
BiocVersion | 3.17.1 | bioinactivation | 1.2.3 |
biomformat | 1.28.0 | bioOED | 0.2.1 |
Biostrings | 2.68.0 | biotic | 0.1.2 |
bipartite | 2.19 | birtr | 1.0.0 |
bit | 4.0.5 | bit64 | 4.0.5 |
bitops | 1.0-7 | biwavelet | 0.20.21 |
bizdays | 1.0.13 | bkmr | 0.2.2 |
blaise | 1.3.11 | blastula | 0.3.4 |
blavaan | 0.5-2 | 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.18 | 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 | 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.14 |
BoomSpikeSlab | 1.2.6 | bootnet | 1.5.6 |
BootPR | 1.0 | bootstrap | 2019.6 |
bootUR | 1.0.2 | BoSSA | 3.7 |
boussinesq | 1.0.6 | boxr | 0.3.6 |
bpca | 1.3-6 | bqtl | 1.0-35 |
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 |
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 | bslib | 0.6.1 |
BsMD | 2023.920 | bspec | 1.6 |
bspmma | 0.1-2 | bssm | 2.0.2 |
BSSprep | 0.1 | bsts | 0.9.9 |
bsvars | 2.1.0 | BTLLasso | 0.1-11 |
BTM | 0.3.7 | bullishTrader | 1.0.1 |
bundesbank | 0.1-11 | BurStFin | 1.3 |
BurStMisc | 1.1 | BVAR | 1.0.4 |
bvartools | 0.2.4 | 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 | CalibrateSSB | 1.3.0 |
calibrator | 1.2-8 | callr | 3.7.3 |
cancensus | 0.5.6 | candisc | 0.8-6 |
CANSIM2R | 1.14.1 | caper | 1.0.3 |
captr | 0.3.0 | car | 3.1-2 |
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 | cartogram | 0.3.0 |
CAST | 0.9.0 | castor | 1.8.0 |
caTools | 1.18.2 | catR | 3.17 |
causact | 0.5.3 | CausalImpact | 1.3.0 |
CAvariants | 6.0 | cbsodataR | 1.0.1 |
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 | cfbfastR | 1.9.0 |
CFtime | 1.2.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 |
cherryblossom | 0.1.0 | chess | 1.0.1 |
chilemapas | 0.3.0 | chk | 0.9.1 |
choiceDes | 0.9-3 | CholWishart | 1.1.2 |
choroplethr | 3.7.2 | choroplethrMaps | 1.0.1 |
chromote | 0.1.2 | chron | 2.3-61 |
cifti | 0.4.5 | cinterpolate | 1.0.1 |
circlize | 0.4.15 | CircSpaceTime | 0.9.0 |
CircStats | 0.2-6 | circular | 0.5-0 |
ciTools | 0.6.1 | Claddis | 0.6.3 |
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.11.1 |
clinsig | 1.2 | clipr | 0.8.0 |
clisymbols | 1.2.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 |
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.3 | coconots | 1.1.3 |
cocor | 1.1-4 | cocorresp | 0.4-3 |
cocron | 1.0-1 | coda | 0.19-4 |
cOde | 1.1.1 | coin | 1.4-3 |
cointReg | 0.2.0 | collapse | 2.0.9 |
collapsibleTree | 0.1.8 | 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 | CommonJavaJars | 1.0-6 |
commonmark | 1.9.0 | compare | 0.2-6 |
CompQuadForm | 1.4.3 | comprehenr | 0.6.10 |
conditionz | 0.1.0 | conf.design | 2.0.0 |
config | 0.3.2 | confintr | 1.0.2 |
conflicted | 1.2.0 | conquer | 1.3.3 |
conquestr | 1.1.1 | 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 | 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 | 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.2 |
CPBayes | 1.1.0 | cpk | 1.3-1 |
cplm | 0.7-11 | 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.3 | 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.3 | 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.16.0 |
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 |
Cubist | 0.4.2.1 | curl | 5.2.0 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-11 |
d3Network | 0.5.2.1 | DAAG | 1.25.4 |
dae | 3.2.19 | daewr | 1.2-11 |
dagitty | 0.3-4 | DAKS | 2.1-3 |
DALEX | 2.4.3 | DAMOCLES | 2.3 |
data.table | 1.14.10 | data.tree | 1.1.0 |
DatabaseConnector | 6.3.2 | DataExplorer | 0.8.2 |
dataone | 2.2.2 | datapack | 1.4.1 |
datapasta | 3.1.0 | dataRetrieval | 2.7.14 |
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-25 |
dbhydroR | 0.2-8 | DBI | 1.2.0 |
DBItest | 1.8.0 | dbmss | 2.9-0 |
dbparser | 2.0.1 | dbplyr | 2.4.0 |
dbscan | 1.1-12 | dbx | 0.3.1 |
DChaos | 0.1-7 | dclone | 2.3-2 |
DCluster | 0.2-9 | DClusterm | 1.0-1 |
dcov | 0.1.1 | dCovTS | 1.4 |
dcurver | 0.9.2 | ddalpha | 1.3.13 |
DDD | 5.2.2 | dde | 1.0.4 |
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 | deldir | 2.0-2 |
deltaPlotR | 1.6 | dendextend | 1.17.1 |
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 |
Deriv | 4.1.3 | derivmkts | 0.2.5 |
desc | 1.4.3 | DescTools | 0.99.52 |
designmatch | 0.5.4 | desirability | 2.1 |
deSolve | 1.40 | desplot | 1.10 |
devtools | 2.4.5 | dexter | 1.3.3 |
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 | DHARMa | 0.4.6 |
DHS.rates | 0.9.1 | diagis | 0.2.3 |
diagonals | 6.4.0 | diagram | 1.6.5 |
DiagrammeR | 1.0.10 | dials | 1.2.0 |
DiceDesign | 1.10 | DiceEval | 1.6.1 |
DiceKriging | 1.6.0 | DiceView | 2.1-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 |
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 |
dipsaus | 0.2.8 | diptest | 0.77-0 |
Dire | 2.2.0 | DIRECT | 1.1.0 |
directlabels | 2023.8.25 | dirichletprocess | 0.4.2 |
dirmult | 0.1.3-5 | disaggR | 1.0.5.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.4 | distr | 2.9.2 |
distrEx | 2.9.0 | distributional | 0.3.2 |
distributions3 | 0.2.1 | DistributionUtils | 0.6-1 |
distrom | 1.0.1 | distrTeach | 2.9.0 |
dittodb | 0.1.7 | diversitree | 0.10-0 |
divest | 0.10.3 | 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.9 |
dmri.tracking | 0.1.0 | 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 | 0.5.3 | 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 | DRDID | 1.0.6 |
dreamerr | 1.4.0 | DriftBurstHypothesis | 0.4.0.1 |
DRR | 0.0.4 | dsa | 1.0.12 |
DSAIDE | 0.9.6 | dse | 2020.2-1 |
DSI | 1.5.0 | DSL | 0.1-7 |
DT | 0.31 | 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.1 |
dtw | 1.23-1 | dtwclust | 5.5.12 |
duckdb | 0.9.2-1 | duckduckr | 1.0.0 |
dygraphs | 1.1.1.6 | 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 | e1071 | 1.7-14 |
earlyR | 0.0.5 | earth | 5.3.2 |
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.0.0 | ecodist | 2.1.3 |
Ecohydmod | 1.0.0 | ECOSolveR | 0.5.5 |
ecoval | 1.2.9 | ecp | 3.1.5 |
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.3 |
egg | 0.4.5 | egor | 1.23.3 |
EGRET | 3.0.9 | EGRETci | 2.0.4 |
eha | 2.11.2 | eigenmodel | 1.11 |
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 | EMbC | 2.0.4 |
EMD | 1.5.9 | emdi | 2.2.1 |
emg | 1.0.9 | emmeans | 1.9.0 |
emulator | 1.2-21 | encode | 0.3.6 |
endtoend | 2.29 | energy | 1.7-11 |
EngrExpt | 0.1-8 | enrichwith | 0.3.1 |
ensembleBMA | 5.1.8 | entropart | 1.6-13 |
EntropyEstimation | 1.2 | EntropyMCMC | 1.0.4 |
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.67 | 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.1 | equivalence | 0.7.2 |
era | 0.4.1 | erer | 3.1 |
ergm | 4.6.0 | ergm.ego | 1.1.0 |
ergm.multi | 0.2.0 | eRm | 1.0-4 |
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.4.1 | EstimateGroupNetwork | 0.3.1 |
estimatr | 1.0.0 | ETLUtils | 1.5 |
etm | 1.1.1 | etrm | 1.0.1 |
etrunct | 0.1 | etwfe | 0.3.5 |
EUfootball | 0.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 |
ewoc | 0.3.0 | Exact | 3.2 |
exactextractr | 0.10.0 | 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 | eyelinker | 0.2.1 |
ez | 4.4-0 | fable | 0.3.3 |
fable.prophet | 0.1.0 | fabletools | 0.3.4 |
FactoClass | 1.2.8 | FactoMineR | 2.9 |
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.3 | 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 |
fBasics | 4032.96 | fBonds | 3042.78 |
fbRads | 17.0.0 | fCopulae | 4022.85 |
FD | 1.0-12.3 | fda | 6.1.4 |
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.9 | FFD | 1.0-9 |
fflr | 2.2.0 | ffscrapr | 1.4.8 |
ffsimulator | 1.2.3 | fftwtools | 0.9-11 |
fGarch | 4031.90 | fHMM | 1.2.0 |
FielDHub | 1.3.4 | fields | 15.2 |
fiery | 1.2.0 | 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 |
finnts | 0.4.0 | finreportr | 1.0.4 |
FinTS | 0.4-8 | fishMod | 0.29 |
fitdistrplus | 1.1-11 | fitzRoy | 1.3.0 |
fixest | 0.11.2 | FKF | 0.2.4 |
FKF.SP | 0.3.1 | flashClust | 1.01-2 |
flexclust | 1.4-1 | flexdashboard | 0.6.2 |
flexmix | 2.3-19 | FlexScan | 0.2.2 |
flextable | 0.9.4 | 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.5 | fmri | 1.9.12 |
fMultivar | 4031.84 | fnets | 0.1.5 |
FNN | 1.1.3.2 | 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-2 |
Frames2 | 0.2.1 | FRAPO | 0.4-1 |
fredr | 2.1.0 | freecurrencyapi | 0.1.0 |
freesurferformats | 0.1.17 | 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.1 | frontier | 1.1-8 |
frostr | 0.2.0 | fs | 1.6.3 |
fslr | 2.25.2 | fsMTS | 0.1.7 |
fst | 0.9.8 | fstcore | 0.9.18 |
fTrading | 3042.79 | ftsa | 6.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.3 | GAD | 1.1.1 |
gam | 1.22-3 | gamlr | 1.13-8 |
gamlss | 5.4-20 | gamlss.data | 6.0-2 |
gamlss.dist | 6.1-1 | 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.5.1 |
gaussquad | 1.0-3 | GaussSuppression | 0.7.0 |
gbm | 2.1.9 | gbutils | 0.5 |
gclus | 1.3.2 | GCPM | 1.2.2 |
gdalcubes | 0.6.4 | gdalraster | 1.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.5 |
gear | 0.3.4 | gee | 4.13-26 |
geepack | 1.3.9 | geiger | 2.0.11 |
genalg | 0.2.1 | gender | 0.6.0 |
GeneralizedHyperbolic | 0.8-6 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | GenomeInfoDb | 1.36.0 |
GenomeInfoDbData | 1.2.10 | GenomicRanges | 1.52.0 |
GenSA | 1.1.12 | 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.3 |
geometry | 0.4.7 | geomorph | 4.0.6 |
geonames | 0.999 | geonapi | 0.7 |
GEOquery | 2.68.0 | geoR | 1.9-3 |
geos | 0.2.4 | geosapi | 0.6-7 |
geoscale | 2.0.1 | geosphere | 1.5-18 |
geospt | 1.0-3 | geostan | 0.5.3 |
geotopbricks | 1.5.8.0 | geouy | 0.2.8 |
gert | 2.0.1 | GET | 0.5 |
getPass | 0.2-4 | gets | 0.37 |
GetTDData | 1.5.4 | gfonts | 0.2.0 |
GGally | 2.2.0 | ggalt | 0.4.0 |
gganimate | 1.0.8 | ggdag | 0.2.10 |
ggdemetra | 0.2.6 | ggdendro | 0.1.23 |
ggdist | 3.3.1 | ggExtra | 0.10.1 |
ggfittext | 0.10.1 | ggforce | 0.4.1 |
ggformula | 0.12.0 | ggfun | 0.1.3 |
gghalves | 0.1.4 | ggimage | 0.3.3 |
gginnards | 0.1.2 | ggmap | 4.0.0 |
ggmcmc | 1.5.1.1 | ggmuller | 0.5.6 |
ggnetwork | 0.5.12 | ggnewscale | 0.4.9 |
ggpath | 1.0.1 | ggplot2 | 3.4.4 |
ggplotify | 0.1.2 | ggpmisc | 0.5.5 |
ggpp | 0.5.6 | ggpubr | 0.6.0 |
ggquiver | 0.3.3 | ggraph | 2.1.0 |
ggrepel | 0.9.5 | ggridges | 0.5.5 |
ggsci | 3.0.0 | 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.0.0 |
ggtree | 3.8.0 | ggvis | 0.4.8 |
gh | 1.4.0 | ghyp | 1.6.4 |
Gifi | 0.4-0 | gifti | 0.8.0 |
GIGrvg | 0.8 | gimme | 0.7-15 |
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 | glmmTMB | 1.1.8 |
glmnet | 4.1-8 | glmx | 0.2-0 |
GlobalOptions | 0.1.2 | 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-3 | gmt | 2.0.3 |
gmvarkit | 2.1.0 | 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 | 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 |
GPArotation | 2023.11-1 | GPCMlasso | 0.1-6 |
GPfit | 1.0-8 | gplots | 3.1.3 |
gradethis | 0.2.12.9004 | gRain | 1.4.1 |
graph | 1.78.0 | graphicalVAR | 0.3.3 |
graphlayouts | 1.0.2 | graphTweets | 0.5.3 |
grates | 1.1.0 | gratis | 1.0.5 |
gravitas | 0.1.3 | gravity | 1.1 |
gRbase | 2.0.1 | greeks | 1.3.1 |
greta | 0.4.3 | greybox | 2.0.0 |
grf | 2.3.1 | 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.1.2 |
GroupSeq | 1.4.2 | grplasso | 0.4-7 |
grwat | 0.0.4 | gsarima | 0.1-5 |
gsDesign | 3.6.0 | gSEM | 0.4.3.4 |
gsheet | 0.4.5 | gsignal | 0.3-5 |
gsisdecoder | 0.0.1 | gsl | 2.1-8 |
GSODR | 3.1.9 | gss | 2.2-7 |
gstat | 2.1-1 | gsubfn | 0.7 |
gsw | 1.1-1 | gsynth | 1.2.1 |
gt | 0.10.0 | 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-1 |
gwrr | 0.2-2 | GWSDAT | 3.2.0 |
hackeRnews | 0.1.0 | HandTill2001 | 1.0.1 |
HaploSim | 1.8.4.2 | hardhat | 1.3.0 |
hash | 2.2.6.3 | haven | 2.5.4 |
hbsae | 1.2 | HBV.IANIGLA | 0.2.6 |
hdf5r | 1.3.8 | hdi | 0.1-9 |
HDInterval | 0.2.4 | hdm | 0.3.1 |
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.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 |
HH | 3.1-49 | hht | 2.1.6 |
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 |
Hmisc | 5.1-1 | HMMpa | 1.0.1 |
HMP | 2.0.1 | HMPTrees | 1.4 |
hms | 1.1.3 | hoardr | 0.5.3 |
homals | 1.0-10 | hommel | 1.6 |
hoopR | 2.1.0 | howzatR | 1.0.1 |
hpfilter | 1.0.2 | HSAUR3 | 1.0-14 |
htm2txt | 2.2.2 | htmlTable | 2.4.2 |
htmltools | 0.5.7 | HTMLUtils | 0.1.8 |
htmlwidgets | 1.6.4 | hts | 6.0.2 |
htsr | 2.1.3 | httpcache | 1.2.0 |
httpcode | 0.3.0 | httping | 0.2.0 |
httpRequest | 0.0.11 | httptest | 4.2.1 |
httpuv | 1.6.13 | 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.3 |
hwriter | 1.3.2.1 | hwwntest | 1.3.2 |
hydraulics | 0.6.1 | hydroEvents | 0.11 |
hydrogeo | 0.6-1 | hydroloom | 1.0.1 |
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.5 | ibdreg | 0.3.8 |
iBreakDown | 2.1.2 | IBrokers | 0.10-2 |
ica | 1.0-3 | ICAOD | 1.0.1 |
icarus | 0.3.2 | ICC | 2.4.0 |
iccbeta | 1.2.0 | Icens | 1.72.0 |
ICGE | 0.4.2 | ichimoku | 1.4.12 |
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.20 | 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 | 1.6.0 | igraphdata | 1.0.1 |
illuminaio | 0.42.0 | imbibe | 0.1.1 |
imguR | 1.0.3 | immer | 1.4-15 |
implied | 0.5 | implyr | 0.4.0 |
import | 1.3.1 | impute | 1.74.1 |
imputeTestbench | 3.0.3 | imputeTS | 3.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.5 | influence.SEM | 2.3 |
influenceR | 0.1.5 | influxdbr | 0.14.2 |
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.7 | InspectChangepoint | 1.2 |
instaR | 0.2.4 | intamap | 1.5-7 |
interp | 1.1-5 | intervals | 0.15.4 |
inum | 1.0-5 | invgamma | 1.1 |
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.0 |
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 |
ismev | 1.42 | Iso | 0.0-21 |
isoband | 0.2.7 | ISOcodes | 2023.12.07 |
IsoGene | 1.0-24 | 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 |
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 | jstor | 0.3.11 |
juicyjuice | 0.1.0 | JuliaConnectoR | 1.1.3 |
JWileymisc | 1.4.1 | kableExtra | 1.3.4 |
kalmanfilter | 2.0.2 | kappaSize | 1.2 |
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 |
kitagawa | 3.1.0 | kiwisR | 0.2.0 |
klaR | 1.7-3 | km.ci | 0.5-6 |
kmer | 1.1.2 | knitcitations | 1.0.12 |
knitLatex | 0.9.0 | knitr | 1.45 |
koRpus | 0.13-8 | ks | 1.14.1 |
kst | 0.5-4 | kutils | 1.73 |
kza | 4.1.0.1 | labdsv | 2.1-0 |
label.switching | 1.8 | labeling | 0.4.3 |
labelled | 2.12.0 | labelVector | 0.1.2 |
laeken | 0.5.2 | LaF | 0.8.4 |
lagged | 0.3.2 | 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.7.3 |
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 | 2020-3.3 | LCAvarsel | 1.1 |
lcda | 0.3.1 | lctools | 0.2-8 |
lda | 1.4.2 | ldat | 0.3.3 |
ldbounds | 2.0.2 | leafem | 0.2.3 |
leaflet | 2.2.1 | leaflet.extras | 1.0.0 |
leaflet.providers | 2.0.0 | leafpm | 0.1.0 |
leafpop | 0.1.0 | leafsync | 0.1.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
learnr | 0.11.5 | legion | 0.1.2 |
lfactors | 1.0.4 | lfe | 2.9-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 | lidR | 4.0.4 |
lifecontingencies | 1.3.11 | lifecycle | 1.0.4 |
liftr | 0.9.2 | LIM | 1.4.7 |
limma | 3.56.1 | limSolve | 1.5.7 |
linelist | 1.0.0 | link2GI | 0.5-3 |
linpk | 1.1.2 | linprog | 0.9-4 |
LinRegInteractive | 0.3-3 | lintools | 0.1.7 |
lisrelToR | 0.1.5 | listenv | 0.9.0 |
liteq | 1.1.0 | lme4 | 1.1-35.1 |
lmerTest | 3.1-3 | lmForc | 0.1.0 |
lmm | 1.4 | lmodel2 | 1.7-3 |
lmom | 3.0 | lmomco | 2.4.13 |
Lmoments | 1.3-1 | lmomRFA | 3.6 |
lmtest | 0.9-40 | LNIRT | 0.5.1 |
lobstr | 1.1.2 | locfit | 1.5-9.8 |
locits | 1.7.7 | locpol | 0.8.0 |
logger | 0.2.2 | logging | 0.10-108 |
logitnorm | 0.8.38 | logitr | 1.1.1 |
logspline | 2.1.21 | lokern | 1.1-10.1 |
lomb | 2.1.0 | longCatEDA | 0.31 |
longitudinalData | 2.4.5.1 | longmemo | 1.1-2 |
LongMemoryTS | 0.1.0 | longpower | 1.0.24 |
longurl | 0.3.3 | loo | 2.6.0 |
lordif | 0.3-3 | lotri | 0.4.3 |
lpacf | 1.0.1 | lpdensity | 2.4 |
lpirfs | 0.2.3 | LPM | 2.9 |
lpSolve | 5.6.20 | lpSolveAPI | 5.5.2.0-17.11 |
lsa | 0.73.3 | lsl | 0.5.6 |
lslx | 0.6.11 | LSMonteCarlo | 1.0 |
LSMRealOptions | 0.2.1 | LSTS | 2.1 |
LSWPlib | 0.1.0 | ltm | 1.2-0 |
ltsa | 1.4.6 | lubridate | 1.9.3 |
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-13 | m5 | 0.1.1 |
maat | 1.1.0 | madrat | 3.6.4 |
magclass | 6.10.0 | magic | 1.6-1 |
magick | 2.8.2 | magrittr | 2.0.3 |
mailR | 0.8 | makeit | 1.0.1 |
makepipe | 0.2.1 | makeProject | 1.0 |
MAMS | 2.0.1 | manipulate | 1.0.1 |
manipulateWidget | 0.11.1 | MAPA | 2.0.6 |
mapdata | 2.3.1 | mapdeck | 0.3.4 |
mapedit | 0.6.0 | mapiso | 0.3.0 |
maplegend | 0.1.0 | mapme.biodiversity | 0.5.0 |
mapmisc | 2.0.3 | mapproj | 1.2.11 |
maps | 3.4.2 | mapsapi | 0.5.4 |
mapsf | 0.8.0 | mapSpain | 0.8.0 |
maptiles | 0.6.1 | 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.17.0 | margins | 0.3.26 |
markdown | 1.12 | markophylo | 1.0.9 |
markovchain | 0.9.5 | MarkowitzR | 1.0.3 |
marmap | 1.0.10 | MARSS | 3.11.8 |
MassSpecWavelet | 1.66.0 | Matching | 4.10-14 |
matchingMarkets | 1.0-4 | MatchIt | 4.5.5 |
MatchThem | 1.1.0 | mathjaxr | 1.6-0 |
matlab | 1.0.4 | matlab2r | 1.5.0 |
matlabr | 1.5.2 | matrixcalc | 1.0-6 |
MatrixExtra | 0.1.14 | MatrixModels | 0.5-3 |
matrixStats | 1.2.0 | maxLik | 1.5-2 |
MaxPro | 4.1-2 | MBA | 0.1-0 |
MBC | 0.10-6 | MBHdesign | 2.3.15 |
mblm | 0.12.1 | mboost | 2.9-9 |
mbsts | 3.0 | mc2d | 0.2.0 |
MCAvariants | 2.6.1 | mclcar | 0.2-0 |
mclust | 6.0.1 | mcmc | 0.9-8 |
mcmcensemble | 3.0.0 | MCMCglmm | 2.35 |
MCMCpack | 1.6-3 | 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 |
meta | 6.5-0 | metacoder | 0.3.6 |
metadat | 1.2-0 | metafor | 4.4-0 |
metaplot | 0.8.3 | metaSEM | 1.3.1 |
metasens | 1.5-2 | meteo | 2.0-2 |
meteoland | 2.2.1 | metR | 0.14.1 |
Metrics | 0.1.4 | metRology | 0.9-28-1 |
mFilter | 0.1-5 | mfx | 1.2-2 |
mgm | 1.2-14 | mgsub | 1.7.3 |
mhurdle | 1.3-0 | mi | 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.7 | microsamplingDesign | 1.0.8 |
Microsoft365R | 2.4.0 | MicSim | 2.0.0 |
midasr | 0.8 | MIIVsem | 0.5.8 |
mime | 0.12 | mind | 1.1.0 |
MinEDfind | 0.1.3 | miniCRAN | 0.2.16 |
minimalRSD | 1.0.0 | minimaxdesign | 0.1.5 |
miniUI | 0.1.1.1 | minpack.lm | 1.2-4 |
minqa | 1.2.6 | mipfp | 3.2.1 |
mirai | 0.11.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.3 |
mixOmics | 6.24.0 | mixsqp | 0.3-54 |
mixtools | 2.0.0 | mize | 0.2.4 |
mkssd | 1.2 | mlapi | 0.1.1 |
mlbench | 2.1-3.1 | mlbstats | 0.1.0 |
MLCIRTwithin | 2.1.1 | MLDS | 0.5.1 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlogitBMA | 0.1-7 | mlr | 2.19.1 |
mlr3 | 0.17.2 | mlr3learners | 0.5.8 |
mlr3measures | 0.5.0 | mlr3misc | 0.13.0 |
mlr3spatiotempcv | 2.2.0 | mlr3tuning | 0.19.2 |
mlrMBO | 1.1.5.1 | mlVAR | 0.5.1 |
mma | 10.7-1 | mmand | 1.6.3 |
mmrm | 0.3.7 | mnormt | 2.1.1 |
MNP | 3.1-4 | modeest | 2.4.0 |
modeldata | 1.2.0 | modelenv | 0.1.1 |
ModelMap | 3.4.0.4 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.11 | modelsummary | 1.4.3 |
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.12.0 |
mokken | 3.1.0 | mombf | 3.4.2 |
moments | 0.14.1 | momentuHMM | 1.5.5 |
mondate | 0.10.02 | mongolite | 2.7.3 |
mongopipe | 0.1.1 | monmlp | 1.1.5 |
monobin | 0.2.4 | Morpho | 2.12 |
mosaic | 1.9.0 | mosaicCore | 0.9.4.0 |
mosaicData | 0.20.4 | motmot | 2.1.3 |
mousetrap | 3.2.2 | move | 4.2.4 |
movecost | 2.0 | moveHMM | 1.9 |
moveWindSpeed | 0.2.4 | movMF | 0.2-8 |
MPDiR | 0.2 | MplusAutomation | 1.1.0 |
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.3.0 |
mritc | 0.5-3 | mschart | 0.4.0 |
mscstexta4r | 0.1.2 | mscsweblm4r | 0.1.2 |
MSGARCH | 2.51 | 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-9 |
multDM | 1.1.4 | multicool | 1.0.0 |
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.0 |
musica | 0.1.3 | mvglmmRank | 1.2-4 |
mvLSW | 1.2.5 | mvMORPH | 1.1.9 |
mvnfast | 0.2.8 | mvnormtest | 0.1-9 |
mvQuad | 1.0-8 | mvtnorm | 1.2-4 |
mvtsplot | 1.0-4 | mxkssd | 1.2 |
n1qn1 | 6.0.1-11 | nabor | 0.5.0 |
NADA | 1.6-1.1 | NAEPirtparams | 1.0.0 |
NAEPprimer | 1.0.1 | nanoarrow | 0.3.0.1 |
nanonext | 0.12.0 | nanotime | 0.3.7 |
nardl | 0.1.6 | nasapower | 4.1.0 |
natserv | 1.0.0 | naturalsort | 0.1.3 |
NBAloveR | 0.1.3.3 | nbapalettes | 0.1.0 |
nbTransmission | 1.1.3 | ncappc | 0.3.0 |
ncar | 0.5.0 | ncbit | 2013.03.29.1 |
ncdf4 | 1.22 | ncdfgeom | 1.1.5 |
ncf | 1.3-2 | ncmeta | 0.3.6 |
NCmisc | 1.2.0 | ncvreg | 3.14.1 |
ndjson | 0.9.0 | nets | 0.9.1 |
network | 1.18.2 | 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.1 | networktree | 1.0.1 |
neuralnet | 1.44.2 | NeuralNetTools | 1.5.3 |
neurobase | 1.32.3 | neuroim | 0.0.6 |
neuRosim | 0.2-14 | nFactors | 2.4.1.1 |
NFCP | 1.2.1 | nfl4th | 1.0.4 |
nflfastR | 4.6.1 | nflplotR | 1.2.0 |
nflreadr | 1.4.0 | nflseedR | 1.2.0 |
NFLSimulatoR | 0.4.0 | nflverse | 1.0.3 |
ngspatial | 1.2-2 | nhanesA | 1.0 |
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 | nimble | 1.0.1 |
NISTnls | 0.9-13 | NlcOptim | 0.6 |
nleqslv | 3.3.5 | NlinTS | 1.4.5 |
nlmeVPC | 2.6 | nlmixr2 | 2.1.0 |
nlmixr2data | 2.0.8 | nlmixr2est | 2.2.0 |
nlmixr2extra | 2.0.8 | nlmixr2plot | 2.0.7 |
nlmixr2rpt | 0.2.0 | nloptr | 2.0.3 |
NLP | 0.2-1 | nls2 | 0.3-3 |
nlsem | 0.8-1 | nlstools | 2.0-1 |
nlts | 1.0-2 | NMOF | 2.8-0 |
nmw | 0.1.5 | nnfor | 0.9.9 |
nnls | 1.5 | NNS | 10.5 |
noaastormevents | 0.2.0 | nodbi | 0.9.8 |
nomisr | 0.4.7 | nomnoml | 0.3.0 |
NonCompart | 0.7.0 | nonlinearTseries | 0.2.12 |
nonmemica | 1.0.8 | nonnest2 | 0.5-6 |
norm | 1.0-11.1 | normalp | 0.7.2.1 |
nortest | 1.0-4 | nosoi | 1.1.0 |
notifyme | 0.3.0 | np | 0.60-17 |
NPflow | 0.13.3 | npi | 0.2.0 |
nppbib | 1.2-0 | NPRED | 1.0.7 |
nsarfima | 0.2.0.0 | nse | 1.21 |
nsprcomp | 0.5.1-2 | numbers | 0.8-5 |
numDeriv | 2016.8-1.1 | nvmix | 0.1-0 |
o2geosocial | 1.1.0 | oai | 0.4.0 |
OAIHarvester | 0.3-4 | OasisR | 3.1.0 |
obAnalytics | 0.1.1 | OBsMD | 11.1 |
occ | 1.1 | oce | 1.8-2 |
octopus | 0.4.2 | odbc | 1.4.1 |
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.3.1 | officer | 0.6.3 |
ohoegdm | 0.1.0 | onbrand | 1.0.4 |
onlineforecast | 1.0.2 | opdisDownsampling | 0.8.3 |
OPDOE | 1.0-10 | openair | 2.18-0 |
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-4 | openssl | 2.1.1 |
OpenStreetMap | 0.4.0 | openxlsx | 4.2.5.2 |
opera | 1.2.0 | operator.tools | 1.6.3 |
operators | 0.1-8 | optextras | 2019-12.4 |
OptGS | 1.1.1 | OptHedging | 1.0 |
OptimalDesign | 1.0.1 | OptimaRegion | 1.2 |
optimParallel | 1.0-2 | optimx | 2023-10.21 |
OptionPricing | 0.1.2 | optiscale | 1.2.2 |
ORCME | 2.0.2 | orderly | 1.4.3 |
ordinal | 2023.12-4 | ore | 1.7.4.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 |
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 |
packrat | 0.9.2 | padr | 0.6.2 |
pageviews | 0.5.0 | PairedData | 1.1.1 |
pairwise | 0.6.1-0 | paleobuddy | 1.0.0 |
paleotree | 3.4.5 | paleoTS | 0.5.3 |
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 |
parallelly | 1.36.0 | parallelMap | 1.5.1 |
parameters | 0.21.3 | ParamHelpers | 1.14.1 |
params | 0.7.3 | paran | 1.5.2 |
parma | 1.7 | parsedate | 1.3.1 |
parsnip | 1.1.1 | partitions | 1.10-7 |
partsm | 1.1-3 | party | 1.3-14 |
partykit | 1.2-20 | pastecs | 1.3.21 |
patchwork | 1.2.0 | paws | 0.4.0 |
paws.analytics | 0.5.0 | paws.application.integration | 0.5.0 |
paws.common | 0.7.0 | paws.compute | 0.5.0 |
paws.cost.management | 0.4.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-10 | PBIBD | 1.3 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
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 |
PearsonDS | 1.3.0 | pedigree | 1.4.2 |
PeerPerformance | 2.2.5 | penalized | 0.9-52 |
penppml | 0.2.3 | perfectphyloR | 0.2.1 |
performance | 0.10.8 | PerformanceAnalytics | 2.0.4 |
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 | pheatmap | 1.0.12 |
phonics | 1.3.10 | phyclust | 0.1-34 |
phyext2 | 0.0.4 | phylobase | 0.8.10 |
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 | pillar | 1.9.0 |
pingr | 2.0.3 | pinnacle.data | 0.1.4 |
pins | 1.3.0 | pipe.design | 0.5.1 |
pipeR | 0.6.1.3 | 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.3 |
pkgcache | 2.2.1 | pkgconfig | 2.0.3 |
pkgdepends | 0.7.1 | pkgdown | 2.0.7 |
pkgfilecache | 0.1.4 | pkgload | 1.3.3 |
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-3 | PLMIX | 2.1.1 |
PLmixed | 0.1.7 | plogr | 0.2.0 |
plot3D | 1.4 | plotdap | 1.0.3 |
plotly | 4.10.3 | plotMCMC | 2.0.1 |
plotmo | 3.6.2 | plotrix | 3.8-4 |
plotROC | 2.3.1 | plotSEMM | 2.4 |
PlotTools | 0.3.0 | pls | 2.8-3 |
plumber | 1.2.1 | plyr | 1.8.9 |
pmc | 1.0.6 | pmr | 1.2.5.1 |
pmxTools | 1.3 | png | 0.1-8 |
pointblank | 0.11.4 | poisbinom | 1.0.1 |
poLCA | 1.6.0.1 | polspline | 1.1.24 |
polyclip | 1.10-6 | polycor | 0.8-1 |
polyCub | 0.9.0 | polynom | 1.4-1 |
PolynomF | 2.0-5 | polyreg | 0.8.0 |
pomp | 5.5 | pool | 1.0.1 |
PopED | 0.6.0 | popEpi | 0.4.11 |
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-4 |
PowerUpR | 1.1.0 | PP | 0.6.3-11 |
ppcor | 1.1 | PPRL | 0.3.8 |
pps | 1.0 | prabclus | 2.3-3 |
pracma | 2.4.4 | PracTools | 1.4.2 |
praise | 1.0.0 | pRecipe | 3.0.1-2 |
PreciseSums | 0.6 | prediction | 0.3.14 |
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.4 |
prettyunits | 1.2.0 | prevalence | 0.4.1 |
prevR | 5.0.0 | princurve | 2.1.6 |
prism | 0.2.1 | ProbitSpatial | 1.1 |
pROC | 1.18.5 | processx | 3.8.3 |
prodigenr | 0.6.2 | prodlim | 2023.08.28 |
ProfessR | 2.4-3 | profileModel | 0.6.1 |
profileR | 0.3-5 | profoc | 1.3.0 |
profvis | 0.3.8 | progress | 1.2.3 |
progressr | 0.14.0 | PROJ | 0.4.5 |
proj4 | 1.0-13 | projects | 2.1.3 |
ProjectTemplate | 0.10.4 | promises | 1.2.1 |
prophet | 1.0 | PROsetta | 0.4.1 |
proto | 1.0.0 | protoclust | 1.6.4 |
protolite | 2.3.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | pryr | 0.1.6 |
ps | 1.7.5 | pscl | 1.5.5.1 |
psd | 2.1.1 | PSF | 0.5 |
psidR | 2.1 | pso | 1.0.4 |
pspline | 1.0-19 | psy | 1.2 |
psych | 2.3.12 | psychomix | 1.1-8 |
psychonetrics | 0.11.5 | psychotools | 0.7-3 |
psychotree | 0.16-0 | psychTools | 2.3.12 |
psyphy | 0.3 | PTAk | 2.0.0 |
PTSR | 0.1.2 | ptw | 1.9-16 |
pubmed.mineR | 1.0.19 | 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.16.2 | PxWebApiData | 0.8.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.2.0 | qgraph | 1.9.8 |
qicharts2 | 0.7.4 | qlcal | 0.0.9 |
qmap | 1.0-4 | qMRI | 1.2.7 |
qpdf | 1.3.2 | qpNCA | 1.1.6 |
qqconf | 1.3.2 | qqplotr | 0.0.6 |
QRM | 0.4-31 | qrmdata | 2022-05-31-1 |
qrmtools | 0.0-16 | qrng | 0.0-9 |
qs | 0.25.7 | qtl | 1.66 |
quadprog | 1.5-8 | qualmap | 0.2.2 |
qualtRics | 3.1.7 | Quandl | 2.11.0 |
quanteda | 3.3.1 | quantification | 0.2.0 |
quantmod | 0.4.25 | quantreg | 5.97 |
quantspec | 1.2-3 | Quartet | 1.2.5 |
questionr | 0.7.8 | QuickJSR | 1.0.9 |
quickpsy | 0.1.5.1 | qvalue | 2.32.0 |
qvcalc | 1.0.3 | R.cache | 0.16.0 |
R.devices | 2.17.1 | R.filesets | 2.15.0 |
R.huge | 0.10.0 | R.matlab | 3.7.0 |
R.methodsS3 | 1.8.2 | R.oo | 1.25.0 |
R.rsp | 0.45.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 | R2OpenBUGS | 3.2-3.2.1 |
r2rtf | 1.1.1 | R2WinBUGS | 2.1-22 |
R4CouchDB | 0.7.5 | R6 | 2.5.1 |
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.2.7 | ragtop | 1.1.1 |
rainbow | 3.7 | rakeR | 0.2.1 |
rAmCharts | 2.1.15 | ramcmc | 0.1.2 |
ramify | 0.3.3 | ramps | 0.6.18 |
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.3 | 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 | Rbeast | 1.0.0 |
rbedrock | 0.3.2 | rbenchmark | 1.0.0 |
RBGL | 1.76.0 | 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 |
Rcgmin | 2022-4.30 | rchess | 0.1 |
Rchoice | 0.3-6 | rcmdcheck | 1.4.0 |
Rcmdr | 2.9-1 | RcmdrMisc | 2.9-1 |
RcmdrPlugin.DoE | 0.12-5 | RcmdrPlugin.temis | 0.7.10 |
RColorBrewer | 1.1-3 | Rcpp | 1.0.12 |
RcppAnnoy | 0.0.21 | RcppArmadillo | 0.12.6.6.1 |
RcppCCTZ | 0.2.12 | RcppDate | 0.0.3 |
RcppDE | 0.1.7 | RcppDist | 0.1.1 |
RcppEigen | 0.3.3.9.4 | RcppGSL | 0.3.13 |
RcppHungarian | 0.3 | RcppParallel | 5.1.7 |
RcppProgress | 0.4.2 | RcppQuantuccia | 0.1.2 |
RcppRedis | 0.2.4 | RcppRoll | 0.3.0 |
RcppSimdJson | 0.1.11 | RcppThread | 2.1.6 |
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.4 |
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 | readabs | 0.4.14 |
reader | 1.0.6 | readODS | 2.1.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.9 | reclin | 0.1.2 |
recmap | 1.0.17 | RecordLinkage | 0.4-12.4 |
redcapAPI | 2.8.0 | REDCapR | 1.1.0 |
REDCapTidieR | 1.0.0 | redland | 1.0.17-17 |
redux | 1.1.4 | RefManageR | 1.4.0 |
refugees | 2023.6.0 | regions | 0.1.8 |
registry | 0.5-1 | regress | 1.3-21 |
RegSDC | 0.7.0 | regsem | 1.9.5 |
regspec | 2.7 | regtools | 1.7.0 |
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.4.2.1 | REndo | 2.4.9 |
rentrez | 1.2.3 | renv | 1.0.3 |
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.6 |
represtools | 0.1.3 | reprex | 2.1.0 |
reproducible | 2.0.10 | reproj | 0.4.3 |
reqres | 0.2.5 | REQS | 0.8-13 |
request | 0.1.0 | Require | 0.3.1 |
rerddap | 1.0.4 | rerddapXtracto | 1.1.7 |
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.34.0 |
retrosheet | 1.1.5 | retry | 0.1.0 |
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.1 |
rfigshare | 0.3.8 | rflexscan | 1.1.0 |
rgbif | 3.7.9 | 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.2.8 |
Rglpk | 0.6-5 | RgoogleMaps | 1.5.1 |
RGraphics | 3.0-2 | Rgraphviz | 2.44.0 |
rgrass | 0.4-1 | rgrass7 | 0.2-13 |
RGreenplum | 0.1.2 | rgugik | 0.4.0 |
RH2 | 0.2.4 | rhandsontable | 0.3.8 |
rhdf5 | 2.44.0 | rhdf5filters | 1.12.1 |
Rhdf5lib | 1.22.0 | RHMS | 1.7 |
rhosa | 0.2.0 | RhpcBLASctl | 0.23-42 |
rhub | 1.1.2 | rib | 0.19.3 |
riingo | 0.3.1 | Rilostat | 1.1.8 |
ring | 1.0.5 | RInside | 0.2.18 |
rintrojs | 0.3.3 | 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.2 |
rivernet | 1.2.3 | rivr | 1.2-3 |
rjags | 4-15 | rJava | 1.0-10 |
RJDBC | 0.2-10 | RJDemetra | 0.2.4 |
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 | 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 | rmapshaper | 0.5.0 |
RMariaDB | 1.3.1 | rmarkdown | 2.25 |
rmatio | 0.19.0 | RMAWGEN | 1.3.7 |
rmeta | 3.0 | rmgarch | 1.3-9 |
Rmpfr | 0.9-4 | rms | 6.7-1 |
rmutil | 1.1.10 | RMySQL | 0.10.27 |
rnaturalearth | 1.0.1 | rnaturalearthdata | 0.1.0 |
RNCEP | 1.0.10 | rncl | 0.8.7 |
RND | 1.2 | rneos | 0.4-0 |
RNetCDF | 2.9-1 | RNeXML | 2.4.11 |
rngtools | 1.5.2 | rngWELL | 0.10-9 |
RNifti | 1.5.1 | RNiftyReg | 2.8.1 |
rnn | 1.9.0 | rnoaa | 1.4.0 |
rnrfa | 2.1.0 | 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.5-2 | robustbase | 0.99-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 | roll | 1.1.6 |
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.0 | rpact | 3.4.0 |
RPANDA | 2.2 | rpanel | 1.1-5.2 |
rpart.plot | 3.1.1 | rpdo | 0.3.2 |
rpf | 1.0.14 | Rphylopars | 0.3.9 |
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.2 |
rprojroot | 2.0.4 | RPushbullet | 0.3.4 |
RPyGeo | 1.0.0 | rpymat | 0.1.7 |
RQuantLib | 0.4.17 | rrcov | 1.7-4 |
rredlist | 0.7.1 | rrefine | 2.1.0 |
RRPP | 1.4.0 | RRreg | 0.7.5 |
RRTCS | 0.0.4 | rrum | 0.2.1 |
rsae | 0.2 | RSAGA | 1.4.0 |
Rsagacmd | 0.4.2 | rsample | 1.2.0 |
RSclient | 0.7-10 | rscopus | 0.6.6 |
rsdmx | 0.6-3 | RSEIS | 4.1-6 |
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.4 |
Rssa | 1.0.5 | rstac | 0.9.2-5 |
rstan | 2.32.5 | rstanarm | 2.26.1 |
rstantools | 2.3.1.1 | rstatix | 0.7.2 |
rstiefel | 1.0.1 | rStrava | 1.3.0 |
rstudioapi | 0.15.0 | rsurface | 1.1.0 |
RSurveillance | 0.2.1 | rsvg | 2.6.0 |
Rsymphony | 0.1-33 | rTensor | 1.4.8 |
rtf | 0.4-14.1 | RTFA | 0.1.0 |
rticles | 0.26 | RTL | 1.3.5 |
rtoot | 0.3.4 | rtop | 0.6-8 |
RTransferEntropy | 0.2.21 | rtrim | 2.1.1 |
rts | 1.1-14 | Rtsne | 0.17 |
Rttf2pt1 | 1.3.12 | rtweet | 1.2.1 |
rucrdtw | 0.1.6 | rugarch | 1.5-1 |
ruimtehol | 0.3.1 | rules | 1.0.2 |
runexp | 0.2.1 | RUnit | 0.4.32 |
runjags | 2.2.2-1.1 | runner | 0.4.3 |
runstats | 1.1.0 | Runuran | 0.38 |
rust | 1.4.2 | Rvcg | 0.22.2 |
rversions | 2.1.2 | rvest | 1.0.3 |
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.1 | rxode2et | 2.0.11 |
rxode2ll | 2.0.11 | rxode2parse | 2.0.17 |
rxode2random | 2.0.12 | RYandexTranslate | 1.0 |
s2 | 1.1.6 | S4Vectors | 0.38.1 |
sae | 1.3 | saeRobust | 0.4.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 | sandwich | 3.1-0 |
sarima | 0.9.1 | SAScii | 1.0.2 |
sass | 0.4.8 | satellite | 1.0.4 |
sazedR | 2.0.2 | sbgcop | 0.980 |
SBN | 1.0.0 | scales | 1.3.0 |
scalreg | 1.0.1 | scam | 1.2-14 |
scatterD3 | 1.0.1 | scatterplot3d | 0.3-44 |
scholar | 0.2.4 | SCI | 1.0-2 |
scoringRules | 1.1.1 | scoringutils | 1.2.2 |
ScottKnott | 1.3-2 | scs | 3.2.4 |
SDaA | 0.1-5 | sdcHierarchies | 0.21.0 |
sdcMicro | 5.7.7 | sdcSpatial | 0.5.2 |
sdcTable | 0.32.6 | sde | 2.0.18 |
sdmTMB | 0.4.1 | 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 |
secsse | 3.0.2 | seer | 1.1.8 |
seg | 0.5-7 | segmented | 2.0-1 |
selectr | 0.4-2 | seleniumPipes | 0.3.7 |
sem | 3.1-15 | semds | 0.9-6 |
SemiPar | 1.0-4.2 | semPlot | 1.1.6 |
SEMsens | 1.5.5 | semsfa | 1.1 |
semTools | 0.5-6 | semtree | 0.9.19 |
semver | 0.2.0 | sendmailR | 1.4-0 |
SensoMineR | 1.27 | sentencepiece | 0.2.3 |
separationplot | 1.4 | seqDesign | 1.2 |
seqinr | 4.2-36 | seriation | 1.5.4 |
servr | 0.28 | sessioninfo | 1.2.2 |
setartree | 0.2.1 | setRNG | 2022.4-1 |
sets | 1.0-25 | settings | 0.2.7 |
sf | 1.0-15 | sFFLHD | 0.1.2 |
sfheaders | 0.4.3 | sfsmisc | 1.1-16 |
sftime | 0.2-0 | sgd | 1.1.1 |
sgeostat | 1.0-27 | shades | 1.4.0 |
shape | 1.4.6 | shapefiles | 0.7.2 |
shapes | 1.2.7 | SharpeR | 1.3.0 |
shiny | 1.8.0 | shiny.semantic | 0.4.3 |
shinyAce | 0.4.2 | shinyalert | 3.0.0 |
shinybrms | 1.8.0 | shinyBS | 0.61.1 |
shinycssloaders | 1.0.0 | shinydashboard | 0.7.2 |
shinydashboardPlus | 2.0.3 | shinyFiles | 0.9.3 |
ShinyItemAnalysis | 1.5.0 | shinyjqui | 0.4.1 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinytest | 1.5.3 | shinythemes | 1.2.0 |
shinyTree | 0.3.1 | shinyWidgets | 0.8.1 |
showimage | 1.0.0 | showtext | 0.9-6 |
showtextdb | 3.0 | sigmoid | 1.4.0 |
signal | 1.8-0 | signs | 0.1.2 |
SigTree | 1.10.6 | Sim.DiffProc | 4.8 |
simcdm | 0.1.2 | SimComp | 3.3 |
simex | 1.8 | simfinapi | 0.2.4 |
simglm | 0.8.9 | SimilarityMeasures | 1.4 |
SimInf | 9.6.0 | 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 |
singleRcapture | 0.2.1.1 | siplab | 1.6 |
sirt | 3.13-228 | 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.6.1 |
slackr | 3.3.1 | slam | 0.1-50 |
SLBDD | 0.0.4 | sleekts | 1.0.2 |
sleeperapi | 1.0.4 | Sleuth2 | 2.0-5 |
Sleuth3 | 1.0-3 | SLHD | 2.1-1 |
slider | 0.3.1 | slippymath | 0.3.1 |
sm | 2.2-5.7.1 | smacof | 2.1-5 |
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.0 | smoother | 1.1 |
smoothr | 1.0.1 | smoots | 1.1.4 |
smovie | 1.1.6 | SMPracticals | 1.4-3 |
sms | 2.3.1 | 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 | SOAs | 1.4 |
soc.ca | 0.8.0 | socceR | 0.1.1 |
socialmixr | 0.3.1 | 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 | sorvi | 0.8.21 |
sourcetools | 0.1.7-1 | sp | 2.1-2 |
sp23design | 0.9-1 | spacetime | 1.3-1 |
spam | 2.10-0 | spaMM | 4.4.16 |
spant | 2.17.0 | sparklyr | 1.8.4 |
sparktex | 0.1 | sparr | 2.3-10 |
sparseDFM | 1.0 | SparseFactorAnalysis | 1.0 |
sparseinv | 0.1.3 | SparseM | 1.81 |
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.1 |
spatialreg | 1.3-1 | spatialsample | 0.5.1 |
SpatialTools | 1.0.5 | spatialwidget | 0.2.3 |
spatstat | 3.0-7 | spatstat.data | 3.0-3 |
spatstat.explore | 3.2-5 | spatstat.geom | 3.2-7 |
spatstat.linnet | 3.1-3 | spatstat.model | 3.2-8 |
spatstat.random | 3.2-2 | spatstat.sparse | 3.0-3 |
spatstat.utils | 3.0-4 | spBayes | 0.4-7 |
spBayesSurv | 1.1.7 | Spbsampling | 1.3.5 |
spd | 2.0-1 | spData | 2.3.0 |
spdep | 1.3-1 | spec | 0.1.7 |
spectral | 2.0 | speff2trial | 1.0.5 |
SPEI | 1.8.1 | sperrorest | 3.0.5 |
sphet | 2.0 | spiderbar | 0.2.5 |
spikeslab | 1.1.6 | spikeSlabGAM | 1.1-19 |
spINAR | 0.1.0 | spind | 2.2.1 |
splancs | 2.01-44 | splines2 | 0.5.1 |
splm | 1.6-5 | splus2R | 1.3-4 |
spmodel | 0.5.1 | spmoran | 0.2.2.9 |
SportsTour | 0.1.0 | sportyR | 2.2.1 |
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.16.1 |
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.5 |
stargazer | 5.2.3 | starma | 1.3 |
stars | 0.6-4 | starter | 0.1.14 |
STARTS | 1.3-8 | startupmsg | 0.9.6 |
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.4 |
stlplus | 0.5.1 | stm | 1.3.7 |
STMedianPolish | 0.2 | stochvol | 3.2.3 |
stockAnalyst | 1.0.1 | stopwords | 2.3 |
storr | 1.2.5 | 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.0.0 | stringr | 1.5.1 |
strucchange | 1.5-3 | strucchangeRcpp | 1.5-3-1.0.4 |
StructuralDecompose | 0.1.1 | styler | 1.10.2 |
subplex | 1.8 | subscore | 3.3 |
sufficientForecasting | 0.1.0 | sugrrants | 0.2.8 |
summclust | 0.7.2 | suntools | 1.0.0 |
SuperLearner | 2.0-28.1 | superml | 0.5.6 |
SuppDists | 1.1-9.7 | support.CEs | 0.7-0 |
surface | 0.5 | suRtex | 0.9 |
survcomp | 1.50.0 | surveillance | 1.22.1 |
survey | 4.2-1 | surveybootstrap | 0.0.3 |
surveydata | 0.2.7 | surveyoutliers | 0.1 |
surveyplanning | 4.0 | surveysd | 1.3.1 |
survivalROC | 1.0.3.1 | survPresmooth | 1.1-11 |
svars | 1.3.11 | svd | 0.5.5 |
SVDNF | 0.1.8 | svglite | 2.1.3 |
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.4 |
symmoments | 1.2.1 | SYNCSA | 1.3.4 |
Synth | 1.1-8 | synthACS | 1.7.1 |
synthesis | 1.2.4 | synthpop | 1.8-0 |
sys | 3.4.2 | sysfonts | 0.8.8 |
systemfit | 1.1-30 | systemfonts | 1.0.5 |
table1 | 1.4.3 | tables | 0.9.17 |
tabnet | 0.5.0 | TAF | 4.2.0 |
TAM | 4.1-4 | TAQMNGR | 2018.5-1 |
targets | 1.4.1 | tau | 0.0-25 |
taxize | 0.9.100 | TBRDist | 1.0.2 |
tbrf | 0.1.5 | tcltk2 | 1.2-11 |
Tcomp | 1.0.1 | tdigest | 0.4.1 |
TeachingDemos | 2.12 | 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.14.0 |
TensorPreAve | 1.1.0 | tensorTS | 1.0.1 |
TEQR | 6.0-0 | tergm | 4.2.0 |
Ternary | 2.3.0 | terra | 1.7-65 |
TESS | 2.1.2 | tesseract | 5.2.1 |
testcorr | 0.2.0 | TestDataImputation | 2.3 |
TestDesign | 1.5.1 | tester | 0.1.7 |
testit | 0.13 | TestScorer | 1.7.2 |
testthat | 3.2.1 | TexExamRandomizer | 1.2.3 |
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 | tfplot | 2021.6-1 |
tframe | 2015.12-1.1 | tfruns | 1.5.1 |
tgp | 2.4-22 | TH.data | 1.1-2 |
theft | 0.5.4.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.4 |
tibble | 3.2.1 | tibbletime | 0.1.8 |
tictoc | 1.2 | Tides | 2.1 |
tidyBdE | 0.3.4 | tidycensus | 1.5 |
tidygraph | 1.3.0 | tidyhydat | 0.6.1 |
tidyLPA | 1.1.0 | tidymodels | 1.1.1 |
tidyquant | 1.0.7 | tidyqwi | 0.1.2 |
tidyr | 1.3.0 | tidyREDCap | 1.1.1 |
tidyRSS | 2.0.7 | tidyselect | 1.2.0 |
tidysynth | 0.2.0 | tidytable | 0.10.2 |
tidytext | 0.4.1 | tidytree | 0.4.6 |
tidyverse | 2.0.0 | tiff | 0.1-12 |
tigris | 2.0.4 | tikzDevice | 0.12.6 |
timechange | 0.2.0 | timeDate | 4032.109 |
timeSeries | 4032.108 | timeseriesdb | 1.0.0-1.1.2 |
timetk | 2.9.0 | timsac | 1.3.8-4 |
tinyProject | 0.6.1 | tinytex | 0.49 |
tis | 1.39 | tkrplot | 0.0-27 |
TLMoments | 0.7.5.3 | tm | 0.7-11 |
tm.plugin.alceste | 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.10 | tmvnsim | 1.0-2 |
tmvtnorm | 1.6 | 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 |
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.2 |
trackdown | 1.1.1 | trackeR | 1.5.2 |
trackeRapp | 1.2 | TrackReconstruction | 1.3 |
tractor.base | 3.3.5.1 | traipse | 0.3.0 |
trajectories | 0.2-8 | trajr | 1.5.1 |
transfR | 1.0.11 | TransPhylo | 1.4.5 |
trapezoid | 2.0-2 | traudem | 1.0.1 |
tree | 1.0-43 | treebase | 0.1.4 |
TreeBUGS | 1.5.0 | treedater | 0.5.0 |
TreeDist | 2.7.0 | treeio | 1.24.0 |
treemap | 2.4-4 | TreeSearch | 1.4.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 | TSA | 1.3.1 |
TSANN | 0.1.0 | tsbox | 0.4.1 |
tsBSS | 1.0.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 |
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.3 |
tsibbledata | 0.4.1 | tsibbletalk | 0.1.0 |
tsintermittent | 1.10 | tsiR | 0.4.3 |
TSLSTM | 0.1.0 | tsModel | 0.6-1 |
tsoutliers | 0.6-8 | 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.1.2 |
turner | 0.1.7 | TUWmodel | 1.1-1 |
tvm | 0.5.2 | tweedie | 2.3.5 |
tweenr | 2.0.2 | twosamples | 2.0.1 |
txtq | 0.2.4 | tzdb | 0.4.0 |
uaparserjs | 0.3.5 | ubiquity | 2.0.1 |
ucminf | 1.2.1 | UComp | 4.0.2 |
udpipe | 0.8.11 | ufRisk | 1.0.7 |
ugatsdb | 0.2.3 | uGMAR | 3.4.5 |
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.3 | 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.2 |
usmap | 0.6.4 | usmapdata | 0.1.2 |
utf8 | 1.2.4 | utility | 1.4.6 |
uuid | 1.1-1 | uwot | 0.1.16 |
V8 | 4.4.1 | validate | 1.1.3 |
validatetools | 0.5.2 | vapour | 0.9.5 |
VAR.etp | 1.1 | VARDetect | 0.1.6 |
vardiag | 0.2-1 | vardpoor | 0.20.1 |
VaRES | 1.0.2 | vars | 1.6-0 |
VARshrink | 0.3.1 | varycoef | 0.3.4 |
VCA | 1.4.5 | vcd | 1.4-12 |
vcdExtra | 0.8-5 | vcr | 1.2.2 |
vctrs | 0.6.5 | vdg | 1.2.2 |
VedicDateTime | 0.1.9 | vegan | 2.6-4 |
vegperiod | 0.4.0 | VennDiagram | 1.7.3 |
venneuler | 1.1-3 | VGAM | 1.1-9 |
VGAMdata | 1.1-9 | vglmer | 1.0.3 |
VIC5 | 0.2.6 | VIM | 6.2.2 |
VineCopula | 2.5.0 | vip | 0.4.1 |
viridis | 0.6.4 | viridisLite | 0.4.2 |
visNetwork | 2.1.2 | visualize | 4.5.0 |
vkR | 0.2 | volatilityTrader | 1.0.1 |
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.3 | 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.2 | wbstats | 1.0.4 |
wCorr | 1.9.8 | WDI | 2.7.8 |
wdman | 0.2.6 | WebAnalytics | 0.9.12 |
webdriver | 1.0.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 | 0.14.2 | weights | 1.0.4 |
welo | 0.1.3 | WeMix | 4.0.3 |
whisker | 0.4.1 | whitebox | 2.3.4 |
whoami | 1.3.0 | widgetframe | 0.3.1 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
wikipediatrend | 2.1.6 | WikipediR | 1.5.0 |
wikitaxa | 0.4.0 | wildlifeDI | 0.5.1 |
windex | 2.0.7 | wINEQ | 1.2.0 |
withr | 2.5.2 | wk | 0.9.1 |
wktmo | 1.0.5 | wkutils | 0.1.3 |
wnl | 0.7.3 | 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.3 |
workflowsets | 1.0.1 | 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.4.2 | WriteXLS | 6.5.0 |
WRSS | 3.1 | wrswoR | 1.1.1 |
WRTDStidal | 1.1.4 | WufooR | 1.0.1 |
x12 | 1.10.3 | x13binary | 1.1.57-4 |
xaringan | 0.28 | XBRL | 0.99.19.1 |
xfun | 0.41 | xgboost | 1.7.6.1 |
xgxr | 1.1.2 | XLConnect | 1.0.7 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.16 | xml2 | 1.3.6 |
XML2R | 0.0.6 | xopen | 1.0.0 |
xplain | 0.2.2 | xpose | 0.4.17 |
xpose.nlmixr2 | 0.4.0 | xpose4 | 4.7.2 |
xslt | 1.4.4 | xtable | 1.8-4 |
xts | 0.13.1 | XVector | 0.40.0 |
xxIRT | 2.1.2 | yaImpute | 1.0-34 |
yaml | 2.3.8 | yardstick | 1.2.0 |
yesno | 0.1.2 | yhatr | 0.15.1 |
yorkr | 0.0.41 | yuima | 1.15.22 |
yulab.utils | 0.1.3 | zeallot | 0.1.0 |
zen4R | 0.9 | zic | 0.9.1 |
ZIM | 1.1.0 | ZINARp | 0.1.0 |
zip | 2.3.0 | zipfR | 0.6-70 |
zlibbioc | 1.46.0 | zoo | 1.8-12 |
ZRA | 0.2 | ztable | 0.2.3 |
zTree | 1.0.7 | zyp | 0.11-1 |
RShiny Server
R: 4.3.0
rshiny-server: 1.5.20.1002
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, Bayesian statistics, clinical trials, epidemiology, experimental design, psychometric methodology, analysis of pharmacokinetic data, medical image processing, teaching statistics, time series analysis, and natural language processing.
R packages (2291)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.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.1 | acp | 2.1 |
ACSWR | 1.0 | actuar | 3.3-2 |
ada | 2.0-5 | adaptivetau | 2.2-3 |
adaptMCMC | 1.4 | adaptr | 1.3.1 |
adaptsmoFMRI | 1.2 | adaptTest | 1.1 |
ade4 | 1.7-22 | ade4TkGUI | 0.3-1 |
adegenet | 2.1.10 | adegraphics | 1.0-18 |
adehabitatLT | 0.3.27 | adehabitatMA | 0.3.16 |
ADGofTest | 0.3 | adimpro | 0.9.5 |
admisc | 0.31 | AdMit | 2.1.9 |
AER | 1.2-10 | affy | 1.78.0 |
affyio | 1.70.0 | africamonitor | 0.2.3 |
agricolae | 1.3-5 | agricolaeplotr | 0.2.2 |
agridat | 1.21 | airports | 0.1.0 |
akima | 0.6-3.4 | alabama | 2022.4-1 |
AlgDesign | 1.2.1 | almanac | 1.0.0 |
alphavantager | 0.1.3 | ALTopt | 0.1.2 |
Amelia | 1.8.1 | ammiBayes | 1.0-1 |
AMR | 2.0.0 | AnaCoDa | 0.1.4.4 |
anacor | 1.1-4 | animation | 2.7 |
AnnotationDbi | 1.62.1 | anytime | 0.3.9 |
aod | 1.3.2 | AovBay | 0.1.0 |
ape | 5.7-1 | APFr | 1.0.2 |
aplot | 0.1.10 | approximator | 1.2-7 |
ARCensReg | 2.1 | ArchaeoChron | 0.1 |
ArchaeoPhases | 1.8 | ArDec | 2.1-1 |
ARDL | 0.2.3 | ardl.nardl | 1.2.3 |
arfima | 1.8-1 | arm | 1.13-1 |
aroma.apd | 0.6.1 | arrangements | 1.1.9 |
ars | 0.6 | ascii | 2.4 |
asd | 2.2 | ash | 1.0-15 |
ashr | 2.2-54 | askpass | 1.1 |
aspect | 1.0-6 | ASSA | 2.0 |
assertthat | 0.2.1 | astsa | 2.0 |
asymmetry | 2.0.4 | ata | 1.1.1 |
aTSA | 3.1.2 | attention | 0.3.0 |
AUC | 0.3.2 | audio | 0.1-10 |
automap | 1.1-9 | autostsm | 3.1.0 |
av | 0.8.3 | aweek | 1.0.3 |
aws | 2.5-1 | awsMethods | 1.1-1 |
BACCO | 2.0-9 | BACCT | 1.0 |
backports | 1.4.1 | baggr | 0.7.6 |
bain | 0.2.8 | BaM | 1.0.3 |
bama | 1.3.0 | bamdit | 3.4.0 |
bamlss | 1.1-9 | bang | 1.0.1 |
BANOVA | 1.2.1 | BART | 2.9.4 |
bartBMA | 1.0 | bartCause | 1.0-6 |
bartMachine | 1.3.3.1 | bartMachineJARs | 1.2.1 |
BAS | 1.6.4 | basad | 0.3.0 |
base64 | 2.0.1 | base64enc | 0.1-3 |
base64url | 1.4 | basicMCMCplots | 0.2.7 |
BaSkePro | 0.1.0 | BASS | 1.2.2 |
BatchExperiments | 1.4.3 | BatchJobs | 1.9 |
baycn | 1.2.0 | bayefdr | 0.2.1 |
bayes4psy | 1.2.11 | 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-8 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.2.0 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.4 |
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.1 |
BayesianNetwork | 0.1.5 | BayesianTools | 0.1.8 |
bayesImageS | 0.6-1 | BayesLCA | 1.9 |
bayesLife | 5.1-1 | bayeslincom | 1.3.0 |
BayesLN | 0.2.8 | BayesLogit | 2.1 |
bayesloglin | 1.0.1 | bayeslongitudinal | 0.1.0 |
bayesm | 3.1-5 | BayesMallows | 1.3.0 |
BayesMassBal | 1.1.0 | bayesmeta | 3.2 |
bayesmix | 0.7-6 | bayesnec | 2.1.0.3 |
bayesplot | 1.10.0 | bayesQR | 2.3 |
bayestestR | 0.13.1 | bayesTFR | 7.3-2 |
BayesTools | 0.2.13 | BayesTree | 0.3-1.4 |
BayesVarSel | 2.2.5 | BayesX | 0.3-1.1 |
BAYSTAR | 0.2-10 | BB | 2019.10-1 |
BBmisc | 1.13 | BCBCSF | 1.0-1 |
BCE | 2.2.0 | Bchron | 4.7.6 |
bcp | 4.0.3 | bcrm | 0.5.4 |
BDgraph | 2.72 | bdsmatrix | 1.3-6 |
BE | 0.2.4 | beadarray | 2.50.0 |
BeadDataPackR | 1.52.0 | beepr | 1.3 |
beeswarm | 0.4.0 | bentcableAR | 0.3.1 |
Bergm | 5.0.5 | BEST | 0.5.4 |
BetaBit | 2.1 | betafunctions | 1.8.1 |
betareg | 3.1-4 | BETS | 0.4.9 |
bets.covid19 | 1.0.0 | beyondWhittle | 1.1.3 |
bezier | 1.1.2 | bfast | 1.6.1 |
BGLR | 1.1.0 | BGVAR | 2.5.2 |
BH | 1.81.0-1 | BHH2 | 2016.05.31 |
BiasedUrn | 2.0.9 | biganalytics | 1.1.21 |
bigD | 0.2.0 | biglm | 0.9-2.1 |
bigmemory | 4.6.1 | bigmemory.sri | 0.1.6 |
bigsplines | 1.1-1 | bigtime | 0.2.1 |
BigVAR | 1.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | binom | 1.1-1.1 |
binomSamSize | 0.1-5 | binr | 1.1.1 |
binseqtest | 1.0.3 | Biobase | 2.60.0 |
BiocGenerics | 0.46.0 | BiocManager | 1.30.20 |
BiocParallel | 1.34.1 | BiocVersion | 3.17.1 |
bioinactivation | 1.2.3 | biomformat | 1.28.0 |
bioOED | 0.2.1 | Biostrings | 2.68.0 |
birtr | 1.0.0 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
biwavelet | 0.20.21 | bkmr | 0.2.2 |
blavaan | 0.4-7 | blob | 1.2.4 |
blocklength | 0.1.5 | blockrand | 1.5 |
blocksdesign | 4.9 | blockTools | 0.6.4 |
BLR | 1.6 | BMA | 3.18.17 |
bmixture | 1.7 | BMS | 0.3.5 |
BMTAR | 0.1.1 | bnlearn | 4.8.3 |
BNPTSclust | 2.0 | BNSP | 2.2.2 |
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 |
bookdown | 0.34 | Boom | 0.9.11 |
BoomSpikeSlab | 1.2.5 | bootnet | 1.5.1 |
BootPR | 0.70 | bootstrap | 2019.6 |
bootUR | 1.0.2 | bpca | 1.3-4 |
bqtl | 1.0-34 | BradleyTerry2 | 1.1-2 |
brainR | 1.6.0 | breakfast | 2.3 |
brew | 1.0-8 | brglm | 0.7.2 |
brglm2 | 0.9 | bridgesampling | 1.1-2 |
brio | 1.1.3 | brms | 2.19.0 |
Brobdingnag | 1.2-9 | broom | 1.0.4 |
bsamGP | 1.2.4 | bslib | 0.4.2 |
BsMD | 2020.4.30 | bspec | 1.6 |
bspmma | 0.1-2 | bssm | 2.0.1 |
BSSprep | 0.1 | bsts | 0.9.9 |
bsvars | 1.0.0 | BTLLasso | 0.1-11 |
BTM | 0.3.7 | bundesbank | 0.1-9 |
BVAR | 1.0.4 | bvartools | 0.2.1 |
ca | 0.71.1 | cabootcrs | 2.1.0 |
cachem | 1.0.8 | cacIRT | 1.4 |
CADFtest | 0.3-3 | caffsim | 0.2.2 |
Cairo | 1.6-0 | calculus | 1.0.1 |
calibrator | 1.2-8 | callr | 3.7.3 |
candisc | 0.8-6 | car | 3.1-2 |
CARBayes | 5.3 | CARBayesdata | 3.0 |
CARBayesST | 3.3.1 | carData | 3.0-5 |
caret | 6.0-94 | carfima | 2.0.2 |
caTools | 1.18.2 | catR | 3.17 |
causact | 0.4.2 | CausalImpact | 1.3.0 |
CAvariants | 5.8 | CDM | 8.2-6 |
cds | 1.0.3 | CellNOptR | 1.46.0 |
cellranger | 1.1.0 | chandwich | 1.1.5 |
changepoint | 2.2.4 | changepoint.geo | 1.0.1 |
changepoint.np | 1.0.5 | checkmate | 2.2.0 |
cherryblossom | 0.1.0 | chk | 0.8.1 |
choiceDes | 0.9-3 | CholWishart | 1.1.2 |
chron | 2.3-61 | cifti | 0.4.5 |
cinterpolate | 1.0.0 | CircSpaceTime | 0.9.0 |
CircStats | 0.2-6 | circular | 0.4-95 |
ciTools | 0.6.1 | classInt | 0.4-9 |
cli | 3.6.1 | clime | 0.5.0 |
clinDR | 2.3.5 | clinfun | 1.1.1 |
clinicalsignificance | 1.2.0 | clinPK | 0.11.1 |
clinsig | 1.2 | clipr | 0.8.0 |
clisymbols | 1.2.0 | clock | 0.7.0 |
clue | 0.3-64 | clustDRM | 0.1-0 |
clusterGeneration | 1.3.7 | clusterPower | 0.7.0 |
ClustVarLV | 2.1.1 | clv | 0.3-2.3 |
cmaes | 1.0-12 | CMLS | 1.0-1 |
cmprsk | 2.2-11 | cmrutils | 1.3.1 |
cNORM | 3.0.3 | CNORode | 1.42.0 |
coalescentMCMC | 0.4-4 | coalitions | 0.6.24 |
coarseDataTools | 0.6-6 | coconots | 1.1.1 |
cocor | 1.1-4 | cocorresp | 0.4-3 |
cocron | 1.0-1 | coda | 0.19-4 |
coin | 1.4-2 | cointReg | 0.2.0 |
collapse | 1.9.5 | collapsibleTree | 0.1.7 |
colorRamps | 2.3.1 | colorspace | 2.1-0 |
colourpicker | 1.2.0 | combinat | 0.0-8 |
CombinS | 1.1-1 | CommonJavaJars | 1.0-6 |
commonmark | 1.9.0 | compare | 0.2-6 |
CompQuadForm | 1.4.3 | conditionz | 0.1.0 |
conf.design | 2.0.0 | config | 0.3.1 |
conflicted | 1.2.0 | conquestr | 1.0.7 |
contactdata | 1.0.0 | contfrac | 1.1-12 |
cops | 1.3-1 | copula | 1.1-2 |
cordillera | 1.0-0 | coro | 1.0.3 |
corona | 0.3.0 | coronavirus | 0.4.1 |
corpcor | 1.6.10 | corpora | 0.5-1 |
corporaexplorer | 0.8.6 | corrgram | 1.14 |
corrplot | 0.92 | cosa | 2.1.0 |
costat | 2.4 | countrycode | 1.4.0 |
COVID19 | 3.0.3 | covid19.analytics | 2.1.3 |
covid19br | 0.1.5 | 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.1 | CPBayes | 1.1.0 |
cpk | 1.3-1 | cpp11 | 0.4.3 |
crayon | 1.5.2 | credentials | 1.3.2 |
crfsuite | 0.4.1 | CRM | 1.2.4 |
crmPack | 1.0.3 | crossdes | 1.1-2 |
Crossover | 0.1-21 | crosstalk | 1.2.0 |
crs | 0.15-37 | crul | 1.3 |
cSEM | 0.5.0 | csv | 0.6.2 |
ctbi | 2.0.5 | ctrdata | 1.13.1 |
CTT | 2.3.3 | CTTShiny | 0.1 |
ctv | 0.9-4 | cubature | 2.0.4.6 |
Cubist | 0.4.2.1 | curl | 5.0.0 |
cvar | 0.5 | cvAUC | 1.1.4 |
CVST | 0.2-3 | CVXR | 1.0-11 |
d3Network | 0.5.2.1 | DAAG | 1.25.4 |
dae | 3.2.15 | daewr | 1.2-10 |
dagitty | 0.3-1 | DAKS | 2.1-3 |
DALEX | 2.4.3 | data.table | 1.14.8 |
data.tree | 1.0.0 | DataExplorer | 0.8.2 |
datapasta | 3.1.0 | dataseries | 0.2.0 |
datawizard | 0.7.1 | date | 1.2-42 |
datetimeutils | 0.6-1 | dbarts | 0.9-23 |
DBI | 1.1.3 | dbparser | 2.0.1 |
dbplyr | 2.3.2 | dbscan | 1.1-11 |
DChaos | 0.1-7 | dclone | 2.3-0 |
dcov | 0.1.1 | dCovTS | 1.3 |
dcurver | 0.9.2 | dde | 1.0.4 |
deBInfer | 0.4.4 | debugme | 1.1.0 |
deldir | 1.0-6 | deltaPlotR | 1.6 |
dendextend | 1.17.1 | densEstBayes | 1.0-2.2 |
DEoptim | 2.2-8 | DEoptimR | 1.0-13 |
depmix | 0.9.16 | depmixS4 | 1.5-0 |
DepthProc | 2.1.5 | Deriv | 4.1.3 |
desc | 1.4.2 | DescTools | 0.99.49 |
designmatch | 0.4.1 | desirability | 2.1 |
deSolve | 1.35 | desplot | 1.10 |
devtools | 2.4.5 | dexter | 1.2.2 |
dextergui | 0.2.6 | dexterMST | 0.9.3 |
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 | 2020.10-1 | dfped | 1.1 |
dfpk | 3.5.1 | DHARMa | 0.4.6 |
diagis | 0.2.2 | diagram | 1.6.5 |
DiagrammeR | 1.0.9 | dials | 1.2.0 |
DiceDesign | 1.9 | DiceEval | 1.5.1 |
DiceKriging | 1.6.0 | DiceView | 2.1-0 |
dichromat | 2.0-0.1 | DICOMread | 0.0.0.3 |
DIFboost | 0.3 | diffobj | 0.3.5 |
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.31 | DIMORA | 0.3.4 |
dimRed | 0.2.6 | dina | 2.0.0 |
dipsaus | 0.2.6 | diptest | 0.76-0 |
Dire | 2.1.1 | DIRECT | 1.0.1 |
directlabels | 2021.1.13 | dirichletprocess | 0.4.1 |
disaggR | 1.0.5 | discretization | 1.0-1.1 |
DistatisR | 1.1.1 | distcrete | 1.0.3 |
distfree.cr | 1.5.1 | distr | 2.9.2 |
distrEx | 2.9.0 | distributional | 0.3.2 |
DistributionUtils | 0.6-0 | distrom | 1.0.1 |
distrTeach | 2.9.0 | divest | 0.10.3 |
dLagM | 1.1.8 | dlm | 1.1-6 |
dlnm | 2.4.7 | dmri.tracking | 0.1.0 |
doBy | 4.6.16 | doc2vec | 0.2.0 |
docopulae | 0.4.0 | DoE.base | 1.2-2 |
DoE.MIParray | 1.0 | DoE.wrapper | 0.11 |
doMC | 1.3.8 | doParallel | 1.0.17 |
doRNG | 1.8.6 | DoseFinding | 1.0-4 |
doSNOW | 1.0.20 | dotCall64 | 1.0-2 |
downlit | 0.4.2 | downloader | 0.4 |
dparser | 1.3.1-10 | dplyr | 1.1.2 |
dqrng | 0.3.0 | dr4pl | 2.0.0 |
DRR | 0.0.4 | dsa | 1.0.12 |
DSAIDE | 0.9.3 | dse | 2020.2-1 |
DSL | 0.1-7 | DT | 0.27 |
DTAT | 0.3-6 | dti | 1.5.1 |
dtplyr | 1.3.1 | DTSg | 1.1.1 |
dtt | 0.1-2 | dtts | 0.1.0 |
dtw | 1.23-1 | dtwclust | 5.5.12 |
dygraphs | 1.1.1.6 | dyn | 0.2-9.6 |
dynamicTreeCut | 1.63-1 | dynaTree | 1.2-15 |
dynlm | 0.3-6 | e1071 | 1.7-13 |
earlyR | 0.0.5 | earth | 5.3.2 |
easypower | 1.0.1 | eba | 1.10-0 |
EbayesThresh | 1.4-12 | ebdbNet | 1.2.7 |
EBImage | 4.42.0 | EBMAforecast | 1.0.3 |
ecb | 0.4.2 | Ecdat | 0.4-2 |
Ecfun | 0.3-2 | ecm | 6.3.0 |
ecodist | 2.0.9 | ECOSolveR | 0.5.5 |
ecp | 3.1.4 | edfReader | 1.2.1 |
edgeR | 3.42.2 | edina | 0.1.1 |
edmdata | 1.2.0 | edstan | 1.0.6 |
eegkit | 1.0-4 | eegkitdata | 1.1 |
EFAutilities | 2.1.2 | effects | 4.2-2 |
EGAnet | 1.2.3 | egg | 0.4.5 |
egor | 1.23.3 | eha | 2.10.3 |
eigenmodel | 1.11 | elasticnet | 1.3 |
ellipse | 0.4.5 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | EMD | 1.5.9 |
emg | 1.0.9 | emmeans | 1.8.6 |
emulator | 1.2-21 | encode | 0.3.6 |
endtoend | 2.29 | EngrExpt | 0.1-8 |
enrichwith | 0.3.1 | ensembleBMA | 5.1.8 |
EntropyMCMC | 1.0.4 | EnvStats | 2.7.0 |
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.3.2 |
epinet | 2.1.8 | epiR | 2.0.61 |
EpiReport | 1.0.2 | episensr | 1.2.0 |
epitools | 0.5-10.1 | epitrix | 0.4.0 |
equate | 2.0.8 | equateIRT | 2.3.0 |
equateMultiple | 0.1.1 | equivalence | 0.7.2 |
era | 0.4.1 | ergm | 4.4.0 |
ergm.ego | 1.0.1 | eRm | 1.0-2 |
errum | 0.0.3 | esaBcv | 1.2.1.1 |
esemifar | 1.0.1 | EstCRM | 1.6 |
estimability | 1.4.1 | EstimateGroupNetwork | 0.3.1 |
ETLUtils | 1.5 | etm | 1.1.1 |
etrunct | 0.1 | evaluate | 0.21 |
evd | 2.3-6.1 | evgam | 1.0.0 |
ewoc | 0.3.0 | Exact | 3.2 |
exams | 2.4-0 | exdex | 1.2.1 |
experiment | 1.2.1 | expint | 0.1-8 |
expm | 0.999-7 | ExPosition | 2.8.23 |
expsmooth | 2.3 | extraDistr | 1.9.1 |
extrafont | 0.19 | extrafontdb | 1.0 |
ez | 4.4-0 | fable | 0.3.3 |
fable.prophet | 0.1.0 | fabletools | 0.3.3 |
FactoMineR | 2.8 | factorstochvol | 1.0.1 |
fanplot | 4.0.0 | fansi | 1.0.4 |
faoutlier | 0.7.6 | faraway | 1.0.8 |
farver | 2.1.1 | fastDummies | 1.6.3 |
fastGHQuad | 1.0.1 | fastICA | 1.2-3 |
fastmap | 1.1.1 | fastmatch | 1.1-3 |
FAVAR | 0.1.3 | fBasics | 4022.94 |
fda | 6.0.5 | fdaACF | 1.0.0 |
fdapace | 0.5.9 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
feasts | 0.3.1 | fechner | 1.0-3 |
FeedbackTS | 1.5 | ff | 4.0.9 |
fftwtools | 0.9-11 | fGarch | 4022.89 |
fields | 14.1 | filearray | 0.1.5 |
filehash | 2.4-5 | filelock | 1.0.2 |
finnts | 0.2.4 | FinTS | 0.4-6 |
fitdistrplus | 1.1-11 | FKF | 0.2.4 |
FKF.SP | 0.3.1 | flashClust | 1.01-2 |
flexclust | 1.4-1 | flexdashboard | 0.6.1 |
flexmix | 2.3-19 | flextable | 0.9.1 |
float | 0.3-1 | fma | 2.5 |
FMC | 1.0.1 | FME | 1.3.6.2 |
fmri | 1.9.11 | fnets | 0.1.2 |
FNN | 1.1.3.2 | fNonlinear | 4021.81 |
fontawesome | 0.5.1 | fontBitstreamVera | 0.1.1 |
fontLiberation | 0.1.0 | fontquiver | 0.2.1 |
forcats | 1.0.0 | foreach | 1.5.2 |
ForeCA | 0.2.7 | forecast | 8.21 |
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.1 | formatR | 1.14 |
formattable | 0.2.1 | Formula | 1.2-5 |
formula.tools | 1.7.1 | fourPNO | 1.1.0 |
fpc | 2.2-10 | fpcb | 0.1.0 |
fpp2 | 2.5 | fpp3 | 0.5 |
fracdiff | 1.5-2 | fredr | 2.1.0 |
freesurferformats | 0.1.17 | freqdom | 2.0.3 |
freqdom.fda | 1.0.1 | fresh | 0.2.0 |
FrF2 | 2.3 | FrF2.catlg128 | 1.2-2 |
fs | 1.6.2 | fslr | 2.25.2 |
fsMTS | 0.1.7 | fst | 0.9.8 |
fstcore | 0.9.14 | ftsa | 6.1 |
functional | 0.6 | funtimes | 9.1 |
furrr | 0.3.1 | futile.logger | 1.4.3 |
futile.options | 1.0.1 | future | 1.32.0 |
future.apply | 1.10.0 | GA | 3.2.3 |
GAD | 1.1.1 | gam | 1.22-2 |
gamlr | 1.13-8 | gamlss | 5.4-12 |
gamlss.data | 6.0-2 | gamlss.dist | 6.0-5 |
gap | 1.5-1 | gap.datasets | 0.0.5 |
gargle | 1.4.0 | garma | 0.9.11 |
GAS | 0.3.4 | gasmodel | 0.3.0 |
gaussquad | 1.0-3 | gbm | 2.1.8.1 |
gbutils | 0.5 | gclus | 1.3.2 |
gdata | 2.19.0 | GDINA | 2.9.3 |
gdpc | 1.1.3 | gdtools | 0.3.3 |
geepack | 1.3.9 | genalg | 0.2.1 |
gender | 0.6.0 | GeneralizedHyperbolic | 0.8-4 |
generics | 0.1.3 | genetics | 1.3.8.1.3 |
GenomeInfoDb | 1.36.0 | GenomeInfoDbData | 1.2.10 |
GenomicRanges | 1.52.0 | GenSA | 1.1.8 |
geojsonsf | 2.0.3 | geometries | 0.2.2 |
geometry | 0.4.7 | GEOquery | 2.68.0 |
geoR | 1.9-2 | geosphere | 1.5-18 |
geospt | 1.0-2 | gert | 1.9.2 |
gets | 0.37 | gfonts | 0.2.0 |
GGally | 2.1.2 | ggalt | 0.4.0 |
gganimate | 1.0.8 | ggdag | 0.2.9 |
ggdemetra | 0.2.5 | ggdendro | 0.1.23 |
ggdist | 3.3.0 | ggExtra | 0.10.0 |
ggforce | 0.4.1 | ggformula | 0.10.4 |
ggfun | 0.0.9 | gghalves | 0.1.4 |
ggmap | 3.0.2 | ggmcmc | 1.5.1.1 |
ggplot2 | 3.4.2 | ggplotify | 0.1.0 |
ggpubr | 0.6.0 | ggraph | 2.1.0 |
ggrepel | 0.9.3 | ggridges | 0.5.4 |
ggsci | 3.0.0 | ggseas | 0.5.4 |
ggsignif | 0.6.4 | ggstance | 0.3.6 |
ggtext | 0.1.2 | ggtree | 3.8.0 |
ggvis | 0.4.8 | gh | 1.4.0 |
Gifi | 0.4-0 | gifti | 0.8.0 |
GIGrvg | 0.8 | gimme | 0.7-13 |
git2r | 0.32.0 | gitcreds | 0.1.2 |
glarma | 1.6-0 | GlarmaVarSel | 1.0 |
glasso | 1.11 | glassoFast | 1.0 |
gld | 2.6.6 | GLMMRR | 0.5.0 |
glmnet | 4.1-7 | globals | 0.16.2 |
glpkAPI | 1.3.4 | glue | 1.6.2 |
GMDH | 1.6 | gmm | 1.7 |
gmodels | 2.18.1.1 | gmp | 0.7-1 |
gmvarkit | 2.0.6 | GNAR | 1.1.2 |
gnm | 1.1-2 | GO.db | 3.17.0 |
goftest | 1.2-3 | googledrive | 2.1.0 |
googlesheets4 | 1.1.0 | googleVis | 0.7.1 |
gower | 1.0.1 | GPArotation | 2023.3-1 |
GPCMlasso | 0.1-6 | GPfit | 1.0-8 |
gplots | 3.1.3 | gradethis | 0.2.12.9004 |
gRain | 1.3.13 | graph | 1.78.0 |
graphicalVAR | 0.3.1 | graphlayouts | 1.0.0 |
grates | 1.0.1 | gratis | 1.0.3 |
gravitas | 0.1.3 | gRbase | 1.8.9 |
greta | 0.4.3 | greybox | 1.0.8 |
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.2-0 | grnn | 0.1.0 |
GroupSeq | 1.4.2 | grplasso | 0.4-7 |
gsarima | 0.1-5 | gsDesign | 3.4.0 |
gSEM | 0.4.3.4 | gsignal | 0.3-5 |
gsl | 2.1-8 | gss | 2.2-4 |
gstat | 2.1-1 | gsubfn | 0.7 |
gt | 0.9.0 | gtable | 0.3.3 |
gtheory | 0.1.2 | gtools | 3.9.4 |
gtop | 0.2.0 | HaploSim | 1.8.4.2 |
hardhat | 1.3.0 | hash | 2.2.6.2 |
haven | 2.5.2 | hbsae | 1.2 |
hdf5r | 1.3.8 | HDInterval | 0.2.4 |
HDMT | 1.0.5 | hdrcde | 3.4 |
HDTSA | 1.0.2 | heatmaply | 1.4.2 |
heplots | 1.4-2 | here | 1.0.1 |
hett | 0.3-3 | hexbin | 1.28.3 |
hflights | 0.1 | HH | 3.1-49 |
hht | 2.1.6 | highcharter | 0.9.4 |
highlight | 0.5.1 | highr | 0.10 |
HIMA | 2.2.0 | HKRbook | 0.1.3 |
Hmisc | 5.1-0 | HMMpa | 1.0.1 |
hms | 1.1.3 | homals | 1.0-10 |
hommel | 1.6 | hpfilter | 1.0.1 |
HSAUR3 | 1.0-14 | htmlTable | 2.4.1 |
htmltools | 0.5.5 | htmlwidgets | 1.6.2 |
hts | 6.0.2 | httpcode | 0.3.0 |
httpuv | 1.6.10 | httr | 1.4.6 |
httr2 | 0.2.3 | hunspell | 3.0.2 |
hutils | 1.8.1 | hwwntest | 1.3.1 |
HydroMe | 2.0-1 | HyperbolicDist | 0.6-4 |
hypergeo | 1.2-13 | i2extras | 0.2.1 |
iarm | 0.4.3 | ibd | 1.5 |
iBreakDown | 2.0.1 | ica | 1.0-3 |
ICAOD | 1.0.1 | ICC | 2.4.0 |
iccbeta | 1.2.0 | Icens | 1.72.0 |
ICS | 1.3-1 | ICSNP | 1.1-1 |
ICtest | 0.3-5 | idefix | 1.0.3 |
IDPmisc | 1.1.20 | ids | 1.0.1 |
ifaTools | 0.23 | igraph | 1.4.2 |
igraphdata | 1.0.1 | illuminaio | 0.42.0 |
imbibe | 0.1.1 | immer | 1.4-15 |
impute | 1.74.1 | imputeTestbench | 3.0.3 |
imputeTS | 3.3 | IncDTW | 1.1.4.4 |
incidence | 1.7.3 | incidence2 | 2.0.0 |
ineq | 0.2-13 | infer | 1.0.4 |
influence.SEM | 2.3 | influenceR | 0.1.0.2 |
influxdbr | 0.14.2 | ingredients | 2.3.0 |
ini | 0.3.1 | inline | 0.3.19 |
insight | 0.19.1 | InspectChangepoint | 1.2 |
interp | 1.1-4 | intervals | 0.15.3 |
inum | 1.0-5 | invgamma | 1.1 |
ipred | 0.9-14 | IRanges | 2.34.0 |
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.3.1 | IsingSampler | 0.2.1 |
Iso | 0.0-18.1 | isoband | 0.2.7 |
ISOcodes | 2022.09.29 | IsoGene | 1.0-24 |
ISOweek | 0.6-2 | ISwR | 2.0-8 |
iterators | 1.0.14 | iterLap | 1.1-3 |
itertools | 0.1-3 | itsmr | 1.10 |
JADE | 2.0-3 | jalcal | 0.1.0 |
janeaustenr | 1.0.0 | janitor | 2.2.0 |
JavaGD | 0.6-5 | jiebaR | 0.11 |
jiebaRD | 0.1 | jjb | 0.1.1 |
JMdesign | 1.3 | jpeg | 0.1-10 |
jqr | 1.2.3 | jquerylib | 0.1.4 |
jrt | 1.1.2 | jsonify | 1.2.2 |
jsonlite | 1.8.4 | juicyjuice | 0.1.0 |
JuliaConnectoR | 1.1.1 | kableExtra | 1.3.4 |
kalmanfilter | 2.0.1 | kappaSize | 1.2 |
KEGGREST | 1.40.0 | Kendall | 2.2.1 |
kequate | 1.6.4 | keras | 2.11.1 |
kernelFactory | 0.3.0 | kernlab | 0.9-32 |
KFAS | 1.5.0 | klaR | 1.7-2 |
km.ci | 0.5-6 | knitr | 1.42 |
koRpus | 0.13-8 | ks | 1.14.0 |
kst | 0.5-4 | kutils | 1.70 |
kza | 4.1.0.1 | labdsv | 2.1-0 |
label.switching | 1.8 | labeling | 0.4.2 |
labelled | 2.11.0 | LaF | 0.8.4 |
lagged | 0.3.2 | Lahman | 11.0-0 |
LAM | 0.6-19 | lambda.r | 1.2.4 |
languageR | 1.5.0 | LaplacesDemon | 16.1.6 |
lars | 1.3 | lassoshooting | 0.1.5-1.1 |
latdiag | 0.3 | later | 1.3.1 |
latex2exp | 0.9.6 | latticeExtra | 0.6-30 |
lava | 1.7.2.1 | lavaan | 0.6-15 |
lavaan.survey | 1.1.3.1 | LAWBL | 1.5.0 |
lazyeval | 0.2.2 | lbfgsb3c | 2020-3.2 |
LCAvarsel | 1.1 | lcda | 0.3.1 |
lda | 1.4.2 | ldbounds | 2.0.1 |
leafem | 0.2.0 | leaflet | 2.1.2 |
leaflet.providers | 1.9.0 | leafpop | 0.1.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
learnr | 0.11.3.9000 | legion | 0.1.2 |
lgr | 0.4.4 | lgtdl | 1.1.5 |
lhs | 1.1.6 | libcoin | 1.0-9 |
lifecycle | 1.0.3 | LIM | 1.4.7 |
limma | 3.56.1 | limSolve | 1.5.6 |
linelist | 0.0.1 | linpk | 1.1.2 |
linprog | 0.9-4 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | lme4 | 1.1-33 |
lmerTest | 3.1-3 | lmm | 1.3 |
lmom | 2.9 | Lmoments | 1.3-1 |
lmtest | 0.9-40 | LNIRT | 0.5.1 |
locfit | 1.5-9.7 | locits | 1.7.6 |
locpol | 0.8.0 | logitnorm | 0.8.38 |
logspline | 2.1.19 | lokern | 1.1-10 |
lomb | 2.1.0 | longitudinalData | 2.4.5 |
longmemo | 1.1-2 | LongMemoryTS | 0.1.0 |
longpower | 1.0.24 | loo | 2.6.0 |
lordif | 0.3-3 | lotri | 0.4.3 |
lpacf | 1.0.1 | lpSolve | 5.6.18 |
lpSolveAPI | 5.5.2.0-17.9 | lsa | 0.73.3 |
lsl | 0.5.6 | lslx | 0.6.11 |
LSTS | 2.1 | LSWPlib | 0.1.0 |
ltm | 1.2-0 | ltsa | 1.4.6 |
lubridate | 1.9.2 | luz | 0.4.0 |
lvnet | 0.3.5 | lvplot | 0.2.1 |
lwgeom | 0.2-13 | m5 | 0.1.1 |
maat | 1.1.0 | magic | 1.6-1 |
magick | 2.7.4 | magrittr | 2.0.3 |
MAMS | 2.0.1 | manipulateWidget | 0.11.1 |
MAPA | 2.0.5 | mapdata | 2.3.1 |
mapproj | 1.2.11 | maps | 3.4.1 |
maptools | 1.1-6 | maptree | 1.4-8 |
mapview | 2.11.0 | mAr | 1.2-0 |
mar1s | 2.1.1 | markdown | 1.6 |
MARSS | 3.11.8 | MassSpecWavelet | 1.66.0 |
Matching | 4.10-8 | MatchIt | 4.5.3 |
mathjaxr | 1.6-0 | matlabr | 1.5.2 |
matrixcalc | 1.0-6 | MatrixExtra | 0.1.13 |
MatrixModels | 0.5-1 | matrixStats | 0.63.0 |
maxLik | 1.5-2 | MaxPro | 4.1-2 |
MBA | 0.1-0 | MBHdesign | 2.2.2 |
mboost | 2.9-7 | mbsts | 3.0 |
mc2d | 0.1-22 | MCAvariants | 2.6 |
mclcar | 0.2-0 | mclust | 6.0.0 |
mcmc | 0.9-7 | mcmcensemble | 3.0.0 |
MCMCglmm | 2.34 | MCMCpack | 1.6-3 |
mcmcse | 1.5-0 | MCMCvis | 0.16.0 |
Mcomp | 2.8 | mcompanion | 0.5.6 |
MCPMod | 1.0-10.1 | meboot | 1.4-9.3 |
Mediana | 1.0.8 | mediation | 4.5.0 |
MEIGOR | 1.33.0 | mem | 2.17 |
memapp | 2.15 | memisc | 0.99.31.6 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
meta | 6.2-1 | metadat | 1.2-0 |
metafor | 4.2-0 | metaplot | 0.8.3 |
metaSEM | 1.3.0 | metasens | 1.5-2 |
Metrics | 0.1.4 | metRology | 0.9-28-1 |
mFilter | 0.1-5 | mgm | 1.2-13 |
mi | 1.1 | mice | 3.15.0 |
microbenchmark | 1.4.10 | microsamplingDesign | 1.0.8 |
MIIVsem | 0.5.8 | mime | 0.12 |
MinEDfind | 0.1.3 | minimalRSD | 1.0.0 |
minimaxdesign | 0.1.5 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-3 | minqa | 1.2.5 |
mirt | 1.38.1 | mirtCAT | 1.12.2 |
misc3d | 0.9-1 | miscTools | 0.6-28 |
missForest | 1.5 | missMDA | 1.18 |
mitools | 2.4 | mix | 1.0-11 |
mixAR | 0.22.7 | MixedPsy | 1.1.0 |
mixexp | 1.2.7 | mixOmics | 6.24.0 |
mixsqp | 0.3-48 | mixtools | 2.0.0 |
mkssd | 1.2 | mlapi | 0.1.1 |
mlbench | 2.1-3.1 | MLCIRTwithin | 2.1.1 |
MLDS | 0.4.901 | mlmRev | 1.0-8 |
mlogit | 1.1-1 | mlogitBMA | 0.1-7 |
mlr3 | 0.16.0 | mlr3measures | 0.5.0 |
mlr3misc | 0.11.0 | mlVAR | 0.5.1 |
mma | 10.6-1 | mmand | 1.6.3 |
mmrm | 0.2.2 | mnormt | 2.1.1 |
MNP | 3.1-4 | modeldata | 1.1.0 |
modelenv | 0.1.1 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.11 | modeltime | 1.2.6 |
modeltime.ensemble | 1.0.3 | modeltime.resample | 0.2.3 |
modeltools | 0.2-23 | moderndive | 0.5.5 |
mokken | 3.0.6 | mombf | 3.3.1 |
moments | 0.14.1 | mondate | 0.10.02 |
monmlp | 1.1.5 | Morpho | 2.11 |
mosaic | 1.8.4.2 | mosaicCore | 0.9.2.1 |
mosaicData | 0.20.3 | movMF | 0.2-7 |
MPDiR | 0.1-20 | MplusAutomation | 1.1.0 |
mpmi | 0.43.2 | mpt | 0.8-0 |
MPTinR | 1.14.1 | MPV | 1.62 |
mratios | 1.4.2 | mrf | 0.1.6 |
mrgsolve | 1.0.9 | mritc | 0.5-3 |
mscstexta4r | 0.1.2 | mscsweblm4r | 0.1.2 |
msm | 1.7 | msos | 1.2.0 |
mssm | 0.1.6 | mstate | 0.3.2 |
MSwM | 1.5 | MTS | 1.2.1 |
mtsdi | 0.3.5 | mudfold | 1.1.21 |
multcomp | 1.4-23 | multcompView | 0.1-9 |
multDM | 1.1.4 | multicool | 0.1-12 |
MultiGlarmaVarSel | 1.0 | MultiLCIRT | 2.11 |
MultipleBubbles | 0.2.0 | multiplex | 2.9.9 |
multipol | 1.0-7 | multitaper | 1.0-15 |
multiway | 1.0-6 | multtest | 2.56.0 |
MuMIn | 1.47.5 | munfold | 0.3.5 |
munsell | 0.5.0 | mvLSW | 1.2.5 |
mvMORPH | 1.1.7 | mvnfast | 0.2.8 |
mvQuad | 1.0-6 | mvtnorm | 1.1-3 |
mxkssd | 1.2 | n1qn1 | 6.0.1-11 |
NADA | 1.6-1.1 | nanotime | 0.3.7 |
nardl | 0.1.6 | natserv | 1.0.0 |
nbTransmission | 1.1.2 | ncappc | 0.3.0 |
ncar | 0.4.5 | ncvreg | 3.14.1 |
nets | 0.9.1 | network | 1.18.1 |
NetworkChange | 0.8 | NetworkComparisonTest | 2.2.1 |
networkD3 | 0.4 | networkDynamic | 0.11.3 |
networkLite | 1.0.5 | NetworkToolbox | 1.4.2 |
networktools | 1.5.0 | networktree | 1.0.1 |
neuralnet | 1.44.2 | neurobase | 1.32.3 |
neuroim | 0.0.6 | neuRosim | 0.2-13 |
nFactors | 2.4.1.1 | nhanesA | 0.7.3 |
nifti.io | 1.0.0 | nimble | 1.0.0 |
NISTnls | 0.9-13 | NlcOptim | 0.6 |
nleqslv | 3.3.4 | NlinTS | 1.4.5 |
nlmeVPC | 2.6 | nlmixr2 | 2.0.9 |
nlmixr2data | 2.0.7 | nlmixr2est | 2.1.5 |
nlmixr2extra | 2.0.8 | nlmixr2plot | 2.0.7 |
nlmixr2rpt | 0.1.0 | nloptr | 2.0.3 |
NLP | 0.2-1 | nls2 | 0.3-3 |
nlsem | 0.8 | nlstools | 2.0-0 |
nlts | 1.0-2 | nmw | 0.1.5 |
nnfor | 0.9.8 | nnls | 1.4 |
nodbi | 0.9.4 | NonCompart | 0.6.0 |
nonlinearTseries | 0.2.12 | nonmemica | 1.0.1 |
nonnest2 | 0.5-5 | nortest | 1.0-4 |
nosoi | 1.1.0 | np | 0.60-17 |
nppbib | 1.2-0 | nsarfima | 0.2.0.0 |
nsprcomp | 0.5.1-2 | numbers | 0.8-5 |
numDeriv | 2016.8-1.1 | o2geosocial | 1.1.0 |
oai | 0.4.0 | OBsMD | 6.1 |
occ | 1.1 | odbc | 1.3.4 |
odin | 1.2.4 | odpc | 2.0.5 |
odr | 1.4.2 | officer | 0.6.2 |
ohoegdm | 0.1.0 | onbrand | 1.0.2 |
onlineforecast | 1.0.1 | OPDOE | 1.0-10 |
openEBGM | 0.8.3 | openintro | 2.4.0 |
OpenMx | 2.21.8 | openNLP | 0.2-7 |
openNLPdata | 1.5.3-4 | openssl | 2.0.6 |
openxlsx | 4.2.5.2 | opera | 1.2.0 |
operator.tools | 1.6.3 | optextras | 2019-12.4 |
OptGS | 1.1.1 | OptimalDesign | 1.0.1 |
OptimaRegion | 1.2 | optimParallel | 1.0-2 |
optimx | 2022-4.30 | optiscale | 1.2.2 |
ORCME | 2.0.2 | ordinal | 2022.11-16 |
ore | 1.7.3.1 | ORIClust | 1.0-2 |
oro.dicom | 0.5.3 | oro.nifti | 0.11.4 |
oro.pet | 0.2.7 | orthopolynom | 1.0-6.1 |
osDesign | 1.8 | osqp | 0.6.0.8 |
otsad | 0.2.0 | otsfeatures | 1.0.0 |
outbreaker2 | 1.1.3 | outbreaks | 1.9.0 |
overlapping | 2.1 | padr | 0.6.2 |
PairedData | 1.1.1 | pairwise | 0.6.1-0 |
paleoTS | 0.5.3 | palmerpenguins | 0.1.1 |
pander | 0.6.5 | paradox | 0.11.1 |
parallelly | 1.35.0 | paran | 1.5.2 |
parsedate | 1.3.1 | parsnip | 1.1.0 |
partitions | 1.10-7 | partsm | 1.1-3 |
party | 1.3-13 | partykit | 1.2-20 |
pastecs | 1.3.21 | patchwork | 1.1.2 |
pbapply | 1.7-0 | PBIBD | 1.3 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
pbmcapply | 1.5.1 | pbs | 1.1 |
PBSddesolve | 1.13.3 | PBSmapping | 2.73.2 |
pbv | 0.4-22 | PCA4TS | 0.1 |
pcaMethods | 1.92.0 | pcaPP | 2.0-3 |
pcdpca | 0.4 | pcFactorStan | 1.5.3 |
pcIRT | 0.2.4 | PCMRS | 0.1-4 |
pcts | 0.15.5 | pdc | 1.0.3 |
pdfCluster | 1.0-4 | pdfetch | 0.2.8 |
pdftools | 3.3.3 | pdist | 1.2.1 |
pedigree | 1.4.2 | penalized | 0.9-52 |
performance | 0.10.3 | PerformanceAnalytics | 2.0.4 |
permute | 0.9-7 | PGM2 | 1.0-1 |
ph2bayes | 0.0.2 | ph2bye | 0.1.4 |
phangorn | 2.11.1 | pheatmap | 1.0.12 |
phonics | 1.3.10 | phyloseq | 1.44.0 |
phytools | 1.5-1 | picasso | 1.3.1 |
pid | 0.50 | piecewiseSEM | 2.3.0 |
pillar | 1.9.0 | pingr | 2.0.2 |
pins | 1.1.0 | pipe.design | 0.5.1 |
pipeR | 0.6.1.3 | pixmap | 0.4-12 |
PK | 1.3-5 | PKconverter | 1.5 |
pkdata | 0.1.0 | pkgbuild | 1.4.0 |
pkgconfig | 2.0.3 | pkgdown | 2.0.7 |
pkgfilecache | 0.1.4 | pkgload | 1.3.2 |
PKNCA | 0.10.2 | pkr | 0.1.3 |
pks | 0.5-0 | PlackettLuce | 0.4.2 |
plgp | 1.1-12 | plink | 1.5-1 |
plm | 2.6-3 | PLMIX | 2.1.1 |
PLmixed | 0.1.6 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.1 |
plotMCMC | 2.0.1 | plotmo | 3.6.2 |
plotrix | 3.8-2 | plotSEMM | 2.4 |
pls | 2.8-2 | plyr | 1.8.8 |
pmr | 1.2.5.1 | pmxTools | 1.3 |
png | 0.1-8 | poisbinom | 1.0.1 |
poLCA | 1.6.0.1 | polspline | 1.1.22 |
polyclip | 1.10-4 | polycor | 0.8-1 |
polyCub | 0.8.1 | polynom | 1.4-1 |
PolynomF | 2.0-5 | polyreg | 0.8.0 |
pomp | 5.1 | PopED | 0.6.0 |
popEpi | 0.4.10 | posterior | 1.4.1 |
powerbydesign | 1.0.5 | powerGWASinteraction | 1.1.3 |
powerSurvEpi | 0.1.3 | PowerTOST | 1.5-4 |
PowerUpR | 1.1.0 | PP | 0.6.3-11 |
ppcor | 1.1 | prabclus | 2.3-2 |
pracma | 2.4.2 | praise | 1.0.0 |
PreciseSums | 0.6 | prefmod | 0.8-35 |
preprocessCore | 1.62.1 | presize | 0.3.7 |
prettyGraphs | 2.1.6 | prettyunits | 1.1.1 |
prevalence | 0.4.1 | princurve | 2.1.6 |
pROC | 1.18.0 | processx | 3.8.1 |
prodlim | 2023.03.31 | ProfessR | 2.4-1 |
profileModel | 0.6.1 | profileR | 0.3-5 |
profoc | 1.1.1 | profvis | 0.3.8 |
progress | 1.2.2 | progressr | 0.13.0 |
proj4 | 1.0-12 | promises | 1.2.0.1 |
prophet | 1.0 | PROsetta | 0.4.1 |
proto | 1.0.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | ps | 1.7.5 |
pscl | 1.5.5.1 | psd | 2.1.1 |
PSF | 0.5 | pso | 1.0.4 |
pspline | 1.0-19 | psy | 1.2 |
psych | 2.3.3 | psychomix | 1.1-8 |
psychonetrics | 0.10 | psychotools | 0.7-2 |
psychotree | 0.16-0 | psychTools | 2.3.3 |
psyphy | 0.2-3 | PTAk | 2.0.0 |
PTSR | 0.1.2 | ptw | 1.9-16 |
purrr | 1.0.1 | pwr | 1.3-0 |
PwrGSD | 2.3.6 | pwrRasch | 0.1-2 |
qap | 0.1-2 | Qardl | 0.1.1 |
qcv | 1.0 | qdap | 2.4.6 |
qdapDictionaries | 1.0.7 | qdapRegex | 0.7.5 |
qdapTools | 1.3.7 | qgam | 1.3.4 |
qgraph | 1.9.5 | qicharts2 | 0.7.2 |
qMRI | 1.2 | qpdf | 1.3.2 |
qpNCA | 1.1.6 | qs | 0.25.5 |
qtl | 1.60 | quadprog | 1.5-8 |
Quandl | 2.11.0 | quanteda | 3.3.1 |
quantmod | 0.4.22 | quantreg | 5.95 |
quantspec | 1.2-3 | questionr | 0.7.8 |
quickpsy | 0.1.5.1 | qvalue | 2.32.0 |
qvcalc | 1.0.2 | R.cache | 0.16.0 |
R.devices | 2.17.1 | R.filesets | 2.15.0 |
R.huge | 0.9.0 | R.matlab | 3.7.0 |
R.methodsS3 | 1.8.2 | R.oo | 1.25.0 |
R.rsp | 0.45.0 | R.utils | 2.12.2 |
R0 | 1.2-10 | r2d3 | 0.2.6 |
R2HTML | 2.3.3 | R2jags | 0.7-1 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R6 | 2.5.1 | radarchart | 0.3.1 |
ragg | 1.2.5 | rainbow | 3.7 |
rAmCharts | 2.1.15 | ramcmc | 0.1.2 |
ramps | 0.6.18 | randomForest | 4.7-1.1 |
randomForestSRC | 3.2.2 | randomizeR | 3.0.1 |
randomLCA | 1.1-2 | randtoolbox | 2.0.4 |
ranger | 0.15.1 | rankdist | 1.1.4 |
RANN | 2.6.1 | rapidjsonr | 1.2.0 |
RApiSerialize | 0.1.2 | rappdirs | 0.3.3 |
rARPACK | 0.11-0 | RaschSampler | 0.8-8 |
raster | 3.6-20 | rasterImage | 0.4.0 |
ratelimitr | 0.4.1 | raveio | 0.1.0 |
ravetools | 0.1.1 | Rbeast | 0.9.9 |
rbenchmark | 1.0.0 | RBGL | 1.76.0 |
rbibutils | 2.2.13 | rbmi | 1.2.3 |
Rcatch22 | 0.2.1 | rcdd | 1.5-2 |
Rcgmin | 2022-4.30 | rcmdcheck | 1.4.0 |
Rcmdr | 2.8-0 | RcmdrMisc | 2.7-2 |
RcmdrPlugin.DoE | 0.12-4 | RcmdrPlugin.temis | 0.7.10 |
RColorBrewer | 1.1-3 | Rcpp | 1.0.10 |
RcppAnnoy | 0.0.20 | RcppArmadillo | 0.12.2.0.0 |
RcppCCTZ | 0.2.12 | RcppDate | 0.0.3 |
RcppDE | 0.1.7 | RcppDist | 0.1.1 |
RcppEigen | 0.3.3.9.3 | RcppGSL | 0.3.13 |
RcppParallel | 5.1.7 | RcppProgress | 0.4.2 |
RcppRoll | 0.3.0 | RcppThread | 2.1.3 |
RcppTN | 0.2-2 | RcppTOML | 0.2.2 |
RcppZiggurat | 0.1.6 | Rcsdp | 0.1.57.5 |
RCurl | 1.98-1.12 | rdbnomics | 0.6.4 |
Rdpack | 2.4 | Rdsdp | 1.0.5.2.1 |
re2 | 0.1.2 | reactable | 0.4.4 |
reactR | 0.4.4 | readabs | 0.4.13 |
readODS | 1.8.0 | readr | 2.1.4 |
readstata13 | 0.10.1 | readxl | 1.4.2 |
REBayes | 2.51 | recipes | 1.0.6 |
registry | 0.5-1 | regress | 1.3-21 |
regsem | 1.9.3 | regspec | 2.6 |
regtools | 1.7.0 | relations | 0.6-13 |
relimp | 1.0-5 | rematch | 1.0.1 |
rematch2 | 2.1.2 | remotes | 2.4.2 |
rentrez | 1.2.3 | renv | 0.17.3 |
replicateBE | 1.1.3 | reportr | 1.3.0 |
reprex | 2.0.2 | REQS | 0.8-13 |
resampledata | 0.3.1 | resde | 1.1 |
reshape | 0.8.9 | reshape2 | 1.4.4 |
reticulate | 1.28 | revdbayes | 1.5.1 |
rex | 1.2.1 | Rfast | 2.0.7 |
Rfast2 | 0.1.4 | rgen | 0.0.1 |
RGENERATE | 1.3.7 | rgenoud | 5.9-0.3 |
rgl | 1.1.3 | Rglpk | 0.6-5 |
RgoogleMaps | 1.4.5.3 | RGraphics | 3.0-2 |
Rgraphviz | 2.44.0 | rhandsontable | 0.3.8 |
rhdf5 | 2.44.0 | rhdf5filters | 1.12.1 |
Rhdf5lib | 1.22.0 | rhosa | 0.2.0 |
RhpcBLASctl | 0.23-42 | riingo | 0.3.1 |
ring | 1.0.4 | RInside | 0.2.18 |
rintrojs | 0.3.2 | Rirt | 0.0.2 |
riskCommunicator | 1.0.1 | ritis | 1.0.0 |
rjags | 4-14 | rJava | 1.0-6 |
RJDBC | 0.2-10 | RJDemetra | 0.2.2 |
rje | 1.12.1 | rjson | 0.2.21 |
RJSONIO | 1.3-1.8 | RKEA | 0.0-6 |
RKEAjars | 5.0-4 | rlang | 1.1.1 |
rle | 0.9.2 | rlecuyer | 0.3-7 |
Rlgt | 0.1-4 | Rlibeemd | 1.4.2 |
rlist | 0.4.6.2 | rmarkdown | 2.21 |
RMAWGEN | 1.3.7 | rmeta | 3.0 |
Rmpfr | 0.9-2 | rms | 6.7-0 |
rmutil | 1.1.10 | RMySQL | 0.10.25 |
rncl | 0.8.7 | rngtools | 1.5.2 |
rngWELL | 0.10-9 | RNifti | 1.5.0 |
RNiftyReg | 2.7.1 | rnn | 1.9.0 |
robfilter | 4.1.3 | RobKF | 1.0.2 |
RoBMA | 2.3.2 | robustbase | 0.95-1 |
rockchalk | 1.8.157 | ROCR | 1.0-11 |
rodd | 0.2-1 | roll | 1.1.6 |
Rook | 1.2 | ROOPSD | 0.3.8 |
rootSolve | 1.8.2.3 | roptim | 0.1.6 |
rotl | 3.0.14 | roxygen2 | 7.2.3 |
rpact | 3.3.4 | rpanel | 1.1-5.2 |
rpart.plot | 3.1.1 | rpf | 1.0.11 |
RPMG | 2.2-3 | RPostgres | 1.4.5 |
RPostgreSQL | 0.7-5 | RPPairwiseDesign | 1.0 |
rprojroot | 2.0.3 | rrcov | 1.7-3 |
rredlist | 0.7.1 | rrum | 0.2.0 |
rsample | 1.1.1 | rsdmx | 0.6-2 |
RSEIS | 4.1-4 | rsem | 0.5.0 |
Rsfar | 0.0.1 | RSGHB | 1.2.2 |
rsm | 2.10.3 | Rsolnp | 1.16 |
rsparse | 0.5.1 | RSpectra | 0.16-1 |
RSQLite | 2.3.1 | Rssa | 1.0.5 |
rstan | 2.21.8 | rstanarm | 2.21.4 |
rstantools | 2.3.1 | rstatix | 0.7.2 |
rstiefel | 1.0.1 | rstudioapi | 0.14 |
rsurface | 1.1.0 | RSurveillance | 0.2.1 |
rTensor | 1.4.8 | rtf | 0.4-14.1 |
RTFA | 0.1.0 | rticles | 0.25 |
RTransferEntropy | 0.2.21 | rts | 1.1-8 |
Rtsne | 0.16 | Rttf2pt1 | 1.3.12 |
rucrdtw | 0.1.4 | rugarch | 1.4-9 |
ruimtehol | 0.3.1 | rules | 1.0.2 |
RUnit | 0.4.32 | runjags | 2.2.1-7 |
runner | 0.4.3 | runstats | 1.1.0 |
Runuran | 0.38 | rust | 1.4.0 |
Rvcg | 0.22.1 | rversions | 2.1.2 |
rvest | 1.0.3 | Rvmmin | 2018-4.17.1 |
Rwave | 2.6-5 | RWeka | 0.4-46 |
RWekajars | 3.9.3-2 | rxode2 | 2.0.13 |
rxode2et | 2.0.10 | rxode2ll | 2.0.11 |
rxode2parse | 2.0.16 | rxode2random | 2.0.11 |
s2 | 1.1.3 | S4Vectors | 0.38.1 |
samadb | 0.2.6 | samplesize | 0.2-4 |
sandwich | 3.0-2 | sarima | 0.9.1 |
sass | 0.4.6 | satellite | 1.0.4 |
sazedR | 2.0.2 | sbgcop | 0.980 |
scales | 1.2.1 | scatterplot3d | 0.3-44 |
scoringRules | 1.1.1 | scoringutils | 1.1.0 |
ScottKnott | 1.3-0 | scs | 3.2.4 |
sde | 2.0.18 | sealasso | 0.1-3 |
seas | 0.6-0 | season | 0.3.15 |
seasonal | 1.9.0 | seasonalview | 0.3 |
seastests | 0.15.4 | seer | 1.1.8 |
segmented | 1.6-4 | selectr | 0.4-2 |
sem | 3.1-15 | semds | 0.9-6 |
SemiPar | 1.0-4.2 | semPlot | 1.1.6 |
SEMsens | 1.5.5 | semTools | 0.5-6 |
semtree | 0.9.18 | sendmailR | 1.4-0 |
SensoMineR | 1.26 | sentencepiece | 0.2.3 |
separationplot | 1.4 | seqDesign | 1.2 |
seqinr | 4.2-30 | seriation | 1.4.2 |
servr | 0.27 | sessioninfo | 1.2.2 |
setartree | 0.1.0 | setRNG | 2022.4-1 |
sets | 1.0-24 | sf | 1.0-12 |
sFFLHD | 0.1.2 | sfheaders | 0.4.2 |
sfsmisc | 1.1-15 | sftime | 0.2-0 |
sgd | 1.1.1 | sgeostat | 1.0-27 |
shades | 1.4.0 | shape | 1.4.6 |
shapefiles | 0.7.2 | shapes | 1.2.7 |
shiny | 1.7.4 | shiny.semantic | 0.4.3 |
shinyAce | 0.4.2 | shinybrms | 1.8.0 |
shinyBS | 0.61.1 | shinycssloaders | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.0 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinytest | 1.5.3 | shinythemes | 1.2.0 |
shinyWidgets | 0.7.6 | showimage | 1.0.0 |
sigmoid | 1.4.0 | signal | 0.7-7 |
Sim.DiffProc | 4.8 | simcdm | 0.1.1 |
SimComp | 3.3 | simex | 1.8 |
simglm | 0.8.9 | SimInf | 9.5.0 |
simrel | 2.1.0 | simsem | 0.5-16 |
sirt | 3.12-66 | sitmo | 2.0.2 |
SkewHyperbolic | 0.4-0 | skmeans | 0.2-15 |
skpr | 1.3.0 | slam | 0.1-50 |
SLBDD | 0.0.4 | sleekts | 1.0.2 |
Sleuth2 | 2.0-5 | Sleuth3 | 1.0-3 |
SLHD | 2.1-1 | slider | 0.3.0 |
sm | 2.2-5.7.1 | smacof | 2.1-5 |
smooth | 3.2.0 | smoother | 1.1 |
smoots | 1.1.3 | smovie | 1.1.4 |
SMPracticals | 1.4-3 | sn | 2.1.1 |
sna | 2.7-1 | snakecase | 0.11.0 |
snow | 0.4-4 | SnowballC | 0.7.1 |
snowfall | 1.84-6.2 | SOAs | 1.3 |
soc.ca | 0.8.0 | socialmixr | 0.2.0 |
sodium | 1.2.1 | solrium | 1.2.0 |
sourcetools | 0.1.7-1 | sp | 1.6-0 |
sp23design | 0.9-1 | spacetime | 1.3-0 |
spam | 2.9-1 | spant | 2.12.0 |
sparseDFM | 1.0 | SparseFactorAnalysis | 1.0 |
SparseM | 1.81 | sparsevar | 0.1.0 |
SpatialEpi | 1.2.8 | SpatialExtremes | 2.1-0 |
spatialreg | 1.2-8 | spatstat | 3.0-5 |
spatstat.data | 3.0-1 | spatstat.explore | 3.1-0 |
spatstat.geom | 3.1-0 | spatstat.linnet | 3.1-0 |
spatstat.model | 3.2-3 | spatstat.random | 3.1-4 |
spatstat.sparse | 3.0-1 | spatstat.utils | 3.0-2 |
spBayes | 0.4-6 | spd | 2.0-1 |
spData | 2.2.2 | spdep | 1.2-8 |
spec | 0.1.7 | spectral | 2.0 |
speff2trial | 1.0.5 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-19 | spINAR | 0.1.0 |
splancs | 2.01-43 | splines2 | 0.4.8 |
spTimer | 3.3.2 | sqldf | 0.4-11 |
SQUAREM | 2021.1 | srvyr | 1.2.0 |
ssanv | 1.1 | ssgraph | 1.15 |
ssize.fdr | 1.3 | ssizeRNA | 1.3.2 |
ssMousetrack | 1.1.6 | stabledist | 0.7-1 |
stabs | 0.6-4 | StanHeaders | 2.21.0-7 |
stars | 0.6-1 | STARTS | 1.3-8 |
startupmsg | 0.9.6 | statespacer | 0.5.0 |
statmod | 1.5.0 | statnet.common | 4.8.0 |
StatRank | 0.0.6 | steadyICA | 1.0 |
STFTS | 0.1.0 | stinepack | 1.4 |
stlplus | 0.5.1 | stm | 1.3.6 |
stochvol | 3.2.1 | stopwords | 2.3 |
stR | 0.5 | stringdist | 0.9.10 |
stringfish | 0.15.7 | stringi | 1.7.12 |
stringr | 1.5.0 | strucchange | 1.5-3 |
strucchangeRcpp | 1.5-3-1.0.4 | StructuralDecompose | 0.1.1 |
styler | 1.9.1 | subplex | 1.8 |
subscore | 3.3 | sufficientForecasting | 0.1.0 |
sugrrants | 0.2.8 | SuperLearner | 2.0-28 |
superml | 0.5.6 | SuppDists | 1.1-9.7 |
support.CEs | 0.5-0 | survcomp | 1.50.0 |
surveillance | 1.21.1 | survey | 4.2-1 |
survivalROC | 1.0.3.1 | survPresmooth | 1.1-11 |
svars | 1.3.11 | svd | 0.5.4 |
svglite | 2.1.1 | svs | 3.0.0 |
svUnit | 1.0.6 | swephR | 0.3.1 |
swirl | 2.4.5 | swirlify | 0.5.3 |
sylly | 0.1-6 | sym.arma | 1.0 |
symengine | 0.2.2 | symmoments | 1.2.1 |
synthesis | 1.2.3 | sys | 3.4.1 |
systemfit | 1.1-30 | systemfonts | 1.0.4 |
tables | 0.9.17 | tabnet | 0.3.0 |
TAM | 4.1-4 | targets | 1.1.3 |
tau | 0.0-24 | taxize | 0.9.100 |
tbrf | 0.1.5 | tcltk2 | 1.2-11 |
Tcomp | 1.0.1 | tdigest | 0.4.1 |
TeachingDemos | 2.12 | tempdisagg | 1.1 |
tensor | 1.5 | tensorA | 0.36.2 |
tensorflow | 2.11.0 | TensorPreAve | 1.1.0 |
tensorTS | 1.0.1 | TEQR | 6.0-0 |
tergm | 4.1.1 | terra | 1.7-29 |
tesseract | 5.1.0 | testcorr | 0.2.0 |
TestDataImputation | 2.3 | TestDesign | 1.5.1 |
testit | 0.13 | TestScorer | 1.7.2 |
testthat | 3.1.8 | TexExamRandomizer | 1.2.3 |
texreg | 1.38.6 | text2vec | 0.6.3 |
textcat | 1.0-8 | textir | 2.0-5 |
textplot | 0.2.2 | textrank | 0.3.1 |
textreuse | 0.1.5 | textshaping | 0.3.6 |
textTinyR | 1.1.7 | tfarima | 0.3.2 |
tfautograph | 0.3.2 | tfplot | 2021.6-1 |
tframe | 2015.12-1.1 | tfruns | 1.5.1 |
tgp | 2.4-21 | TH.data | 1.1-2 |
theft | 0.4.2.4 | thief | 0.3 |
ThreeArmedTrials | 1.0-4 | threeBrain | 0.2.9 |
ThreeGroups | 0.21 | threejs | 0.3.3 |
ThreeWay | 1.1.3 | thurstonianIRT | 0.12.1 |
tibble | 3.2.1 | tictoc | 1.2 |
Tides | 2.1 | tidygraph | 1.2.3 |
tidyLPA | 1.1.0 | tidymodels | 1.1.0 |
tidyquant | 1.0.7 | tidyr | 1.3.0 |
tidyselect | 1.2.0 | tidytext | 0.4.1 |
tidytree | 0.4.2 | tidyverse | 2.0.0 |
tiff | 0.1-11 | timechange | 0.2.0 |
timeDate | 4022.108 | timeSeries | 4030.106 |
timeseriesdb | 1.0.0-1.1.2 | timetk | 2.8.3 |
timsac | 1.3.8 | tinytex | 0.45 |
tis | 1.39 | tkrplot | 0.0-27 |
tm | 0.7-11 | tm.plugin.alceste | 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 | TMB | 1.9.4 |
tmvnsim | 1.0-2 | tmvtnorm | 1.5 |
tokenizers | 0.3.0 | tokenizers.bpe | 0.1.1 |
toOrdinal | 1.3-0.0 | topicdoc | 0.1.1 |
topicmodels | 0.2-14 | topicmodels.etm | 0.1.0 |
torch | 0.10.0 | torchaudio | 0.3.1.9000 |
torchdatasets | 0.3.0 | torchvision | 0.5.1 |
tpr | 0.3-3 | tractor.base | 3.3.5.1 |
TransPhylo | 1.4.5 | trapezoid | 2.0-2 |
tree | 1.0-43 | TreeBUGS | 1.5.0 |
treeio | 1.24.0 | trend | 1.1.5 |
trendeval | 0.1.0 | trending | 0.1.0 |
TrialSize | 1.4 | triangle | 1.0 |
triebeard | 0.4.1 | trimcluster | 0.1-5 |
tripack | 1.3-9.1 | TripleR | 1.5.4 |
TruncatedNormal | 2.2.2 | truncdist | 1.0-2 |
truncnorm | 1.0-9 | truncreg | 0.2-5 |
trust | 0.1-8 | TSA | 1.3.1 |
TSANN | 0.1.0 | tsbox | 0.4.1 |
tsBSS | 1.0.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 |
TSEntropies | 0.9 | tseries | 0.10-54 |
tseriesChaos | 0.1-13.1 | tseriesEntropy | 0.6-0 |
tseriesTARMA | 0.3-2 | tsfeatures | 1.1 |
tsfknn | 0.5.1 | tsibble | 1.1.3 |
tsibbledata | 0.4.1 | tsibbletalk | 0.1.0 |
tsintermittent | 1.10 | tsiR | 0.4.3 |
TSLSTM | 0.1.0 | tsModel | 0.6-1 |
tsoutliers | 0.6-8 | TSP | 1.2-4 |
tsPI | 1.0.3 | TSrepr | 1.1.0 |
tsrobprep | 0.3.2 | tssim | 0.1.7 |
TSstudio | 0.1.6 | TSTutorial | 1.2.6 |
tsutils | 0.9.3 | tswge | 2.1.0 |
TTR | 0.24.3 | tune | 1.1.1 |
tweenr | 2.0.2 | tzdb | 0.4.0 |
ubiquity | 2.0.0 | ucminf | 1.1-4.1 |
UComp | 4.0.2 | udpipe | 0.8.11 |
ugatsdb | 0.2.3 | uGMAR | 3.4.4 |
UnifiedDoseFinding | 0.1.10 | units | 0.8-2 |
unrepx | 1.0-2 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
uroot | 2.1-2 | usdata | 0.2.0 |
usethis | 2.1.6 | utf8 | 1.2.3 |
uuid | 1.1-0 | uwot | 0.1.14 |
V8 | 4.3.0 | VAR.etp | 1.0 |
VARDetect | 0.1.6 | vars | 1.5-9 |
VARshrink | 0.3.1 | VCA | 1.4.5 |
vcd | 1.4-11 | vcdExtra | 0.8-4 |
vctrs | 0.6.2 | vdg | 1.2.2 |
VedicDateTime | 0.1.4 | vegan | 2.6-4 |
VennDiagram | 1.7.3 | venneuler | 1.1-3 |
VGAM | 1.1-8 | VGAMdata | 1.1-8 |
vglmer | 1.0.3 | viridis | 0.6.3 |
viridisLite | 0.4.2 | visNetwork | 2.1.2 |
visualize | 4.4.0 | vpc | 1.2.2 |
vroom | 1.6.3 | waiter | 0.2.5 |
waldo | 0.5.1 | warp | 0.2.0 |
WaveletComp | 1.1 | wavelets | 0.3-0.2 |
waveslim | 1.8.4 | wavethresh | 4.7.2 |
wavScalogram | 1.1.2 | wCorr | 1.9.6 |
webdriver | 1.0.6 | webshot | 0.5.4 |
weights | 1.0.4 | whisker | 0.4.1 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
WikipediR | 1.5.0 | wikitaxa | 0.4.0 |
withr | 2.5.0 | wk | 0.7.3 |
wktmo | 1.0.5 | wnl | 0.7.3 |
wooldridge | 1.4-3 | word2vec | 0.3.4 |
wordcloud | 2.6 | wordnet | 0.1-16 |
workflows | 1.1.3 | workflowsets | 1.0.1 |
worrms | 0.4.2 | wpp2017 | 1.2-3 |
wpp2019 | 1.1-1 | WrightMap | 1.3 |
writexl | 1.4.2 | x12 | 1.10.3 |
x13binary | 1.1.57-3 | xfun | 0.39 |
xgboost | 1.7.5.1 | xgxr | 1.1.2 |
XLConnect | 1.0.7 | xlsx | 0.6.5 |
xlsxjars | 0.6.1 | XML | 3.99-0.14 |
xml2 | 1.3.4 | xopen | 1.0.0 |
xplain | 0.2.2 | xpose | 0.4.16 |
xpose.nlmixr2 | 0.4.0 | xpose4 | 4.7.2 |
xtable | 1.8-4 | xts | 0.13.1 |
XVector | 0.40.0 | xxIRT | 2.1.2 |
yaImpute | 1.0-33 | yaml | 2.3.7 |
yardstick | 1.2.0 | yesno | 0.1.2 |
yuima | 1.15.22 | yulab.utils | 0.0.6 |
zeallot | 0.1.0 | zic | 0.9.1 |
ZIM | 1.1.0 | ZINARp | 0.1.0 |
zip | 2.3.0 | zipfR | 0.6-70 |
zlibbioc | 1.46.0 | zoo | 1.8-12 |
ZRA | 0.2 |
RShiny Server
R: 4.2.3
rshiny-server: 1.5.20.1002
CUDA Version: 12.0
GPU Driver Version: 525.85.12
R packages
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.0 |
abind | 1.4-5 | ACD | 1.5.3 |
acepack | 1.4.1 | actuar | 3.3-2 |
ada | 2.0-5 | ade4 | 1.7-22 |
ade4TkGUI | 0.3-1 | adegraphics | 1.0-18 |
adehabitatLT | 0.3.26 | adehabitatMA | 0.3.15 |
admisc | 0.31 | affxparser | 1.70.0 |
affy | 1.76.0 | affyio | 1.68.0 |
agricolae | 1.3-5 | akima | 0.6-3.4 |
AlgDesign | 1.2.1 | alphavantager | 0.1.2 |
Amelia | 1.8.1 | AnnotationDbi | 1.60.2 |
anytime | 0.3.9 | ape | 5.7-1 |
aplot | 0.1.10 | arm | 1.13-1 |
aroma.apd | 0.6.1 | ascii | 2.4 |
ash | 1.0-15 | askpass | 1.1 |
assertthat | 0.2.1 | AUC | 0.3.2 |
av | 0.8.3 | backports | 1.4.1 |
base64 | 2.0.1 | base64enc | 0.1-3 |
baseballr | 1.3.0 | bayesplot | 1.10.0 |
BB | 2019.10-1 | BDgraph | 2.72 |
bdsmatrix | 1.3-6 | beadarray | 2.48.0 |
BeadDataPackR | 1.50.0 | BGLR | 1.1.0 |
BH | 1.81.0-1 | biganalytics | 1.1.21 |
bigD | 0.2.0 | biglars | 1.0.2 |
biglm | 0.9-2.1 | bigmemory | 4.6.1 |
bigmemory.sri | 0.1.6 | bigml | 0.1.2 |
bindr | 0.1.1 | bindrcpp | 0.2.2 |
Biobase | 2.58.0 | BiocGenerics | 0.44.0 |
BiocManager | 1.30.20 | BiocParallel | 1.32.5 |
BiocVersion | 3.16.0 | biomformat | 1.26.0 |
Biostrings | 2.66.0 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
blob | 1.2.4 | BLR | 1.6 |
bold | 1.2.0 | bootstrap | 2019.6 |
bpca | 1.3-4 | BradleyTerry2 | 1.1-2 |
brew | 1.0-8 | brglm | 0.7.2 |
brglm2 | 0.9 | bridgesampling | 1.1-2 |
brio | 1.1.3 | brms | 2.19.0 |
Brobdingnag | 1.2-9 | broom | 1.0.4 |
bslib | 0.4.2 | BsMD | 2020.4.30 |
ca | 0.71.1 | cachem | 1.0.7 |
calibrator | 1.2-8 | callr | 3.7.3 |
car | 3.1-1 | carData | 3.0-5 |
caret | 6.0-93 | caTools | 1.18.2 |
CellNOptR | 1.44.0 | cellranger | 1.1.0 |
checkmate | 2.1.0 | chron | 2.3-60 |
CircStats | 0.2-6 | classInt | 0.4-9 |
cli | 3.6.0 | clipr | 0.8.0 |
clock | 0.6.1 | clusterGeneration | 1.3.7 |
CNORode | 1.40.0 | coda | 0.19-4 |
coin | 1.4-2 | collapse | 1.9.3 |
colorspace | 2.1-0 | colourpicker | 1.2.0 |
combinat | 0.0-8 | commonmark | 1.9.0 |
conditionz | 0.1.0 | conf.design | 2.0.0 |
conflicted | 1.2.0 | contfrac | 1.1-12 |
coro | 1.0.3 | corpcor | 1.6.10 |
corrgram | 1.14 | corrplot | 0.92 |
cpp11 | 0.4.3 | crayon | 1.5.2 |
credentials | 1.3.2 | crosstalk | 1.2.0 |
crul | 1.3 | ctv | 0.9-4 |
cubature | 2.0.4.6 | curl | 5.0.0 |
CVST | 0.2-3 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | data.table | 1.14.8 |
DataExplorer | 0.8.2 | datapasta | 3.1.0 |
DBI | 1.1.3 | dbplyr | 2.3.1 |
deldir | 1.0-6 | dendextend | 1.16.0 |
DEoptimR | 1.0-11 | Deriv | 4.1.3 |
desc | 1.4.2 | deSolve | 1.35 |
devtools | 2.4.5 | dfidx | 0.0-5 |
dfoptim | 2020.10-1 | diagram | 1.6.5 |
DiagrammeR | 1.0.9 | dials | 1.1.0 |
DiceDesign | 1.9 | dichromat | 2.0-0.1 |
diffobj | 0.3.5 | digest | 0.6.31 |
dimRed | 0.2.6 | diptest | 0.76-0 |
discretization | 1.0-1.1 | distributional | 0.3.1 |
doBy | 4.6.16 | doc2vec | 0.2.0 |
DoE.base | 1.2-1 | doMC | 1.3.8 |
doParallel | 1.0.17 | dotCall64 | 1.0-2 |
downlit | 0.4.2 | downloader | 0.4 |
dplyr | 1.1.0 | dqrng | 0.3.0 |
DRR | 0.0.4 | DT | 0.27 |
dtplyr | 1.3.0 | dummies | 1.5.6 |
dygraphs | 1.1.1.6 | dynamicTreeCut | 1.63-1 |
e1071 | 1.7-13 | EbayesThresh | 1.4-12 |
EBImage | 4.40.0 | effects | 4.2-2 |
ellipse | 0.4.3 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | emulator | 1.2-21 |
enrichwith | 0.3.1 | equivalence | 0.7.2 |
estimability | 1.4.1 | ETLUtils | 1.5 |
evaluate | 0.20 | expint | 0.1-8 |
expm | 0.999-7 | extraDistr | 1.9.1 |
extrafont | 0.19 | extrafontdb | 1.0 |
fansi | 1.0.4 | farver | 2.1.1 |
fastICA | 1.2-3 | fastmap | 1.1.1 |
fastmatch | 1.1-3 | fda | 6.0.5 |
fdaPDE | 1.1-11 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
ff | 4.0.9 | ffbase | 0.13.3 |
fftwtools | 0.9-11 | fields | 14.1 |
filehash | 2.4-5 | filelock | 1.0.2 |
flashClust | 1.01-2 | flexmix | 2.3-19 |
FNN | 1.1.3.1 | fontawesome | 0.5.0 |
forcats | 1.0.0 | foreach | 1.5.2 |
forecast | 8.21 | formatR | 1.14 |
Formula | 1.2-5 | fpc | 2.2-10 |
fracdiff | 1.5-2 | fs | 1.6.1 |
fts | 0.9.9.2 | functional | 0.6 |
furrr | 0.3.1 | futile.logger | 1.4.3 |
futile.options | 1.0.1 | future | 1.32.0 |
future.apply | 1.10.0 | gam | 1.22-1 |
gamlss | 5.4-12 | gamlss.data | 6.0-2 |
gamlss.dist | 6.0-5 | gargle | 1.3.0 |
gclus | 1.3.2 | gdata | 2.18.0.1 |
geepack | 1.3.9 | genalg | 0.2.1 |
generics | 0.1.3 | genetics | 1.3.8.1.3 |
GenomeInfoDb | 1.34.9 | GenomeInfoDbData | 1.2.9 |
GenomicRanges | 1.50.2 | GEOquery | 2.66.0 |
geosphere | 1.5-18 | gert | 1.9.2 |
ggalt | 0.4.0 | ggdendro | 0.1.23 |
ggforce | 0.4.1 | ggformula | 0.10.2 |
ggfun | 0.0.9 | ggmap | 3.0.2 |
ggplot2 | 3.4.1 | ggplotify | 0.1.0 |
ggrepel | 0.9.3 | ggridges | 0.5.4 |
ggstance | 0.3.6 | ggtree | 3.6.2 |
ggvis | 0.4.8 | gh | 1.4.0 |
git2r | 0.31.0 | gitcreds | 0.1.2 |
glassoFast | 1.0 | gld | 2.6.6 |
glmnet | 4.1-6 | globals | 0.16.2 |
glue | 1.6.2 | gmm | 1.7 |
gmodels | 2.18.1.1 | gmp | 0.7-1 |
GO.db | 3.16.0 | goftest | 1.2-3 |
googledrive | 2.0.0 | googlesheets4 | 1.0.1 |
googleVis | 0.7.1 | gower | 1.0.1 |
GPArotation | 2022.10-2 | gpclib | 1.5-6 |
GPfit | 1.0-8 | gplots | 3.1.3 |
gradethis | 0.2.11.9000 | graph | 1.76.0 |
gridBase | 0.4-7 | gridExtra | 2.3 |
gridGraphics | 0.5-1 | gridSVG | 1.7-5 |
grImport | 0.9-7 | grImport2 | 0.2-0 |
gsubfn | 0.7 | gt | 0.8.0 |
gtable | 0.3.2 | gtools | 3.9.4 |
HaploSim | 1.8.4.2 | hardhat | 1.2.0 |
haven | 2.5.2 | hdrcde | 3.4 |
hexbin | 1.28.2 | hflights | 0.1 |
HH | 3.1-49 | highlight | 0.5.1 |
highr | 0.10 | Hmisc | 5.0-1 |
hms | 1.1.2 | htmlTable | 2.4.1 |
htmltools | 0.5.4 | htmlwidgets | 1.6.2 |
httpcode | 0.3.0 | httpuv | 1.6.9 |
httr | 1.4.5 | httr2 | 0.2.2 |
HydroMe | 2.0-1 | HyperbolicDist | 0.6-4 |
hypergeo | 1.2-13 | ICC | 2.4.0 |
Icens | 1.70.0 | ids | 1.0.1 |
igraph | 1.4.1 | igraphdata | 1.0.1 |
illuminaio | 0.40.0 | impute | 1.72.3 |
ineq | 0.2-13 | infer | 1.0.4 |
influenceR | 0.1.0.1 | ini | 0.3.1 |
inline | 0.3.19 | insight | 0.19.0 |
interp | 1.1-3 | intervals | 0.15.2 |
introgress | 1.2.3 | inum | 1.0-5 |
ipred | 0.9-14 | IRanges | 2.32.0 |
irlba | 2.3.5.1 | Iso | 0.0-18.1 |
isoband | 0.2.7 | iterators | 1.0.14 |
itertools | 0.1-3 | janitor | 2.2.0 |
jpeg | 0.1-10 | jquerylib | 0.1.4 |
jsonlite | 1.8.4 | juicyjuice | 0.1.0 |
KEGGREST | 1.38.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-32 | klaR | 1.7-1 |
knitr | 1.42 | ks | 1.14.0 |
labeling | 0.4.2 | labelled | 2.10.0 |
LaF | 0.8.4 | Lahman | 10.0-1 |
lambda.r | 1.2.4 | lars | 1.3 |
later | 1.3.0 | latticeExtra | 0.6-30 |
lava | 1.7.2.1 | lavaan | 0.6-15 |
lavaan.survey | 1.1.3.1 | lazyeval | 0.2.2 |
lcda | 0.3.1 | leaflet | 2.1.2 |
leaflet.providers | 1.9.0 | leaps | 3.1 |
LearnBayes | 2.15.1 | learnr | 0.11.3.9000 |
lgr | 0.4.4 | lhs | 1.1.6 |
libcoin | 1.0-9 | lifecycle | 1.0.3 |
LIM | 1.4.7 | limma | 3.54.2 |
limSolve | 1.5.6 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | lme4 | 1.1-32 |
lmom | 2.9 | lmtest | 0.9-40 |
locfit | 1.5-9.7 | lokern | 1.1-10 |
loo | 2.5.1 | lpSolve | 5.6.18 |
lubridate | 1.9.2 | luz | 0.3.1 |
magic | 1.6-1 | magrittr | 2.0.3 |
manipulateWidget | 0.11.1 | mapproj | 1.2.11 |
maps | 3.4.1 | maptools | 1.1-6 |
markdown | 1.5 | MassSpecWavelet | 1.64.1 |
Matching | 4.10-8 | MatchIt | 4.5.1 |
mathjaxr | 1.6-0 | matrixcalc | 1.0-6 |
MatrixModels | 0.5-1 | matrixStats | 0.63.0 |
maxLik | 1.5-2 | mboost | 2.9-7 |
mclust | 6.0.0 | mcmc | 0.9-7 |
MCMCglmm | 2.34 | MEIGOR | 1.31.0 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
Metrics | 0.1.4 | mi | 1.1 |
mice | 3.15.0 | microbenchmark | 1.4.9 |
mime | 0.12 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-3 | minqa | 1.2.5 |
misc3d | 0.9-1 | miscTools | 0.6-26 |
mitools | 2.4 | mixOmics | 6.22.0 |
mlbench | 2.1-3 | mlmRev | 1.0-8 |
mlogit | 1.1-1 | mlr3 | 0.15.0 |
mlr3measures | 0.5.0 | mlr3misc | 0.11.0 |
mnormt | 2.1.1 | modeldata | 1.1.0 |
modelenv | 0.1.1 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.10 | modeltime | 1.2.5 |
modeltools | 0.2-23 | moments | 0.14.1 |
mondate | 0.10.02 | mosaic | 1.8.4.2 |
mosaicCore | 0.9.2.1 | mosaicData | 0.20.3 |
mratios | 1.4.2 | multcomp | 1.4-23 |
multicool | 0.1-12 | multtest | 2.54.0 |
munsell | 0.5.0 | mvMORPH | 1.1.7 |
mvtnorm | 1.1-3 | natserv | 1.0.0 |
network | 1.18.1 | networkD3 | 0.4 |
NISTnls | 0.9-13 | nleqslv | 3.3.4 |
nloptr | 2.0.3 | nls2 | 0.3-3 |
nlstools | 2.0-0 | nnls | 1.4 |
nortest | 1.0-4 | np | 0.60-17 |
numbers | 0.8-5 | numDeriv | 2016.8-1.1 |
odbc | 1.3.4 | openssl | 2.0.6 |
openxlsx | 4.2.5.2 | optextras | 2019-12.4 |
optimParallel | 1.0-2 | ordinal | 2022.11-16 |
padr | 0.6.2 | PairedData | 1.1.1 |
palmerpenguins | 0.1.1 | paradox | 0.11.1 |
parallelly | 1.34.0 | parsnip | 1.0.4 |
partitions | 1.10-7 | party | 1.3-13 |
partykit | 1.2-18 | pastecs | 1.3.21 |
patchwork | 1.1.2 | pbapply | 1.7-0 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
pbmcapply | 1.5.1 | PBSmapping | 2.73.2 |
pcaMethods | 1.90.0 | pcaPP | 2.0-3 |
pedigree | 1.4.2 | PerformanceAnalytics | 2.0.4 |
permute | 0.9-7 | phangorn | 2.11.1 |
phyloseq | 1.42.0 | phytools | 1.5-1 |
pillar | 1.8.1 | pins | 1.1.0 |
pixmap | 0.4-12 | pkgbuild | 1.4.0 |
pkgconfig | 2.0.3 | pkgdown | 2.0.7 |
pkgload | 1.3.2 | PKPDmodels | 0.3.2 |
plm | 2.6-2 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.1 |
plotrix | 3.8-2 | pls | 2.8-1 |
plyr | 1.8.8 | png | 0.1-8 |
poLCA | 1.6.0.1 | polspline | 1.1.22 |
polyclip | 1.10-4 | polycor | 0.8-1 |
polynom | 1.4-1 | posterior | 1.4.1 |
prabclus | 2.3-2 | pracma | 2.4.2 |
praise | 1.0.0 | preprocessCore | 1.60.2 |
prettyunits | 1.1.1 | princurve | 2.1.6 |
pROC | 1.18.0 | processx | 3.8.0 |
prodlim | 2019.11.13 | profileModel | 0.6.1 |
profvis | 0.3.7 | progress | 1.2.2 |
progressr | 0.13.0 | proj4 | 1.0-12 |
promises | 1.2.0.1 | prophet | 1.0 |
proto | 1.0.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | ps | 1.7.2 |
pscl | 1.5.5 | psy | 1.2 |
psych | 2.2.9 | purrr | 1.0.1 |
qap | 0.1-2 | qtl | 1.58 |
quadprog | 1.5-8 | Quandl | 2.11.0 |
quantmod | 0.4.20 | quantreg | 5.94 |
questionr | 0.7.8 | QUIC | 1.1.1 |
qvalue | 2.30.0 | qvcalc | 1.0.2 |
R.cache | 0.16.0 | R.devices | 2.17.1 |
R.filesets | 2.15.0 | R.huge | 0.9.0 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.25.0 | R.rsp | 0.45.0 |
R.utils | 2.12.2 | R2HTML | 2.3.3 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R6 | 2.5.1 | ragg | 1.2.5 |
rainbow | 3.7 | randomForest | 4.7-1.1 |
rappdirs | 0.3.3 | rARPACK | 0.11-0 |
raster | 3.6-20 | ratelimitr | 0.4.1 |
rbenchmark | 1.0.0 | RBGL | 1.74.0 |
rbibutils | 2.2.13 | Rcgmin | 2022-4.30 |
rcmdcheck | 1.4.0 | RColorBrewer | 1.1-3 |
Rcpp | 1.0.10 | RcppAnnoy | 0.0.20 |
RcppArmadillo | 0.12.0.1.0 | RcppEigen | 0.3.3.9.3 |
RcppParallel | 5.1.7 | RcppProgress | 0.4.2 |
RcppRoll | 0.3.0 | Rcsdp | 0.1.57.4 |
RCurl | 1.98-1.10 | Rdpack | 2.4 |
reactable | 0.4.4 | reactR | 0.4.4 |
readr | 2.1.4 | readstata13 | 0.10.1 |
readxl | 1.4.2 | recipes | 1.0.5 |
registry | 0.5-1 | regress | 1.3-21 |
relaxnet | 0.3-2 | reliaR | 0.01 |
relimp | 1.0-5 | rematch | 1.0.1 |
rematch2 | 2.1.2 | remotes | 2.4.2 |
rentrez | 1.2.3 | renv | 0.17.1 |
reprex | 2.0.2 | reshape | 0.8.9 |
reshape2 | 1.4.4 | rex | 1.2.1 |
rgl | 1.0.1 | RgoogleMaps | 1.4.5.3 |
RGraphics | 3.0-2 | Rgraphviz | 2.42.0 |
rhdf5 | 2.42.0 | rhdf5filters | 1.10.0 |
Rhdf5lib | 1.20.0 | riingo | 0.3.1 |
ritis | 1.0.0 | rJava | 1.0-6 |
RJDBC | 0.2-10 | rjson | 0.2.21 |
RJSONIO | 1.3-1.8 | rlang | 1.1.0 |
rlecuyer | 0.3-5 | rmarkdown | 2.20 |
rmeta | 3.0 | Rmpfr | 0.9-1 |
rms | 6.5-0 | RMySQL | 0.10.25 |
rncl | 0.8.7 | robustbase | 0.95-0 |
ROCR | 1.0-11 | Rook | 1.2 |
rotl | 3.0.14 | roxygen2 | 7.2.3 |
RPostgreSQL | 0.7-5 | rprojroot | 2.0.3 |
rredlist | 0.7.1 | rsample | 1.1.1 |
Rsolnp | 1.16 | RSpectra | 0.16-1 |
RSQLite | 2.3.0 | rstan | 2.21.8 |
rstantools | 2.3.0 | rstudioapi | 0.14 |
Rttf2pt1 | 1.3.12 | RUnit | 0.4.32 |
rversions | 2.1.2 | rvest | 1.0.3 |
Rvmmin | 2018-4.17.1 | s2 | 1.1.2 |
S4Vectors | 0.36.2 | sandwich | 3.0-2 |
sass | 0.4.5 | scales | 1.2.1 |
scatterplot3d | 0.3-43 | ScottKnott | 1.3-0 |
SDMTools | 1.1-221.2 | sealasso | 0.1-3 |
segmented | 1.6-2 | selectr | 0.4-2 |
sem | 3.1-15 | SemiPar | 1.0-4.2 |
semTools | 0.5-6 | seqinr | 4.2-23 |
seriation | 1.4.2 | sessioninfo | 1.2.2 |
setRNG | 2022.4-1 | sets | 1.0-24 |
sf | 1.0-9 | sfsmisc | 1.1-14 |
shape | 1.4.6 | shapefiles | 0.7.2 |
shiny | 1.7.4 | shiny.semantic | 0.4.3 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinythemes | 1.2.0 | SimComp | 3.3 |
simsem | 0.5-16 | sitmo | 2.0.2 |
slam | 0.1-50 | slider | 0.3.0 |
sn | 2.1.0 | sna | 2.7-1 |
snakecase | 0.11.0 | snow | 0.4-4 |
snowfall | 1.84-6.2 | solrium | 1.2.0 |
sourcetools | 0.1.7-1 | sp | 1.6-0 |
spam | 2.9-1 | SparseM | 1.81 |
SpatialExtremes | 2.1-0 | spatstat | 3.0-3 |
spatstat.data | 3.0-1 | spatstat.explore | 3.1-0 |
spatstat.geom | 3.1-0 | spatstat.linnet | 3.0-6 |
spatstat.model | 3.2-1 | spatstat.random | 3.1-4 |
spatstat.sparse | 3.0-1 | spatstat.utils | 3.0-2 |
spData | 2.2.2 | spdep | 1.2-8 |
SQUAREM | 2021.1 | ssgraph | 1.15 |
stabs | 0.6-4 | StanHeaders | 2.21.0-7 |
statmod | 1.5.0 | statnet.common | 4.8.0 |
stringi | 1.7.12 | stringr | 1.5.0 |
strucchange | 1.5-3 | styler | 1.9.1 |
subplex | 1.8 | superml | 0.5.6 |
SuppDists | 1.1-9.7 | survcomp | 1.48.0 |
survey | 4.1-1 | survivalROC | 1.0.3.1 |
survPresmooth | 1.1-11 | svUnit | 1.0.6 |
sybil | 2.2.0 | synbreedData | 1.5 |
sys | 3.4.1 | systemfonts | 1.0.4 |
tables | 0.9.10 | tabnet | 0.3.0 |
taxize | 0.9.100 | tensor | 1.5 |
tensorA | 0.36.2 | terra | 1.7-18 |
testit | 0.13 | testthat | 3.1.7 |
textplot | 0.2.2 | textshaping | 0.3.6 |
TH.data | 1.1-1 | threejs | 0.3.3 |
tibble | 3.2.0 | tidymodels | 1.0.0 |
tidyquant | 1.0.6 | tidyr | 1.3.0 |
tidyselect | 1.2.0 | tidytree | 0.4.2 |
tidyverse | 2.0.0 | tiff | 0.1-11 |
timechange | 0.2.0 | timeDate | 4022.108 |
timeSeries | 4021.105 | timetk | 2.8.2 |
tinytex | 0.44 | tis | 1.39 |
tkrplot | 0.0-27 | tmvtnorm | 1.5 |
topicmodels.etm | 0.1.0 | torch | 0.9.1 |
torchaudio | 0.3.1.9000 | torchdatasets | 0.3.0 |
torchvision | 0.5.0 | treeio | 1.22.0 |
triebeard | 0.4.1 | trimcluster | 0.1-5 |
tripack | 1.3-9.1 | truncnorm | 1.0-8 |
truncreg | 0.2-5 | tseries | 0.10-53 |
tsfeatures | 1.1 | TSP | 1.2-3 |
TTR | 0.24.3 | tune | 1.0.1 |
tweenr | 2.0.2 | tzdb | 0.3.0 |
ucminf | 1.1-4.1 | udpipe | 0.8.11 |
units | 0.8-1 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
usethis | 2.1.6 | utf8 | 1.2.3 |
uuid | 1.1-0 | uwot | 0.1.14 |
V8 | 4.2.2 | vcd | 1.4-11 |
vctrs | 0.6.0 | vegan | 2.6-4 |
VGAM | 1.1-8 | VGAMdata | 1.1-8 |
viridis | 0.6.2 | viridisLite | 0.4.1 |
visNetwork | 2.1.2 | vroom | 1.6.1 |
waldo | 0.4.0 | warp | 0.2.0 |
waveslim | 1.8.4 | wavethresh | 4.7.2 |
webshot | 0.5.4 | whisker | 0.4.1 |
widenet | 0.1-2 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | WikipediR | 1.5.0 |
wikitaxa | 0.4.0 | withr | 2.5.0 |
wk | 0.7.2 | word2vec | 0.3.4 |
workflows | 1.1.3 | workflowsets | 1.0.0 |
worrms | 0.4.2 | xfun | 0.37 |
xgboost | 1.7.3.1 | XLConnect | 1.0.7 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.13 | xml2 | 1.3.3 |
xopen | 1.0.0 | xtable | 1.8-4 |
xts | 0.13.0 | XVector | 0.38.0 |
yaml | 2.3.7 | yardstick | 1.1.0 |
yulab.utils | 0.0.6 | zeallot | 0.1.0 |
zip | 2.2.2 | zlibbioc | 1.44.0 |
zoo | 1.8-11 |
The AMI for the virus scan API server using ClamAV is a pre-configured Amazon Machine 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 AMI, 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.
IAM Role
To enable the server to download S3 data, an IAM role with the policy AmazonS3ReadOnlyAccess attached is required. This role should be created and associated with the EC2 instance, granting it the necessary access rights.
Security Consideration
To enhance security, it is highly recommended to disable the public IP address associated with the instance. This measure helps restrict access to the API Server and mitigates potential risks.
Network Consideration
It is suggested to deploy this server within the same availability zone as your existing infrastructure to minimize data transfer charges. By colocating the virus scan server and your other resources in the same availability zone, you can leverage the low-cost or free data transfer within the same zone. And it ensures that the virus scan API server operates within the same network environment as your infrastructure, enabling faster and more efficient communication while minimizing data transfer costs.
Cross-Machine File Scanning
If you need to scan files residing on different machines, you can utilize the NFS server enabled on the API server. Here's how:
-
Create a directory on your local machine to store the data you want to scan. For example:
mkdir /tmp/data-to-scan
-
Mount the NFS shared directory from your Virus Scan Server AMI to your local machine using this command:
sudo mount -t nfs api-server-ip-address:/elm/shared /tmp/data-to-scan
-
Any files stored in /tmp/data-to-scan on your local machine can be accessed and scanned by the Virus Scan Server AMI via http://api-server-ip-address:8080/api/clamav/scan/file
The NFS client can be installed using
sudo apt install nfs-common
and
sudo yum install nfs-utils
for ubuntu-like and amazon-linux-like operating systems, respectively.
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.
The virus scan API Server is configured to listen on the local address 127.0.0.1:3000. To initiate a virus scan, you can send an HTTP request to http://127.0.0.1:3000/api/clamav/scan/s3/object if the request originates from within the virus scan API server.
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.1
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
Version 1.2.1.0
Updated clamav to 1.2.1 and ubuntu to 22.04.
API endpoints
-
http://ip-address:8080/api/clamav/scan/s3/object
-
http://ip-address:8080/api/clamav/scan/file
Version 1.1.0.1
Applied security patching and Enabled NSF Server such that the API server can be used to scan the files on other machines.
With this new feature, implementing it into your existing application is straightforward. Here's how you can do it:
-
Install the NFS client on your existing EC2 instance.
-
Mount the shared folder, /elm/shared, located on the API Server, to your existing EC2 instance. You can choose a destination directory for this, for example, /tmp/data-to-scan.
-
Once the folder is mounted, any files placed into /tmp/data-to-scan can be seamlessly scanned using the API Server, as if these files were stored locally in the /elm/shared folder on the API Server.
API endpoints
-
http://ip-address:8080/api/clamav/scan/s3/object
-
http://ip-address:8080/api/clamav/scan/file
Version 1.1.0.0
-
Updated ClamAV to 1.1.0
-
Enabled detecting OLE2 files containing VBA macros, which were not detected by signatures will be marked as "Heuristics.OLE2.ContainsMacros".
-
The AMI version naming convention has been changed to refer to the ClamAV version.
API endpoints
-
http://ip-address:8080/api/clamav/scan/s3/object
-
http://ip-address:8080/api/clamav/scan/file
After the EC2 instance is started, you can access the Bayesian Workbench 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.
Bayesian Statistics Workbench for R on AWS Marketplace
The steps of starting this workbench is the same with the procedure of spinning up an instance of our RStudio Server product.
Subscribe to the AMI
Continue to configure the EC2 instance
Choose a region close to your location
Choose an instance type
t3.xlarge 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 "Launch instances", "Instance settings", and then "Change instance type".
RStudio Server
R: 4.3.2
rstudio-server: 2023.09.01-494
Intel MKL for blas and lapack
Release Notes
Install R, rstudio-server, Intel MKL and Bayesian statistics packages.
R: 4.3.2; rstudio-server: 2023.09.1-494
R packages (672)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.0 |
abcrf | 1.9 | abglasso | 0.1.1 |
abind | 1.4-5 | abtest | 1.0.1 |
acebayes | 1.10 | AdMit | 2.1.9 |
ammiBayes | 1.0-1 | AnaCoDa | 0.1.4.4 |
anytime | 0.3.9 | AovBay | 0.1.0 |
ape | 5.7-1 | APFr | 1.0.2 |
approximator | 1.2-8 | ArchaeoChron | 0.1 |
ArchaeoPhases | 1.8 | arm | 1.13-1 |
ash | 1.0-15 | ashr | 2.2-63 |
askpass | 1.2.0 | assertthat | 0.2.1 |
astsa | 2.0 | BACCO | 2.1-0 |
BACCT | 1.0 | backports | 1.4.1 |
baggr | 0.7.6 | bain | 0.2.10 |
BaM | 1.0.3 | bama | 1.3.0 |
bamdit | 3.4.0 | bamlss | 1.2-2 |
bang | 1.0.2 | BANOVA | 1.2.1 |
BART | 2.9.4 | bartBMA | 1.0 |
bartCause | 1.0-6 | bartcs | 1.2.0 |
bartMachine | 1.3.4.1 | bartMachineJARs | 1.2.1 |
BAS | 1.6.4 | basad | 0.3.0 |
base64enc | 0.1-3 | basicMCMCplots | 0.2.7 |
BaSkePro | 0.1.0 | BASS | 1.3.1 |
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-8 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.3.1 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.5 |
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.8 | BayesLogit | 2.1 |
bayeslongitudinal | 0.1.0 | bayesm | 3.1-6 |
BayesMallows | 1.4.0 | BayesMassBal | 1.1.0 |
bayesmeta | 3.3 | bayesmix | 0.7-6 |
bayesplot | 1.10.0 | bayesQR | 2.4 |
bayestestR | 0.13.1 | bayesTFR | 7.4-2 |
BayesTools | 0.2.16 | BayesTree | 0.3-1.4 |
BayesVarSel | 2.2.5 | BayesX | 0.3-3 |
BAYSTAR | 0.2-10 | BCBCSF | 1.0-1 |
BCE | 2.2.0 | Bchron | 4.7.6 |
bcp | 4.0.3 | BDgraph | 2.72 |
Bergm | 5.0.6 | BH | 1.81.0-1 |
bigmemory | 4.6.1 | bigmemory.sri | 0.1.6 |
bit | 4.0.5 | bit64 | 4.0.5 |
bitops | 1.0-7 | blavaan | 0.5-2 |
BLR | 1.6 | BMA | 3.18.17 |
bmixture | 1.7 | BMS | 0.3.5 |
bnlearn | 4.9 | BNSP | 2.2.3 |
boa | 1.1.8-2 | Bolstad | 0.2-41 |
Bolstad2 | 1.0-29 | Boom | 0.9.11 |
BoomSpikeSlab | 1.2.5 | bqtl | 1.0-35 |
brew | 1.0-8 | bridgesampling | 1.1-2 |
brio | 1.1.3 | brms | 2.20.4 |
Brobdingnag | 1.2-9 | broom | 1.0.5 |
bsamGP | 1.2.4 | bslib | 0.5.1 |
bspec | 1.6 | bspmma | 0.1-2 |
bsts | 0.9.9 | bsvars | 2.0.0 |
BVAR | 1.0.4 | bvarsv | 1.1 |
ca | 0.71.1 | cachem | 1.0.8 |
calibrator | 1.2-8 | callr | 3.7.3 |
car | 3.1-2 | CARBayes | 6.0 |
CARBayesdata | 3.0 | CARBayesST | 4.0 |
carData | 3.0-5 | caTools | 1.18.2 |
causact | 0.5.3 | CausalImpact | 1.3.0 |
chandwich | 1.1.6 | checkmate | 2.3.0 |
CholWishart | 1.1.2 | chron | 2.3-61 |
CircSpaceTime | 0.9.0 | CircStats | 0.2-6 |
circular | 0.5-0 | classInt | 0.4-10 |
cli | 3.6.1 | clipr | 0.8.0 |
clue | 0.3-65 | cmdstanr | 0.6.1 |
coalescentMCMC | 0.4-4 | coalitions | 0.6.24 |
coda | 0.19-4 | colorspace | 2.1-0 |
colourpicker | 1.3.0 | combinat | 0.0-8 |
commonmark | 1.9.0 | compare | 0.2-6 |
CompQuadForm | 1.4.3 | config | 0.3.2 |
contfrac | 1.1-12 | corpcor | 1.6.10 |
corrplot | 0.92 | cowplot | 1.1.1 |
CPBayes | 1.1.0 | cpp11 | 0.4.6 |
crayon | 1.5.2 | crosstalk | 1.2.0 |
ctv | 0.9-5 | cubature | 2.1.0 |
curl | 5.1.0 | cvAUC | 1.1.4 |
data.table | 1.14.8 | datawizard | 0.9.0 |
dbarts | 0.9-23 | DBI | 1.1.3 |
dclone | 2.3-2 | deBInfer | 0.4.4 |
deldir | 1.0-9 | dendextend | 1.17.1 |
densEstBayes | 1.0-2.2 | DEoptimR | 1.1-3 |
desc | 1.4.2 | deSolve | 1.38 |
DHARMa | 0.4.6 | DiagrammeR | 1.0.10 |
diffobj | 0.3.5 | digest | 0.6.33 |
dina | 2.0.0 | DIRECT | 1.1.0 |
dirichletprocess | 0.4.2 | distfree.cr | 1.5.1 |
distributional | 0.3.2 | distributions3 | 0.2.1 |
DistributionUtils | 0.6-1 | dlm | 1.1-6 |
doParallel | 1.0.17 | doRNG | 1.8.6 |
dotCall64 | 1.1-0 | downloader | 0.4 |
dplyr | 1.1.3 | DT | 0.30 |
dtw | 1.23-1 | dygraphs | 1.1.1.6 |
e1071 | 1.7-13 | EbayesThresh | 1.4-12 |
ebdbNet | 1.2.8 | edina | 0.1.1 |
egg | 0.4.5 | eha | 2.11.1 |
eigenmodel | 1.11 | ellipse | 0.5.0 |
ellipsis | 0.3.2 | elliptic | 1.4-0 |
emg | 1.0.9 | emulator | 1.2-21 |
ensembleBMA | 5.1.8 | EntropyMCMC | 1.0.4 |
ergm | 4.5.0 | errum | 0.0.3 |
etrunct | 0.1 | evaluate | 0.23 |
evd | 2.3-6.1 | exdex | 1.2.2 |
expm | 0.999-7 | extraDistr | 1.9.1 |
extrafont | 0.19 | extrafontdb | 1.0 |
fansi | 1.0.5 | farver | 2.1.1 |
fastmap | 1.1.1 | fastmatch | 1.1-4 |
fdrtool | 1.2.17 | fftwtools | 0.9-11 |
fields | 15.2 | FME | 1.3.6.3 |
FNN | 1.1.3.2 | fontawesome | 0.5.2 |
forcats | 1.0.0 | foreach | 1.5.2 |
forecast | 8.21.1 | forestplot | 3.1.3 |
Formula | 1.2-5 | fracdiff | 1.5-2 |
fresh | 0.2.0 | fs | 1.6.3 |
future | 1.33.0 | future.apply | 1.11.0 |
gam | 1.22-2 | gamlss.dist | 6.1-1 |
gap | 1.5-3 | gap.datasets | 0.0.6 |
gclus | 1.3.2 | GeneralizedHyperbolic | 0.8-4 |
generics | 0.1.3 | geojsonsf | 2.0.3 |
geometries | 0.2.3 | geometry | 0.4.7 |
geoR | 1.9-2 | GGally | 2.1.2 |
ggalt | 0.4.0 | ggcharts | 0.2.1 |
ggExtra | 0.10.1 | ggforce | 0.4.1 |
ggmcmc | 1.5.1.1 | ggplot2 | 3.4.4 |
ggraph | 2.1.0 | ggrepel | 0.9.4 |
ggridges | 0.5.4 | ggvis | 0.4.8 |
GIGrvg | 0.8 | glasso | 1.11 |
glmnet | 4.1-8 | globals | 0.16.2 |
glue | 1.6.2 | gmm | 1.8 |
gmp | 0.7-2 | gplots | 3.1.3 |
gRain | 1.4.0 | graphlayouts | 1.0.2 |
gRbase | 2.0.0 | greta | 0.4.3 |
gridExtra | 2.3 | gsl | 2.1-8 |
gtable | 0.3.4 | gtools | 3.9.4 |
hardhat | 1.3.0 | haven | 2.5.3 |
hbsae | 1.2 | HDInterval | 0.2.4 |
hdrcde | 3.4 | heatmaply | 1.5.0 |
here | 1.0.1 | hett | 0.3-3 |
highcharter | 0.9.4 | highr | 0.10 |
Hmisc | 5.1-1 | hms | 1.1.3 |
htmlTable | 2.4.2 | htmltools | 0.5.7 |
htmlwidgets | 1.6.2 | httpuv | 1.6.12 |
httr | 1.4.7 | hypergeo | 1.2-13 |
IDPmisc | 1.1.20 | igraph | 1.5.1 |
inline | 0.3.19 | insight | 0.19.6 |
interp | 1.1-4 | intervals | 0.15.4 |
invgamma | 1.1 | irlba | 2.3.5.1 |
isoband | 0.2.7 | iterators | 1.0.14 |
iterLap | 1.1-4 | itertools | 0.1-3 |
jjb | 0.1.1 | jomo | 2.7-6 |
jpeg | 0.1-10 | jquerylib | 0.1.4 |
jsonify | 1.2.2 | jsonlite | 1.8.7 |
kernlab | 0.9-32 | knitr | 1.45 |
ks | 1.14.1 | label.switching | 1.8 |
labeling | 0.4.3 | LaplacesDemon | 16.1.6 |
lars | 1.3 | later | 1.3.1 |
latticeExtra | 0.6-30 | lavaan | 0.6-16 |
LAWBL | 1.5.0 | lazyeval | 0.2.2 |
leafem | 0.2.3 | leaflet | 2.2.0 |
leaflet.providers | 2.0.0 | leafpop | 0.1.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
lhs | 1.1.6 | lifecycle | 1.0.3 |
limSolve | 1.5.7 | linprog | 0.9-4 |
listenv | 0.9.0 | lme4 | 1.1-35.1 |
lmm | 1.4 | lmtest | 0.9-40 |
locfit | 1.5-9.8 | loo | 2.6.0 |
lpSolve | 5.6.19 | lpSolveAPI | 5.5.2.0-17.10 |
lubridate | 1.9.3 | magic | 1.6-1 |
magrittr | 2.0.3 | maps | 3.4.1.1 |
maptree | 1.4-8 | mapview | 2.11.2 |
markdown | 1.11 | mathjaxr | 1.6-0 |
matrixcalc | 1.0-6 | MatrixModels | 0.5-3 |
matrixStats | 1.0.0 | maxLik | 1.5-2 |
MBA | 0.1-0 | mclust | 6.0.0 |
mcmc | 0.9-7 | mcmcensemble | 3.0.0 |
MCMCglmm | 2.35 | MCMCpack | 1.6-3 |
mcmcse | 1.5-0 | MCMCvis | 0.16.3 |
memoise | 2.0.1 | metadat | 1.2-0 |
metafor | 4.4-0 | metRology | 0.9-28-1 |
mice | 3.16.0 | mime | 0.12 |
miniUI | 0.1.1.1 | minpack.lm | 1.2-4 |
minqa | 1.2.6 | misc3d | 0.9-1 |
miscTools | 0.6-28 | missForest | 1.5 |
mitml | 0.4-5 | mixsqp | 0.3-48 |
mixtools | 2.0.0 | mlbench | 2.1-3.1 |
mlogitBMA | 0.1-7 | mnormt | 2.1.1 |
MNP | 3.1-4 | mombf | 3.4.2 |
moments | 0.14.1 | movMF | 0.2-7 |
msm | 1.7 | multicool | 0.1-12 |
munsell | 0.5.0 | mvnfast | 0.2.8 |
mvtnorm | 1.2-3 | ncvreg | 3.14.1 |
network | 1.18.1 | NetworkChange | 0.8 |
networkD3 | 0.4 | nimble | 1.0.1 |
nleqslv | 3.3.4 | nloptr | 2.0.3 |
nnls | 1.5 | nonnest2 | 0.5-6 |
nortest | 1.0-4 | numDeriv | 2016.8-1.1 |
openEBGM | 0.9.1 | openssl | 2.1.1 |
openxlsx | 4.2.5.2 | optimx | 2023-10.21 |
ordinal | 2022.11-16 | orthopolynom | 1.0-6.1 |
overlapping | 2.1 | pan | 1.9 |
parallelly | 1.36.0 | parsnip | 1.1.1 |
patchwork | 1.1.3 | pbapply | 1.7-2 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.2 |
PBSddesolve | 1.13.3 | pcaPP | 2.0-3 |
pcFactorStan | 1.5.4 | permute | 0.9-7 |
phangorn | 2.11.1 | pillar | 1.9.0 |
pkgbuild | 1.4.2 | pkgconfig | 2.0.3 |
pkgload | 1.3.3 | plot3D | 1.4 |
plotly | 4.10.3 | plotMCMC | 2.0.1 |
plotrix | 3.8-3 | plyr | 1.8.9 |
png | 0.1-8 | polyclip | 1.10-6 |
polynom | 1.4-1 | posterior | 1.5.0 |
pracma | 2.4.2 | praise | 1.0.0 |
PReMiuM | 3.2.10 | prettyunits | 1.2.0 |
prevalence | 0.4.1 | pROC | 1.18.5 |
processx | 3.8.2 | progress | 1.2.2 |
progressr | 0.14.0 | proj4 | 1.0-13 |
promises | 1.2.1 | prophet | 1.0 |
proxy | 0.4-27 | ps | 1.7.5 |
pscl | 1.5.5.1 | psych | 2.3.9 |
purrr | 1.0.2 | qap | 0.1-2 |
qgam | 1.3.4 | qgraph | 1.9.8 |
qs | 0.25.5 | quadprog | 1.5-8 |
quantmod | 0.4.25 | quantreg | 5.97 |
QuickJSR | 1.0.7 | R2jags | 0.7-1 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R6 | 2.5.1 | ramps | 0.6.18 |
randomForest | 4.7-1.1 | randtoolbox | 2.0.4 |
ranger | 0.15.1 | RANN | 2.6.1 |
rapidjsonr | 1.2.0 | RApiSerialize | 0.1.2 |
rappdirs | 0.3.3 | raster | 3.6-26 |
Rbeast | 0.9.9 | rbibutils | 2.2.16 |
RColorBrewer | 1.1-3 | Rcpp | 1.0.11 |
RcppArmadillo | 0.12.6.6.0 | RcppDist | 0.1.1 |
RcppEigen | 0.3.3.9.4 | RcppParallel | 5.1.7 |
RcppProgress | 0.4.2 | RcppRoll | 0.3.0 |
RcppTN | 0.2-2 | RcppTOML | 0.2.2 |
RCurl | 1.98-1.13 | Rdpack | 2.5 |
readr | 2.1.4 | REBayes | 2.54 |
registry | 0.5-1 | relations | 0.6-13 |
rematch2 | 2.1.2 | reshape | 0.8.9 |
reshape2 | 1.4.4 | reticulate | 1.34.0 |
revdbayes | 1.5.2 | rgen | 0.0.1 |
Rglpk | 0.6-5 | RInside | 0.2.18 |
rintrojs | 0.3.3 | rjags | 4-14 |
rJava | 1.0-6 | rjson | 0.2.21 |
rlang | 1.1.2 | rle | 0.9.2 |
rlist | 0.4.6.2 | rmarkdown | 2.25 |
Rmpfr | 0.9-3 | rmutil | 1.1.10 |
rngtools | 1.5.2 | rngWELL | 0.10-9 |
RoBMA | 3.1.0 | robustbase | 0.99-0 |
ROCR | 1.0-11 | rootSolve | 1.8.2.4 |
rprojroot | 2.0.4 | rrcov | 1.7-4 |
rrum | 0.2.0 | RSGHB | 1.2.2 |
rstan | 2.32.3 | rstanarm | 2.26.1 |
rstantools | 2.3.1.1 | rstiefel | 1.0.1 |
rstudioapi | 0.15.0 | Rttf2pt1 | 1.3.12 |
runjags | 2.2.2-1.1 | Runuran | 0.38 |
rust | 1.4.1 | rvest | 1.0.3 |
s2 | 1.1.4 | sandwich | 3.0-2 |
sass | 0.4.7 | satellite | 1.0.4 |
sbgcop | 0.980 | scales | 1.2.1 |
segmented | 1.6-4 | selectr | 0.4-2 |
SemiPar | 1.0-4.2 | seriation | 1.5.1 |
servr | 0.27 | sets | 1.0-24 |
sf | 1.0-14 | sfheaders | 0.4.3 |
sgd | 1.1.1 | shape | 1.4.6 |
shapefiles | 0.7.2 | shiny | 1.7.5.1 |
shinyAce | 0.4.2 | shinybrms | 1.8.0 |
shinycssloaders | 1.0.0 | shinydashboard | 0.7.2 |
shinydashboardPlus | 2.0.3 | shinyjs | 2.1.0 |
shinystan | 2.6.0 | shinythemes | 1.2.0 |
shinyWidgets | 0.8.0 | shrinkTVP | 2.0.6 |
simcdm | 0.1.1 | skmeans | 0.2-16 |
slam | 0.1-50 | sn | 2.1.1 |
sna | 2.7-1 | sourcetools | 0.1.7-1 |
sp | 2.1-1 | spacetime | 1.3-0 |
spam | 2.10-0 | SparseM | 1.81 |
spBayes | 0.4-6 | spData | 2.3.0 |
spdep | 1.2-8 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-19 | splancs | 2.01-44 |
spTimer | 3.3.2 | SQUAREM | 2021.1 |
ssgraph | 1.15 | ssMousetrack | 1.1.6 |
StanHeaders | 2.26.28 | statmod | 1.5.0 |
statnet.common | 4.9.0 | stochvol | 3.2.1 |
stringfish | 0.15.8 | stringi | 1.7.12 |
stringr | 1.5.0 | SuperLearner | 2.0-28.1 |
svglite | 2.1.2 | sys | 3.4.2 |
systemfonts | 1.0.5 | tensorA | 0.36.2 |
tensorflow | 2.14.0 | terra | 1.7-55 |
testthat | 3.2.0 | tfautograph | 0.3.2 |
tfruns | 1.5.1 | tgp | 2.4-21 |
threejs | 0.3.3 | tibble | 3.2.1 |
tidygraph | 1.2.3 | tidyr | 1.3.0 |
tidyselect | 1.2.0 | timechange | 0.2.0 |
timeDate | 4022.108 | tinytex | 0.48 |
tmvnsim | 1.0-2 | tmvtnorm | 1.5 |
toOrdinal | 1.3-0.0 | truncdist | 1.0-2 |
truncnorm | 1.0-9 | trust | 0.1-8 |
tseries | 0.10-54 | TSP | 1.2-4 |
TTR | 0.24.3 | tweenr | 2.0.2 |
tzdb | 0.4.0 | ucminf | 1.2.0 |
units | 0.8-4 | urca | 1.3-3 |
utf8 | 1.2.4 | uuid | 1.1-1 |
vctrs | 0.6.4 | vegan | 2.6-4 |
VGAM | 1.1-9 | vglmer | 1.0.3 |
viridis | 0.6.4 | viridisLite | 0.4.2 |
visNetwork | 2.1.2 | vroom | 1.6.4 |
waiter | 0.2.5 | waldo | 0.5.2 |
wavethresh | 4.7.2 | webshot | 0.5.5 |
whisker | 0.4.1 | withr | 2.5.2 |
wk | 0.9.0 | wpp2019 | 1.1-1 |
xfun | 0.41 | XML | 3.99-0.15 |
xml2 | 1.3.5 | xtable | 1.8-4 |
xts | 0.13.1 | yaml | 2.3.7 |
yesno | 0.1.2 | zic | 0.9.1 |
zip | 2.3.0 | zoo | 1.8-12 |
After the EC2 instance is started, you can access the Bioconductor Workbench 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.
Bioconductor Workbench for R on AWS Marketplace
The steps of starting this workbench is the same with the procedure of spinning up an instance of our RStudio Server product.
Subscribe to the AMI
Continue to configure the EC2 instance
Choose a region close to your location
Choose an instance type
t3.xlarge 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 "Launch instances", "Instance settings", and then "Change instance type".
RStudio Server
R: 4.3.0
rstudio-server: 2023.12.1-402
Release Notes
Install popular Bioconductor packages.
R: 4.3.0; rstudio-server: 2023.12.1-402
R packages (3829)
package | version | package | version |
---|---|---|---|
a4 | 1.50.1 | a4Base | 1.50.0 |
a4Classif | 1.50.0 | a4Core | 1.50.0 |
a4Preproc | 1.50.0 | a4Reporting | 1.50.0 |
ABarray | 1.70.0 | abind | 1.4-5 |
abseqR | 1.20.0 | ABSSeq | 1.56.0 |
acde | 1.32.0 | ACE | 1.20.0 |
aCGH | 1.80.0 | ACME | 2.58.0 |
ada | 2.0-5 | adabag | 5.0 |
ADaCGH2 | 2.42.0 | ADAM | 1.18.0 |
ADAMgui | 1.18.0 | additivityTests | 1.1-4.1 |
adductData | 1.18.0 | adductomicsR | 1.18.0 |
ade4 | 1.7-22 | adehabitatLT | 0.3.27 |
adehabitatMA | 0.3.16 | ADGofTest | 0.3 |
ADImpute | 1.12.0 | admisc | 0.35 |
adSplit | 1.72.0 | adverSCarial | 1.0.0 |
AffiXcan | 1.20.0 | affxparser | 1.74.0 |
affy | 1.80.0 | affycomp | 1.78.0 |
affyContam | 1.60.0 | affycoretools | 1.74.0 |
affydata | 1.50.0 | affyILM | 1.54.0 |
affyio | 1.72.0 | affylmGUI | 1.76.0 |
affyPLM | 1.78.0 | AffyRNADegradation | 1.48.0 |
AGDEX | 1.50.0 | aggregateBioVar | 1.12.0 |
aggregation | 1.0.1 | agilp | 3.34.0 |
AgiMicroRna | 2.52.0 | agricolae | 1.3-7 |
AHMassBank | 1.2.1 | AhoCorasickTrie | 0.1.2 |
AICcmodavg | 2.3-3 | AIMS | 1.34.0 |
airpart | 1.10.0 | airway | 1.22.0 |
akima | 0.6-3.4 | akmbiclust | 0.1.0 |
alabama | 2023.1.0 | alabaster | 1.2.0 |
alabaster.base | 1.2.1 | alabaster.bumpy | 1.2.0 |
alabaster.files | 1.0.0 | alabaster.mae | 1.2.0 |
alabaster.matrix | 1.2.0 | alabaster.ranges | 1.2.0 |
alabaster.sce | 1.2.0 | alabaster.schemas | 1.2.0 |
alabaster.se | 1.2.0 | alabaster.spatial | 1.2.0 |
alabaster.string | 1.2.0 | alabaster.vcf | 1.2.0 |
ALDEx2 | 1.34.0 | alevinQC | 1.18.0 |
AlgDesign | 1.2.1 | ALL | 1.44.0 |
AllelicImbalance | 1.40.0 | alluvial | 0.1-2 |
AlphaBeta | 1.16.0 | AlpsNMR | 4.4.0 |
altcdfenvs | 2.64.0 | amap | 0.8-19 |
AMARETTO | 1.18.0 | AMOUNTAIN | 1.28.0 |
amplican | 1.24.0 | analogue | 0.17-6 |
Anaquin | 2.26.0 | ANCOMBC | 2.4.0 |
AneuFinder | 1.30.0 | AneuFinderData | 1.30.0 |
ANF | 1.24.1 | animalcules | 1.18.3 |
animation | 2.7 | annaffy | 1.74.0 |
anndata | 0.7.5.6 | annmap | 1.44.0 |
annotate | 1.80.0 | AnnotationDbi | 1.64.1 |
AnnotationFilter | 1.26.0 | AnnotationForge | 1.44.0 |
AnnotationHub | 3.10.0 | AnnotationHubData | 1.32.1 |
annotationTools | 1.76.0 | annotatr | 1.28.0 |
anota | 1.50.0 | anota2seq | 1.24.0 |
antiProfiles | 1.42.0 | AnVIL | 1.14.2 |
AnVILBilling | 1.12.0 | AnVILPublish | 1.12.0 |
AnVILWorkflow | 1.2.0 | anytime | 0.3.9 |
aod | 1.3.3 | aods3 | 0.4-1.2 |
APAlyzer | 1.16.0 | apcluster | 1.4.11 |
apComplex | 2.68.0 | ape | 5.7-1 |
apeglm | 1.24.0 | APL | 1.6.1 |
aplot | 0.2.2 | appreci8R | 1.20.2 |
archive | 1.1.7 | argparse | 2.2.2 |
aricode | 1.0.3 | arm | 1.13-1 |
aroma.affymetrix | 3.2.2 | aroma.apd | 0.7.0 |
aroma.core | 3.3.1 | aroma.light | 3.32.0 |
ArrayExpress | 1.62.0 | arrayhelpers | 1.1-0 |
arrayMvout | 1.60.0 | arrayQuality | 1.80.0 |
arrayQualityMetrics | 3.58.0 | ARRmData | 1.38.0 |
ARRmNormalization | 1.42.0 | arrow | 15.0.1 |
artMS | 1.20.0 | arules | 1.7-7 |
ASAFE | 1.28.0 | ASEB | 1.46.3 |
ASGSCA | 1.36.0 | ash | 1.0-15 |
ashr | 2.2-63 | ASICS | 2.18.1 |
askpass | 1.2.0 | ASpli | 2.12.0 |
assertive.base | 0.0-9 | assertive.files | 0.0-2 |
assertive.numbers | 0.0-2 | assertive.sets | 0.0-3 |
assertthat | 0.2.1 | AssessORF | 1.20.0 |
ASSET | 2.20.0 | ASSIGN | 1.38.0 |
ASURAT | 1.6.0 | ATACCoGAPS | 1.4.0 |
ATACseqQC | 1.26.0 | ATACseqTFEA | 1.4.0 |
atena | 1.8.0 | atSNP | 1.18.0 |
attempt | 0.3.1 | attract | 1.54.0 |
AUCell | 1.24.0 | autonomics | 1.10.2 |
available | 1.1.0 | AWFisher | 1.16.0 |
aws | 2.5-5 | aws.s3 | 0.3.21 |
aws.signature | 0.6.0 | awsMethods | 1.1-1 |
awst | 1.10.0 | BaalChIP | 1.28.0 |
babelgene | 22.9 | backbone | 2.1.3 |
backports | 1.4.1 | bacon | 1.30.0 |
BADER | 1.40.0 | BadRegionFinder | 1.30.0 |
BAGS | 2.42.0 | ballgown | 2.34.0 |
bambu | 3.4.0 | bamlss | 1.2-3 |
bamsignals | 1.34.0 | BANDITS | 1.18.1 |
bandle | 1.6.0 | banocc | 1.26.0 |
barcodetrackR | 1.10.0 | base64 | 2.0.1 |
base64enc | 0.1-3 | base64url | 1.4 |
basecallQC | 1.26.0 | baseline | 1.3-5 |
BaseSpaceR | 1.46.0 | Basic4Cseq | 1.38.0 |
BASiCS | 2.14.0 | BASiCStan | 1.4.0 |
BasicSTARRseq | 1.30.0 | basilisk | 1.14.3 |
basilisk.utils | 1.14.1 | batchelor | 1.18.1 |
BatchJobs | 1.9 | BatchQC | 1.30.0 |
batchtools | 0.9.17 | BayesKnockdown | 1.28.0 |
bayesm | 3.1-6 | BayesSpace | 1.12.0 |
bayNorm | 1.20.0 | baySeq | 2.36.0 |
BB | 2019.10-1 | BBCAnalyzer | 1.32.0 |
BBmisc | 1.13 | bbmle | 1.0.25.1 |
bbotk | 0.8.0 | bcellViper | 1.38.0 |
BCRANK | 1.64.0 | bcSeq | 1.24.0 |
bdsmatrix | 1.3-7 | beachmat | 2.18.1 |
beachmat.hdf5 | 1.0.0 | beadarray | 2.52.0 |
beadarraySNP | 1.68.0 | BeadDataPackR | 1.54.0 |
beanplot | 1.3.1 | BEARscc | 1.22.0 |
BEAT | 1.40.0 | BEclear | 2.18.0 |
beer | 1.6.0 | beeswarm | 0.4.0 |
bench | 1.1.3 | benchdamic | 1.8.2 |
benchmarkme | 1.0.8 | benchmarkmeData | 1.0.4 |
bestNormalize | 1.9.1 | betareg | 3.1-4 |
bezier | 1.1.2 | BG2 | 1.2.0 |
BgeeCall | 1.18.1 | BgeeDB | 2.28.0 |
bgx | 1.68.3 | BH | 1.84.0-0 |
BHC | 1.54.0 | BiasedUrn | 2.0.11 |
bibtex | 0.5.1 | BicARE | 1.60.0 |
biclust | 2.0.3.1 | BiFET | 1.22.0 |
biganalytics | 1.1.21 | bigassertr | 0.1.6 |
BiGGR | 1.38.0 | biglm | 0.9-2.1 |
bigmelon | 1.28.0 | bigmemory | 4.6.4 |
bigmemory.sri | 0.1.8 | bigparallelr | 0.3.2 |
bigrquery | 1.5.1 | bigstatsr | 1.5.12 |
billboarder | 0.4.1 | BindingSiteFinder | 2.0.0 |
binom | 1.1-1.1 | binr | 1.1.1 |
bioassayR | 1.40.0 | Biobase | 2.62.0 |
biobroom | 1.34.0 | biobtreeR | 1.14.0 |
bioCancer | 1.30.8 | BioCartaImage | 1.0.0 |
BiocBaseUtils | 1.4.0 | BiocBook | 1.0.0 |
BiocCheck | 1.38.2 | BiocFHIR | 1.4.0 |
BiocFileCache | 2.10.1 | BiocGenerics | 0.48.1 |
biocGraph | 1.64.0 | BiocHail | 1.2.0 |
BiocHubsShiny | 1.2.0 | BiocIO | 1.12.0 |
BiocManager | 1.30.22 | BiocNeighbors | 1.20.2 |
BioCor | 1.26.0 | BiocParallel | 1.36.0 |
BiocPkgTools | 1.20.0 | BiocSet | 1.16.1 |
BiocSingular | 1.18.0 | BiocSklearn | 1.24.0 |
BiocStyle | 2.30.0 | biocthis | 1.12.0 |
BiocVersion | 3.18.1 | biocViews | 1.70.0 |
BiocWorkflowTools | 1.28.0 | biodb | 1.10.0 |
biodbChebi | 1.8.0 | biodbExpasy | 1.6.0 |
biodbHmdb | 1.8.0 | biodbKegg | 1.8.0 |
biodbLipidmaps | 1.8.0 | biodbMirbase | 1.5.0 |
biodbNcbi | 1.6.0 | biodbNci | 1.6.0 |
biodbUniprot | 1.8.0 | bioDist | 1.74.0 |
biomaRt | 2.58.2 | biomartr | 1.0.7 |
biomformat | 1.30.0 | BioMVCClass | 1.70.0 |
biomvRCNS | 1.42.2 | BioNAR | 1.4.4 |
BioNERO | 1.10.1 | BioNet | 1.62.0 |
BioNetStat | 1.22.0 | BioQC | 1.30.0 |
biosigner | 1.30.0 | Biostrings | 2.70.3 |
BioTIP | 1.16.0 | biotmle | 1.26.0 |
biovizBase | 1.50.0 | BiRewire | 3.34.0 |
biscuiteer | 1.16.0 | biscuiteerData | 1.16.0 |
BiSeq | 1.42.0 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
biwt | 1.0.1 | blacksheepr | 1.16.0 |
bladderbatch | 1.40.0 | BlandAltmanLeh | 0.3.1 |
blima | 1.36.0 | BLMA | 1.26.0 |
blme | 1.0-5 | blob | 1.2.4 |
blockmodeling | 1.1.5 | BloodGen3Module | 1.10.0 |
bluster | 1.12.0 | BMA | 3.18.17 |
bmp | 0.3 | bnbc | 1.24.2 |
bnem | 1.10.0 | bnlearn | 4.9.3 |
bnstruct | 1.0.15 | BOBaFIT | 1.6.0 |
bookdown | 0.38 | BoolNet | 2.1.9 |
bootstrap | 2019.6 | borealis | 1.6.0 |
BPRMeth | 1.28.0 | BRAIN | 1.48.0 |
brainflowprobes | 1.16.0 | branchpointer | 1.28.0 |
breakpointR | 1.20.0 | breakpointRdata | 1.20.0 |
breastCancerVDX | 1.40.0 | brendaDb | 1.16.0 |
brew | 1.0-10 | BRGenomics | 1.14.1 |
brglm | 0.7.2 | BridgeDbR | 2.12.0 |
brio | 1.1.4 | BRISC | 1.0.5 |
broom | 1.0.5 | broom.helpers | 1.14.0 |
broom.mixed | 0.2.9.4 | BrowserViz | 2.24.0 |
bs4Dash | 2.3.3 | BSDA | 1.2.2 |
BSgenome | 1.70.2 | BSgenome.Celegans.UCSC.ce2 | 1.4.0 |
BSgenome.Drerio.UCSC.danRer7 | 1.4.0 | BSgenome.Ecoli.NCBI.20080805 | 1.3.1000 |
BSgenome.Hsapiens.1000genomes.hs37d5 | 0.99.1 | BSgenome.Hsapiens.NCBI.GRCh38 | 1.3.1000 |
BSgenome.Hsapiens.UCSC.hg18 | 1.3.1000 | BSgenome.Hsapiens.UCSC.hg19 | 1.4.3 |
BSgenome.Hsapiens.UCSC.hg38 | 1.4.5 | BSgenome.Mmusculus.UCSC.mm10 | 1.4.3 |
BSgenome.Mmusculus.UCSC.mm9 | 1.4.0 | BSgenomeForge | 1.2.1 |
bslib | 0.6.1 | bsplus | 0.1.4 |
bsseq | 1.38.0 | BubbleTree | 2.32.0 |
BufferedMatrix | 1.66.0 | BufferedMatrixMethods | 1.66.0 |
bugsigdbr | 1.8.4 | BUMHMM | 1.26.0 |
bumphunter | 1.44.0 | BumpyMatrix | 1.10.0 |
BUS | 1.58.0 | BUScorrect | 1.20.0 |
BUSpaRse | 1.16.1 | BUSseq | 1.8.0 |
butcher | 0.3.3 | BWStest | 0.2.3 |
C50 | 0.1.8 | ca | 0.71.1 |
cachem | 1.0.8 | CaDrA | 1.0.2 |
CAEN | 1.10.0 | CAFE | 1.38.0 |
CAGEfightR | 1.22.0 | cageminer | 1.8.0 |
CAGEr | 2.8.0 | Cairo | 1.6-2 |
calibrate | 1.7.7 | callr | 3.7.5 |
calm | 1.16.0 | CAMERA | 1.58.0 |
canceR | 1.36.7 | cancerclass | 1.46.0 |
capushe | 1.1.2 | car | 3.1-2 |
carData | 3.0-5 | cardelino | 1.4.0 |
Cardinal | 3.4.3 | CardinalIO | 1.0.0 |
caret | 6.0-94 | caretEnsemble | 2.0.3 |
CARNIVAL | 2.12.0 | casper | 2.36.0 |
CATALYST | 1.26.0 | catdata | 1.2.4 |
Category | 2.68.0 | categoryCompare | 1.46.0 |
CatEncoders | 0.1.1 | caTools | 1.18.2 |
CausalR | 1.34.0 | cba | 0.2-23 |
cbaf | 1.24.0 | CBEA | 1.2.0 |
cBioPortalData | 2.14.2 | CBNplot | 1.2.1 |
cbpManager | 1.10.0 | ccaPP | 0.3.3 |
ccdata | 1.28.0 | ccfindR | 1.22.0 |
ccImpute | 1.4.0 | ccmap | 1.28.0 |
CCP | 1.2 | CCPlotR | 1.0.0 |
CCPROMISE | 1.28.0 | ccrepe | 1.38.1 |
ccTensor | 1.0.2 | CDFt | 1.2 |
CDI | 1.0.2 | celaref | 1.20.0 |
celda | 1.18.1 | celestial | 1.4.6 |
CellaRepertorium | 1.12.0 | CellBarcode | 1.8.1 |
cellbaseR | 1.26.0 | CellBench | 1.18.0 |
celldex | 1.12.0 | cellHTS2 | 2.66.0 |
CelliD | 1.10.1 | cellity | 1.30.0 |
CellMapper | 1.28.0 | cellmigRation | 1.10.0 |
CellMixS | 1.18.0 | CellNOptR | 1.48.0 |
cellranger | 1.1.0 | cellscape | 1.26.0 |
CellScore | 1.22.0 | CellTrails | 1.20.0 |
cellxgenedp | 1.6.1 | CEMiTool | 1.26.0 |
censcyt | 1.10.0 | Cepo | 1.8.0 |
ceRNAnetsim | 1.14.1 | CeTF | 1.14.0 |
CexoR | 1.40.0 | CFAssay | 1.36.0 |
cfdnakit | 1.0.0 | cfDNAPro | 1.8.0 |
cfTools | 1.2.0 | cfToolsData | 1.0.0 |
CGEN | 3.38.0 | CGHbase | 1.62.0 |
CGHcall | 2.64.0 | cghMCR | 1.60.0 |
CGHnormaliter | 1.56.0 | CGHregions | 1.60.0 |
ChAMP | 2.32.0 | ChAMPdata | 2.34.0 |
changepoint | 2.2.4 | changepoint.np | 1.0.5 |
checkmate | 2.3.1 | ChemmineOB | 1.40.0 |
ChemmineR | 3.54.0 | chemometrics | 1.4.4 |
CHETAH | 1.18.0 | Chicago | 1.30.0 |
chihaya | 1.2.0 | chimeraviz | 1.28.0 |
ChIPanalyser | 1.24.0 | ChIPComp | 1.32.0 |
chipenrich | 2.26.0 | chipenrich.data | 2.26.0 |
ChIPexoQual | 1.26.0 | ChIPpeakAnno | 3.36.1 |
ChIPQC | 1.38.0 | ChIPseeker | 1.38.0 |
chipseq | 1.52.0 | ChIPseqR | 1.56.0 |
ChIPsim | 1.56.0 | ChIPXpress | 1.46.0 |
ChIPXpressData | 1.40.0 | chk | 0.9.1 |
chopsticks | 1.68.0 | chromDraw | 2.32.0 |
ChromHeatMap | 1.56.0 | chromhmmData | 0.99.2 |
chromPlot | 1.30.0 | ChromSCape | 1.12.0 |
chromstaR | 1.28.0 | chromstaRData | 1.28.0 |
chromVAR | 1.24.0 | chron | 2.3-61 |
CHRONOS | 1.30.0 | cicero | 1.20.0 |
CIMICE | 1.10.0 | CINdex | 1.30.0 |
circlize | 0.4.16 | circRNAprofiler | 1.16.0 |
CircSeqAlignTk | 1.4.0 | CircStats | 0.2-6 |
circular | 0.5-0 | cisPath | 1.42.0 |
CiteFuse | 1.14.0 | Ckmeans.1d.dp | 4.3.5 |
ClassifyR | 3.6.5 | classInt | 0.4-10 |
cleanUpdTSeq | 1.40.0 | cleaver | 1.40.0 |
clevRvis | 1.2.0 | cli | 3.6.2 |
clippda | 1.52.0 | clipper | 1.42.0 |
clipr | 0.8.0 | cliProfiler | 1.8.0 |
cliqueMS | 1.16.0 | clisymbols | 1.2.0 |
clock | 0.7.0 | Clomial | 1.38.0 |
clst | 1.50.0 | clstutils | 1.50.0 |
clue | 0.3-65 | CluMSID | 1.18.0 |
clustComp | 1.30.0 | clusterCons | 1.2 |
clusterExperiment | 2.22.0 | ClusterJudge | 1.24.0 |
clusterProfiler | 4.10.1 | ClusterR | 1.3.2 |
clusterRepro | 0.9 | clusterSeq | 1.26.0 |
ClusterSignificance | 1.30.0 | clusterSim | 0.51-3 |
clusterStab | 1.74.0 | clustifyr | 1.14.0 |
ClustIRR | 1.0.0 | clustree | 0.5.1 |
clustvarsel | 2.3.4 | clv | 0.3-2.4 |
clValid | 0.7 | CMA | 1.60.0 |
cMAP | 1.15.1 | cMap2data | 1.38.0 |
cmapR | 1.14.0 | cmdfun | 1.0.2 |
cn.farms | 1.50.0 | cn.mops | 1.48.0 |
CNAnorm | 1.48.0 | CNEr | 1.38.0 |
CNORdt | 1.44.0 | CNORfeeder | 1.42.0 |
CNORfuzzy | 1.44.0 | CNORode | 1.44.0 |
CNTools | 1.58.0 | CNVfilteR | 1.16.0 |
cnvGSA | 1.46.0 | CNViz | 1.10.0 |
CNVMetrics | 1.6.0 | CNVPanelizer | 1.34.0 |
CNVRanger | 1.18.1 | CNVrd2 | 1.40.0 |
cobs | 1.3-8 | CoCiteStats | 1.74.0 |
COCOA | 2.16.0 | coda | 0.19-4.1 |
CodeDepends | 0.6.5 | codelink | 1.70.0 |
CODEX | 1.34.0 | CoGAPS | 3.22.0 |
cogena | 1.36.0 | cogeqc | 1.6.2 |
Cogito | 1.8.0 | coGPS | 1.46.0 |
COHCAP | 1.48.0 | COHCAPanno | 1.38.0 |
coin | 1.4-3 | cola | 2.8.0 |
collapse | 2.0.10 | collections | 0.3.7 |
colorRamps | 2.3.4 | colorspace | 2.1-0 |
colourpicker | 1.3.0 | colourvalues | 0.3.9 |
comapr | 1.6.1 | combi | 1.14.0 |
combinat | 0.0-8 | coMET | 1.34.0 |
coMethDMR | 1.6.0 | common | 1.1.2 |
commonmark | 1.9.1 | compareGroups | 4.8.0 |
COMPASS | 1.40.0 | compcodeR | 1.38.0 |
compEpiTools | 1.36.0 | ComplexHeatmap | 2.18.0 |
ComplexUpset | 1.3.3 | compositions | 2.0-8 |
CompoundDb | 1.6.0 | CompQuadForm | 1.4.3 |
ComPrAn | 1.10.0 | compSPOT | 1.0.0 |
concaveman | 1.1.0 | concordexR | 1.2.0 |
condformat | 0.10.1 | condiments | 1.10.0 |
CONFESS | 1.30.0 | config | 0.3.2 |
configr | 0.3.5 | confintr | 1.0.2 |
conflicted | 1.2.0 | conicfit | 1.0.4 |
consensus | 1.20.0 | ConsensusClusterPlus | 1.66.0 |
consensusDE | 1.20.0 | consensusOV | 1.24.0 |
consensusSeekeR | 1.30.0 | consICA | 2.0.0 |
ConsRank | 2.1.4 | CONSTANd | 1.10.0 |
contiBAIT | 1.30.0 | contrast | 0.24.2 |
conumee | 1.36.0 | convert | 1.78.0 |
coop | 0.6-3 | copa | 1.70.0 |
copula | 1.1-3 | CopyNumberPlots | 1.18.0 |
coRdon | 1.20.0 | CoreGx | 2.6.1 |
Cormotif | 1.48.0 | coro | 1.0.4 |
corpcor | 1.6.10 | corral | 1.12.0 |
CORREP | 1.68.0 | corrgram | 1.14 |
corrplot | 0.92 | coseq | 1.26.0 |
CoSIA | 1.2.0 | COSMIC.67 | 1.38.0 |
cosmiq | 1.36.0 | cosmosR | 1.10.0 |
COSNet | 1.36.0 | COTAN | 2.2.3 |
countrycode | 1.5.0 | countsimQC | 1.20.0 |
covEB | 1.28.0 | CoverageView | 1.40.0 |
covr | 3.6.4 | covRNA | 1.28.0 |
cowplot | 1.1.3 | cp4p | 0.3.6 |
cplm | 0.7-12 | cpp11 | 0.4.7 |
cpvSNP | 1.34.0 | cqn | 1.48.0 |
crayon | 1.5.2 | credentials | 2.0.1 |
CRImage | 1.50.0 | crisprBase | 1.6.0 |
crisprBowtie | 1.6.0 | crisprBwa | 1.6.0 |
crisprDesign | 1.4.0 | crisprScore | 1.6.0 |
crisprScoreData | 1.6.0 | CRISPRseek | 1.42.0 |
CrispRVariants | 1.30.0 | crisprVerse | 1.4.0 |
crisprViz | 1.4.0 | crlmm | 1.60.0 |
crmn | 0.0.21 | crossmeta | 1.28.0 |
crosstalk | 1.2.1 | crul | 1.4.0 |
CSAR | 1.54.0 | csaw | 1.36.1 |
csdR | 1.8.0 | CSSQ | 1.14.0 |
ctc | 1.76.0 | CTdata | 1.2.0 |
CTDquerier | 2.10.0 | cTRAP | 1.20.0 |
ctsGE | 1.28.0 | CTSV | 1.4.0 |
cubature | 2.1.0 | Cubist | 0.4.2.1 |
cummeRbund | 2.44.0 | CuratedAtlasQueryR | 1.0.1 |
curatedTCGAData | 1.24.1 | curl | 5.2.1 |
customCMPdb | 1.12.0 | customProDB | 1.42.1 |
cvar | 0.5 | cvAUC | 1.1.4 |
cvTools | 0.3.3 | CVXR | 1.0-12 |
cyanoFilter | 1.10.0 | cycle | 1.56.0 |
cyclocomp | 1.1.1 | cydar | 1.26.0 |
CytoDx | 1.22.0 | CyTOFpower | 1.8.0 |
cytofQC | 1.2.0 | CytoGLMM | 1.10.0 |
cytoKernel | 1.8.0 | cytolib | 2.14.1 |
cytomapper | 1.14.0 | cytoMEM | 1.6.0 |
cytometree | 2.0.2 | CytoML | 2.14.0 |
CytoPipeline | 1.2.0 | CytoPipelineGUI | 1.0.0 |
cytoviewer | 1.2.0 | dada2 | 1.30.0 |
dagLogo | 1.40.0 | daMA | 1.74.0 |
DAMEfinder | 1.14.0 | DaMiRseq | 2.14.0 |
DAPAR | 1.34.6 | DAPARdata | 1.32.1 |
DART | 1.50.0 | dashboardthemes | 1.1.6 |
data.table | 1.15.2 | data.tree | 1.1.0 |
datamods | 1.4.5 | DataVisualizations | 1.3.2 |
datawizard | 0.9.1 | DBI | 1.2.2 |
dbplyr | 2.4.0 | dbscan | 1.1-12 |
dcanr | 1.18.0 | DCATS | 1.0.0 |
dce | 1.10.0 | dcGSA | 1.30.0 |
ddCt | 1.58.0 | ddPCRclust | 1.22.0 |
DDRTree | 0.1.5 | dearseq | 1.14.0 |
debCAM | 1.20.0 | debrowser | 1.30.2 |
DECIPHER | 2.30.0 | decompTumor2Sig | 2.18.0 |
DeconRNASeq | 1.44.0 | deconstructSigs | 1.8.0 |
decontam | 1.22.0 | decontX | 1.0.0 |
deconvR | 1.8.0 | decoupleR | 2.8.0 |
DeepPINCS | 1.10.0 | deepSNV | 1.48.0 |
DEFormats | 1.30.0 | DegNorm | 1.12.0 |
DEGraph | 1.54.0 | DEGreport | 1.38.5 |
DEGseq | 1.56.1 | Delaporte | 8.3.0 |
DelayedArray | 0.28.0 | DelayedDataFrame | 1.18.0 |
DelayedMatrixStats | 1.24.0 | DelayedRandomArray | 1.10.0 |
DelayedTensor | 1.8.0 | deldir | 2.0-4 |
DELocal | 1.2.0 | deltaCaptureC | 1.16.0 |
deltaGseg | 1.42.0 | DeMAND | 1.32.0 |
DeMixT | 1.18.0 | demuxmix | 1.4.0 |
demuxSNP | 1.0.0 | dendextend | 1.17.1 |
densEstBayes | 1.0-2.2 | densvis | 1.12.1 |
DEoptimR | 1.1-3 | DEP | 1.24.0 |
DepecheR | 1.18.0 | DepInfeR | 1.6.0 |
depmap | 1.16.0 | depmixS4 | 1.5-0 |
DEqMS | 1.20.0 | derfinder | 1.36.0 |
derfinderHelper | 1.36.0 | derfinderPlot | 1.36.0 |
Deriv | 4.1.3 | desc | 1.4.3 |
DEScan2 | 1.22.0 | DescTools | 0.99.54 |
DESeq2 | 1.42.1 | DEsingle | 1.22.0 |
deSolve | 1.40 | DESpace | 1.2.1 |
destiny | 3.16.0 | DEsubs | 1.28.0 |
devtools | 2.4.5 | DEWSeq | 1.16.2 |
DExMA | 1.10.7 | DExMAdata | 1.10.0 |
DEXSeq | 1.48.0 | DFP | 1.60.0 |
DGEobj | 1.1.2 | DGEobj.utils | 1.0.6 |
dgof | 1.4 | diagram | 1.6.5 |
DiagrammeR | 1.0.11 | DIAlignR | 2.10.0 |
diceR | 2.2.0 | dichromat | 2.0-0.1 |
DiffBind | 3.12.0 | diffcoexp | 1.22.0 |
DiffCorr | 0.4.3 | diffcyt | 1.22.0 |
DifferentialRegulation | 2.0.3 | diffGeneAnalysis | 1.84.0 |
diffHic | 1.34.0 | DiffLogo | 2.26.0 |
diffobj | 0.3.5 | diffr | 0.1 |
diffuStats | 1.22.0 | diffUTR | 1.10.0 |
digest | 0.6.35 | diggit | 1.34.0 |
Dino | 1.8.0 | diptest | 0.77-0 |
dir.expiry | 1.10.0 | directlabels | 2024.1.21 |
Director | 1.28.0 | directPA | 1.5.1 |
DirichletMultinomial | 1.44.0 | DirichletReg | 0.7-1 |
dirmult | 0.1.3-5 | discordant | 1.26.0 |
DiscoRhythm | 1.18.0 | distances | 0.1.10 |
distillery | 1.2-1 | distinct | 1.14.5 |
distr | 2.9.3 | distrEx | 2.9.2 |
distributional | 0.4.0 | distributions3 | 0.2.1 |
dittoSeq | 1.14.2 | divergence | 1.18.0 |
dixonTest | 1.0.4 | dks | 1.48.0 |
DMCFB | 1.16.1 | DMCHMM | 1.24.0 |
dml | 1.1.0 | DMRcaller | 1.34.0 |
DMRcate | 2.16.1 | DMRScan | 1.24.0 |
dmrseq | 1.22.1 | DMwR2 | 0.0.2 |
DNABarcodeCompatibility | 1.18.0 | DNABarcodes | 1.32.0 |
DNAcopy | 1.76.0 | DNAfusion | 1.4.0 |
DNAshapeR | 1.30.0 | dnet | 1.1.7 |
doBy | 4.6.20 | docopt | 0.7.1 |
doFuture | 1.0.1 | doMC | 1.3.8 |
DominoEffect | 1.22.0 | doParallel | 1.0.17 |
doppelgangR | 1.30.0 | doRNG | 1.8.6 |
dorothea | 1.14.1 | Doscheda | 1.24.0 |
DOSE | 3.28.2 | doseR | 1.18.0 |
doSNOW | 1.0.20 | dotCall64 | 1.1-1 |
doubletrouble | 1.2.5 | downlit | 0.4.3 |
downloader | 0.4 | downloadthis | 0.3.3 |
dplyr | 1.1.4 | dqrng | 0.3.2 |
drawer | 0.2.0.1 | drawProteins | 1.22.2 |
drc | 3.0-1 | dreamlet | 1.0.3 |
DrImpute | 1.0 | DRIMSeq | 1.30.0 |
DriverNet | 1.42.0 | DropletUtils | 1.22.0 |
drtmle | 1.1.2 | drugTargetInteractions | 1.10.1 |
DrugVsDisease | 2.44.0 | DrugVsDiseasedata | 1.38.0 |
DSS | 2.50.1 | dStruct | 1.8.0 |
DT | 0.32 | DTA | 2.48.0 |
dtangle | 2.0.9 | dtplyr | 1.3.1 |
dtt | 0.1-2 | dtw | 1.23-1 |
duckdb | 0.10.0 | Dune | 1.14.0 |
dunn.test | 1.3.5 | dupRadar | 1.32.0 |
dyebias | 1.62.0 | dynamicTreeCut | 1.63-1 |
DynDoc | 1.80.0 | e1071 | 1.7-14 |
earth | 5.3.3 | easier | 1.8.0 |
easierData | 1.8.0 | easycsv | 1.0.8 |
easylift | 1.0.0 | easyPubMed | 2.13 |
easyreporting | 1.14.0 | easyRNASeq | 2.38.0 |
EBarrays | 2.66.0 | EBcoexpress | 1.46.0 |
EBImage | 4.44.0 | EBSEA | 1.30.0 |
EBSeq | 2.0.0 | EBSeqHMM | 1.35.0 |
echarts4r | 0.4.5 | ecolitk | 1.74.0 |
ECOSolveR | 0.5.5 | ecp | 3.1.5 |
Ecume | 0.9.1 | EDASeq | 2.36.0 |
edge | 2.34.0 | edgeR | 4.0.16 |
EDIRquery | 1.2.0 | eds | 1.4.0 |
effsize | 0.8.1 | EGAD | 1.30.0 |
egg | 0.4.5 | EGSEA | 1.30.1 |
EGSEAdata | 1.30.0 | einsum | 0.1.2 |
eiR | 1.42.0 | eisaR | 1.14.1 |
elasticnet | 1.3 | elitism | 1.1.1 |
ellipse | 0.5.0 | ellipsis | 0.3.2 |
ELMER | 2.26.0 | ELMER.data | 2.26.0 |
emdbook | 1.3.13 | emdist | 0.3-3 |
EMDomics | 2.32.0 | emmeans | 1.10.0 |
EmpiricalBrownsMethod | 1.30.0 | energy | 1.7-11 |
english | 1.2-6 | EnhancedVolcano | 1.20.0 |
enhancerHomologSearch | 1.8.3 | EnMCB | 1.14.0 |
ENmix | 1.38.01 | EnrichedHeatmap | 1.32.0 |
EnrichmentBrowser | 2.32.0 | enrichplot | 1.22.0 |
enrichR | 3.2 | enrichTF | 1.18.0 |
enrichViewNet | 1.0.0 | EnsDb.Hsapiens.v75 | 2.99.0 |
EnsDb.Hsapiens.v79 | 2.99.0 | EnsDb.Hsapiens.v86 | 2.99.0 |
EnsDb.Mmusculus.v79 | 2.99.0 | ensembldb | 2.26.0 |
ensemblVEP | 1.44.0 | ensurer | 1.1 |
entropy | 1.3.1 | enviPat | 2.6 |
EnvStats | 2.8.1 | epialleleR | 1.10.0 |
EpiCompare | 1.6.5 | epidecodeR | 1.10.0 |
EpiDISH | 2.18.0 | epigenomix | 1.42.0 |
epigraHMM | 1.10.0 | EpiMix | 1.4.0 |
EpiMix.data | 1.4.0 | epimutacions | 1.6.1 |
epimutacionsData | 1.6.0 | epiNEM | 1.26.0 |
epiR | 2.0.70 | epistack | 1.8.0 |
epistasisGA | 1.4.0 | EpiTxDb | 1.14.1 |
epivizr | 2.32.0 | epivizrChart | 1.24.0 |
epivizrData | 1.30.0 | epivizrServer | 1.30.0 |
epivizrStandalone | 1.30.0 | erccdashboard | 1.36.0 |
erma | 1.18.0 | ERSSA | 1.20.0 |
esATAC | 1.24.0 | escape | 1.12.0 |
escheR | 1.2.0 | esetVis | 1.28.2 |
estimability | 1.5 | etrunct | 0.1 |
eudysbiome | 1.32.0 | eulerr | 7.0.1 |
eva | 0.2.6 | evaluate | 0.23 |
evaluomeR | 1.18.0 | evd | 2.3-6.1 |
EventPointer | 3.10.0 | evmix | 2.12 |
EWCE | 1.10.2 | ewceData | 1.10.0 |
Exact | 3.2 | exactRankTests | 0.8-35 |
excelR | 0.4.0 | ExCluster | 1.20.0 |
ExiMiR | 2.44.0 | exomeCopy | 1.48.0 |
exomePeak2 | 1.14.3 | ExperimentHub | 2.10.0 |
ExperimentHubData | 1.28.0 | ExperimentSubset | 1.12.0 |
ExploreModelMatrix | 1.14.0 | expm | 0.999-9 |
ExpressionAtlas | 1.30.0 | ExtDist | 0.7-2 |
extraChIPs | 1.6.1 | extraDistr | 1.10.0 |
extrafont | 0.19 | extrafontdb | 1.0 |
extRemes | 2.1-4 | EZtune | 3.1.1 |
faahKO | 1.42.0 | fabia | 2.48.0 |
fabricatr | 1.0.2 | factDesign | 1.78.0 |
factoextra | 1.0.7 | FactoMineR | 2.10 |
factR | 1.4.0 | FamAgg | 1.30.0 |
famat | 1.12.0 | fANCOVA | 0.6-1 |
fansi | 1.0.6 | farver | 2.1.1 |
fastcluster | 1.2.6 | fastDummies | 1.7.3 |
fastICA | 1.2-4 | fastLiquidAssociation | 1.38.0 |
fastmap | 1.1.1 | fastmatch | 1.1-4 |
FastqCleaner | 1.20.0 | fastreeR | 1.6.0 |
fastseg | 1.48.0 | fauxpas | 0.5.2 |
fBasics | 4032.96 | fCCAC | 1.28.0 |
fCI | 1.32.0 | FCPS | 1.3.4 |
fcScan | 1.16.0 | fda | 6.1.8 |
FDb.InfiniumMethylation.hg19 | 2.2.0 | fdrame | 1.74.0 |
fdrtool | 1.2.17 | fds | 1.8 |
FEAST | 1.10.0 | FeatSeekR | 1.2.0 |
feature | 1.2.15 | fedup | 1.10.0 |
FELLA | 1.22.0 | fenr | 1.0.5 |
ff | 4.0.12 | ffpe | 1.46.0 |
fftw | 1.0-8 | fftwtools | 0.9-11 |
fGarch | 4032.91 | fgga | 1.10.2 |
FGNet | 3.36.0 | fgsea | 1.28.0 |
fields | 15.2 | filehash | 2.4-5 |
filelock | 1.0.3 | filematrix | 1.3 |
FilterFFPE | 1.12.0 | FindIT2 | 1.8.0 |
findpython | 1.0.8 | fingerprint | 3.5.7 |
FIs | 1.30.0 | FISHalyseR | 1.36.0 |
fishpond | 2.8.0 | fission | 1.22.0 |
fit.models | 0.64 | fitdistrplus | 1.1-11 |
FitHiC | 1.28.0 | flagme | 1.58.0 |
FLAMES | 1.8.0 | flashClust | 1.01-2 |
flatxml | 0.1.1 | flexclust | 1.4-1 |
flexdashboard | 0.6.2 | flexmix | 2.3-19 |
flextable | 0.9.5 | float | 0.3-2 |
flock | 0.7 | flowAI | 1.32.0 |
flowBeads | 1.40.0 | flowBin | 1.38.0 |
flowcatchR | 1.36.0 | flowCHIC | 1.36.0 |
flowClean | 1.40.0 | flowClust | 3.40.0 |
flowCore | 2.14.1 | flowCut | 1.12.0 |
flowCyBar | 1.38.0 | flowDensity | 1.36.1 |
flowFP | 1.60.0 | flowGate | 1.2.0 |
flowGraph | 1.10.0 | flowMatch | 1.38.0 |
flowMeans | 1.62.0 | flowMerge | 2.50.0 |
flowPeaks | 1.48.0 | flowPloidy | 1.28.0 |
flowPlots | 1.50.0 | FlowSOM | 2.10.0 |
FlowSorted.Blood.450k | 1.40.0 | flowSpecs | 1.16.0 |
flowStats | 4.14.1 | flowTime | 1.26.0 |
flowTrans | 1.54.0 | flowViz | 1.66.0 |
flowVS | 1.34.0 | flowWorkspace | 4.14.2 |
fmcsR | 1.44.0 | FME | 1.3.6.3 |
fmrs | 1.12.0 | fmsb | 0.7.6 |
FMStable | 0.1-4 | FNN | 1.1.4 |
fobitools | 1.10.0 | fontawesome | 0.5.2 |
fontBitstreamVera | 0.1.1 | fontLiberation | 0.1.0 |
fontquiver | 0.2.1 | forcats | 1.0.0 |
foreach | 1.5.2 | forecast | 8.22.0 |
forestplot | 3.1.3 | formatR | 1.14 |
formattable | 0.2.1 | Formula | 1.2-5 |
formula.tools | 1.7.1 | fpc | 2.2-11 |
fracdiff | 1.5-3 | FRASER | 1.14.1 |
frenchFISH | 1.14.0 | FreqProf | 0.0.1 |
fresh | 0.2.0 | FRGEpistasis | 1.38.0 |
frma | 1.54.0 | frmaTools | 1.54.0 |
fs | 1.6.3 | FSelector | 0.34 |
fst | 0.9.8 | fstcore | 0.9.18 |
FunChIP | 1.28.0 | funtooNorm | 1.26.0 |
furrr | 0.3.1 | FuseSOM | 1.4.0 |
futile.logger | 1.4.3 | futile.options | 1.0.1 |
future | 1.33.1 | future.apply | 1.11.1 |
fuzzyjoin | 0.1.6 | GA | 3.2.4 |
GA4GHclient | 1.26.0 | GA4GHshiny | 1.24.0 |
gaga | 2.48.0 | gage | 2.52.0 |
gaggle | 1.70.0 | gam | 1.22-3 |
gamlss | 5.4-20 | gamlss.data | 6.0-6 |
gamlss.dist | 6.1-1 | gap | 1.5-3 |
gap.datasets | 0.0.6 | GAprediction | 1.28.0 |
garfield | 1.30.0 | gargle | 1.5.2 |
GARS | 1.22.0 | GateFinder | 1.22.0 |
gatom | 1.0.0 | gbm | 2.1.9 |
GBScleanR | 1.6.0 | gbutils | 0.5 |
gcapc | 1.26.0 | gcatest | 2.2.0 |
gclus | 1.3.2 | gCrisprTools | 2.8.0 |
gcrma | 2.74.0 | gcspikelite | 1.40.0 |
gdata | 3.0.0 | GDCRNATools | 1.22.0 |
gDNAx | 1.0.1 | gDR | 1.0.0 |
gDRcore | 1.0.1 | gDRimport | 1.0.0 |
gDRstyle | 1.0.0 | gDRutils | 1.0.0 |
GDSArray | 1.22.0 | gdsfmt | 1.38.0 |
gdtools | 0.3.7 | geeM | 0.10.1 |
geepack | 1.3.10 | geigen | 2.3 |
GEM | 1.28.0 | gemini | 1.16.0 |
gemma.R | 2.0.0 | genalg | 0.2.1 |
genArise | 1.78.0 | geneAttribution | 1.28.0 |
GeneBreak | 1.32.0 | geneClassifiers | 1.26.0 |
GeneExpressionSignature | 1.48.0 | genefilter | 1.84.0 |
genefu | 2.34.0 | GeneGA | 1.52.0 |
GeneGeneInteR | 1.28.0 | geneLenDataBase | 1.38.0 |
GeneMeta | 1.74.0 | GeneNet | 1.2.16 |
GeneNetworkBuilder | 1.44.0 | GeneOverlap | 1.38.0 |
geneplast | 1.28.0 | geneplotter | 1.80.0 |
geneRecommender | 1.74.0 | GeneRegionScan | 1.58.0 |
generics | 0.1.3 | geneRxCluster | 1.38.0 |
GeneSelectMMD | 2.46.0 | GENESIS | 2.32.0 |
GeneStructureTools | 1.22.0 | geNetClassifier | 1.42.0 |
genetics | 1.3.8.1.3 | GeneticsPed | 1.64.0 |
GeneTonic | 2.6.0 | geneXtendeR | 1.28.0 |
GENIE3 | 1.24.0 | genieclust | 1.1.5-2 |
genlasso | 1.6.1 | GENLIB | 1.1.10 |
genoCN | 1.54.0 | genomation | 1.34.0 |
GenomAutomorphism | 1.4.0 | GenomeInfoDb | 1.38.8 |
GenomeInfoDbData | 1.2.11 | genomeIntervals | 1.58.0 |
genomes | 3.32.0 | GenomicAlignments | 1.38.2 |
GenomicDataCommons | 1.26.0 | GenomicDistributions | 1.10.0 |
GenomicFeatures | 1.54.4 | GenomicFiles | 1.38.0 |
genomicInstability | 1.8.0 | GenomicInteractionNodes | 1.6.0 |
GenomicInteractions | 1.36.0 | GenomicOZone | 1.16.0 |
GenomicPlot | 1.0.5 | GenomicRanges | 1.54.1 |
GenomicScores | 2.14.3 | GenomicState | 0.99.15 |
GenomicSuperSignature | 1.10.0 | GenomicTools.fileHandler | 0.1.5.9 |
GenomicTuples | 1.36.0 | GenProSeq | 1.6.0 |
GenSA | 1.1.14 | GenVisR | 1.34.0 |
GeoDiff | 1.8.0 | GEOexplorer | 1.8.0 |
GEOfastq | 1.10.0 | GEOmetadb | 1.64.0 |
geometry | 0.4.7 | GeomxTools | 3.6.2 |
GEOquery | 2.70.0 | geosphere | 1.5-18 |
GEOsubmission | 1.54.0 | GeoTcgaData | 2.2.0 |
gep2pep | 1.22.0 | gert | 2.0.1 |
gespeR | 1.34.0 | getDEE2 | 1.12.0 |
getopt | 1.20.4 | GetoptLong | 1.0.5 |
getPass | 0.2-4 | geva | 1.10.0 |
GEWIST | 1.46.0 | gfonts | 0.2.0 |
gg4way | 1.0.2 | ggalluvial | 0.12.5 |
GGally | 2.2.1 | ggalt | 0.4.0 |
gganimate | 1.0.9 | ggbeeswarm | 0.7.2 |
ggbio | 1.50.0 | ggbump | 0.1.0 |
ggcorrplot | 0.1.4.1 | ggcyto | 1.30.2 |
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.16 | ggfun | 0.1.4 |
gggenes | 0.5.1 | ggh4x | 0.2.8 |
gghalves | 0.1.4 | gghighlight | 0.4.1 |
ggimage | 0.3.3 | ggiraph | 0.8.9 |
ggkegg | 1.0.13 | ggm | 2.5.1 |
ggmanh | 1.6.0 | ggmcmc | 1.5.1.1 |
ggmsa | 1.8.0 | ggnetwork | 0.5.13 |
ggnewscale | 0.4.10 | GGPA | 1.14.0 |
ggplot.multistats | 1.0.0 | ggplot2 | 3.5.0 |
ggplotify | 0.1.2 | ggpmisc | 0.5.5 |
ggpp | 0.5.6 | ggprism | 1.0.4 |
ggpubr | 0.6.0 | ggraph | 2.2.1 |
ggrastr | 1.0.2 | ggrepel | 0.9.5 |
ggridges | 0.5.6 | ggsc | 1.0.2 |
ggsci | 3.0.2 | ggseqlogo | 0.2 |
ggside | 0.3.1 | ggsignif | 0.6.4 |
ggspavis | 1.8.0 | ggstar | 1.0.4 |
ggstats | 0.5.1 | ggtext | 0.1.2 |
ggthemes | 5.1.0 | ggtree | 3.10.1 |
ggtreeDendro | 1.4.0 | ggtreeExtra | 1.12.0 |
ggupset | 0.3.0 | ggvenn | 0.1.10 |
ggvis | 0.4.9 | ggwordcloud | 0.6.1 |
gh | 1.4.0 | GIGSEA | 1.20.0 |
girafe | 1.54.0 | GISPA | 1.26.0 |
gistr | 0.9.0 | git2r | 0.33.0 |
gitcreds | 0.1.2 | GLAD | 2.66.0 |
GladiaTOX | 1.18.0 | glasso | 1.11 |
gld | 2.6.6 | Glimma | 2.12.0 |
glm2 | 1.2.1 | glmGamPoi | 1.14.3 |
glmmTMB | 1.1.8 | glmnet | 4.1-8 |
glmpca | 0.2.0 | glmSparseNet | 1.20.1 |
GlobalAncova | 4.20.0 | GlobalOptions | 0.1.2 |
globals | 0.16.3 | globalSeq | 1.30.0 |
globaltest | 5.56.0 | GloScope | 1.0.0 |
glue | 1.7.0 | gmapR | 1.44.0 |
GmicR | 1.16.0 | gmm | 1.8 |
gmodels | 2.19.1 | gmoviz | 1.14.0 |
gmp | 0.7-4 | GMRP | 1.30.0 |
GNET2 | 1.18.0 | gnm | 1.1-5 |
GNOSIS | 1.0.0 | GO.db | 3.18.0 |
GOexpress | 1.36.0 | GoFKernel | 2.1-1 |
goftest | 1.2-3 | GOfuncR | 1.22.2 |
golem | 0.4.1 | googleAuthR | 2.0.1 |
googledrive | 2.1.1 | googlesheets4 | 1.1.1 |
googleVis | 0.7.1 | GOpro | 1.28.0 |
goProfiles | 1.64.0 | GOSemSim | 2.28.1 |
goseq | 1.54.0 | GOSim | 1.40.0 |
goSorensen | 1.4.0 | goSTAG | 1.26.0 |
GOstats | 2.68.0 | GOsummaries | 2.37.0 |
GOTHiC | 1.38.0 | goTools | 1.76.0 |
gower | 1.0.1 | GPA | 1.14.0 |
gplots | 3.1.3.1 | gpls | 1.74.0 |
gProfileR | 0.7.0 | gprofiler2 | 0.2.3 |
gpuMagic | 1.18.0 | gRain | 1.4.1 |
GRaNIE | 1.6.1 | granulator | 1.10.0 |
graper | 1.18.0 | graph | 1.80.0 |
GraphAlignment | 1.66.0 | GraphAT | 1.74.0 |
graphite | 1.48.0 | graphlayouts | 1.1.1 |
GraphPAC | 1.44.0 | gRbase | 2.0.1 |
GRENITS | 1.54.0 | GreyListChIP | 1.34.0 |
gridBase | 0.4-7 | gridExtra | 2.3 |
gridGraphics | 0.5-1 | gridSVG | 1.7-5 |
gridtext | 0.1.5 | grImport | 0.9-7 |
GRmetrics | 1.28.0 | groHMM | 1.36.0 |
grr | 0.9.5 | GSA | 1.03.2 |
GSALightning | 1.30.0 | GSAR | 1.36.0 |
GSCA | 2.32.0 | gscreend | 1.16.1 |
GSEABase | 1.64.0 | GSEABenchmarkeR | 1.22.0 |
GSEAlm | 1.62.0 | GSEAmining | 1.12.0 |
gsean | 1.22.0 | GSgalgoR | 1.12.0 |
gsl | 2.1-8 | gsmoothr | 0.1.7 |
gson | 0.1.0 | GSReg | 1.36.0 |
GSRI | 2.50.0 | gss | 2.2-7 |
gstat | 2.1-1 | gsubfn | 0.7 |
GSVA | 1.50.1 | GSVAdata | 1.38.0 |
gtable | 0.3.4 | gtools | 3.9.5 |
gtrellis | 1.34.0 | GUIDEseq | 1.32.0 |
Guitar | 2.18.0 | GUniFrac | 1.8 |
Gviz | 1.46.1 | GWAS.BAYES | 1.12.0 |
gwascat | 2.34.0 | GWASExactHW | 1.2 |
GWASTools | 1.48.0 | gwasurvivr | 1.20.0 |
GWENA | 1.12.0 | h5vc | 2.36.0 |
h5vcData | 2.22.0 | hapFabia | 1.44.0 |
hardhat | 1.3.1 | HardyWeinberg | 1.7.5 |
Harman | 1.30.0 | harmonicmeanp | 3.0.1 |
HarmonizR | 1.0.0 | harmony | 1.2.0 |
Harshlight | 1.74.0 | hash | 2.2.6.3 |
haven | 2.5.4 | hca | 1.10.0 |
HDCI | 1.0-2 | HDF5Array | 1.30.1 |
hdf5r | 1.3.10 | HDInterval | 0.2.4 |
HDO.db | 0.99.1 | hdrcde | 3.4 |
HDTD | 1.36.0 | heatmap3 | 1.1.9 |
heatmaply | 1.5.0 | heatmaps | 1.26.0 |
Heatplus | 3.10.0 | HelloRanges | 1.28.0 |
HELP | 1.60.0 | HEM | 1.74.0 |
here | 1.0.1 | hermes | 1.6.1 |
HERON | 1.0.0 | Herper | 1.12.0 |
hexbin | 1.28.3 | HGC | 1.10.0 |
HGNChelper | 0.8.1 | hgu133a.db | 3.13.0 |
hgu133a2.db | 3.13.0 | hgu133plus2.db | 3.13.0 |
hgu95a.db | 3.13.0 | hgu95av2.db | 3.13.0 |
HH | 3.1-52 | hiAnnotator | 1.36.0 |
HIBAG | 1.38.2 | HiCBricks | 1.20.0 |
HiCcompare | 1.24.0 | HiCDCPlus | 1.10.0 |
HiCDOC | 1.4.1 | HiCExperiment | 1.2.0 |
HiContacts | 1.4.0 | HiCool | 1.2.0 |
hicVennDiagram | 1.0.2 | HiddenMarkov | 1.8-13 |
hierGWAS | 1.32.0 | hierinf | 1.20.0 |
highcharter | 0.9.4 | highr | 0.10 |
HilbertCurve | 1.32.0 | HilbertVis | 1.60.0 |
HilbertVisGUI | 1.60.0 | HiLDA | 1.16.0 |
hipathia | 3.2.0 | HIPPO | 1.14.0 |
hiReadsProcessor | 1.38.0 | HIREewas | 1.20.0 |
HiTC | 1.46.0 | HiveR | 0.3.63 |
hmdbQuery | 1.22.0 | Hmisc | 5.1-2 |
HMMcopy | 1.44.0 | hms | 1.1.3 |
Homo.sapiens | 1.3.1 | homologene | 1.4.68.19.3.27 |
hoodscanR | 1.0.0 | hopach | 2.62.0 |
howmany | 0.3-1 | HPAanalyze | 1.20.0 |
hpar | 1.44.0 | HPiP | 1.8.0 |
hrbrthemes | 0.8.7 | HSMMSingleCell | 1.22.0 |
htm2txt | 2.2.2 | htmlTable | 2.4.2 |
htmltools | 0.5.7 | HTMLUtils | 0.1.9 |
htmlwidgets | 1.6.4 | HTqPCR | 1.56.0 |
HTSCluster | 2.0.11 | HTSeqGenie | 4.32.0 |
HTSFilter | 1.42.0 | httpcache | 1.2.0 |
httpcode | 0.3.0 | httpuv | 1.6.14 |
httr | 1.4.7 | httr2 | 1.0.0 |
HubPub | 1.10.1 | huge | 1.3.5 |
HumanTranscriptomeCompendium | 1.17.0 | hummingbird | 1.12.0 |
hunspell | 3.0.3 | hwriter | 1.3.2.1 |
HybridMTest | 1.46.0 | hypeR | 2.0.0 |
hyperdraw | 1.54.0 | hypergraph | 1.74.0 |
iASeq | 1.46.0 | iasva | 1.20.0 |
iBBiG | 1.46.0 | ibh | 1.50.0 |
iBMQ | 1.42.0 | iC10 | 1.5 |
iC10TrainingData | 1.3.1 | ica | 1.0-3 |
iCARE | 1.30.0 | Icens | 1.74.0 |
icetea | 1.20.0 | iCheck | 1.32.0 |
iChip | 1.56.0 | iClusterPlus | 1.38.0 |
iCNV | 1.22.0 | iCOBRA | 1.30.0 |
ICS | 1.4-1 | ICSNP | 1.1-2 |
ideal | 1.26.0 | IdeoViz | 1.37.0 |
idiogram | 1.78.0 | IDPmisc | 1.1.21 |
idpr | 1.12.0 | idr | 1.3 |
idr2d | 1.16.0 | ids | 1.0.1 |
IFAA | 1.4.0 | iGC | 1.32.0 |
IgGeneUsage | 1.16.0 | igraph | 2.0.3 |
igvR | 1.22.0 | IHW | 1.30.0 |
Illumina450ProbeVariants.db | 1.38.0 | IlluminaHumanMethylation450kanno.ilmn12.hg19 | 0.6.1 |
IlluminaHumanMethylation450kmanifest | 0.4.0 | IlluminaHumanMethylationEPICanno.ilm10b2.hg19 | 0.6.0 |
IlluminaHumanMethylationEPICanno.ilm10b4.hg19 | 0.6.0 | IlluminaHumanMethylationEPICmanifest | 0.3.0 |
illuminaio | 0.44.0 | ILoReg | 1.12.1 |
imager | 0.45.8 | IMAS | 1.26.0 |
imcRtools | 1.8.0 | IMMAN | 1.22.0 |
ImmuneSpaceR | 1.30.0 | immunoClust | 1.34.0 |
immunotation | 1.10.0 | imp4p | 1.2 |
IMPCdata | 1.38.0 | import | 1.3.2 |
impute | 1.76.0 | imputeLCMD | 2.1 |
inaparc | 1.2.0 | INDEED | 2.16.0 |
ineq | 0.2-13 | iNETgrate | 1.0.0 |
infercnv | 1.18.1 | infinityFlow | 1.12.0 |
Informeasure | 1.12.1 | infotheo | 1.2.0.1 |
ini | 0.3.1 | inline | 0.3.19 |
InPAS | 2.10.0 | INPower | 1.38.0 |
insight | 0.19.9 | INSPEcT | 1.32.1 |
INTACT | 1.2.0 | InTAD | 1.22.0 |
intansv | 1.42.0 | interacCircos | 1.12.0 |
InteractionSet | 1.30.0 | InteractiveComplexHeatmap | 1.10.0 |
interactiveDisplay | 1.40.0 | interactiveDisplayBase | 1.40.0 |
InterCellar | 2.8.0 | IntEREst | 1.26.0 |
intergraph | 2.0-4 | InterMineR | 1.24.0 |
interp | 1.1-6 | intervals | 0.15.4 |
IntOMICS | 1.2.0 | IntramiRExploreR | 1.24.0 |
intrinsicDimension | 1.2.0 | inum | 1.0-5 |
InvariantCausalPrediction | 0.8 | invgamma | 1.1 |
IONiseR | 2.26.0 | iPAC | 1.46.0 |
iPath | 1.8.0 | ipdDb | 1.20.0 |
IPO | 1.28.0 | ipred | 0.9-14 |
IRanges | 2.36.0 | IRdisplay | 1.1 |
IRkernel | 1.3.2 | irlba | 2.3.5.1 |
irr | 0.84.1 | isa2 | 0.3.6 |
ISAnalytics | 1.12.0 | iSEE | 2.14.0 |
iSEEde | 1.0.0 | iSEEhex | 1.4.0 |
iSEEhub | 1.4.0 | iSEEindex | 1.0.0 |
iSEEpathways | 1.0.0 | iSEEu | 1.14.0 |
iSeq | 1.54.0 | ISLET | 1.4.0 |
Iso | 0.0-21 | isoband | 0.2.7 |
isobar | 1.48.0 | IsoBayes | 1.0.1 |
ISOcodes | 2024.02.12 | IsoCorrectoR | 1.20.0 |
IsoCorrectoRGUI | 1.18.0 | IsoformSwitchAnalyzeR | 2.2.0 |
ISoLDE | 1.30.0 | isomiRs | 1.30.0 |
isotree | 0.5.24-3 | isva | 1.9 |
ITALICS | 2.62.0 | ITALICSData | 2.40.0 |
iterativeBMA | 1.60.0 | iterativeBMAsurv | 1.60.0 |
iterators | 1.0.14 | iterClust | 1.24.0 |
itertools | 0.1-3 | IVAS | 2.22.0 |
ivygapSE | 1.24.0 | IWTomics | 1.26.0 |
JADE | 2.0-4 | janeaustenr | 1.0.0 |
janitor | 2.2.0 | JASPAR2016 | 1.30.0 |
JASPAR2018 | 1.1.1 | jomo | 2.7-6 |
jpeg | 0.1-10 | jquerylib | 0.1.4 |
jsonlite | 1.8.8 | jsonvalidate | 1.3.2 |
kableExtra | 1.4.0 | karyoploteR | 1.28.0 |
katdetectr | 1.4.0 | KBoost | 1.10.0 |
KCsmart | 2.60.0 | kde1d | 1.0.7 |
kebabs | 1.36.0 | KEGGandMetacoreDzPathwaysGEO | 1.22.0 |
KEGGdzPathwaysGEO | 1.40.0 | KEGGgraph | 1.62.0 |
KEGGlincs | 1.28.0 | keggorthology | 2.54.0 |
KEGGREST | 1.42.0 | Kendall | 2.2.1 |
keras | 2.13.0 | kernlab | 0.9-32 |
kinship2 | 1.9.6 | KinSwingR | 1.20.0 |
kissDE | 1.22.0 | kknn | 1.3.1 |
klaR | 1.7-3 | km.ci | 0.5-6 |
kmer | 1.1.2 | KMsurv | 0.1-5 |
knitr | 1.45 | knitrBootstrap | 1.0.3 |
knn.covertree | 1.0 | KnowSeq | 1.16.0 |
KOdata | 1.28.0 | kohonen | 3.0.12 |
koRpus | 0.13-8 | koRpus.lang.en | 0.1-4 |
kpeaks | 1.1.0 | kpmt | 0.1.0 |
kriging | 1.2 | ks | 1.14.2 |
kSamples | 1.2-10 | labeling | 0.4.3 |
labelled | 2.12.0 | LACE | 2.6.1 |
laeken | 0.5.3 | lambda.r | 1.2.4 |
LambertW | 0.6.9-1 | lamW | 2.2.3 |
LaplacesDemon | 16.1.6 | lapmix | 1.68.0 |
lars | 1.3 | later | 1.3.2 |
latex2exp | 0.9.6 | latticeExtra | 0.6-30 |
lava | 1.8.0 | lavaan | 0.6-17 |
lazyeval | 0.2.2 | LBE | 1.70.0 |
lbfgs | 1.2.1.2 | ldblock | 1.32.0 |
LEA | 3.14.0 | leaps | 3.1 |
learnr | 0.11.5 | LedPred | 1.36.0 |
lefser | 1.12.1 | leiden | 0.4.3.1 |
leidenbase | 0.1.27 | lemur | 1.0.5 |
les | 1.52.0 | levi | 1.20.0 |
lexicon | 1.2.1 | lfa | 2.2.0 |
lfda | 1.1.3 | lgr | 0.4.4 |
lhs | 1.1.6 | libcoin | 1.0-10 |
LiblineaR | 2.10-23 | lifecycle | 1.0.4 |
liger | 2.0.1 | LIM | 1.4.7.1 |
limma | 3.58.1 | limmaGUI | 1.78.0 |
limSolve | 1.5.7.1 | LineagePulse | 1.21.0 |
lineagespot | 1.6.0 | linkcomm | 1.0-14 |
LinkHD | 1.16.0 | Linnorm | 2.26.0 |
linprog | 0.9-4 | LinTInd | 1.6.0 |
lintr | 3.1.1 | lionessR | 1.16.0 |
lipidr | 2.16.0 | LiquidAssociation | 1.56.0 |
lisaClust | 1.10.1 | listenv | 0.9.1 |
lmdme | 1.44.0 | lme4 | 1.1-35.1 |
lmerTest | 3.1-3 | lmodel2 | 1.7-3 |
lmom | 3.0 | Lmoments | 1.3-1 |
lmtest | 0.9-40 | LOBSTAHS | 1.28.0 |
lobstr | 1.1.2 | locfdr | 1.1-8 |
locfit | 1.5-9.9 | loci2path | 1.22.0 |
log4r | 0.4.3 | logger | 0.3.0 |
logging | 0.10-108 | logicFS | 2.22.0 |
LogicReg | 1.6.6 | logistf | 1.26.0 |
logitnorm | 0.8.39 | logNormReg | 0.5-0 |
logr | 1.3.6 | logspline | 2.1.21 |
lokern | 1.1-10.1 | LOLA | 1.32.0 |
longitudinal | 1.1.13 | loo | 2.7.0 |
LoomExperiment | 1.20.0 | LPE | 1.76.0 |
LPEadj | 1.62.0 | lpNet | 2.34.2 |
lpSolve | 5.6.20 | lpSolveAPI | 5.5.2.0-17.11 |
lpsymphony | 1.30.0 | LRBaseDbi | 2.12.1 |
LRcell | 1.10.0 | lsa | 0.73.3 |
LSD | 4.1-0 | lsr | 0.5.2 |
lubridate | 1.9.3 | lumi | 2.54.0 |
lumiHumanAll.db | 1.22.0 | LungCancerACvsSCCGEO | 1.38.0 |
lwgeom | 0.2-14 | LymphoSeq | 1.30.0 |
LymphoSeqDB | 0.99.2 | M3C | 1.24.0 |
M3Drop | 1.28.0 | m6Aboost | 1.8.0 |
Maaslin2 | 1.16.0 | Macarron | 1.6.0 |
macat | 1.76.0 | maCorrPlot | 1.72.0 |
MACSQuantifyR | 1.16.0 | MACSr | 1.10.0 |
made4 | 1.76.0 | MADSEQ | 1.28.0 |
MafDb.1Kgenomes.phase3.hs37d5 | 3.10.0 | MafDb.ExAC.r1.0.hs37d5 | 3.10.0 |
MafDb.gnomADex.r2.1.hs37d5 | 3.10.0 | maftools | 2.18.0 |
MAGAR | 1.10.0 | MAGeCKFlute | 2.6.0 |
magic | 1.6-1 | magicaxis | 2.4.5 |
magick | 2.8.3 | magpie | 1.2.0 |
magrene | 1.4.0 | magrittr | 2.0.3 |
MAI | 1.8.0 | MAIT | 1.36.0 |
makecdfenv | 1.78.0 | MALDIquant | 1.22.2 |
MANOR | 1.74.0 | MantelCorr | 1.72.0 |
mapplots | 1.5.2 | mapproj | 1.2.11 |
maPredictDSC | 1.40.0 | maps | 3.4.2 |
mapscape | 1.26.0 | maptree | 1.4-8 |
mariner | 1.2.0 | markdown | 1.12 |
marr | 1.12.0 | marray | 1.80.0 |
martini | 1.22.0 | maser | 1.20.0 |
mashr | 0.2.79 | maSigPro | 1.74.0 |
maskBAD | 1.46.0 | MassArray | 1.54.0 |
massiR | 1.38.0 | MassSpecWavelet | 1.68.0 |
MAST | 1.28.0 | mastR | 1.2.3 |
matchBox | 1.44.0 | matchingR | 1.3.3 |
mathjaxr | 1.6-0 | matlab | 1.0.4 |
matrixcalc | 1.0-6 | MatrixEQTL | 2.3 |
MatrixExtra | 0.1.15 | MatrixGenerics | 1.14.0 |
MatrixModels | 0.5-3 | MatrixQCvis | 1.10.0 |
MatrixRider | 1.34.0 | matrixStats | 1.2.0 |
matrixTests | 0.2.3 | matter | 2.4.1 |
maxLik | 1.5-2 | maxstat | 0.7-25 |
MBA | 0.1-0 | MBAmethyl | 1.36.0 |
MBASED | 1.36.0 | MBCB | 1.56.0 |
MBECS | 1.6.0 | mbest | 0.6 |
mbkmeans | 1.18.0 | mboost | 2.9-9 |
mBPCR | 1.56.0 | MBQN | 2.14.0 |
mbQTL | 1.2.0 | MBttest | 1.30.0 |
MCbiclust | 1.26.0 | mcbiopi | 1.1.6 |
MCL | 1.0 | mclust | 6.1 |
mclustcomp | 0.3.3 | mcmc | 0.9-8 |
MCMCglmm | 2.35 | MCMCpack | 1.7-0 |
MCMCprecision | 0.4.0 | mco | 1.16 |
mCSEA | 1.22.0 | mCSEAdata | 1.22.0 |
mdp | 1.22.0 | mdqc | 1.64.0 |
MDTS | 1.22.0 | MEAL | 1.32.0 |
MeasurementError.cor | 1.74.0 | MEAT | 1.14.0 |
MEB | 1.16.0 | MEDIPS | 1.54.0 |
MEDME | 1.62.0 | mefa | 3.2-8 |
megadepth | 1.12.0 | MEIGOR | 1.36.1 |
Melissa | 1.18.0 | memes | 1.10.0 |
memoise | 2.0.1 | memuse | 4.2-3 |
Mergeomics | 1.30.0 | MeSHDbi | 1.38.0 |
meshes | 1.28.0 | meshr | 2.8.0 |
MesKit | 1.12.0 | MESS | 0.5.12 |
messina | 1.38.0 | metabCombiner | 1.12.0 |
metabinR | 1.4.0 | MetaboAnnotation | 1.6.1 |
MetaboCoreUtils | 1.10.0 | metaboliteIDmapping | 1.0.0 |
metabolomicsWorkbenchR | 1.12.0 | metabomxtr | 1.36.0 |
MetaboSignal | 1.32.1 | metaCCA | 1.30.0 |
MetaCycle | 1.2.0 | MetaCyto | 1.24.0 |
metadat | 1.2-0 | metafor | 4.4-0 |
metagene2 | 1.18.0 | metagenomeSeq | 1.43.0 |
metahdep | 1.60.0 | metaMA | 3.1.3 |
metaMS | 1.38.0 | MetaNeighbor | 1.22.0 |
metap | 1.9 | MetaPhOR | 1.4.0 |
metapod | 1.10.1 | metapone | 1.8.0 |
metaSeq | 1.42.0 | metaseqR2 | 1.14.0 |
MetBrewer | 0.2.0 | MetCirc | 1.32.0 |
methimpute | 1.24.0 | methInheritSim | 1.24.0 |
MethPed | 1.30.0 | MethReg | 1.12.0 |
methrix | 1.16.0 | MethTargetedNGS | 1.34.0 |
MethylAid | 1.36.0 | methylCC | 1.16.0 |
methylclock | 1.8.0 | methylclockData | 1.10.0 |
methylGSA | 1.20.0 | methylInheritance | 1.26.0 |
methylKit | 1.28.0 | MethylMix | 2.32.0 |
methylMnM | 1.40.0 | methylPipe | 1.36.0 |
methylscaper | 1.10.0 | MethylSeekR | 1.42.0 |
methylSig | 1.14.0 | methylumi | 2.48.0 |
MetID | 1.20.0 | MetNet | 1.20.0 |
metR | 0.15.0 | mfa | 1.24.0 |
Mfuzz | 2.62.0 | MGFM | 1.36.0 |
MGFR | 1.28.0 | MGLM | 0.2.1 |
mgsa | 1.50.0 | mgsub | 1.7.3 |
mhsmm | 0.4.21 | mia | 1.10.0 |
miaSim | 1.8.0 | miaViz | 1.10.0 |
mice | 3.16.0 | MiChip | 1.56.0 |
microbenchmark | 1.4.10 | microbiome | 1.24.0 |
microbiomeDASim | 1.16.0 | microbiomeExplorer | 1.12.0 |
microbiomeMarker | 1.8.0 | MicrobiomeProfiler | 1.8.0 |
MicrobiomeStat | 1.1 | MicrobiotaProcess | 1.14.0 |
microRNA | 1.60.0 | microSTASIS | 1.2.0 |
MICSQTL | 1.0.0 | midasHLA | 1.10.0 |
miloR | 1.10.0 | mimager | 1.26.0 |
mime | 0.12 | mina | 1.10.0 |
MineICA | 1.42.0 | minet | 3.60.0 |
minfi | 1.48.0 | MinimumDistance | 1.46.0 |
miniUI | 0.1.1.1 | minpack.lm | 1.2-4 |
minqa | 1.2.6 | MiPP | 1.74.0 |
miQC | 1.10.0 | MIRA | 1.24.0 |
MiRaGE | 1.44.0 | mirbase.db | 1.2.0 |
miRBaseVersions.db | 1.1.0 | miRcomp | 1.32.0 |
miRcompData | 1.32.0 | mirIntegrator | 1.32.0 |
miRLAB | 1.32.0 | miRNAmeConverter | 1.30.0 |
miRNApath | 1.62.0 | miRNAtap | 1.36.0 |
miRNAtap.db | 0.99.10 | mirTarRnaSeq | 1.10.0 |
misc3d | 0.9-1 | miscTools | 0.6-28 |
missForest | 1.5 | missMDA | 1.19 |
missMethyl | 1.36.0 | missRows | 1.22.0 |
mistyR | 1.10.0 | mitch | 1.14.0 |
mitml | 0.4-5 | mitoClone2 | 1.8.1 |
mitools | 2.4 | mixOmics | 6.26.0 |
mixsmsn | 1.1-10 | mixsqp | 0.3-54 |
mixtools | 2.0.0 | MKmisc | 1.9 |
mlapi | 0.1.1 | mlbench | 2.1-3.1 |
MLInterfaces | 1.82.0 | MLmetrics | 1.1.1 |
MLP | 1.50.0 | mlr3 | 0.18.0 |
mlr3learners | 0.6.0 | mlr3measures | 0.5.0 |
mlr3misc | 0.14.0 | mlr3tuning | 0.20.0 |
MLSeq | 2.20.0 | mltools | 0.3.5 |
mmand | 1.6.3 | MMDiff2 | 1.30.0 |
MMUPHin | 1.16.0 | mnem | 1.18.0 |
mnormt | 2.1.1 | moanin | 1.10.0 |
MobilityTransformR | 1.6.0 | mockery | 0.4.4 |
MODA | 1.28.0 | ModCon | 1.10.0 |
modeest | 2.4.0 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.11 | modeltools | 0.2-23 |
Modstrings | 1.18.0 | MOFA2 | 1.12.1 |
MOFAdata | 1.18.0 | MOGAMUN | 1.12.0 |
mogsa | 1.36.0 | MoleculeExperiment | 1.2.2 |
MOMA | 1.14.0 | moments | 0.14.1 |
monaLisa | 1.8.0 | monocle | 2.30.0 |
Moonlight2R | 1.0.0 | MoonlightR | 1.28.0 |
mosaicCore | 0.9.4.0 | mosaics | 2.40.0 |
mosbi | 1.8.0 | MOSim | 1.16.0 |
Motif2Site | 1.6.0 | motifbreakR | 2.16.0 |
motifcounter | 1.26.0 | MotifDb | 1.44.0 |
motifmatchr | 1.24.0 | motifStack | 1.46.0 |
MouseFM | 1.12.0 | MPFE | 1.38.0 |
mpm | 1.0-23 | mpra | 1.24.0 |
MPRAnalyze | 1.20.0 | MQmetrics | 1.10.0 |
mrfDepth | 1.0.16 | mRMRe | 2.1.2.1 |
msa | 1.34.0 | MSA2dist | 1.6.0 |
MsBackendMassbank | 1.10.1 | MsBackendMgf | 1.10.0 |
MsBackendMsp | 1.6.0 | MsBackendRawFileReader | 1.8.1 |
MsBackendSql | 1.2.0 | MsCoreUtils | 1.14.1 |
msdata | 0.42.0 | MsDataHub | 1.2.0 |
MsExperiment | 1.4.0 | MsFeatures | 1.10.0 |
msgbsR | 1.26.0 | msgps | 1.3.5 |
msigdb | 1.10.0 | msigdbr | 7.5.1 |
msImpute | 1.12.0 | mslp | 1.4.0 |
msm | 1.7.1 | msmsEDA | 1.40.0 |
msmsTests | 1.40.0 | MSnbase | 2.28.1 |
MSnID | 1.36.0 | MSPrep | 1.12.0 |
msPurity | 1.28.0 | MSQC | 1.1.0 |
msqrob2 | 1.10.0 | MsQuality | 1.2.1 |
MSstats | 4.10.1 | MSstatsBig | 1.0.0 |
MSstatsConvert | 1.12.1 | MSstatsLiP | 1.8.1 |
MSstatsLOBD | 1.10.0 | MSstatsPTM | 2.4.4 |
MSstatsQC | 2.20.0 | MSstatsQCgui | 1.22.0 |
MSstatsShiny | 1.4.3 | MSstatsTMT | 2.10.0 |
MuData | 1.6.0 | Mulcom | 1.52.0 |
multcomp | 1.4-25 | multcompView | 0.1-10 |
MultiAssayExperiment | 1.28.0 | MultiBaC | 1.12.0 |
multiClust | 1.32.0 | multicool | 1.0.1 |
MultiDataSet | 1.30.0 | multiGSEA | 1.12.0 |
multiHiCcompare | 1.20.0 | MultiMed | 2.24.0 |
multiMiR | 1.24.0 | MultimodalExperiment | 1.2.0 |
MultiRNAflow | 1.0.0 | multiscan | 1.62.0 |
multiWGCNA | 1.0.0 | multtest | 2.58.0 |
mumosa | 1.10.0 | MungeSumstats | 1.10.1 |
munsell | 0.5.0 | Mus.musculus | 1.3.1 |
muscat | 1.16.0 | muscle | 3.44.0 |
musicatk | 1.12.0 | MutationalPatterns | 3.12.0 |
mutoss | 0.1-13 | MVCClass | 1.76.0 |
mvnfast | 0.2.8 | mvoutlier | 2.1.1 |
mvtnorm | 1.2-4 | MWASTools | 1.26.0 |
mwcsr | 0.1.8 | mygene | 1.38.0 |
myvariant | 1.32.0 | mzID | 1.40.0 |
mzR | 2.36.0 | nabor | 0.5.0 |
NADA | 1.6-1.1 | NADfinder | 1.26.0 |
naivebayes | 1.0.0 | naniar | 1.1.0 |
NanoMethViz | 2.8.1 | NanoStringDiff | 1.32.0 |
NanoStringNCTools | 1.10.0 | nanotatoR | 1.18.0 |
nanotime | 0.3.7 | NanoTube | 1.8.0 |
naturalsort | 0.1.3 | NBAMSeq | 1.18.0 |
NbClust | 3.0.1 | NBPSeq | 0.3.1 |
ncdf4 | 1.22 | ncdfFlow | 2.48.0 |
ncGTW | 1.16.0 | NCIgraph | 1.50.0 |
NCmisc | 1.2.0 | ncRNAtools | 1.12.0 |
ndexr | 1.24.0 | nearBynding | 1.12.0 |
Nebulosa | 1.12.1 | nempi | 1.10.0 |
neo4r | 0.1.1 | NetActivity | 1.4.0 |
NetActivityData | 1.4.0 | netbiov | 1.36.0 |
netboost | 2.10.0 | netDx | 1.14.0 |
nethet | 1.34.0 | netOmics | 1.8.0 |
NetPathMiner | 1.38.0 | netprioR | 1.28.0 |
NetRep | 1.2.7 | netresponse | 1.62.0 |
NetSAM | 1.42.0 | netSmooth | 1.22.0 |
network | 1.18.2 | networkD3 | 0.4 |
netZooR | 1.6.0 | NeuCA | 1.8.1 |
NewWave | 1.12.0 | NGLVieweR | 1.3.1 |
ngsReports | 2.4.0 | NHPoisson | 3.3 |
nipalsMCIA | 1.0.0 | NISTunits | 1.0.1 |
nleqslv | 3.3.5 | nloptr | 2.0.3 |
NLP | 0.2-1 | nls2 | 0.3-3 |
NMF | 0.27 | NMI | 2.0 |
nnlasso | 0.3 | nnls | 1.5 |
nnNorm | 2.66.0 | nnSVG | 1.6.3 |
nnTensor | 1.2.0 | NOISeq | 2.46.0 |
nondetects | 2.32.0 | nor1mix | 1.3-2 |
NoRCE | 1.14.0 | norm | 1.0-11.1 |
normalize450K | 1.30.0 | NormalyzerDE | 1.20.0 |
NormqPCR | 1.48.0 | normr | 1.28.0 |
nortest | 1.0-4 | Nozzle.R1 | 1.1-1.1 |
np | 0.60-17 | NPARC | 1.14.0 |
npGSEA | 1.38.0 | nsga2R | 1.1 |
NTW | 1.52.0 | nucleoSim | 1.30.0 |
nucleR | 2.34.0 | nuCpos | 1.20.0 |
nullranges | 1.8.0 | numbers | 0.8-5 |
numDeriv | 2016.8-1.1 | NuPoP | 2.10.0 |
NxtIRFdata | 1.8.0 | oaqc | 1.0 |
objectProperties | 0.6.8 | objectSignals | 0.10.3 |
occugene | 1.62.0 | OCplus | 1.76.0 |
octad | 1.4.0 | octad.db | 1.4.0 |
odseq | 1.30.0 | officer | 0.6.5 |
OGRE | 1.6.0 | oligo | 1.66.0 |
oligoClasses | 1.64.0 | OLIN | 1.80.0 |
OLINgui | 1.76.0 | omada | 1.4.0 |
OmaDB | 2.18.0 | omicade4 | 1.42.0 |
OmicCircos | 1.40.0 | omicplotR | 1.22.0 |
omicRexposome | 1.24.3 | OMICsPCA | 1.20.0 |
OMICsPCAdata | 1.20.0 | omicsPrint | 1.22.0 |
omicsViewer | 1.6.0 | Omixer | 1.12.0 |
OmnipathR | 3.10.1 | ompBAM | 1.6.0 |
oncomix | 1.24.0 | oncoscanR | 1.4.0 |
OncoScore | 1.30.0 | OncoSimulR | 4.4.0 |
onlineFDR | 2.10.0 | ontologyIndex | 2.12 |
ontologyPlot | 1.7 | ontoProc | 1.24.0 |
openair | 2.18-2 | opencpu | 2.2.11 |
openCyto | 2.14.0 | openPrimeR | 1.24.0 |
openPrimeRui | 1.24.0 | openssl | 2.1.1 |
OpenStats | 1.14.0 | openxlsx | 4.2.5.2 |
operator.tools | 1.6.3 | oposSOM | 2.20.0 |
oppar | 1.30.0 | oppti | 1.16.0 |
optimalFlow | 1.14.0 | optimalFlowData | 1.14.0 |
optimx | 2023-10.21 | optparse | 1.7.4 |
OPWeight | 1.24.0 | OrderedList | 1.74.0 |
ordinal | 2023.12-4 | ore | 1.7.4.1 |
ORFhunteR | 1.10.0 | ORFik | 1.22.2 |
org.Bt.eg.db | 3.18.0 | org.Ce.eg.db | 3.18.0 |
org.Dm.eg.db | 3.18.0 | org.Dr.eg.db | 3.18.0 |
org.Hs.eg.db | 3.18.0 | org.Mm.eg.db | 3.18.0 |
org.Rn.eg.db | 3.18.0 | org.Sc.sgd.db | 3.18.0 |
Organism.dplyr | 1.30.1 | OrganismDbi | 1.44.0 |
OrgMassSpecR | 0.5-3 | origami | 1.0.7 |
orthogene | 1.8.0 | orthos | 1.0.1 |
orthosData | 1.0.0 | OSAT | 1.50.0 |
Oscope | 1.32.0 | osfr | 0.2.9 |
osqp | 0.6.3.2 | OTUbase | 1.52.0 |
outliers | 0.15 | OUTRIDER | 1.20.0 |
OutSplice | 1.2.0 | OVESEG | 1.18.0 |
PAA | 1.36.0 | packFinder | 1.14.0 |
padma | 1.12.0 | PADOG | 1.44.0 |
pageRank | 1.12.0 | paintmap | 1.0 |
PAIRADISE | 1.18.0 | paircompviz | 1.40.0 |
PairedData | 1.1.1 | pairedGSEA | 1.2.0 |
pairkat | 1.8.0 | pairsD3 | 0.1.3 |
palmerpenguins | 0.1.1 | pals | 1.8 |
pamr | 1.56.1 | pan | 1.9 |
pandaR | 1.34.0 | pander | 0.6.5 |
panelcn.mops | 1.24.0 | PanomiR | 1.6.0 |
panp | 1.72.0 | PANR | 1.48.0 |
PanViz | 1.4.0 | paradox | 0.11.1 |
parallelDist | 0.2.6 | ParallelLogger | 3.3.0 |
parallelly | 1.37.1 | pareg | 1.6.0 |
parglms | 1.34.0 | parmigene | 1.1.0 |
parody | 1.60.0 | partCNV | 1.0.0 |
partykit | 1.2-20 | pasilla | 1.30.0 |
PAST | 1.18.0 | pastecs | 1.4.2 |
patchwork | 1.2.0 | Path2PPI | 1.32.0 |
pathifier | 1.40.0 | PathNet | 1.42.0 |
PathoStat | 1.28.0 | pathRender | 1.70.0 |
pathview | 1.42.0 | pathwayPCA | 1.18.0 |
paws.common | 0.7.1 | paws.storage | 0.5.0 |
paxtoolsr | 1.36.0 | pbapply | 1.7-2 |
pbdZMQ | 0.3-11 | pbivnorm | 0.6.0 |
pbkrtest | 0.5.2 | pbmcapply | 1.5.1 |
pcaExplorer | 2.28.0 | pcalg | 2.7-11 |
pcaMethods | 1.94.0 | PCAN | 1.30.0 |
pcaPP | 2.0-4 | PCAtools | 2.14.0 |
pcxn | 2.24.0 | pcxnData | 2.24.0 |
pd.mapping50k.xba240 | 3.12.0 | PDATK | 1.10.0 |
pdfCluster | 1.0-4 | pdftools | 3.4.0 |
pdInfoBuilder | 1.66.0 | pdist | 1.2.1 |
PeacoQC | 1.12.0 | peakPantheR | 1.16.1 |
PECA | 1.38.0 | peco | 1.14.0 |
penalized | 0.9-52 | pengls | 1.8.0 |
PepsNMR | 1.20.0 | pepStat | 1.36.0 |
Peptides | 2.4.6 | pepXMLTab | 1.36.0 |
PerformanceAnalytics | 2.0.4 | periodicDNA | 1.12.0 |
permute | 0.9-7 | PFAM.db | 3.18.0 |
pfamAnalyzeR | 1.2.0 | pgca | 1.26.0 |
phangorn | 2.11.1 | phantasus | 1.22.2 |
phantasusLite | 1.0.0 | PharmacoGx | 3.6.0 |
phastCons100way.UCSC.hg19 | 3.7.2 | phastCons100way.UCSC.hg38 | 3.7.1 |
phateR | 1.0.7 | pheatmap | 1.0.12 |
phemd | 1.18.0 | PhenoGeneRanker | 1.10.0 |
phenomis | 1.4.0 | phenopath | 1.26.0 |
phenoTest | 1.50.0 | PhenStat | 2.38.0 |
philentropy | 0.8.0 | philr | 1.28.0 |
PhIPData | 1.10.0 | phosphonormalizer | 1.26.0 |
phosphoricons | 0.2.0 | PhosR | 1.12.0 |
phyclust | 0.1-34 | phylobase | 0.8.12 |
phylogram | 2.1.0 | phylolm | 2.6.2 |
PhyloProfile | 1.16.3 | phyloseq | 1.46.0 |
Pi | 2.14.0 | piano | 2.18.0 |
pickgene | 1.74.0 | PICS | 2.46.0 |
Pigengene | 1.28.0 | pillar | 1.9.0 |
pinfsc50 | 1.3.0 | PING | 2.46.0 |
pingr | 2.0.3 | pipeComp | 1.12.0 |
pipeFrame | 1.18.0 | pixmap | 0.4-12 |
pkgbuild | 1.4.4 | pkgconfig | 2.0.3 |
pkgdown | 2.0.7 | pkgload | 1.3.4 |
planet | 1.10.0 | planttfhunter | 1.2.0 |
plasmut | 1.0.0 | plgem | 1.74.0 |
plier | 1.72.0 | PloGO2 | 1.14.0 |
plogr | 0.2.0 | plot3D | 1.4.1 |
plot3Drgl | 1.0.4 | plotgardener | 1.8.2 |
plotGrouper | 1.20.0 | plotly | 4.10.4 |
plotmo | 3.6.3 | plotrix | 3.8-4 |
plotROC | 2.3.1 | PLPE | 1.62.0 |
pls | 2.8-3 | plsgenomics | 1.5-2.1 |
plsVarSel | 0.9.10 | plyinteractions | 1.0.0 |
plyr | 1.8.9 | plyranges | 1.22.0 |
PMA | 1.2-3 | PMCMRplus | 1.9.10 |
pmm | 1.34.0 | pmp | 1.14.1 |
png | 0.1-8 | PoDCall | 1.10.1 |
podkat | 1.34.0 | pogos | 1.22.0 |
poibin | 1.5 | PoiClaClu | 1.0.2.1 |
polspline | 1.1.24 | Polychrome | 1.5.1 |
polyclip | 1.10-6 | polyester | 1.38.0 |
polylabelr | 0.2.0 | polynom | 1.4-1 |
PolynomF | 2.0-8 | PolyPhen.Hsapiens.dbSNP131 | 1.0.2 |
POMA | 1.12.0 | poorman | 0.2.7 |
posterior | 1.5.0 | poweRlaw | 0.80.0 |
powerTCR | 1.22.0 | POWSC | 1.10.0 |
ppclust | 1.1.0.1 | ppcor | 1.1 |
ppcseq | 1.10.0 | PPInfer | 1.28.0 |
pqsfinder | 2.18.0 | prabclus | 2.3-3 |
pracma | 2.4.4 | praise | 1.0.0 |
pram | 1.18.0 | praznik | 11.0.0 |
prebs | 1.42.0 | preciseTAD | 1.12.0 |
precrec | 0.14.4 | PREDA | 1.48.0 |
preprocessCore | 1.64.0 | preseqR | 4.0.0 |
prettydoc | 0.4.1 | prettyunits | 1.2.0 |
primirTSS | 1.20.0 | PRIMME | 3.2-6 |
PrInCE | 1.18.0 | princurve | 2.1.6 |
proActiv | 1.12.0 | proBAMr | 1.36.0 |
pROC | 1.18.5 | PROcess | 1.78.0 |
processx | 3.8.4 | procoil | 2.30.0 |
proDA | 1.16.0 | prodlim | 2023.08.28 |
profileModel | 0.6.1 | profileplyr | 1.18.0 |
profileScoreDist | 1.30.0 | profmem | 0.6.0 |
profvis | 0.3.8 | progeny | 1.24.0 |
progress | 1.2.3 | progressr | 0.14.0 |
proj4 | 1.0-14 | projectR | 1.18.0 |
pRoloc | 1.42.0 | pRolocdata | 1.40.0 |
pRolocGUI | 2.12.0 | PROMISE | 1.54.0 |
promises | 1.2.1 | PROPER | 1.34.0 |
PROPS | 1.24.0 | Prostar | 1.34.6 |
proteinProfiles | 1.42.0 | ProteoDisco | 1.8.0 |
ProteoMM | 1.20.0 | protGear | 1.6.0 |
ProtGenerics | 1.34.0 | proto | 1.0.0 |
protolite | 2.3.0 | protr | 1.7-0 |
protViz | 0.7.9 | proxy | 0.4-27 |
proxyC | 0.3.4 | PRROC | 1.3.1 |
pryr | 0.1.6 | ps | 1.7.6 |
PSCBS | 0.67.0 | pscl | 1.5.9 |
PSEA | 1.36.0 | psichomics | 1.28.1 |
PSMatch | 1.6.0 | pspline | 1.0-19 |
psych | 2.4.1 | psygenet2r | 1.34.1 |
ptairMS | 1.10.0 | ptw | 1.9-16 |
puma | 3.44.0 | PureCN | 2.8.1 |
purrr | 1.0.2 | pvac | 1.50.0 |
pvca | 1.42.0 | pvclust | 2.2-0 |
Pviz | 1.36.0 | PWMEnrich | 4.38.0 |
pwOmics | 1.34.0 | pwr | 1.3-0 |
qap | 0.1-2 | qckitfastq | 1.18.0 |
qcmetrics | 1.40.1 | qdapRegex | 0.7.8 |
qdapTools | 1.3.7 | QDNAseq | 1.38.0 |
QFeatures | 1.12.0 | qgraph | 1.9.8 |
qlcMatrix | 0.9.7 | qmtools | 1.6.0 |
qpcR | 1.4-1 | qpcrNorm | 1.60.0 |
qpdf | 1.3.2 | qpgraph | 2.36.0 |
qPLEXanalyzer | 1.20.0 | qqconf | 1.3.2 |
qqman | 0.1.9 | qs | 0.26.1 |
qsea | 1.28.0 | qsmooth | 1.18.0 |
QSutils | 1.20.0 | qsvaR | 1.6.0 |
qtl | 1.66 | QTLExperiment | 1.0.0 |
Qtlizer | 1.16.0 | quadprog | 1.5-8 |
qualV | 0.3-5 | quanteda | 3.3.1 |
quantiseqr | 1.10.0 | quantmod | 0.4.26 |
quantreg | 5.97 | quantro | 1.36.0 |
quantsmooth | 1.68.0 | quarto | 1.4 |
QuartPAC | 1.34.0 | QuasR | 1.42.1 |
QuaternaryProd | 1.36.0 | QUBIC | 1.30.0 |
questionr | 0.7.8 | QuickJSR | 1.1.3 |
qusage | 2.36.0 | qvalue | 2.34.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 |
R2HTML | 2.3.3 | R2jags | 0.7-1.1 |
R2WinBUGS | 2.1-22.1 | R3CPET | 1.34.1 |
r3Cseq | 1.48.0 | R453Plus1Toolbox | 1.52.0 |
R4RNA | 1.30.0 | R6 | 2.5.1 |
R6P | 0.3.0 | radiant.data | 1.6.3 |
RadioGx | 2.6.0 | raer | 1.0.2 |
rafalib | 1.0.0 | ragg | 1.3.0 |
RaggedExperiment | 1.26.0 | RAIDS | 1.0.0 |
rain | 1.36.0 | rainbow | 3.8 |
ramr | 1.10.0 | ramwas | 1.26.0 |
randomcoloR | 1.1.0.1 | randomForest | 4.7-1.1 |
randomizr | 1.0.0 | RandomWalkRestartMH | 1.22.0 |
randPack | 1.48.0 | randRotation | 1.14.0 |
randtests | 1.0.1 | randtoolbox | 2.0.4 |
ranger | 0.16.0 | RankAggreg | 0.6.6 |
RankProd | 3.28.0 | RANN | 2.6.1 |
rapiclient | 0.1.3 | rapidjsonr | 1.2.0 |
RApiSerialize | 0.1.2 | rappdirs | 0.3.3 |
rapportools | 1.1 | RAREsim | 1.6.0 |
RareVariantVis | 2.30.0 | rARPACK | 0.11-0 |
Rarr | 1.2.0 | raster | 3.6-26 |
rawrr | 1.10.2 | RbcBook1 | 1.70.0 |
Rbec | 1.10.0 | rBeta2009 | 1.0 |
RBGL | 1.78.0 | rbibutils | 2.2.16 |
RBioFormats | 1.2.0 | RBioinf | 1.62.0 |
rBiopaxParser | 2.42.0 | RBM | 1.34.0 |
rbokeh | 0.5.1 | Rbowtie | 1.42.0 |
Rbowtie2 | 2.8.0 | rbsurv | 2.60.0 |
Rbwa | 1.6.0 | RCAS | 1.28.3 |
RCASPAR | 1.48.0 | rcdk | 3.8.1 |
rcdklibs | 2.9 | rcellminer | 2.24.0 |
rcellminerData | 2.24.0 | rCGH | 1.32.0 |
RCircos | 1.2.2 | rclipboard | 0.2.1 |
RCM | 1.18.0 | rcmdcheck | 1.4.0 |
Rcollectl | 1.2.0 | RColorBrewer | 1.1-3 |
Rcpi | 1.38.0 | Rcpp | 1.0.12 |
RcppAlgos | 2.8.3 | RcppAnnoy | 0.0.22 |
RcppArmadillo | 0.12.8.1.0 | 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 |
RcppInt64 | 0.0.4 | RcppML | 0.3.7 |
RcppNumerical | 0.6-0 | RcppParallel | 5.1.7 |
RcppProgress | 0.4.2 | RcppRoll | 0.3.0 |
RcppSpdlog | 0.0.16 | RcppThread | 2.1.7 |
RcppTOML | 0.2.2 | RcppZiggurat | 0.1.6 |
RCurl | 1.98-1.14 | Rcwl | 1.18.0 |
RcwlPipelines | 1.18.1 | RCX | 1.6.0 |
RCy3 | 2.22.1 | RCyjs | 2.24.0 |
rDGIdb | 1.28.0 | Rdisop | 1.62.0 |
rdist | 0.0.5 | Rdpack | 2.6 |
RDRToolbox | 1.52.0 | reactable | 0.4.4 |
reactome.db | 1.86.2 | ReactomeContentService4R | 1.10.0 |
ReactomeGraph4R | 1.10.0 | ReactomeGSA | 1.16.1 |
ReactomePA | 1.46.0 | reactR | 0.5.0 |
readbitmap | 0.1.5 | reader | 1.0.6 |
readJDX | 0.6.4 | ReadqPCR | 1.48.0 |
readr | 2.1.5 | readxl | 1.4.3 |
REBET | 1.20.0 | rebook | 1.12.0 |
rebus | 0.1-3 | rebus.base | 0.0-3 |
rebus.datetimes | 0.0-2 | rebus.numbers | 0.0-1 |
rebus.unicode | 0.0-2 | receptLoss | 1.14.0 |
recipes | 1.0.10 | reconsi | 1.14.0 |
RecordLinkage | 0.4-12.4 | recount | 1.28.0 |
recount3 | 1.12.0 | recountmethylation | 1.12.0 |
recoup | 1.30.0 | RedeR | 2.6.1 |
RedisParam | 1.4.0 | REDseq | 1.48.0 |
redux | 1.1.4 | RefManageR | 1.4.0 |
regionalpcs | 1.0.0 | RegionalST | 1.0.1 |
regioneR | 1.34.0 | regioneReloaded | 1.4.0 |
regionReport | 1.36.0 | registry | 0.5-1 |
regsplice | 1.28.0 | regutools | 1.14.0 |
relations | 0.6-13 | reldist | 1.7-2 |
relimp | 1.0-5 | remaCor | 0.0.18 |
rematch | 2.0.0 | rematch2 | 2.1.2 |
remotes | 2.5.0 | REMP | 1.26.0 |
rentrez | 1.2.3 | renv | 1.0.5 |
Repitools | 1.48.0 | repmis | 0.5 |
repo | 2.1.5 | ReportingTools | 2.42.3 |
reportr | 1.3.0 | reportROC | 3.6 |
repr | 1.1.6 | reprex | 2.1.0 |
RepViz | 1.18.0 | ReQON | 1.48.0 |
reshape | 0.8.9 | reshape2 | 1.4.4 |
ResidualMatrix | 1.12.0 | RESOLVE | 1.4.0 |
restfulr | 0.0.15 | restfulSE | 1.24.0 |
reticulate | 1.35.0 | retrofit | 1.2.0 |
ReUseData | 1.2.2 | rex | 1.2.1 |
rexposome | 1.24.1 | rfaRm | 1.14.2 |
Rfast | 2.1.0 | Rfastp | 1.12.0 |
rfPred | 1.40.0 | rGADEM | 2.50.0 |
rGenomeTracks | 1.8.0 | rGenomeTracksData | 0.99.0 |
rgl | 1.3.1 | RGMQL | 1.22.0 |
RGMQLlib | 1.22.0 | RgnTX | 1.4.0 |
rgoslin | 1.6.0 | RGraph2js | 1.30.0 |
Rgraphviz | 2.46.0 | rGREAT | 2.4.0 |
RGSEA | 1.36.0 | rgsepd | 1.34.0 |
rhandsontable | 0.3.8 | rhdf5 | 2.46.1 |
rhdf5client | 1.24.0 | rhdf5filters | 1.14.1 |
Rhdf5lib | 1.24.2 | Rhisat2 | 1.18.0 |
RhpcBLASctl | 0.23-42 | Rhtslib | 2.4.1 |
RiboCrypt | 1.8.0 | RiboDiPA | 1.10.0 |
RiboProfiling | 1.32.0 | ribor | 1.14.0 |
riboSeqR | 1.36.0 | ribosomeProfilingQC | 1.14.1 |
ridge | 3.3 | rifi | 1.6.0 |
rifiComparative | 1.2.0 | RImmPort | 1.30.0 |
Ringo | 1.66.0 | rintrojs | 0.3.4 |
rio | 1.0.1 | Risa | 1.44.0 |
RISmed | 2.3.0 | RITAN | 1.26.0 |
RITANdata | 1.26.0 | RIVER | 1.26.0 |
rjags | 4-15 | rJava | 1.0-11 |
RJMCMCNucleosomes | 1.26.0 | rjson | 0.2.21 |
rjsoncons | 1.2.0 | RJSONIO | 1.3-1.9 |
Rlab | 4.0 | Rlabkey | 3.2.0 |
rlang | 1.1.3 | RLassoCox | 1.10.0 |
RLHub | 0.99.5 | rlist | 0.4.6.2 |
RLMM | 1.64.0 | RLSeq | 1.5.2 |
Rmagpie | 1.58.0 | RMallow | 1.1 |
RMariaDB | 1.3.1 | rmarkdown | 2.26 |
RMassBank | 3.12.0 | rmdformats | 1.0.4 |
rmelting | 1.18.0 | rmeta | 3.0 |
rmio | 0.4.0 | Rmisc | 1.5.1 |
Rmixmod | 2.1.10 | Rmmquant | 1.20.0 |
Rmpfr | 0.9-5 | Rmpi | 0.7-2 |
rms | 6.8-0 | RMSNumpress | 1.0.1 |
rmspc | 1.8.0 | RMTstat | 0.3.1 |
rmutil | 1.1.10 | RMySQL | 0.10.27 |
rmzqc | 0.5.3 | RNAAgeCalc | 1.14.0 |
RNAdecay | 1.22.2 | rnaEditr | 1.12.0 |
RNAinteract | 1.50.0 | RNAmodR | 1.16.0 |
RNAmodR.AlkAnilineSeq | 1.16.0 | RNAmodR.ML | 1.16.0 |
RNAmodR.RiboMethSeq | 1.16.0 | RNAsense | 1.16.0 |
rnaseqcomp | 1.32.0 | RNAseqCovarImpute | 1.0.2 |
RNASeqPower | 1.42.0 | RnaSeqSampleSize | 2.12.0 |
RnaSeqSampleSizeData | 1.34.0 | RnBeads | 2.20.0 |
RnBeads.hg19 | 1.34.0 | rncl | 0.8.7 |
RNeXML | 2.4.11 | rngtools | 1.5.2 |
rngWELL | 0.10-9 | RNifti | 1.6.1 |
Rnits | 1.36.0 | RNOmni | 1.0.1.2 |
roar | 1.38.0 | roastgsa | 1.0.0 |
robust | 0.7-4 | robustbase | 0.99-2 |
RobustRankAggreg | 1.2.1 | ROC | 1.78.0 |
ROCit | 2.1.1 | ROCpAI | 1.14.0 |
ROCR | 1.0-11 | RolDE | 1.6.0 |
rols | 2.30.2 | ROntoTools | 2.30.0 |
Rook | 1.2 | rootSolve | 1.8.2.4 |
ropls | 1.34.0 | roptim | 0.1.6 |
rorcid | 0.7.0 | ROSeq | 1.14.0 |
ROTS | 1.30.0 | roxygen2 | 7.3.1 |
RPA | 1.58.0 | rpart.plot | 3.1.2 |
RPMM | 1.25 | rprimer | 1.6.0 |
rprojroot | 2.0.4 | RProtoBufLib | 2.14.0 |
rpx | 2.10.0 | Rqc | 1.36.0 |
rqt | 1.28.0 | rqubic | 1.48.0 |
rrcov | 1.7-5 | rRDP | 1.36.0 |
RRHO | 1.42.0 | rrvgo | 1.14.2 |
rsample | 1.2.0 | Rsamtools | 2.18.0 |
rsbml | 2.60.0 | rScudo | 1.18.1 |
rsemmed | 1.12.0 | RSeqAn | 1.22.0 |
rslurm | 0.6.2 | rsm | 2.10.4 |
RSNNS | 0.4-17 | Rsolnp | 1.16 |
rsparse | 0.5.1 | RSpectra | 0.16-1 |
rSpectral | 1.0.0.10 | rsq | 2.6 |
RSQLite | 2.3.5 | rstan | 2.32.6 |
rstantools | 2.4.0 | rstatix | 0.7.2 |
rstudioapi | 0.15.0 | Rsubread | 2.16.1 |
rsvd | 1.0.5 | rsvg | 2.6.0 |
RSVSim | 1.42.0 | rSWeeP | 1.14.0 |
RTCA | 1.54.0 | RTCGA | 1.32.0 |
RTCGAToolbox | 2.32.1 | rTensor | 1.4.8 |
RTN | 2.26.0 | RTNduals | 1.26.0 |
RTNsurvival | 1.26.0 | RTopper | 1.48.0 |
Rtpca | 1.12.0 | rtracklayer | 1.62.0 |
Rtreemix | 1.64.0 | RTriangle | 1.6-0.13 |
rTRM | 1.40.0 | rTRMui | 1.40.0 |
Rtsne | 0.17 | Rttf2pt1 | 1.3.12 |
runibic | 1.24.0 | RUnit | 0.4.33 |
ruv | 0.9.7.1 | RUVcorr | 1.34.0 |
RUVnormalize | 1.36.0 | RUVnormalizeData | 1.22.0 |
RUVSeq | 1.36.0 | rversions | 2.1.2 |
rvest | 1.0.4 | rvinecopulib | 0.6.3.1.1 |
Rvisdiff | 1.0.0 | RVS | 1.24.0 |
RWeka | 0.4-46 | RWekajars | 3.9.3-2 |
rWikiPathways | 1.22.1 | s2 | 1.1.6 |
S4Arrays | 1.2.1 | S4Vectors | 0.40.2 |
safe | 3.42.0 | safetensors | 0.1.2 |
sagenhaft | 1.72.0 | SAIGEgds | 2.2.1 |
sampleClassifier | 1.26.0 | sampling | 2.10 |
SamSPECTRAL | 1.56.0 | sandwich | 3.1-0 |
sangeranalyseR | 1.12.0 | sangerseqR | 1.38.0 |
SANTA | 2.38.0 | SARC | 1.0.0 |
sarks | 1.14.0 | sass | 0.4.9 |
satuRn | 1.10.0 | SAVER | 1.1.2 |
SBGNview | 1.16.0 | SBGNview.data | 1.16.0 |
SBMLR | 1.98.0 | SC3 | 1.30.0 |
Scale4C | 1.24.0 | ScaledMatrix | 1.10.0 |
scales | 1.3.0 | scam | 1.2-16 |
SCAN.UPC | 2.44.0 | scanMiR | 1.8.2 |
scanMiRApp | 1.8.0 | scanMiRData | 1.8.0 |
scAnnotatR | 1.8.0 | SCANVIS | 1.16.0 |
SCArray | 1.10.0 | SCArray.sat | 1.2.1 |
scater | 1.30.1 | scatterHatch | 1.8.0 |
scattermore | 1.2 | scatterpie | 0.2.1 |
scatterplot3d | 0.3-44 | scBFA | 1.16.0 |
SCBN | 1.20.0 | scBubbletree | 1.4.0 |
scCB2 | 1.12.0 | scClassify | 1.14.0 |
sccomp | 1.6.0 | scDataviz | 1.12.0 |
scDblFinder | 1.16.0 | scDD | 1.26.0 |
scDDboost | 1.4.0 | scde | 2.30.0 |
scDesign3 | 1.0.1 | scds | 1.18.0 |
SCFA | 1.12.0 | scFeatureFilter | 1.22.0 |
scFeatures | 1.3.2 | scGPS | 1.16.0 |
schex | 1.16.1 | scHOT | 1.14.0 |
scico | 1.5.0 | scider | 1.0.0 |
scifer | 1.4.0 | scmap | 1.24.0 |
scMerge | 1.18.0 | scMET | 1.4.0 |
scmeth | 1.22.0 | SCnorm | 1.24.0 |
scone | 1.26.0 | Sconify | 1.22.0 |
SCOPE | 1.14.0 | scoreInvHap | 1.24.0 |
scp | 1.12.0 | scPCA | 1.16.0 |
scPipe | 2.2.0 | scran | 1.30.2 |
scReClassify | 1.8.0 | scRecover | 1.18.0 |
screenCounter | 1.2.0 | ScreenR | 1.4.0 |
scRepertoire | 1.12.0 | scrime | 1.3.5 |
scRNAseq | 2.16.0 | scRNAseqApp | 1.2.2 |
scruff | 1.20.0 | scry | 1.14.0 |
scrypt | 0.1.6 | scs | 3.2.4 |
scShapes | 1.8.0 | scTensor | 2.12.0 |
scTGIF | 1.16.0 | scTHI | 1.14.0 |
sctransform | 0.4.1 | scTreeViz | 1.8.0 |
scuttle | 1.12.0 | scviR | 1.2.0 |
SDAMS | 1.22.0 | sechm | 1.10.0 |
segmented | 2.0-3 | segmenter | 1.8.0 |
segmentSeq | 2.36.0 | selectKSigs | 1.14.0 |
selectr | 0.4-2 | SELEX | 1.34.0 |
SemDist | 1.36.0 | semisup | 1.26.0 |
sendmailR | 1.4-0 | seq.hotSPOT | 1.2.0 |
seq2pathway | 1.34.0 | seq2pathway.data | 1.34.0 |
seqArchR | 1.6.0 | seqArchRplus | 1.2.0 |
SeqArray | 1.42.2 | seqbias | 1.50.0 |
seqCAT | 1.24.0 | seqCNA | 1.48.0 |
seqCNA.annot | 1.38.0 | seqcombo | 1.24.0 |
SeqGate | 1.12.0 | SeqGSEA | 1.42.0 |
seqinr | 4.2-36 | seqLogo | 1.68.0 |
seqmagick | 0.1.7 | seqminer | 9.4 |
seqPattern | 1.34.0 | seqsetvis | 1.22.1 |
SeqSQC | 1.24.0 | seqTools | 1.36.0 |
SeqVarTools | 1.40.0 | seriation | 1.5.4 |
servr | 0.29 | sesame | 1.20.0 |
sesameData | 1.20.0 | sessioninfo | 1.2.2 |
SEtools | 1.16.0 | setRNG | 2024.2-1 |
sets | 1.0-25 | settings | 0.2.7 |
Seurat | 5.0.2 | SeuratObject | 5.0.1 |
sevenbridges | 1.32.0 | sevenC | 1.22.0 |
sf | 1.0-15 | sfsmisc | 1.1-17 |
sftime | 0.2-0 | SGCP | 1.2.0 |
sgeostat | 1.0-27 | SGSeq | 1.36.0 |
shades | 1.4.0 | shadowtext | 0.1.3 |
shape | 1.4.6.1 | SharedObject | 1.16.0 |
shiny | 1.8.0 | shinyAce | 0.4.2 |
shinyalert | 3.0.0 | shinyBS | 0.61.1 |
shinybusy | 0.3.3 | shinycssloaders | 1.0.0 |
shinycustomloader | 0.9.0 | shinyCyJS | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyepico | 1.10.0 | shinyFeedback | 0.4.0 |
shinyFiles | 0.9.3 | shinyHeatmaply | 0.2.0 |
shinyhelper | 0.3.2 | shinyjqui | 0.4.1 |
shinyjs | 2.1.0 | shinylogs | 0.2.1 |
shinymanager | 1.0.410 | shinyMatrix | 0.6.0 |
shinymeta | 0.2.0.3 | shinyMethyl | 1.38.0 |
shinypanel | 0.1.5 | shinyscreenshot | 0.2.1 |
shinythemes | 1.2.0 | shinytitle | 0.1.0 |
shinytoastr | 2.2.0 | shinyTree | 0.3.1 |
shinyvalidate | 0.1.3 | shinyWidgets | 0.8.2 |
ShortRead | 1.60.0 | SIAMCAT | 2.6.0 |
SICtools | 1.32.0 | SIFT.Hsapiens.dbSNP137 | 1.0.0 |
SigCheck | 2.34.0 | sigclust | 1.1.0.1 |
sigFeature | 1.20.0 | SigFuge | 1.40.0 |
siggenes | 1.76.0 | sights | 1.28.0 |
signal | 1.8-0 | signatureSearch | 1.16.0 |
signeR | 2.4.0 | signifinder | 1.4.0 |
SigsPack | 1.16.0 | sigsquared | 1.34.0 |
SIM | 1.72.0 | SIMAT | 1.34.0 |
SimBindProfiles | 1.40.0 | SimBu | 1.4.3 |
SIMD | 1.20.0 | SimFFPE | 1.14.0 |
similaRpeak | 1.34.0 | SIMLR | 1.28.0 |
simona | 1.0.10 | simpIntLists | 1.38.0 |
simpleCache | 0.4.2 | simpleSeg | 1.4.1 |
simplifyEnrichment | 1.12.0 | sincell | 1.34.0 |
single | 1.6.0 | SingleCellExperiment | 1.24.0 |
SingleCellSignalR | 1.14.0 | singleCellTK | 2.12.2 |
SingleMoleculeFootprinting | 1.10.0 | SingleR | 2.4.1 |
singscore | 1.22.0 | SiPSiC | 1.2.2 |
sitadela | 1.10.0 | sitePath | 1.18.0 |
sitmo | 2.0.2 | sizepower | 1.72.0 |
sjlabelled | 1.2.0 | sjmisc | 2.8.9 |
skewr | 1.34.0 | skmeans | 0.2-16 |
slalom | 1.24.0 | slam | 0.1-50 |
slider | 0.3.1 | slingshot | 2.10.0 |
SLqPCR | 1.68.0 | sm | 2.2-6.0 |
SMAD | 1.18.0 | SMAP | 1.66.0 |
SmartSVA | 0.1.3 | smatr | 3.4-8 |
SMITE | 1.30.0 | smoother | 1.1 |
smoothie | 1.0-3 | SmoothWin | 3.0.0 |
smurf | 1.1.5 | SMVar | 1.3.4 |
sn | 2.1.1 | sna | 2.7-2 |
SNAGEE | 1.42.0 | SNAGEEdata | 1.38.0 |
snakecase | 0.11.1 | snapCGH | 1.72.0 |
snapcount | 1.14.0 | snifter | 1.12.0 |
snm | 1.50.0 | snow | 0.4-4 |
SnowballC | 0.7.1 | snowfall | 1.84-6.3 |
SNPediaR | 1.28.0 | SNPhood | 1.32.0 |
SNPlocs.Hsapiens.dbSNP144.GRCh37 | 0.99.20 | SNPRelate | 1.36.1 |
snpStats | 1.52.0 | softImpute | 1.4-1 |
soGGi | 1.34.0 | som | 0.3-5.1 |
SomaticSignatures | 2.38.0 | SOMNiBUS | 1.10.0 |
sonicLength | 1.4.7 | sortable | 0.5.0 |
SoupX | 1.6.2 | sourcetools | 0.1.7-1 |
sp | 2.1-3 | SpacePAC | 1.40.0 |
spacetime | 1.3-1 | spam | 2.10-0 |
Spaniel | 1.16.0 | sparklyr | 1.8.4 |
sparrow | 1.8.0 | SparseArray | 1.2.4 |
SparseM | 1.81 | sparseMatrixStats | 1.14.0 |
sparseMVN | 0.2.2 | sparsenetgls | 1.20.0 |
sparsepca | 0.1.2 | SparseSignatures | 2.12.0 |
sparsesvd | 0.2-2 | spaSim | 1.4.0 |
SpatialCPie | 1.18.0 | spatialDE | 1.8.1 |
SpatialDecon | 1.12.3 | SpatialExperiment | 1.12.0 |
SpatialExtremes | 2.1-0 | SpatialFeatureExperiment | 1.4.0 |
spatialHeatmap | 2.8.5 | SpatialOmicsOverlay | 1.2.1 |
SpatialTools | 1.0.5 | spatstat | 3.0-7 |
spatstat.data | 3.0-4 | spatstat.explore | 3.2-6 |
spatstat.geom | 3.2-9 | spatstat.linnet | 3.1-4 |
spatstat.model | 3.2-10 | spatstat.random | 3.2-3 |
spatstat.sparse | 3.0-3 | spatstat.utils | 3.0-4 |
spatzie | 1.8.0 | spBayes | 0.4-7 |
spData | 2.3.0 | spdep | 1.3-3 |
spdl | 0.0.5 | speaq | 2.7.0 |
speckle | 1.2.0 | specL | 1.36.0 |
SpeCond | 1.56.0 | Spectra | 1.12.0 |
SpectralTAD | 1.18.0 | speedglm | 0.3-5 |
SPEM | 1.42.0 | SPIA | 2.54.0 |
SPIAT | 1.4.1 | spicyR | 1.14.3 |
SpidermiR | 1.32.0 | spikeLI | 2.62.0 |
spiky | 1.8.0 | spkTools | 1.58.0 |
splancs | 2.01-44 | splatter | 1.26.0 |
SpliceWiz | 1.4.1 | SplicingFactory | 1.10.0 |
SplicingGraphs | 1.42.0 | splineTimeR | 1.30.0 |
SPLINTER | 1.28.0 | splitstackshape | 1.4.8 |
splots | 1.68.0 | splus2R | 1.3-5 |
SpotClean | 1.4.1 | SPOTlight | 1.6.7 |
spqn | 1.14.0 | spsComps | 0.3.3.0 |
SPsimSeq | 1.12.0 | spsUtil | 0.2.2 |
SQLDataFrame | 1.16.1 | sqldf | 0.4-11 |
SQUADD | 1.52.0 | SQUAREM | 2021.1 |
squash | 1.0.9 | sRACIPE | 1.18.0 |
SRAdb | 1.64.0 | srnadiff | 1.22.2 |
ssc | 2.1-0 | sscu | 2.32.0 |
sSeq | 1.40.0 | ssize | 1.76.0 |
sSNAPPY | 1.6.1 | ssPATHS | 1.16.0 |
ssrch | 1.18.0 | ssviz | 1.36.0 |
stable | 1.1.6 | stabledist | 0.7-1 |
stabs | 0.6-4 | stageR | 1.24.0 |
standR | 1.6.0 | StanHeaders | 2.32.6 |
staRank | 1.44.0 | StarBioTrek | 1.28.0 |
stars | 0.6-4 | startupmsg | 0.9.6.1 |
statebins | 1.4.0 | STATegRa | 1.38.0 |
Statial | 1.4.5 | statip | 0.2.3 |
statmod | 1.5.0 | statnet.common | 4.9.0 |
statTarget | 1.32.0 | STdeconvolve | 1.6.0 |
stemHypoxia | 1.38.0 | stepNorm | 1.74.0 |
stJoincount | 1.4.0 | stopwords | 2.3 |
storr | 1.2.5 | strandCheckR | 1.20.0 |
strawr | 0.0.91 | Streamer | 1.48.0 |
strex | 2.0.0 | STRINGdb | 2.14.3 |
stringdist | 0.9.12 | stringfish | 0.16.0 |
stringi | 1.8.3 | stringr | 1.5.1 |
strucchange | 1.5-3 | struct | 1.14.1 |
Structstrings | 1.18.0 | structToolbox | 1.14.0 |
StructuralVariantAnnotation | 1.18.0 | styler | 1.10.2 |
SubCellBarCode | 1.18.0 | subSeq | 1.32.0 |
SUITOR | 1.4.0 | SummarizedBenchmark | 2.20.0 |
SummarizedExperiment | 1.32.0 | summarytools | 1.0.1 |
Summix | 2.8.0 | superheat | 0.1.0 |
SuperLearner | 2.0-29 | supersigs | 1.10.0 |
SuppDists | 1.1-9.7 | supraHex | 1.40.0 |
surfaltr | 1.8.0 | survcomp | 1.52.0 |
survey | 4.4-1 | survivalAnalysis | 0.3.0 |
survivalROC | 1.0.3.1 | survivalsvm | 0.0.5 |
survminer | 0.4.9 | survMisc | 0.5.6 |
survtype | 1.18.0 | sva | 3.50.0 |
svaNUMT | 1.8.0 | svaRetro | 1.8.0 |
svd | 0.5.5 | svglite | 2.1.3 |
svgPanZoom | 0.3.4 | SVMDO | 1.2.8 |
svMisc | 1.2.3 | svUnit | 1.0.6 |
swamp | 1.5.1 | SWATH2stats | 1.32.1 |
SwathXtend | 2.24.0 | swfdr | 1.28.0 |
switchBox | 1.38.0 | switchde | 1.28.0 |
sylly | 0.1-6 | sylly.en | 0.1-3 |
synapsis | 1.8.0 | synapter | 2.26.0 |
synergyfinder | 3.10.3 | SynExtend | 1.14.0 |
synlet | 2.2.0 | SynMut | 1.18.0 |
syntenet | 1.4.0 | sys | 3.4.2 |
systemfonts | 1.0.6 | systemPipeR | 2.8.0 |
systemPipeShiny | 1.12.0 | systemPipeTools | 1.10.0 |
syuzhet | 1.0.7 | tadar | 1.0.0 |
TADCompare | 1.12.1 | tagcloud | 0.6 |
tanggle | 1.8.0 | TAPseq | 1.14.1 |
target | 1.16.0 | TargetDecoy | 1.8.0 |
TargetScore | 1.40.0 | TargetSearch | 2.4.2 |
TBSignatureProfiler | 1.14.0 | TBX20BamSubset | 1.38.0 |
TCA | 1.2.1 | TCC | 1.42.0 |
TCGAbiolinks | 2.30.0 | TCGAbiolinksGUI.data | 1.22.0 |
TCGAutils | 1.22.2 | tcltk2 | 1.2-11 |
TCseq | 1.26.0 | TDbasedUFE | 1.2.0 |
TDbasedUFEadv | 1.2.0 | TeachingDemos | 2.13 |
TEKRABber | 1.6.0 | tensor | 1.5 |
tensorA | 0.36.2.1 | tensorflow | 2.15.0 |
TENxIO | 1.4.0 | TENxPBMCData | 1.20.0 |
tenXplore | 1.24.0 | TEQC | 4.24.0 |
ternarynet | 1.46.0 | terra | 1.7-71 |
terraTCGAdata | 1.6.0 | tester | 0.1.7 |
testthat | 3.2.1 | text2vec | 0.6.4 |
textclean | 0.9.3 | textshape | 1.7.3 |
textshaping | 0.3.7 | textstem | 0.1.4 |
TFARM | 1.24.0 | tfautograph | 0.3.2 |
TFBSTools | 1.40.0 | TFEA.ChIP | 1.22.0 |
TFHAZ | 1.24.0 | TFisher | 0.2.0 |
TFMPvalue | 0.0.9 | tfprobability | 0.15.1 |
tfruns | 1.5.2 | TFutils | 1.22.0 |
TH.data | 1.1-2 | threejs | 0.3.3 |
tibble | 3.2.1 | tictoc | 1.2 |
tidybayes | 3.0.6 | tidybulk | 1.14.3 |
tidydr | 0.0.5 | tidygraph | 1.3.1 |
tidyHeatmap | 1.8.1 | tidyr | 1.3.1 |
tidyselect | 1.2.1 | tidySingleCellExperiment | 1.12.0 |
tidySummarizedExperiment | 1.12.0 | tidytext | 0.4.1 |
tidytidbits | 0.3.2 | tidytree | 0.4.6 |
tidyverse | 2.0.0 | tiff | 0.1-12 |
tigre | 1.56.0 | tiledb | 0.24.0 |
TileDBArray | 1.12.0 | tilingArray | 1.80.0 |
timechange | 0.3.0 | timecourse | 1.74.0 |
timeDate | 4032.109 | timeOmics | 1.14.0 |
timescape | 1.26.0 | timeSeries | 4032.109 |
TimiRGeN | 1.11.0 | timsac | 1.3.8-4 |
TIN | 1.34.0 | tinytex | 0.50 |
tippy | 0.1.0 | TissueEnrich | 1.22.0 |
TitanCNA | 1.40.0 | tkrplot | 0.0-27 |
tkWidgets | 1.80.0 | tLOH | 1.10.0 |
tm | 0.7-12 | TMB | 1.9.10 |
TMixClust | 1.24.0 | tmvtnorm | 1.6 |
TNBC.CMS | 1.18.0 | TnT | 1.24.0 |
TOAST | 1.16.0 | tokenizers | 0.3.0 |
tomoda | 1.12.0 | tomoseqr | 1.6.0 |
TOP | 1.2.0 | topconfects | 1.18.0 |
topdownr | 1.24.0 | topGO | 2.54.0 |
topicmodels | 0.2-16 | torch | 0.12.0 |
ToxicoGx | 2.6.0 | TPP | 3.30.0 |
TPP2D | 1.18.0 | tracktables | 1.36.0 |
trackViewer | 1.38.1 | tractor.base | 3.4.2 |
tradeSeq | 1.16.0 | TrajectoryGeometry | 1.10.1 |
TrajectoryUtils | 1.10.1 | transcriptogramer | 1.24.0 |
transcriptR | 1.30.0 | transformGamPoi | 1.8.0 |
transformr | 0.1.5 | transite | 1.20.1 |
tRanslatome | 1.40.0 | transomics2cytoscape | 1.12.0 |
transport | 0.14-7 | TransView | 1.46.0 |
traseR | 1.32.0 | traviz | 1.8.0 |
TreeAndLeaf | 1.14.0 | treeio | 1.26.0 |
treekoR | 1.10.0 | treemap | 2.4-4 |
TreeSummarizedExperiment | 2.10.0 | TREG | 1.6.0 |
Trendy | 1.24.1 | TRESS | 1.8.0 |
tricycle | 1.10.0 | triebeard | 0.4.1 |
trigger | 1.48.0 | trio | 3.40.0 |
triplex | 1.42.0 | tripr | 1.8.0 |
tRNA | 1.20.1 | tRNAdbImport | 1.20.1 |
tRNAscanImport | 1.22.0 | TRONCO | 2.34.0 |
truncdist | 1.0-2 | truncnorm | 1.0-9 |
trust | 0.1-8 | TSCAN | 1.40.1 |
tseries | 0.10-55 | tsne | 0.1-3.1 |
TSP | 1.2-4 | ttgsea | 1.10.0 |
TTMap | 1.24.0 | TTR | 0.24.4 |
ttservice | 0.4.0 | TurboNorm | 1.50.0 |
TVTB | 1.28.0 | tweeDEseq | 1.48.0 |
tweedie | 2.3.5 | tweenr | 2.0.3 |
twilight | 1.78.0 | twoddpcr | 1.26.0 |
txcutr | 1.8.0 | TxDb.Celegans.UCSC.ce6.ensGene | 3.2.2 |
TxDb.Dmelanogaster.UCSC.dm3.ensGene | 3.2.2 | TxDb.Dmelanogaster.UCSC.dm6.ensGene | 3.12.0 |
TxDb.Hsapiens.UCSC.hg18.knownGene | 3.2.2 | TxDb.Hsapiens.UCSC.hg19.knownGene | 3.2.2 |
TxDb.Hsapiens.UCSC.hg38.knownGene | 3.18.0 | TxDb.Mmusculus.UCSC.mm10.knownGene | 3.10.0 |
TxDb.Mmusculus.UCSC.mm9.knownGene | 3.2.2 | TxDb.Rnorvegicus.UCSC.rn4.ensGene | 3.2.2 |
tximeta | 1.20.3 | tximport | 1.30.0 |
tximportData | 1.30.0 | TypeInfo | 1.68.0 |
tzdb | 0.4.0 | UCell | 2.6.2 |
ucminf | 1.2.1 | Ularcirc | 1.20.0 |
umap | 0.2.10.0 | UMI4Cats | 1.12.0 |
uncoverappLib | 1.12.0 | UNDO | 1.44.0 |
unifiedWMWqPCR | 1.38.0 | UniProt.ws | 2.42.0 |
uniqtag | 1.0.1 | Uniquorn | 2.22.0 |
units | 0.8-5 | universalmotif | 1.20.0 |
unmarked | 1.4.1 | updateObject | 1.6.0 |
UpSetR | 1.4.0 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
usethis | 2.2.3 | uSORT | 1.28.0 |
utf8 | 1.2.4 | uuid | 1.2-0 |
uwot | 0.1.16 | V8 | 4.4.2 |
VAExprs | 1.8.0 | valr | 0.7.0 |
VAM | 1.1.0 | VanillaICE | 1.64.1 |
VarCon | 1.10.0 | VarfromPDB | 2.2.10 |
varhandle | 2.0.6 | variancePartition | 1.32.5 |
VariantAnnotation | 1.48.1 | VariantExperiment | 1.16.0 |
VariantFiltering | 1.38.0 | VariantTools | 1.44.0 |
varSelRF | 0.7-8 | VaSP | 1.14.0 |
vbmp | 1.70.0 | vcd | 1.4-12 |
VCFArray | 1.18.0 | vcfR | 1.15.0 |
vctrs | 0.6.5 | VDJdive | 1.4.0 |
VegaMC | 3.40.0 | vegan | 2.6-4 |
velociraptor | 1.12.0 | veloviz | 1.8.0 |
venn | 1.12 | VennDetail | 1.18.0 |
VennDiagram | 1.7.3 | verification | 1.42 |
VERSO | 1.12.0 | VGAM | 1.1-10 |
vidger | 1.22.0 | VIM | 6.2.2 |
vioplot | 0.4.0 | viper | 1.36.0 |
vipor | 0.4.7 | viridis | 0.6.5 |
viridisLite | 0.4.2 | visdat | 0.6.0 |
ViSEAGO | 1.16.0 | visNetwork | 2.1.2 |
vissE | 1.10.0 | Voyager | 1.4.0 |
VplotR | 1.12.1 | vroom | 1.6.5 |
vsclust | 1.4.0 | vsn | 3.70.0 |
vtpnet | 0.42.0 | vulcan | 1.24.0 |
waddR | 1.16.0 | waffle | 1.0.2 |
waiter | 0.2.5 | waldo | 0.5.2 |
warp | 0.2.1 | wateRmelon | 2.8.0 |
wavClusteR | 2.36.0 | waveslim | 1.8.4 |
wavethresh | 4.7.2 | wdm | 0.2.4 |
weaver | 1.68.0 | webbioc | 1.74.0 |
webchem | 1.3.0 | webshot | 0.5.5 |
webutils | 1.2.0 | weitrix | 1.14.0 |
wesanderson | 0.3.7 | WGCNA | 1.72-5 |
wheatmap | 0.2.0 | whisker | 0.4.1 |
widgetTools | 1.80.0 | wiggleplotr | 1.26.0 |
withr | 3.0.0 | wk | 0.9.1 |
word2vec | 0.4.0 | wordcloud | 2.6 |
wordcloud2 | 0.2.1 | wpm | 1.12.0 |
wppi | 1.10.0 | Wrench | 1.20.0 |
writexl | 1.5.0 | WriteXLS | 6.5.0 |
wrswoR | 1.1.1 | xcms | 4.0.2 |
xcore | 1.6.0 | XDE | 2.48.0 |
Xeva | 1.18.0 | xfun | 0.42 |
xgboost | 1.7.7.1 | XINA | 1.20.0 |
xmapbridge | 1.60.0 | XML | 3.99-0.16.1 |
xml2 | 1.3.6 | XML2R | 0.0.6 |
xmlparsedata | 1.0.5 | XNAString | 1.10.0 |
xopen | 1.0.0 | xtable | 1.8-4 |
XtraSNPlocs.Hsapiens.dbSNP144.GRCh37 | 0.99.12 | xts | 0.13.2 |
XVector | 0.42.0 | yaImpute | 1.0-34 |
yaml | 2.3.8 | yamss | 1.28.0 |
YAPSA | 1.28.0 | yardstick | 1.3.0 |
yarn | 1.28.0 | yeastCC | 1.42.0 |
yeastExpData | 0.48.0 | yesno | 0.1.2 |
yulab.utils | 0.1.4 | zCompositions | 1.5.0-3 |
zeallot | 0.1.0 | zellkonverter | 1.12.1 |
zenith | 1.4.2 | zFPKM | 1.24.0 |
zinbwave | 1.24.0 | zip | 2.3.1 |
zlibbioc | 1.48.2 | zoo | 1.8-12 |
ZygosityPredictor | 1.2.0 |
Python version: 3.10.12
Python packages
package | version | package | version |
---|---|---|---|
absl-py | 2.1.0 | alembic | 1.13.2 |
altair | 5.4.1 | aniso8601 | 9.0.1 |
annotated-types | 0.7.0 | anyio | 4.4.0 |
argon2-cffi | 23.1.0 | argon2-cffi-bindings | 21.2.0 |
arrow | 1.3.0 | arviz | 0.19.0 |
asgiref | 3.8.1 | asttokens | 2.4.1 |
astunparse | 1.6.3 | async-generator | 1.10 |
async-lru | 2.0.4 | attrs | 24.2.0 |
automat | 24.8.1 | babel | 2.16.0 |
bayesian-optimization | 1.5.1 | bcrypt | 4.2.0 |
beautifulsoup4 | 4.12.3 | black | 24.8.0 |
bleach | 6.1.0 | blinker | 1.8.2 |
blis | 0.7.11 | bokeh | 3.5.2 |
boruta | 0.4.3 | bottleneck | 1.4.0 |
branca | 0.7.2 | cachetools | 5.5.0 |
catalogue | 2.0.10 | catboost | 1.2.7 |
certifi | 2024.8.30 | certipy | 0.2.0 |
cffi | 1.17.1 | charset-normalizer | 3.3.2 |
click | 8.1.7 | cloudpathlib | 0.19.0 |
cloudpickle | 3.0.0 | cmake | 3.30.3 |
cmdstanpy | 1.2.4 | colorama | 0.4.6 |
colorlog | 6.8.2 | colorlover | 0.3.0 |
comm | 0.2.2 | confection | 0.1.5 |
constantly | 23.10.4 | contourpy | 1.3.0 |
coverage | 7.6.1 | cryptography | 43.0.1 |
cssselect | 1.2.0 | cufflinks | 0.17.3 |
cycler | 0.12.1 | cymem | 2.0.8 |
cython | 3.0.11 | dash | 2.18.1 |
dash-core-components | 2.0.0 | dash-html-components | 2.0.0 |
dash-table | 5.0.0 | dask | 2024.8.2 |
databricks-sdk | 0.32.1 | datascience | 0.17.6 |
deap | 1.4.1 | debugpy | 1.8.5 |
decorator | 5.1.1 | defusedxml | 0.7.1 |
deprecated | 1.2.14 | dill | 0.3.8 |
django | 5.1.1 | dm-tree | 0.1.8 |
docker | 7.1.0 | eli5 | 0.13.0 |
exceptiongroup | 1.2.2 | executing | 2.1.0 |
facets | 1.1.0 | fairlearn | 0.10.0 |
fastapi | 0.114.1 | fastjsonschema | 2.20.0 |
fastprogress | 1.0.3 | filelock | 3.16.0 |
flake8 | 7.1.1 | flask | 3.0.3 |
flatbuffers | 24.3.25 | folium | 0.17.0 |
fonttools | 4.53.1 | fqdn | 1.5.1 |
fsspec | 2024.9.0 | funcy | 2.0 |
future | 1.0.0 | gast | 0.6.0 |
gensim | 4.3.2 | geopandas | 1.0.1 |
gitdb | 4.0.11 | gitpython | 3.1.43 |
google-auth | 2.34.0 | google-pasta | 0.2.0 |
graphene | 3.3 | graphql-core | 3.2.4 |
graphql-relay | 3.2.0 | graphviz | 0.8.4 |
greenlet | 3.1.0 | grpcio | 1.66.1 |
gunicorn | 23.0.0 | h11 | 0.14.0 |
h5netcdf | 1.3.0 | h5py | 3.11.0 |
hdbscan | 0.8.38.post1 | holidays | 0.56 |
html5lib | 1.1 | htmlmin | 0.1.12 |
httpcore | 1.0.5 | httpx | 0.27.2 |
huggingface-hub | 0.24.7 | hyperlink | 21.0.0 |
hyperopt | 0.2.7 | idna | 3.8 |
imagehash | 4.3.1 | imageio | 2.35.1 |
imbalanced-learn | 0.12.3 | imblearn | 0.0 |
importlib-metadata | 8.5.0 | importlib-resources | 6.4.5 |
incremental | 24.7.2 | iniconfig | 2.0.0 |
ipaddress | 1.0.23 | ipykernel | 6.29.5 |
ipython | 8.27.0 | ipywidgets | 8.1.5 |
isoduration | 20.11.0 | isort | 5.13.2 |
itemadapter | 0.9.0 | itemloaders | 1.3.1 |
itsdangerous | 2.2.0 | jedi | 0.19.1 |
jinja2 | 3.1.4 | jmespath | 1.0.1 |
joblib | 1.4.2 | json5 | 0.9.25 |
jsonpointer | 3.0.0 | jsonschema | 4.23.0 |
jsonschema-specifications | 2023.12.1 | jupyter | 1.1.1 |
jupyter-client | 8.6.2 | jupyter-console | 6.6.3 |
jupyter-core | 5.7.2 | jupyter-events | 0.10.0 |
jupyter-lsp | 2.2.5 | jupyter-server | 2.14.2 |
jupyter-server-terminals | 0.5.3 | jupyter-telemetry | 0.1.0 |
jupyterhub | 3.1.1 | jupyterhub-nativeauthenticator | 1.2.0 |
jupyterlab | 4.2.5 | jupyterlab-pygments | 0.3.0 |
jupyterlab-server | 2.27.3 | jupyterlab-widgets | 3.0.13 |
keras | 3.5.0 | keras-tuner | 1.4.7 |
kiwisolver | 1.4.7 | kmodes | 0.12.2 |
kt-legacy | 1.0.5 | langcodes | 3.4.0 |
language-data | 1.2.0 | lazy-loader | 0.4 |
libclang | 18.1.1 | lightgbm | 4.5.0 |
lime | 0.2.0.1 | lit | 18.1.8 |
llvmlite | 0.43.0 | locket | 1.0.0 |
lucid | 0.3.8 | lxml | 5.3.0 |
mako | 1.3.5 | marisa-trie | 1.2.0 |
markdown | 3.7 | markdown-it-py | 3.0.0 |
markupsafe | 2.1.5 | matplotlib | 3.9.2 |
matplotlib-inline | 0.1.7 | matplotlib-venn | 1.1.1 |
mccabe | 0.7.0 | mdurl | 0.1.2 |
missingno | 0.5.2 | mistune | 3.0.2 |
ml-dtypes | 0.4.0 | mlflow | 2.16.0 |
mlflow-skinny | 2.16.0 | mlpack | 4.4.0.post1 |
mlxtend | 0.23.1 | more-itertools | 10.5.0 |
mpld3 | 0.5.10 | mpmath | 1.3.0 |
multimethod | 1.4 | murmurhash | 1.0.10 |
mxnet | 1.9.1 | mypy-extensions | 1.0.0 |
namex | 0.0.8 | narwhals | 1.8.0 |
nbclient | 0.10.0 | nbconvert | 7.16.4 |
nbformat | 5.10.4 | nest-asyncio | 1.6.0 |
networkx | 3.3 | nibabel | 5.2.1 |
nilearn | 0.10.4 | nltk | 3.9.1 |
notebook | 7.2.2 | notebook-shim | 0.2.4 |
numba | 0.60.0 | numexpr | 2.10.1 |
numpy | 1.26.4 | nvidia-cublas-cu11 | 11.10.3.66 |
nvidia-cuda-cupti-cu11 | 11.7.101 | nvidia-cuda-nvrtc-cu11 | 11.7.99 |
nvidia-cuda-runtime-cu11 | 11.7.99 | nvidia-cudnn-cu11 | 8.5.0.96 |
nvidia-cufft-cu11 | 10.9.0.58 | nvidia-curand-cu11 | 10.2.10.91 |
nvidia-cusolver-cu11 | 11.4.0.1 | nvidia-cusparse-cu11 | 11.7.4.91 |
nvidia-nccl-cu11 | 2.14.3 | nvidia-nccl-cu12 | 2.23.4 |
nvidia-nvtx-cu11 | 11.7.91 | oauthlib | 3.2.2 |
onetimepass | 1.0.1 | opencv-python | 4.10.0.84 |
opentelemetry-api | 1.16.0 | opentelemetry-sdk | 1.16.0 |
opentelemetry-semantic-conventions | 0.37b0 | opt-einsum | 3.3.0 |
optree | 0.12.1 | optuna | 4.0.0 |
overrides | 7.7.0 | packaging | 24.1 |
pamela | 1.2.0 | pandas | 2.2.2 |
pandas-profiling | 3.0.0 | pandocfilters | 1.5.1 |
parsel | 1.9.1 | parso | 0.8.4 |
partd | 1.4.2 | pathspec | 0.12.1 |
patsy | 0.5.6 | pexpect | 4.9.0 |
phik | 0.12.4 | pillow | 10.4.0 |
platformdirs | 4.3.2 | plotly | 5.24.1 |
pluggy | 1.5.0 | preshed | 3.0.9 |
prometheus-client | 0.20.0 | prompt-toolkit | 3.0.47 |
prophet | 1.1.5 | protego | 0.3.1 |
protobuf | 4.25.4 | psutil | 6.0.0 |
ptyprocess | 0.7.0 | pure-eval | 0.2.3 |
py4j | 0.10.9.7 | pyarrow | 17.0.0 |
pyasn1 | 0.6.1 | pyasn1-modules | 0.4.1 |
pycaret | 2.2.2 | pycodestyle | 2.12.1 |
pycparser | 2.22 | pydantic | 2.9.1 |
pydantic-core | 2.23.3 | pydeck | 0.9.1 |
pydispatcher | 2.0.7 | pydot | 3.0.1 |
pyflakes | 3.2.0 | pygments | 2.18.0 |
pyldavis | 3.4.1 | pymc3 | 3.11.4 |
pynndescent | 0.5.13 | pyod | 2.0.2 |
pyogrio | 0.9.0 | pyopengl | 3.1.7 |
pyopenssl | 24.2.1 | pyparsing | 3.1.4 |
pyproj | 3.6.1 | pytest | 8.3.3 |
pytest-cov | 5.0.0 | python-dateutil | 2.9.0.post0 |
python-json-logger | 2.0.7 | pytz | 2024.2 |
pywavelets | 1.7.0 | pyyaml | 6.0.2 |
pyzmq | 26.2.0 | queuelib | 1.7.0 |
referencing | 0.35.1 | regex | 2024.9.11 |
requests | 2.32.3 | requests-file | 2.1.0 |
retrying | 1.3.4 | rfc3339-validator | 0.1.4 |
rfc3986-validator | 0.1.1 | rich | 13.8.1 |
rpds-py | 0.20.0 | rsa | 4.9 |
ruamel-yaml | 0.18.6 | ruamel-yaml-clib | 0.2.8 |
safetensors | 0.4.5 | scikit-base | 0.9.0 |
scikit-image | 0.24.0 | scikit-learn | 1.5.2 |
scikit-plot | 0.3.7 | scipy | 1.14.1 |
scrapy | 2.11.2 | seaborn | 0.13.2 |
semver | 3.0.2 | send2trash | 1.8.3 |
service-identity | 24.1.0 | setuptools | 74.1.2 |
shap | 0.46.0 | shapely | 2.0.6 |
shellingham | 1.5.4 | six | 1.16.0 |
sktime | 0.33.0 | slicer | 0.0.8 |
smart-open | 7.0.4 | smmap | 5.0.1 |
sniffio | 1.3.1 | soupsieve | 2.6 |
spacy | 3.8.0 | spacy-legacy | 3.0.12 |
spacy-loggers | 1.0.5 | sqlalchemy | 2.0.34 |
sqlparse | 0.5.1 | srsly | 2.4.8 |
stack-data | 0.6.3 | stanio | 0.5.1 |
starlette | 0.38.5 | statsmodels | 0.14.2 |
stopit | 1.1.2 | streamlit | 1.38.0 |
sympy | 1.13.2 | tabulate | 0.9.0 |
tangled-up-in-unicode | 0.1.0 | tenacity | 8.5.0 |
tensorboard | 2.17.1 | tensorboard-data-server | 0.7.2 |
tensorflow | 2.17.0 | tensorflow-io-gcs-filesystem | 0.37.1 |
tensorflow-probability | 0.24.0 | termcolor | 2.4.0 |
terminado | 0.18.1 | textblob | 0.18.0.post0 |
theano-pymc | 1.1.2 | thinc | 8.2.5 |
threadpoolctl | 3.5.0 | tifffile | 2024.8.30 |
tinycss2 | 1.3.0 | tldextract | 5.1.2 |
tokenizers | 0.19.1 | toml | 0.10.2 |
tomli | 2.0.1 | toolz | 0.12.1 |
torch | 2.0.1 | tornado | 6.4.1 |
tpot | 0.12.2 | tqdm | 4.66.5 |
traitlets | 5.14.3 | transformers | 4.44.2 |
triton | 2.0.0 | twisted | 24.7.0 |
typer | 0.12.5 | types-python-dateutil | 2.9.0.20240906 |
typing-extensions | 4.12.2 | tzdata | 2024.1 |
umap-learn | 0.5.6 | update-checker | 0.18.0 |
uri-template | 1.3.0 | urllib3 | 2.2.3 |
vega | 2.6.0 | visions | 0.7.1 |
w3lib | 2.2.1 | wasabi | 1.1.3 |
watchdog | 4.0.2 | wcwidth | 0.2.13 |
weasel | 0.4.1 | webcolors | 24.8.0 |
webencodings | 0.5.1 | websocket-client | 1.8.0 |
werkzeug | 3.0.4 | wheel | 0.44.0 |
widgetsnbextension | 4.0.13 | wordcloud | 1.9.3 |
wrapt | 1.16.0 | xarray | 2024.9.0 |
xarray-einstats | 0.7.0 | xgboost | 2.1.1 |
xyzservices | 2024.9.0 | yellowbrick | 1.5 |
zipp | 3.20.2 | zope-interface | 7.0.3 |
Where to find the AMI?
Our JupyterHub Server AMI products can be found at AWS Marketplace.
Pricing
$0.10/hour charge for the AMI plus the cost charged for computing resources by AWS.
Set up JupyterHub Server on EC2
Default user: jhub-admin
Please sign up and set your password for jhub-admin when you start the server for the first time. Different from regular users, jhub-admin is automatically authorized to log in after the password is created.
http is supported out of box.
If https is desired, please send your request to support@elmcomputing.io
Startup page
After the EC2 instance is started, you can access the JupyterHub 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:
Sign-up page
When the JupyterHub Server is activated, a default user "jhub-admin" is created. The first time you access the server, a password need to be set for "jhub-admin".
jupyterlab
Authorize page
When creating new users, an authorization step is needed at "http://10.11.12.13/hub/authorize"
Change password
The password can be changed at "http://10.11.12.13/hub/change-password"
Release Notes
Added Python 3.9, 3.10, and 3.11; For each Python version, the data science packages such as tensorflow, torch, datascience, mlpack, mlflow and xgboost are installed.
SageMath: 9.0
GPU Support
NVIDIA Driver | CUDA |
---|---|
520.61.05 | 11.8.0 |
Python version: 3.8.10
Python packages
package | version | package | version |
---|---|---|---|
absl-py | 1.4.0 | access | 1.1.8 |
adal | 1.2.7 | aenum | 3.1.12 |
affine | 2.4.0 | aiobotocore | 2.5.0 |
aioconsole | 0.6.1 | aiofiles | 22.1.0 |
aiohttp | 3.8.1 | aioitertools | 0.11.0 |
aiosignal | 1.3.1 | aiosqlite | 0.17.0 |
alabaster | 0.7.13 | alembic | 1.10.2 |
altair | 4.2.0 | amqp | 5.1.1 |
analytics-python | 1.4.post1 | aniso8601 | 9.0.1 |
ansible | 2.9.6 | ansible-core | 2.13.8 |
antlr4-python3-runtime | 4.12.0 | anyio | 3.6.2 |
apache-airflow | 2.5.3 | apache-airflow-providers-common-sql | 1.3.4 |
apache-airflow-providers-ftp | 3.3.1 | apache-airflow-providers-http | 4.2.0 |
apache-airflow-providers-imap | 3.1.1 | apache-airflow-providers-sqlite | 3.3.1 |
apache-libcloud | 2.8.0 | apispec | 3.3.2 |
appdirs | 1.4.4 | applicationinsights | 0.11.10 |
argcomplete | 3.0.5 | argon2-cffi | 21.3.0 |
argon2-cffi-bindings | 21.2.0 | args | 0.1.0 |
arrow | 1.2.3 | asgiref | 3.6.0 |
asn1crypto | 1.5.1 | astor | 0.8.1 |
astroid | 2.15.2 | asttokens | 2.2.1 |
astunparse | 1.6.3 | async-generator | 1.10 |
async-timeout | 4.0.2 | asynctest | 0.13.0 |
atomicwrites | 1.4.1 | attrs | 22.2.0 |
audioread | 3.0.0 | Authlib | 1.2.0 |
autobahn | 23.1.2 | autograd | 1.5 |
Automat | 22.10.0 | avro | 1.11.1 |
avro-python3 | 1.10.2 | aws-requests-auth | 0.4.3 |
azure-core | 1.26.3 | Babel | 2.12.1 |
backcall | 0.2.0 | backoff | 1.10.0 |
backports.tempfile | 1.0 | backports.weakref | 1.0.post1 |
backports.zoneinfo | 0.2.1 | base64io | 1.0.3 |
bcrypt | 4.0.1 | beautifulsoup4 | 4.12.0 |
billiard | 4.1.0 | black | 23.3.0 |
bleach | 6.0.0 | blinker | 1.4 |
blis | 0.7.9 | bokeh | 2.4.3 |
boltons | 23.0.0 | boto | 2.49.0 |
boto3 | 1.26.76 | botocore | 1.29.76 |
Bottleneck | 1.3.7 | bqplot | 0.12.37 |
branca | 0.6.0 | Brotli | 1.0.9 |
brotlipy | 0.7.0 | bs4 | 0.0.1 |
build | 0.10.0 | bytecode | 0.14.0 |
CacheControl | 0.12.11 | cached-property | 1.5.2 |
cachelib | 0.9.0 | cachetools | 5.3.0 |
cachy | 0.3.0 | catalogue | 2.0.8 |
cattrs | 22.2.0 | certifi | 2022.12.7 |
certipy | 0.1.3 | cffi | 1.15.1 |
cfgv | 3.3.1 | chainer | 7.8.1 |
chardet | 5.1.0 | charset-normalizer | 2.1.1 |
cleo | 2.0.1 | click | 8.1.3 |
click-didyoumean | 0.3.0 | click-plugins | 1.1.1 |
click-repl | 0.2.0 | clickclick | 20.10.2 |
cligj | 0.7.2 | clikit | 0.5.1 |
clint | 0.5.1 | cloud-init | 23.1.1 |
cloudpickle | 2.2.1 | cmake | 3.25.0 |
colorama | 0.4.6 | coloredlogs | 15.0.1 |
colorlog | 4.8.0 | colour | 0.1.5 |
comm | 0.1.3 | commonmark | 0.9.1 |
confection | 0.0.4 | configobj | 5.0.6 |
configparser | 5.3.0 | ConfigUpdater | 3.1.1 |
confluent-kafka | 2.0.2 | connexion | 2.14.2 |
constantly | 15.1.0 | constructs | 10.1.300 |
contextily | 1.3.0 | contextlib2 | 21.6.0 |
contourpy | 1.0.7 | convertdate | 2.4.0 |
countryinfo | 0.1.2 | coverage | 6.5.0 |
coveralls | 3.3.1 | cramjam | 2.6.2 |
crashtest | 0.4.1 | crcmod | 1.7 |
cron-descriptor | 1.2.35 | croniter | 1.3.8 |
cryptography | 40.0.1 | css-html-js-minify | 2.5.5 |
cssselect | 1.2.0 | cssutils | 2.6.0 |
cupy-cuda111 | 12.0.0 | curlify | 2.2.1 |
cx-Oracle | 8.3.0 | cycler | 0.11.0 |
cymem | 2.0.7 | Cython | 0.29.34 |
dash | 2.9.2 | dash-core-components | 2.0.0 |
dash-html-components | 2.0.0 | dash-renderer | 1.9.1 |
dash-table | 5.0.0 | dask | 2023.3.2 |
databricks-cli | 0.17.6 | dataclasses | 0.6 |
dataclasses-json | 0.5.7 | datadog | 0.45.0 |
dataprep | 0.4.4 | datascience | 0.17.6 |
datasets | 2.11.0 | dateparser | 1.1.8 |
DateTime | 5.1 | db-dtypes | 1.1.1 |
dbus-python | 1.2.16 | ddsketch | 2.0.4 |
ddtrace | 1.11.0 | debugpy | 1.6.6 |
decorator | 4.4.2 | deepdiff | 6.3.0 |
defusedxml | 0.7.1 | delta-spark | 2.2.0 |
Deprecated | 1.2.13 | deprecation | 2.1.0 |
descartes | 1.1.0 | dill | 0.3.6 |
dipy | 1.6.0 | distlib | 0.3.6 |
distributed | 2023.3.2 | distro | 1.4.0 |
distro-info | =0.23ubuntu1 | Django | 4.2 |
djangorestframework | 3.14.0 | dmri-amico | 1.5.4 |
dmri-commit | 1.6.4 | dnspython | 1.16.0 |
docker | 6.0.1 | docopt | 0.6.2 |
docutils | 0.19 | dulwich | 0.21.3 |
dynamo-json | 1.2.0 | earthengine-api | 0.1.347 |
EasyProcess | 1.1 | ebaysdk | 2.2.0 |
ec2-hibinit-agent | 1.0.0 | ecdsa | 0.18.0 |
ee-extra | 0.0.15 | eemeter | 3.1.1 |
eerepr | 0.0.4 | eli5 | 0.13.0 |
email-validator | 1.3.1 | emoji | 2.2.0 |
entrypoint2 | 1.1 | entrypoints | 0.3 |
enum34 | 1.1.10 | envier | 0.4.0 |
esda | 2.4.3 | et-xmlfile | 1.1.0 |
etils | 1.1.1 | exceptiongroup | 1.1.1 |
exchange-calendars | 4.2.5 | execnet | 1.9.0 |
executing | 1.2.0 | facebook-business | 16.0.2 |
facebook-sdk | 3.1.0 | facebook-wda | 1.4.6 |
Faker | 18.3.2 | fastapi | 0.95.0 |
fastavro | 1.7.3 | fasteners | 0.18 |
fastjsonschema | 2.16.3 | fastnumbers | 5.0.1 |
fastparquet | 2023.2.0 | fastrlock | 0.8.1 |
fasttext | 0.9.2 | ffmpeg-python | 0.2.0 |
ffmpy | 0.3.0 | filelock | 3.10.7 |
Fiona | 1.8.22 | fire | 0.5.0 |
flake8 | 6.0.0 | Flask | 2.2.3 |
Flask-AppBuilder | 4.1.4 | Flask-Babel | 2.0.0 |
Flask-CacheBuster | 1.0.0 | Flask-Caching | 2.0.2 |
Flask-Compress | 1.13 | Flask-Cors | 3.0.10 |
Flask-JWT-Extended | 4.4.4 | Flask-Limiter | 3.3.0 |
Flask-Login | 0.6.2 | Flask-Session | 0.4.0 |
Flask-SQLAlchemy | 2.5.1 | Flask-WTF | 1.1.1 |
flatbuffers | 23.3.3 | folium | 0.13.0 |
fonttools | 4.39.3 | fqdn | 1.5.1 |
freezegun | 1.2.2 | frozendict | 2.3.6 |
frozenlist | 1.3.3 | fsspec | 2023.3.0 |
funcsigs | 1.0.2 | future | 0.18.3 |
fuzzywuzzy | 0.18.0 | gast | 0.4.0 |
gcsfs | 2023.3.0 | GDAL | 3.0.4 |
gdown | 4.7.1 | gdspy | 1.6.12 |
geeadd | 0.5.6 | geemap | 0.20.4 |
gensim | 4.3.1 | geocoder | 1.38.1 |
geographiclib | 2.0 | geoip2 | 4.6.0 |
geojson | 3.0.1 | geopandas | 0.12.2 |
geopy | 2.3.0 | geotext | 0.4.0 |
gevent | 22.10.2 | giddy | 2.3.4 |
gitapi | 1.0.1 | gitdb | 4.0.10 |
GitPython | 3.1.31 | goflow | 0.1.2 |
google-api-core | 2.11.0 | google-api-python-client | 2.83.0 |
google-auth | 2.17.1 | google-auth-httplib2 | 0.1.0 |
google-auth-oauthlib | 1.0.0 | google-cloud-bigquery | 3.9.0 |
google-cloud-bigquery-storage | 2.19.1 | google-cloud-core | 2.3.2 |
google-cloud-storage | 2.8.0 | google-crc32c | 1.5.0 |
google-pasta | 0.2.0 | google-resumable-media | 2.4.1 |
googleapis-common-protos | 1.59.0 | googlemaps | 4.10.0 |
gradio | 3.24.1 | gradio_client | 0.0.5 |
graphviz | 0.20.1 | great-expectations | 0.16.5 |
greenlet | 2.0.2 | gremlinpython | 3.6.2 |
grpc-google-iam-v1 | 0.12.6 | grpcio | 1.53.0 |
grpcio-status | 1.53.0 | grpcio-tools | 1.53.0 |
gspread | 5.7.2 | gunicorn | 20.1.0 |
h11 | 0.14.0 | h2 | 4.1.0 |
h3 | 3.7.6 | h5netcdf | 1.1.0 |
h5py | 3.8.0 | haversine | 2.8.0 |
hdfs | 2.7.0 | hdfs3 | 0.3.1 |
HeapDict | 1.0.1 | hgapi | 1.7.4 |
hibagent | 1.0.1 | hijri-converter | 2.2.4 |
holidays | 0.22 | hpack | 4.0.0 |
html5lib | 1.1 | htmlmin | 0.1.12 |
httpcore | 0.16.3 | httplib2 | 0.22.0 |
httplib2shim | 0.0.3 | httptools | 0.5.0 |
httpx | 0.23.3 | huggingface-hub | 0.13.3 |
humanfriendly | 10.0 | humanize | 4.6.0 |
hvac | 1.1.0 | hyperframe | 6.0.1 |
hyperlink | 21.0.0 | ibm-cloud-sdk-core | 3.16.5 |
ibm-watson | 7.0.0 | identify | 2.5.22 |
idna | 2.8 | ijson | 3.2.0.post0 |
ImageHash | 4.3.1 | imageio | 2.27.0 |
imageio-ffmpeg | 0.4.8 | imagesize | 1.4.1 |
importlib-metadata | 4.13.0 | importlib-resources | 5.12.0 |
incremental | 22.10.0 | inequality | 1.0.0 |
inflection | 0.5.1 | iniconfig | 2.0.0 |
installer | 0.7.0 | invoke | 2.0.0 |
ipaddress | 1.0.23 | ipyevents | 2.0.1 |
ipyfilechooser | 0.6.0 | ipykernel | 6.22.0 |
ipyleaflet | 0.17.2 | ipysheet | 0.7.0 |
ipython | 8.12.0 | ipython-genutils | 0.2.0 |
ipytree | 0.2.2 | ipywidgets | 7.7.5 |
iso8601 | 1.1.0 | isodate | 0.6.1 |
isoduration | 20.11.0 | isort | 5.12.0 |
itemadapter | 0.8.0 | itemloaders | 1.0.6 |
itsdangerous | 2.1.2 | jarowinkler | 1.2.3 |
jax | 0.4.8 | jdcal | 1.4.1 |
jedi | 0.18.2 | jeepney | 0.8.0 |
Jinja2 | 3.0.3 | jira | 3.5.0 |
jmespath | 1.0.1 | joblib | 1.2.0 |
JPype1 | 1.4.1 | jschema-to-python | 1.2.3 |
jsii | 1.79.0 | json5 | 0.9.11 |
jsondiff | 2.0.0 | jsonlines | 1.2.0 |
jsonpatch | 1.22 | jsonpath-ng | 1.5.3 |
jsonpickle | 3.0.1 | jsonpointer | 2.0 |
jsonschema | 4.17.3 | junit-xml | 1.9 |
jupyter | 1.0.0 | jupyter-console | 6.6.3 |
jupyter-events | 0.6.3 | jupyter-server-proxy | 3.2.2 |
jupyter-telemetry | 0.1.0 | jupyter-ydoc | 0.2.3 |
jupyter_client | 8.1.0 | jupyter_core | 5.3.0 |
jupyter_server | 2.5.0 | jupyter_server_fileid | 0.8.0 |
jupyter_server_terminals | 0.4.4 | jupyter_server_ydoc | 0.8.0 |
jupyterhub | 3.1.1 | jupyterhub-idle-culler | 1.2.1 |
jupyterhub-nativeauthenticator | 1.1.0 | jupyterlab | 3.6.3 |
jupyterlab-pygments | 0.2.2 | jupyterlab-widgets | 1.1.4 |
jupyterlab_server | 2.22.0 | jwcrypto | 1.4.2 |
jwt | 1.3.1 | kafka-python | 2.0.2 |
keplergl | 0.3.2 | keras | 2.12.0 |
Keras-Applications | 1.0.8 | Keras-Preprocessing | 1.1.2 |
keycloakauthenticator | 3.3.0 | keyring | 18.0.1 |
kiwisolver | 1.4.4 | knack | 0.10.1 |
kombu | 5.2.4 | korean-lunar-calendar | 0.3.1 |
langcodes | 3.3.0 | laspy | 2.4.1 |
launchpadlib | 1.10.13 | lazr.restfulclient | 0.14.2 |
lazr.uri | 1.0.3 | lazy-object-proxy | 1.9.0 |
lazy_loader | 0.2 | leafmap | 0.18.8 |
Levenshtein | 0.20.9 | libclang | 16.0.0 |
libcst | 0.4.9 | libpysal | 4.7.0 |
librosa | 0.10.0.post2 | lightgbm | 3.3.5 |
limits | 3.3.1 | linkify-it-py | 2.0.0 |
lit | 15.0.7 | llvmlite | 0.39.1 |
locket | 1.0.0 | lockfile | 0.12.2 |
logzero | 1.7.0 | lorem | 0.1.1 |
lxml | 4.9.2 | M2Crypto | 0.38.0 |
makefun | 1.15.1 | Mako | 1.2.4 |
mamba | 0.11.2 | mapclassify | 2.5.0 |
Markdown | 3.4.3 | markdown-it-py | 2.2.0 |
markdown2 | 2.4.8 | MarkupSafe | 2.1.2 |
marshmallow | 3.19.0 | marshmallow-enum | 1.5.1 |
marshmallow-oneofschema | 3.0.1 | marshmallow-sqlalchemy | 0.26.1 |
matplotlib | 3.6.3 | matplotlib-inline | 0.1.6 |
maxminddb | 2.2.0 | mccabe | 0.7.0 |
mdit-py-plugins | 0.3.3 | mdurl | 0.1.2 |
mechanize | 0.4.8 | meep | 1.0.6 |
mercantile | 1.2.1 | Metaphone | 0.6 |
mgwr | 2.1.2 | missingno | 0.5.2 |
mistune | 2.0.5 | ml-dtypes | 0.0.4 |
mlflow | 2.2.2 | mlpack | 4.0.1 |
mock | 5.0.1 | momepy | 0.5.4 |
monotonic | 1.6 | more-itertools | 4.2.0 |
moto | 4.1.6 | moviepy | 1.0.3 |
mpi4py | 3.1.4 | mpmath | 1.3.0 |
msal | 1.21.0 | msal-extensions | 1.0.0 |
msgpack | 1.0.5 | msrest | 0.7.1 |
msrestazure | 0.6.4 | mss | 7.0.1 |
multidict | 6.0.4 | multimethod | 1.9.1 |
multiprocess | 0.70.14 | multitasking | 0.0.11 |
munch | 2.5.0 | murmurhash | 1.0.9 |
mutagen | 1.46.0 | mypy | 1.1.1 |
mypy-extensions | 1.0.0 | mysql-connector-python | 8.0.29 |
mysqlclient | 2.1.1 | nbclassic | 0.5.4 |
nbclient | 0.7.3 | nbconvert | 7.3.0 |
nbformat | 5.8.0 | nbgitpuller | 1.1.1 |
nbsphinx | 0.9.1 | ndg-httpsclient | 0.5.1 |
nest-asyncio | 1.5.6 | netaddr | 0.7.19 |
netifaces | 0.10.4 | networkx | 3.0 |
nibabel | 5.1.0 | nlopt | 2.7.1 |
nltk | 3.8.1 | nodeenv | 1.7.0 |
nose | 1.3.7 | notebook | 6.5.3 |
notebook_shim | 0.2.2 | ntlm-auth | 1.1.0 |
numba | 0.56.4 | numpy | 1.23.5 |
nvidia-cublas-cu11 | 11.11.3.6 | nvidia-cuda-runtime-cu11 | 11.8.89 |
nvidia-cudnn-cu11 | 8.6.0.163 | nvidia-tensorrt | 8.4.1.5 |
nycflights13 | 0.0.3 | oauth2client | 4.1.3 |
oauthenticator | 15.0.0 | oauthlib | 3.1.0 |
ogr | 0.40.0 | olefile | 0.46 |
onetimepass | 1.0.1 | onnxruntime | 1.14.1 |
opencensus | 0.11.2 | opencensus-context | 0.1.3 |
opencv-contrib-python | 4.7.0.72 | opencv-python | 4.7.0.72 |
openflow | 0.1.2.4 | openpyxl | 3.1.2 |
opensearch-py | 2.2.0 | opentelemetry-api | 1.16.0 |
opt-einsum | 3.3.0 | ordered-set | 4.1.0 |
orjson | 3.8.9 | oscrypto | 1.3.0 |
osmnx | 1.2.2 | outcome | 1.2.0 |
overrides | 7.3.1 | packaging | 23.0 |
pamela | 1.0.0 | pandas | 1.5.3 |
pandas-gbq | 0.19.1 | pandas-market-calendars | 4.1.4 |
pandas-profiling | 3.6.6 | pandas-usaddress | 0.21 |
pandasql | 0.7.3 | pandocfilters | 1.5.0 |
paramiko | 3.1.0 | parsedatetime | 2.6 |
parsel | 1.7.0 | parso | 0.8.3 |
partd | 1.3.0 | pastel | 0.2.1 |
pathlib2 | 2.3.7.post1 | pathos | 0.3.0 |
pathspec | 0.9.0 | pathy | 0.10.1 |
patsy | 0.5.3 | pbr | 5.11.1 |
pdfkit | 1.0.0 | pendulum | 2.1.2 |
pep517 | 0.13.0 | pexpect | 4.6.0 |
pg8000 | 1.29.4 | phik | 0.12.3 |
phonenumbers | 8.13.8 | pickleshare | 0.7.5 |
pika | 1.3.1 | Pillow | 9.5.0 |
pip-tools | 6.12.3 | pipenv | 2023.3.20 |
pkginfo | 1.9.6 | pkgutil_resolve_name | 1.3.10 |
platformdirs | 3.2.0 | plotly | 5.14.0 |
pluggy | 1.0.0 | ply | 3.11 |
Pmw | 2.1.1 | poetry-core | 1.5.2 |
pointpats | 2.3.0 | pooch | 1.6.0 |
portalocker | 2.7.0 | postal-address | 22.4.22.1 |
pox | 0.3.2 | ppft | 1.7.6.6 |
pprintpp | 0.4.0 | pre-commit | 3.2.2 |
premailer | 3.10.0 | preshed | 3.0.8 |
prettytable | 3.6.0 | priority | 2.0.0 |
prison | 0.2.1 | probableparsing | 0.0.1 |
proglog | 0.1.10 | progressbar2 | 4.2.0 |
prometheus-client | 0.16.0 | prometheus-flask-exporter | 0.22.3 |
promise | 2.3 | prompt-toolkit | 3.0.38 |
Protego | 0.2.1 | proto-plus | 1.22.2 |
protobuf | 4.22.1 | protobuf3-to-dict | 0.1.5 |
psutil | 5.9.4 | psycopg2 | 2.9.6 |
psycopg2-binary | 2.9.6 | ptyprocess | 0.7.0 |
publication | 0.0.3 | PuLP | 2.7.0 |
pure-eval | 0.2.2 | py | 1.11.0 |
py4j | 0.10.9.5 | pyarrow | 11.0.0 |
pyasn1 | 0.4.8 | pyasn1-modules | 0.2.8 |
pyathena | 2.23.0 | pybind11 | 2.10.4 |
pycairo | 1.23.0 | pycodestyle | 2.10.0 |
pycosat | 0.6.3 | pycountry | 22.3.5 |
pycountry-convert | 0.7.2 | pycparser | 2.21 |
pycron | 3.0.0 | PyCRS | 1.0.2 |
pycrypto | 2.6.1 | pycryptodome | 3.17 |
pycryptodomex | 3.17 | pycurl | 7.45.2 |
pydantic | 1.10.7 | pydata-google-auth | 1.7.0 |
pydeequ | 1.0.1 | PyDispatcher | 2.0.7 |
pydot | 1.4.2 | pydotplus | 2.0.2 |
pydub | 0.25.1 | pyexpect | 1.0.22 |
pyflakes | 3.0.1 | pygame | 2.3.0 |
pygeos | 0.14 | PyGithub | 1.58.1 |
pyglet | 2.0.5 | Pygments | 2.14.0 |
PyGObject | 3.36.0 | PyGreSQL | 5.2.4 |
pyhcl | 0.4.4 | PyJWT | 2.6.0 |
pykerberos | 1.1.14 | pylev | 1.4.0 |
pylint | 2.17.2 | pyluach | 2.2.0 |
PyMeeus | 0.5.12 | pymongo | 4.3.3 |
pymssql | 2.2.7 | PyMySQL | 1.0.3 |
PyNaCl | 1.5.0 | pyodbc | 4.0.35 |
pyOpenSSL | 23.1.1 | pypandoc | 1.11 |
pyparsing | 3.0.9 | PyPDF4 | 1.27.0 |
pyperclip | 1.8.2 | pypika-tortoise | 0.1.6 |
pypopulation | 2020.3 | pyproj | 3.5.0 |
pyproject_api | 1.5.1 | pyproject_hooks | 1.0.0 |
pyquery | 2.0.0 | pyrsistent | 0.15.5 |
pysal | 23.1 | pyscreenshot | 3.1 |
pyserial | 3.4 | pysftp | 0.2.9 |
pyshp | 2.3.1 | pysndfile | 1.4.4 |
PySocks | 1.7.1 | pyspark | 3.3.2 |
pystac | 1.7.1 | pystac-client | 0.6.1 |
pytest | 7.2.2 | pytest-cov | 4.0.0 |
pytest-forked | 1.6.0 | pytest-mock | 3.10.0 |
pytest-runner | 6.0.0 | pytest-xdist | 3.2.1 |
python-apt | 2.0.1+ubuntu0.20.4.1 | python-box | 7.0.1 |
python-crfsuite | 0.9.8 | python-daemon | 3.0.1 |
python-dateutil | 2.8.2 | python-debian | =0.1.36ubuntu1 |
python-distutils-extra | 2.39 | python-docx | 0.8.11 |
python-dotenv | 1.0.0 | python-editor | 1.0.4 |
python-gitlab | 3.13.0 | python-gnupg | 0.5.0 |
python-http-client | 3.3.7 | python-jose | 3.3.0 |
python-json-logger | 2.0.7 | python-jwt | 4.0.0 |
python-keycloak | 2.14.0 | python-Levenshtein | 0.20.9 |
python-magic | 0.4.27 | python-multipart | 0.0.6 |
python-nvd3 | 0.15.0 | python-slugify | 8.0.1 |
python-stdnum | 1.18 | python-twitter | 3.5 |
python-utils | 3.5.2 | pytimeparse | 1.1.8 |
pytz | 2022.7.1 | pytz-deprecation-shim | 0.1.0.post0 |
pytzdata | 2020.1 | PyWavelets | 1.4.1 |
pywinrm | 0.3.0 | PyX | 0.16 |
PyYAML | 5.3.1 | pyzmq | 25.0.2 |
qtconsole | 5.4.2 | QtPy | 2.3.1 |
quantecon | 0.6.0 | querystring-parser | 1.2.4 |
queuelib | 1.6.2 | quilt3 | 5.2.0 |
rapidfuzz | 2.15.0 | rasterio | 1.3.6 |
rasterstats | 0.18.0 | ratelim | 0.1.6 |
ratelimit | 2.2.1 | readme-renderer | 37.3 |
redis | 4.5.4 | redshift-connector | 2.0.910 |
regex | 2021.11.10 | reportlab | 3.6.12 |
reportlib | 3.4.0 | repoze.lru | 0.7 |
requests | 2.28.2 | requests-aws4auth | 1.2.2 |
requests-file | 1.5.1 | requests-futures | 1.0.0 |
requests-kerberos | 0.12.0 | requests-ntlm | 1.1.0 |
requests-oauthlib | 1.3.1 | requests-toolbelt | 0.10.1 |
requests-unixsocket | 0.2.0 | resampy | 0.4.2 |
resolvelib | 0.8.1 | responses | 0.18.0 |
retry | 0.9.2 | retrying | 1.3.4 |
reverse-geocoder | 1.5.1 | rfc3339-validator | 0.1.4 |
rfc3986 | 1.5.0 | rfc3986-validator | 0.1.1 |
rich | 13.3.3 | roman | 4.0 |
rsa | 4.9 | Rtree | 1.0.1 |
ruamel.yaml | 0.17.17 | ruamel.yaml.clib | 0.2.7 |
rvlib | 0.0.6 | s3fs | 0.6.0 |
s3transfer | 0.6.0 | sacremoses | 0.0.53 |
sankee | 0.2.3 | sarif-om | 1.0.4 |
sasl | 0.3.1 | scandir | 1.10.0 |
schema | 0.7.5 | scikit-image | 0.20.0 |
scikit-learn | 1.2.2 | scipy | 1.9.1 |
scooby | 0.7.1 | scp | 0.14.5 |
scramp | 1.4.4 | scrape | 0.11.3 |
Scrapy | 2.8.0 | seaborn | 0.12.2 |
SecretStorage | 2.3.1 | segregation | 2.3.1 |
selenium | 4.8.3 | selinux | 3.0 |
semantic-version | 2.10.0 | semver | 3.0.0 |
Send2Trash | 1.8.0 | sendgrid | 6.10.0 |
sentencepiece | 0.1.97 | sentry-sdk | 1.18.0 |
service-identity | 21.1.0 | setproctitle | 1.3.2 |
setuptools-scm | 7.1.0 | sh | 2.0.3 |
shap | 0.41.0 | Shapely | 1.8.5.post1 |
shellingham | 1.5.0.post1 | shortuuid | 1.0.11 |
simpervisor | 0.4 | simple-salesforce | 1.12.3 |
simplejson | 3.16.0 | singledispatch | 4.0.0 |
six | 1.14.0 | sklearn-pandas | 2.2.0 |
slack-sdk | 3.20.2 | slackclient | 2.9.4 |
slicer | 0.0.7 | smart-open | 6.3.0 |
smdebug-rulesconfig | 1.0.1 | smmap | 5.0.0 |
sniffio | 1.3.0 | snowballstemmer | 2.2.0 |
snowflake-connector-python | 3.0.2 | snowflake-sqlalchemy | 1.4.7 |
snuggs | 1.4.7 | sortedcontainers | 2.4.0 |
sos | 4.4 | soundfile | 0.12.1 |
soupsieve | 2.4 | soxr | 0.3.4 |
spacy | 3.5.1 | spacy-legacy | 3.0.12 |
spacy-loggers | 1.0.4 | spaghetti | 1.7.2 |
spams | 2.6.5.4 | spglm | 1.0.8 |
Sphinx | 6.1.3 | sphinxcontrib-applehelp | 1.0.4 |
sphinxcontrib-devhelp | 1.0.2 | sphinxcontrib-htmlhelp | 2.0.1 |
sphinxcontrib-jsmath | 1.0.1 | sphinxcontrib-qthelp | 1.0.3 |
sphinxcontrib-serializinghtml | 1.1.5 | spint | 1.0.7 |
splot | 1.1.5.post1 | spopt | 0.5.0 |
spreg | 1.3.1 | spvcm | 0.3.0 |
SQLAlchemy | 1.4.41 | SQLAlchemy-JSONField | 1.0.1.post0 |
SQLAlchemy-Utils | 0.40.0 | sqlalchemy2-stubs | 0.0.2a32 |
sqlmodel | 0.0.8 | sqlparse | 0.4.3 |
srsly | 2.4.6 | ssh-import-id | 5.10 |
sshtunnel | 0.4.0 | stack-data | 0.6.2 |
starkbank-ecdsa | 2.2.0 | starlette | 0.26.1 |
statsd | 4.0.1 | statsmodels | 0.13.5 |
stevedore | 5.0.0 | stringcase | 1.2.0 |
structlog | 22.3.0 | swagger-ui-bundle | 0.0.9 |
sympy | 1.11.1 | systemd-python | 234 |
tabulate | 0.9.0 | tangled-up-in-unicode | 0.2.0 |
tblib | 1.7.0 | tenacity | 8.2.2 |
tensorboard | 2.12.1 | tensorboard-data-server | 0.7.0 |
tensorboard-plugin-wit | 1.8.1 | tensorboardX | 2.5 |
tensorflow | 2.12.0 | tensorflow-estimator | 2.12.0 |
tensorflow-io-gcs-filesystem | 0.32.0 | termcolor | 2.2.0 |
terminado | 0.17.1 | testpath | 0.6.0 |
testresources | 2.0.1 | text-unidecode | 1.3 |
tf-estimator-nightly | 2.13.0.dev2023040308 | Theano | 1.0.5 |
thinc | 8.1.9 | threadpoolctl | 3.1.0 |
thrift | 0.16.0 | tifffile | 2023.3.21 |
timer | 0.2.2 | timezonefinder | 6.2.0 |
tinycss2 | 1.2.1 | tldextract | 3.4.0 |
tobler | 0.9.0 | tokenizers | 0.13.2 |
toml | 0.10.2 | tomli | 2.0.1 |
tomlkit | 0.11.7 | toolz | 0.12.0 |
torch | 2.0.0+cu118 | torchaudio | 2.0.1+cu118 |
torchvision | 0.15.1+cu118 | tornado | 6.2 |
tortoise-orm | 0.19.3 | tox | 4.4.8 |
tqdm | 4.64.1 | traitlets | 5.9.0 |
traittypes | 0.2.1 | transformers | 4.27.4 |
trio | 0.22.0 | trio-websocket | 0.10.2 |
triton | 2.0.0 | trove-classifiers | 2023.3.9 |
Twisted | 22.10.0 | txaio | 23.1.1 |
typed-ast | 1.5.4 | typeguard | 2.13.3 |
typer | 0.7.0 | types-PyYAML | 6.0.12.9 |
types-requests | 2.28.11.17 | types-urllib3 | 1.26.25.10 |
typing | 3.7.4.3 | typing-inspect | 0.8.0 |
typing_extensions | 4.5.0 | tzdata | 2023.3 |
tzlocal | 4.3 | ua-parser | 0.16.1 |
uamqp | 1.6.4 | ubuntu-advantage-tools | 8001 |
uc-micro-py | 1.0.1 | ujson | 5.7.0 |
unattended-upgrades | 0.1 | unicodecsv | 0.14.1 |
Unidecode | 1.3.6 | uri-template | 1.2.0 |
uritemplate | 4.1.1 | urllib3 | 1.26.15 |
usaddress | 0.5.10 | uvicorn | 0.21.1 |
uvloop | 0.17.0 | varname | 0.8.2 |
vega-datasets | 0.9.0 | vine | 5.0.0 |
virtualenv | 20.21.0 | virtualenv-clone | 0.5.7 |
visions | 0.7.5 | vpython | 7.6.4 |
w3lib | 2.1.1 | wadllib | 1.3.3 |
wasabi | 1.1.1 | watchdog | 3.0.0 |
watchtower | 3.0.1 | watergrid | 1.1.1 |
wcwidth | 0.2.6 | webcolors | 1.13 |
webencodings | 0.5.1 | websocket-client | 1.1.0 |
websockets | 11.0 | Werkzeug | 2.2.3 |
whitebox | 2.3.1 | whiteboxgui | 2.3.0 |
widgetsnbextension | 3.6.4 | woops | 0.2.1 |
wordcloud | 1.8.2.2 | workdays | 1.4 |
wrapt | 1.14.1 | wsproto | 1.2.0 |
WTForms | 3.0.1 | xarray | 2023.1.0 |
xlrd | 2.0.1 | XlsxWriter | 3.0.9 |
xlwt | 1.3.0 | xmltodict | 0.12.0 |
xxhash | 3.2.0 | xyzservices | 2023.2.0 |
y-py | 0.5.9 | yahoo-finance | 1.4.0 |
yarl | 1.8.2 | ydata-profiling | 4.1.2 |
yfinance | 0.2.14 | youtube-dl | 2021.12.17 |
youtube-search | 2.1.2 | youtube-search-python | 1.6.6 |
ypy-websocket | 0.8.2 | zeep | 4.2.1 |
zict | 2.2.0 | zipp | 3.15.0 |
zope.event | 4.6 | zope.interface | 6.0 |
Python version: 3.9
Python packages
package | version | package | version |
---|---|---|---|
absl-py | 2.0.0 | alembic | 1.12.0 |
asttokens | 2.4.0 | astunparse | 1.6.3 |
backcall | 0.2.0 | blinker | 1.6.2 |
boto3 | 1.28.54 | botocore | 1.31.54 |
branca | 0.6.0 | cachetools | 5.3.1 |
certifi | 2023.7.22 | charset-normalizer | 3.2.0 |
click | 8.1.7 | cloudpickle | 2.2.1 |
cmake | 3.27.5 | comm | 0.1.4 |
contourpy | 1.1.1 | cycler | 0.11.0 |
Cython | 3.0.2 | databricks-cli | 0.17.8 |
datascience | 0.17.6 | debugpy | 1.8.0 |
decorator | 5.1.1 | dnspython | 2.4.2 |
docker | 6.1.3 | entrypoints | 0.4 |
exceptiongroup | 1.1.3 | executing | 1.2.0 |
filelock | 3.12.4 | Flask | 2.3.3 |
flatbuffers | 23.5.26 | folium | 0.14.0 |
fonttools | 4.42.1 | gast | 0.4.0 |
gitdb | 4.0.10 | GitPython | 3.1.37 |
google-auth | 2.23.0 | google-auth-oauthlib | 1.0.0 |
google-pasta | 0.2.0 | greenlet | 2.0.2 |
grpcio | 1.58.0 | gunicorn | 21.2.0 |
h5py | 3.9.0 | idna | 3.4 |
importlib-metadata | 6.8.0 | importlib-resources | 6.1.0 |
ipykernel | 6.25.2 | ipython | 8.15.0 |
itsdangerous | 2.1.2 | jedi | 0.19.0 |
Jinja2 | 3.1.2 | jmespath | 1.0.1 |
joblib | 1.3.2 | jsons | 1.6.3 |
jupyter_client | 8.3.1 | jupyter_core | 5.3.1 |
keras | 2.13.1 | kiwisolver | 1.4.5 |
libclang | 16.0.6 | lit | 17.0.1 |
Mako | 1.2.4 | Markdown | 3.4.4 |
MarkupSafe | 2.1.3 | matplotlib | 3.8.0 |
matplotlib-inline | 0.1.6 | mlflow | 2.7.1 |
mlpack | 4.2.1 | mpmath | 1.3.0 |
nest-asyncio | 1.5.8 | networkx | 3.1 |
numpy | 1.24.3 | nvidia-cublas-cu11 | 11.10.3.66 |
nvidia-cuda-cupti-cu11 | 11.7.101 | nvidia-cuda-nvrtc-cu11 | 11.7.99 |
nvidia-cuda-runtime-cu11 | 11.7.99 | nvidia-cudnn-cu11 | 8.5.0.96 |
nvidia-cufft-cu11 | 10.9.0.58 | nvidia-curand-cu11 | 10.2.10.91 |
nvidia-cusolver-cu11 | 11.4.0.1 | nvidia-cusparse-cu11 | 11.7.4.91 |
nvidia-nccl-cu11 | 2.14.3 | nvidia-nvtx-cu11 | 11.7.91 |
oauthlib | 3.2.2 | opt-einsum | 3.3.0 |
packaging | 23.1 | pandas | 2.1.1 |
parso | 0.8.3 | pexpect | 4.8.0 |
pickleshare | 0.7.5 | Pillow | 10.0.1 |
platformdirs | 3.10.0 | plotly | 5.17.0 |
prompt-toolkit | 3.0.39 | protobuf | 4.24.3 |
psutil | 5.9.5 | ptyprocess | 0.7.0 |
pure-eval | 0.2.2 | pyarrow | 13.0.0 |
pyasn1 | 0.5.0 | pyasn1-modules | 0.3.0 |
Pygments | 2.16.1 | PyJWT | 2.8.0 |
pymongo | 4.5.0 | pyparsing | 3.1.1 |
python-dateutil | 2.8.2 | pytz | 2023.3.post1 |
PyYAML | 6.0.1 | pyzmq | 25.1.1 |
querystring-parser | 1.2.4 | requests | 2.31.0 |
requests-oauthlib | 1.3.1 | rsa | 4.9 |
s3transfer | 0.6.2 | scikit-learn | 1.3.1 |
scipy | 1.11.2 | six | 1.16.0 |
smmap | 5.0.1 | SQLAlchemy | 2.0.21 |
sqlparse | 0.4.4 | stack-data | 0.6.2 |
sympy | 1.12 | tabulate | 0.9.0 |
tenacity | 8.2.3 | tensorboard | 2.13.0 |
tensorboard-data-server | 0.7.1 | tensorflow | 2.13.0 |
tensorflow-estimator | 2.13.0 | tensorflow-io-gcs-filesystem | 0.34.0 |
termcolor | 2.3.0 | threadpoolctl | 3.2.0 |
toml | 0.10.2 | torch | 2.0.1 |
tornado | 6.3.3 | traitlets | 5.10.0 |
triton | 2.0.0 | typing_extensions | 4.5.0 |
typish | 1.9.3 | tzdata | 2023.3 |
urllib3 | 1.26.16 | wcwidth | 0.2.6 |
websocket-client | 1.6.3 | Werkzeug | 2.3.7 |
wrapt | 1.15.0 | xgboost | 2.0.0 |
zipp | 3.17.0 |
Python version: 3.10
Python packages
package | version | package | version |
---|---|---|---|
absl-py | 2.0.0 | alembic | 1.12.0 |
asttokens | 2.4.0 | astunparse | 1.6.3 |
backcall | 0.2.0 | blinker | 1.6.2 |
boto3 | 1.28.54 | botocore | 1.31.54 |
branca | 0.6.0 | cachetools | 5.3.1 |
certifi | 2023.7.22 | charset-normalizer | 3.2.0 |
click | 8.1.7 | cloudpickle | 2.2.1 |
cmake | 3.27.5 | comm | 0.1.4 |
contourpy | 1.1.1 | cycler | 0.11.0 |
Cython | 3.0.2 | databricks-cli | 0.17.8 |
datascience | 0.17.6 | debugpy | 1.8.0 |
decorator | 5.1.1 | dnspython | 2.4.2 |
docker | 6.1.3 | entrypoints | 0.4 |
exceptiongroup | 1.1.3 | executing | 1.2.0 |
filelock | 3.12.4 | Flask | 2.3.3 |
flatbuffers | 23.5.26 | folium | 0.14.0 |
fonttools | 4.42.1 | gast | 0.4.0 |
gitdb | 4.0.10 | GitPython | 3.1.37 |
google-auth | 2.23.0 | google-auth-oauthlib | 1.0.0 |
google-pasta | 0.2.0 | greenlet | 2.0.2 |
grpcio | 1.58.0 | gunicorn | 21.2.0 |
h5py | 3.9.0 | idna | 3.4 |
importlib-metadata | 6.8.0 | ipykernel | 6.25.2 |
ipython | 8.15.0 | itsdangerous | 2.1.2 |
jedi | 0.19.0 | Jinja2 | 3.1.2 |
jmespath | 1.0.1 | joblib | 1.3.2 |
jsons | 1.6.3 | jupyter_client | 8.3.1 |
jupyter_core | 5.3.1 | keras | 2.13.1 |
kiwisolver | 1.4.5 | libclang | 16.0.6 |
lit | 17.0.1 | Mako | 1.2.4 |
Markdown | 3.4.4 | MarkupSafe | 2.1.3 |
matplotlib | 3.8.0 | matplotlib-inline | 0.1.6 |
mlflow | 2.7.1 | mlpack | 4.2.0 |
mpmath | 1.3.0 | nest-asyncio | 1.5.8 |
networkx | 3.1 | numpy | 1.24.3 |
nvidia-cublas-cu11 | 11.10.3.66 | nvidia-cuda-cupti-cu11 | 11.7.101 |
nvidia-cuda-nvrtc-cu11 | 11.7.99 | nvidia-cuda-runtime-cu11 | 11.7.99 |
nvidia-cudnn-cu11 | 8.5.0.96 | nvidia-cufft-cu11 | 10.9.0.58 |
nvidia-curand-cu11 | 10.2.10.91 | nvidia-cusolver-cu11 | 11.4.0.1 |
nvidia-cusparse-cu11 | 11.7.4.91 | nvidia-nccl-cu11 | 2.14.3 |
nvidia-nvtx-cu11 | 11.7.91 | oauthlib | 3.2.2 |
opt-einsum | 3.3.0 | packaging | 23.1 |
pandas | 2.1.1 | parso | 0.8.3 |
pexpect | 4.8.0 | pickleshare | 0.7.5 |
Pillow | 10.0.1 | platformdirs | 3.10.0 |
plotly | 5.17.0 | prompt-toolkit | 3.0.39 |
protobuf | 4.24.3 | psutil | 5.9.5 |
ptyprocess | 0.7.0 | pure-eval | 0.2.2 |
pyarrow | 13.0.0 | pyasn1 | 0.5.0 |
pyasn1-modules | 0.3.0 | Pygments | 2.16.1 |
PyJWT | 2.8.0 | pymongo | 4.5.0 |
pyparsing | 3.1.1 | python-dateutil | 2.8.2 |
pytz | 2023.3.post1 | PyYAML | 6.0.1 |
pyzmq | 25.1.1 | querystring-parser | 1.2.4 |
requests | 2.31.0 | requests-oauthlib | 1.3.1 |
rsa | 4.9 | s3transfer | 0.6.2 |
scikit-learn | 1.3.1 | scipy | 1.11.2 |
six | 1.16.0 | smmap | 5.0.1 |
SQLAlchemy | 2.0.21 | sqlparse | 0.4.4 |
stack-data | 0.6.2 | sympy | 1.12 |
tabulate | 0.9.0 | tenacity | 8.2.3 |
tensorboard | 2.13.0 | tensorboard-data-server | 0.7.1 |
tensorflow | 2.13.0 | tensorflow-estimator | 2.13.0 |
tensorflow-io-gcs-filesystem | 0.34.0 | termcolor | 2.3.0 |
threadpoolctl | 3.2.0 | toml | 0.10.2 |
torch | 2.0.1 | tornado | 6.3.3 |
traitlets | 5.10.0 | triton | 2.0.0 |
typing_extensions | 4.5.0 | typish | 1.9.3 |
tzdata | 2023.3 | urllib3 | 1.26.16 |
wcwidth | 0.2.6 | websocket-client | 1.6.3 |
Werkzeug | 2.3.7 | wrapt | 1.15.0 |
xgboost | 2.0.0 | zipp | 3.17.0 |
Python version: 3.11
Python packages
package | version | package | version |
---|---|---|---|
absl-py | 2.0.0 | alembic | 1.12.0 |
asttokens | 2.4.0 | astunparse | 1.6.3 |
backcall | 0.2.0 | blinker | 1.6.2 |
boto3 | 1.28.54 | botocore | 1.31.54 |
branca | 0.6.0 | cachetools | 5.3.1 |
certifi | 2023.7.22 | charset-normalizer | 3.2.0 |
click | 8.1.7 | cloudpickle | 2.2.1 |
cmake | 3.27.5 | comm | 0.1.4 |
contourpy | 1.1.1 | cycler | 0.11.0 |
Cython | 3.0.2 | databricks-cli | 0.17.8 |
datascience | 0.17.6 | debugpy | 1.8.0 |
decorator | 5.1.1 | dnspython | 2.4.2 |
docker | 6.1.3 | entrypoints | 0.4 |
executing | 1.2.0 | filelock | 3.12.4 |
Flask | 2.3.3 | flatbuffers | 23.5.26 |
folium | 0.14.0 | fonttools | 4.42.1 |
gast | 0.4.0 | gitdb | 4.0.10 |
GitPython | 3.1.37 | google-auth | 2.23.0 |
google-auth-oauthlib | 1.0.0 | google-pasta | 0.2.0 |
greenlet | 2.0.2 | grpcio | 1.58.0 |
gunicorn | 21.2.0 | h5py | 3.9.0 |
idna | 3.4 | importlib-metadata | 6.8.0 |
ipykernel | 6.25.2 | ipython | 8.15.0 |
itsdangerous | 2.1.2 | jedi | 0.19.0 |
Jinja2 | 3.1.2 | jmespath | 1.0.1 |
joblib | 1.3.2 | jsons | 1.6.3 |
jupyter_client | 8.3.1 | jupyter_core | 5.3.1 |
keras | 2.13.1 | kiwisolver | 1.4.5 |
libclang | 16.0.6 | lit | 17.0.1 |
Mako | 1.2.4 | Markdown | 3.4.4 |
MarkupSafe | 2.1.3 | matplotlib | 3.8.0 |
matplotlib-inline | 0.1.6 | mlflow | 2.7.1 |
mlpack | 4.2.0 | mpmath | 1.3.0 |
nest-asyncio | 1.5.8 | networkx | 3.1 |
numpy | 1.24.3 | nvidia-cublas-cu11 | 11.10.3.66 |
nvidia-cuda-cupti-cu11 | 11.7.101 | nvidia-cuda-nvrtc-cu11 | 11.7.99 |
nvidia-cuda-runtime-cu11 | 11.7.99 | nvidia-cudnn-cu11 | 8.5.0.96 |
nvidia-cufft-cu11 | 10.9.0.58 | nvidia-curand-cu11 | 10.2.10.91 |
nvidia-cusolver-cu11 | 11.4.0.1 | nvidia-cusparse-cu11 | 11.7.4.91 |
nvidia-nccl-cu11 | 2.14.3 | nvidia-nvtx-cu11 | 11.7.91 |
oauthlib | 3.2.2 | opt-einsum | 3.3.0 |
packaging | 23.1 | pandas | 2.1.1 |
parso | 0.8.3 | pexpect | 4.8.0 |
pickleshare | 0.7.5 | Pillow | 10.0.1 |
platformdirs | 3.10.0 | plotly | 5.17.0 |
prompt-toolkit | 3.0.39 | protobuf | 4.24.3 |
psutil | 5.9.5 | ptyprocess | 0.7.0 |
pure-eval | 0.2.2 | pyarrow | 13.0.0 |
pyasn1 | 0.5.0 | pyasn1-modules | 0.3.0 |
Pygments | 2.16.1 | PyJWT | 2.8.0 |
pymongo | 4.5.0 | pyparsing | 3.1.1 |
python-dateutil | 2.8.2 | pytz | 2023.3.post1 |
PyYAML | 6.0.1 | pyzmq | 25.1.1 |
querystring-parser | 1.2.4 | requests | 2.31.0 |
requests-oauthlib | 1.3.1 | rsa | 4.9 |
s3transfer | 0.6.2 | scikit-learn | 1.3.1 |
scipy | 1.11.2 | six | 1.16.0 |
smmap | 5.0.1 | SQLAlchemy | 2.0.21 |
sqlparse | 0.4.4 | stack-data | 0.6.2 |
sympy | 1.12 | tabulate | 0.9.0 |
tenacity | 8.2.3 | tensorboard | 2.13.0 |
tensorboard-data-server | 0.7.1 | tensorflow | 2.13.0 |
tensorflow-estimator | 2.13.0 | tensorflow-io-gcs-filesystem | 0.34.0 |
termcolor | 2.3.0 | threadpoolctl | 3.2.0 |
toml | 0.10.2 | torch | 2.0.1 |
tornado | 6.3.3 | traitlets | 5.10.0 |
triton | 2.0.0 | typing_extensions | 4.5.0 |
typish | 1.9.3 | tzdata | 2023.3 |
urllib3 | 1.26.16 | wcwidth | 0.2.6 |
websocket-client | 1.6.3 | Werkzeug | 2.3.7 |
wrapt | 1.15.0 | xgboost | 2.0.0 |
zipp | 3.17.0 |
SageMath: 9.0
Data science packages
tensorflow | torch |
---|---|
2.12.0 | 2.0.0+cu118 |
GPU Support
NVIDIA Driver | CUDA |
---|---|
520.61.05 | 11.8.0 |
Python version: 3.8.10
Python packages
package | version | package | version |
---|---|---|---|
absl-py | 1.4.0 | access | 1.1.8 |
adal | 1.2.7 | aenum | 3.1.12 |
affine | 2.4.0 | aiobotocore | 2.5.0 |
aioconsole | 0.6.1 | aiofiles | 22.1.0 |
aiohttp | 3.8.1 | aioitertools | 0.11.0 |
aiosignal | 1.3.1 | aiosqlite | 0.17.0 |
alabaster | 0.7.13 | alembic | 1.10.2 |
altair | 4.2.0 | amqp | 5.1.1 |
analytics-python | 1.4.post1 | aniso8601 | 9.0.1 |
ansible | 2.9.6 | ansible-core | 2.13.8 |
antlr4-python3-runtime | 4.12.0 | anyio | 3.6.2 |
apache-airflow | 2.5.3 | apache-airflow-providers-common-sql | 1.3.4 |
apache-airflow-providers-ftp | 3.3.1 | apache-airflow-providers-http | 4.2.0 |
apache-airflow-providers-imap | 3.1.1 | apache-airflow-providers-sqlite | 3.3.1 |
apache-libcloud | 2.8.0 | apispec | 3.3.2 |
appdirs | 1.4.4 | applicationinsights | 0.11.10 |
argcomplete | 3.0.5 | argon2-cffi | 21.3.0 |
argon2-cffi-bindings | 21.2.0 | args | 0.1.0 |
arrow | 1.2.3 | asgiref | 3.6.0 |
asn1crypto | 1.5.1 | astor | 0.8.1 |
astroid | 2.15.2 | asttokens | 2.2.1 |
astunparse | 1.6.3 | async-generator | 1.10 |
async-timeout | 4.0.2 | asynctest | 0.13.0 |
atomicwrites | 1.4.1 | attrs | 22.2.0 |
audioread | 3.0.0 | Authlib | 1.2.0 |
autobahn | 23.1.2 | autograd | 1.5 |
Automat | 22.10.0 | avro | 1.11.1 |
avro-python3 | 1.10.2 | aws-requests-auth | 0.4.3 |
azure-core | 1.26.3 | Babel | 2.12.1 |
backcall | 0.2.0 | backoff | 1.10.0 |
backports.tempfile | 1.0 | backports.weakref | 1.0.post1 |
backports.zoneinfo | 0.2.1 | base64io | 1.0.3 |
bcrypt | 4.0.1 | beautifulsoup4 | 4.12.0 |
billiard | 4.1.0 | black | 23.3.0 |
bleach | 6.0.0 | blinker | 1.4 |
blis | 0.7.9 | bokeh | 2.4.3 |
boltons | 23.0.0 | boto | 2.49.0 |
boto3 | 1.26.76 | botocore | 1.29.76 |
Bottleneck | 1.3.7 | bqplot | 0.12.37 |
branca | 0.6.0 | Brotli | 1.0.9 |
brotlipy | 0.7.0 | bs4 | 0.0.1 |
build | 0.10.0 | bytecode | 0.14.0 |
CacheControl | 0.12.11 | cached-property | 1.5.2 |
cachelib | 0.9.0 | cachetools | 5.3.0 |
cachy | 0.3.0 | catalogue | 2.0.8 |
cattrs | 22.2.0 | certifi | 2022.12.7 |
certipy | 0.1.3 | cffi | 1.15.1 |
cfgv | 3.3.1 | chainer | 7.8.1 |
chardet | 5.1.0 | charset-normalizer | 2.1.1 |
cleo | 2.0.1 | click | 8.1.3 |
click-didyoumean | 0.3.0 | click-plugins | 1.1.1 |
click-repl | 0.2.0 | clickclick | 20.10.2 |
cligj | 0.7.2 | clikit | 0.5.1 |
clint | 0.5.1 | cloud-init | 23.1.1 |
cloudpickle | 2.2.1 | cmake | 3.25.0 |
colorama | 0.4.6 | coloredlogs | 15.0.1 |
colorlog | 4.8.0 | colour | 0.1.5 |
comm | 0.1.3 | commonmark | 0.9.1 |
confection | 0.0.4 | configobj | 5.0.6 |
configparser | 5.3.0 | ConfigUpdater | 3.1.1 |
confluent-kafka | 2.0.2 | connexion | 2.14.2 |
constantly | 15.1.0 | constructs | 10.1.300 |
contextily | 1.3.0 | contextlib2 | 21.6.0 |
contourpy | 1.0.7 | convertdate | 2.4.0 |
countryinfo | 0.1.2 | coverage | 6.5.0 |
coveralls | 3.3.1 | cramjam | 2.6.2 |
crashtest | 0.4.1 | crcmod | 1.7 |
cron-descriptor | 1.2.35 | croniter | 1.3.8 |
cryptography | 40.0.1 | css-html-js-minify | 2.5.5 |
cssselect | 1.2.0 | cssutils | 2.6.0 |
cupy-cuda111 | 12.0.0 | curlify | 2.2.1 |
cx-Oracle | 8.3.0 | cycler | 0.11.0 |
cymem | 2.0.7 | Cython | 0.29.34 |
dash | 2.9.2 | dash-core-components | 2.0.0 |
dash-html-components | 2.0.0 | dash-renderer | 1.9.1 |
dash-table | 5.0.0 | dask | 2023.3.2 |
databricks-cli | 0.17.6 | dataclasses | 0.6 |
dataclasses-json | 0.5.7 | datadog | 0.45.0 |
dataprep | 0.4.4 | datascience | 0.17.6 |
datasets | 2.11.0 | dateparser | 1.1.8 |
DateTime | 5.1 | db-dtypes | 1.1.1 |
dbus-python | 1.2.16 | ddsketch | 2.0.4 |
ddtrace | 1.11.0 | debugpy | 1.6.6 |
decorator | 4.4.2 | deepdiff | 6.3.0 |
defusedxml | 0.7.1 | delta-spark | 2.2.0 |
Deprecated | 1.2.13 | deprecation | 2.1.0 |
descartes | 1.1.0 | dill | 0.3.6 |
dipy | 1.6.0 | distlib | 0.3.6 |
distributed | 2023.3.2 | distro | 1.4.0 |
distro-info | =0.23ubuntu1 | Django | 4.2 |
djangorestframework | 3.14.0 | dmri-amico | 1.5.4 |
dmri-commit | 1.6.4 | dnspython | 1.16.0 |
docker | 6.0.1 | docopt | 0.6.2 |
docutils | 0.19 | dulwich | 0.21.3 |
dynamo-json | 1.2.0 | earthengine-api | 0.1.347 |
EasyProcess | 1.1 | ebaysdk | 2.2.0 |
ec2-hibinit-agent | 1.0.0 | ecdsa | 0.18.0 |
ee-extra | 0.0.15 | eemeter | 3.1.1 |
eerepr | 0.0.4 | eli5 | 0.13.0 |
email-validator | 1.3.1 | emoji | 2.2.0 |
entrypoint2 | 1.1 | entrypoints | 0.3 |
enum34 | 1.1.10 | envier | 0.4.0 |
esda | 2.4.3 | et-xmlfile | 1.1.0 |
etils | 1.1.1 | exceptiongroup | 1.1.1 |
exchange-calendars | 4.2.5 | execnet | 1.9.0 |
executing | 1.2.0 | facebook-business | 16.0.2 |
facebook-sdk | 3.1.0 | facebook-wda | 1.4.6 |
Faker | 18.3.2 | fastapi | 0.95.0 |
fastavro | 1.7.3 | fasteners | 0.18 |
fastjsonschema | 2.16.3 | fastnumbers | 5.0.1 |
fastparquet | 2023.2.0 | fastrlock | 0.8.1 |
fasttext | 0.9.2 | ffmpeg-python | 0.2.0 |
ffmpy | 0.3.0 | filelock | 3.10.7 |
Fiona | 1.8.22 | fire | 0.5.0 |
flake8 | 6.0.0 | Flask | 2.2.3 |
Flask-AppBuilder | 4.1.4 | Flask-Babel | 2.0.0 |
Flask-CacheBuster | 1.0.0 | Flask-Caching | 2.0.2 |
Flask-Compress | 1.13 | Flask-Cors | 3.0.10 |
Flask-JWT-Extended | 4.4.4 | Flask-Limiter | 3.3.0 |
Flask-Login | 0.6.2 | Flask-Session | 0.4.0 |
Flask-SQLAlchemy | 2.5.1 | Flask-WTF | 1.1.1 |
flatbuffers | 23.3.3 | folium | 0.13.0 |
fonttools | 4.39.3 | fqdn | 1.5.1 |
freezegun | 1.2.2 | frozendict | 2.3.6 |
frozenlist | 1.3.3 | fsspec | 2023.3.0 |
funcsigs | 1.0.2 | future | 0.18.3 |
fuzzywuzzy | 0.18.0 | gast | 0.4.0 |
gcsfs | 2023.3.0 | GDAL | 3.0.4 |
gdown | 4.7.1 | gdspy | 1.6.12 |
geeadd | 0.5.6 | geemap | 0.20.4 |
gensim | 4.3.1 | geocoder | 1.38.1 |
geographiclib | 2.0 | geoip2 | 4.6.0 |
geojson | 3.0.1 | geopandas | 0.12.2 |
geopy | 2.3.0 | geotext | 0.4.0 |
gevent | 22.10.2 | giddy | 2.3.4 |
gitapi | 1.0.1 | gitdb | 4.0.10 |
GitPython | 3.1.31 | goflow | 0.1.2 |
google-api-core | 2.11.0 | google-api-python-client | 2.83.0 |
google-auth | 2.17.1 | google-auth-httplib2 | 0.1.0 |
google-auth-oauthlib | 1.0.0 | google-cloud-bigquery | 3.9.0 |
google-cloud-bigquery-storage | 2.19.1 | google-cloud-core | 2.3.2 |
google-cloud-storage | 2.8.0 | google-crc32c | 1.5.0 |
google-pasta | 0.2.0 | google-resumable-media | 2.4.1 |
googleapis-common-protos | 1.59.0 | googlemaps | 4.10.0 |
gradio | 3.24.1 | gradio_client | 0.0.5 |
graphviz | 0.20.1 | great-expectations | 0.16.5 |
greenlet | 2.0.2 | gremlinpython | 3.6.2 |
grpc-google-iam-v1 | 0.12.6 | grpcio | 1.53.0 |
grpcio-status | 1.53.0 | grpcio-tools | 1.53.0 |
gspread | 5.7.2 | gunicorn | 20.1.0 |
h11 | 0.14.0 | h2 | 4.1.0 |
h3 | 3.7.6 | h5netcdf | 1.1.0 |
h5py | 3.8.0 | haversine | 2.8.0 |
hdfs | 2.7.0 | hdfs3 | 0.3.1 |
HeapDict | 1.0.1 | hgapi | 1.7.4 |
hibagent | 1.0.1 | hijri-converter | 2.2.4 |
holidays | 0.22 | hpack | 4.0.0 |
html5lib | 1.1 | htmlmin | 0.1.12 |
httpcore | 0.16.3 | httplib2 | 0.22.0 |
httplib2shim | 0.0.3 | httptools | 0.5.0 |
httpx | 0.23.3 | huggingface-hub | 0.13.3 |
humanfriendly | 10.0 | humanize | 4.6.0 |
hvac | 1.1.0 | hyperframe | 6.0.1 |
hyperlink | 21.0.0 | ibm-cloud-sdk-core | 3.16.5 |
ibm-watson | 7.0.0 | identify | 2.5.22 |
idna | 2.8 | ijson | 3.2.0.post0 |
ImageHash | 4.3.1 | imageio | 2.27.0 |
imageio-ffmpeg | 0.4.8 | imagesize | 1.4.1 |
importlib-metadata | 4.13.0 | importlib-resources | 5.12.0 |
incremental | 22.10.0 | inequality | 1.0.0 |
inflection | 0.5.1 | iniconfig | 2.0.0 |
installer | 0.7.0 | invoke | 2.0.0 |
ipaddress | 1.0.23 | ipyevents | 2.0.1 |
ipyfilechooser | 0.6.0 | ipykernel | 6.22.0 |
ipyleaflet | 0.17.2 | ipysheet | 0.7.0 |
ipython | 8.12.0 | ipython-genutils | 0.2.0 |
ipytree | 0.2.2 | ipywidgets | 7.7.5 |
iso8601 | 1.1.0 | isodate | 0.6.1 |
isoduration | 20.11.0 | isort | 5.12.0 |
itemadapter | 0.8.0 | itemloaders | 1.0.6 |
itsdangerous | 2.1.2 | jarowinkler | 1.2.3 |
jax | 0.4.8 | jdcal | 1.4.1 |
jedi | 0.18.2 | jeepney | 0.8.0 |
Jinja2 | 3.0.3 | jira | 3.5.0 |
jmespath | 1.0.1 | joblib | 1.2.0 |
JPype1 | 1.4.1 | jschema-to-python | 1.2.3 |
jsii | 1.79.0 | json5 | 0.9.11 |
jsondiff | 2.0.0 | jsonlines | 1.2.0 |
jsonpatch | 1.22 | jsonpath-ng | 1.5.3 |
jsonpickle | 3.0.1 | jsonpointer | 2.0 |
jsonschema | 4.17.3 | junit-xml | 1.9 |
jupyter | 1.0.0 | jupyter-console | 6.6.3 |
jupyter-events | 0.6.3 | jupyter-server-proxy | 3.2.2 |
jupyter-telemetry | 0.1.0 | jupyter-ydoc | 0.2.3 |
jupyter_client | 8.1.0 | jupyter_core | 5.3.0 |
jupyter_server | 2.5.0 | jupyter_server_fileid | 0.8.0 |
jupyter_server_terminals | 0.4.4 | jupyter_server_ydoc | 0.8.0 |
jupyterhub | 3.1.1 | jupyterhub-idle-culler | 1.2.1 |
jupyterhub-nativeauthenticator | 1.1.0 | jupyterlab | 3.6.3 |
jupyterlab-pygments | 0.2.2 | jupyterlab-widgets | 1.1.4 |
jupyterlab_server | 2.22.0 | jwcrypto | 1.4.2 |
jwt | 1.3.1 | kafka-python | 2.0.2 |
keplergl | 0.3.2 | keras | 2.12.0 |
Keras-Applications | 1.0.8 | Keras-Preprocessing | 1.1.2 |
keycloakauthenticator | 3.3.0 | keyring | 18.0.1 |
kiwisolver | 1.4.4 | knack | 0.10.1 |
kombu | 5.2.4 | korean-lunar-calendar | 0.3.1 |
langcodes | 3.3.0 | laspy | 2.4.1 |
launchpadlib | 1.10.13 | lazr.restfulclient | 0.14.2 |
lazr.uri | 1.0.3 | lazy-object-proxy | 1.9.0 |
lazy_loader | 0.2 | leafmap | 0.18.8 |
Levenshtein | 0.20.9 | libclang | 16.0.0 |
libcst | 0.4.9 | libpysal | 4.7.0 |
librosa | 0.10.0.post2 | lightgbm | 3.3.5 |
limits | 3.3.1 | linkify-it-py | 2.0.0 |
lit | 15.0.7 | llvmlite | 0.39.1 |
locket | 1.0.0 | lockfile | 0.12.2 |
logzero | 1.7.0 | lorem | 0.1.1 |
lxml | 4.9.2 | M2Crypto | 0.38.0 |
makefun | 1.15.1 | Mako | 1.2.4 |
mamba | 0.11.2 | mapclassify | 2.5.0 |
Markdown | 3.4.3 | markdown-it-py | 2.2.0 |
markdown2 | 2.4.8 | MarkupSafe | 2.1.2 |
marshmallow | 3.19.0 | marshmallow-enum | 1.5.1 |
marshmallow-oneofschema | 3.0.1 | marshmallow-sqlalchemy | 0.26.1 |
matplotlib | 3.6.3 | matplotlib-inline | 0.1.6 |
maxminddb | 2.2.0 | mccabe | 0.7.0 |
mdit-py-plugins | 0.3.3 | mdurl | 0.1.2 |
mechanize | 0.4.8 | meep | 1.0.6 |
mercantile | 1.2.1 | Metaphone | 0.6 |
mgwr | 2.1.2 | missingno | 0.5.2 |
mistune | 2.0.5 | ml-dtypes | 0.0.4 |
mlflow | 2.2.2 | mlpack | 4.0.1 |
mock | 5.0.1 | momepy | 0.5.4 |
monotonic | 1.6 | more-itertools | 4.2.0 |
moto | 4.1.6 | moviepy | 1.0.3 |
mpi4py | 3.1.4 | mpmath | 1.3.0 |
msal | 1.21.0 | msal-extensions | 1.0.0 |
msgpack | 1.0.5 | msrest | 0.7.1 |
msrestazure | 0.6.4 | mss | 7.0.1 |
multidict | 6.0.4 | multimethod | 1.9.1 |
multiprocess | 0.70.14 | multitasking | 0.0.11 |
munch | 2.5.0 | murmurhash | 1.0.9 |
mutagen | 1.46.0 | mypy | 1.1.1 |
mypy-extensions | 1.0.0 | mysql-connector-python | 8.0.29 |
mysqlclient | 2.1.1 | nbclassic | 0.5.4 |
nbclient | 0.7.3 | nbconvert | 7.3.0 |
nbformat | 5.8.0 | nbgitpuller | 1.1.1 |
nbsphinx | 0.9.1 | ndg-httpsclient | 0.5.1 |
nest-asyncio | 1.5.6 | netaddr | 0.7.19 |
netifaces | 0.10.4 | networkx | 3.0 |
nibabel | 5.1.0 | nlopt | 2.7.1 |
nltk | 3.8.1 | nodeenv | 1.7.0 |
nose | 1.3.7 | notebook | 6.5.3 |
notebook_shim | 0.2.2 | ntlm-auth | 1.1.0 |
numba | 0.56.4 | numpy | 1.23.5 |
nvidia-cublas-cu11 | 11.11.3.6 | nvidia-cuda-runtime-cu11 | 11.8.89 |
nvidia-cudnn-cu11 | 8.6.0.163 | nvidia-tensorrt | 8.4.1.5 |
nycflights13 | 0.0.3 | oauth2client | 4.1.3 |
oauthenticator | 15.0.0 | oauthlib | 3.1.0 |
ogr | 0.40.0 | olefile | 0.46 |
onetimepass | 1.0.1 | onnxruntime | 1.14.1 |
opencensus | 0.11.2 | opencensus-context | 0.1.3 |
opencv-contrib-python | 4.7.0.72 | opencv-python | 4.7.0.72 |
openflow | 0.1.2.4 | openpyxl | 3.1.2 |
opensearch-py | 2.2.0 | opentelemetry-api | 1.16.0 |
opt-einsum | 3.3.0 | ordered-set | 4.1.0 |
orjson | 3.8.9 | oscrypto | 1.3.0 |
osmnx | 1.2.2 | outcome | 1.2.0 |
overrides | 7.3.1 | packaging | 23.0 |
pamela | 1.0.0 | pandas | 1.5.3 |
pandas-gbq | 0.19.1 | pandas-market-calendars | 4.1.4 |
pandas-profiling | 3.6.6 | pandas-usaddress | 0.21 |
pandasql | 0.7.3 | pandocfilters | 1.5.0 |
paramiko | 3.1.0 | parsedatetime | 2.6 |
parsel | 1.7.0 | parso | 0.8.3 |
partd | 1.3.0 | pastel | 0.2.1 |
pathlib2 | 2.3.7.post1 | pathos | 0.3.0 |
pathspec | 0.9.0 | pathy | 0.10.1 |
patsy | 0.5.3 | pbr | 5.11.1 |
pdfkit | 1.0.0 | pendulum | 2.1.2 |
pep517 | 0.13.0 | pexpect | 4.6.0 |
pg8000 | 1.29.4 | phik | 0.12.3 |
phonenumbers | 8.13.8 | pickleshare | 0.7.5 |
pika | 1.3.1 | Pillow | 9.5.0 |
pip-tools | 6.12.3 | pipenv | 2023.3.20 |
pkginfo | 1.9.6 | pkgutil_resolve_name | 1.3.10 |
platformdirs | 3.2.0 | plotly | 5.14.0 |
pluggy | 1.0.0 | ply | 3.11 |
Pmw | 2.1.1 | poetry-core | 1.5.2 |
pointpats | 2.3.0 | pooch | 1.6.0 |
portalocker | 2.7.0 | postal-address | 22.4.22.1 |
pox | 0.3.2 | ppft | 1.7.6.6 |
pprintpp | 0.4.0 | pre-commit | 3.2.2 |
premailer | 3.10.0 | preshed | 3.0.8 |
prettytable | 3.6.0 | priority | 2.0.0 |
prison | 0.2.1 | probableparsing | 0.0.1 |
proglog | 0.1.10 | progressbar2 | 4.2.0 |
prometheus-client | 0.16.0 | prometheus-flask-exporter | 0.22.3 |
promise | 2.3 | prompt-toolkit | 3.0.38 |
Protego | 0.2.1 | proto-plus | 1.22.2 |
protobuf | 4.22.1 | protobuf3-to-dict | 0.1.5 |
psutil | 5.9.4 | psycopg2 | 2.9.6 |
psycopg2-binary | 2.9.6 | ptyprocess | 0.7.0 |
publication | 0.0.3 | PuLP | 2.7.0 |
pure-eval | 0.2.2 | py | 1.11.0 |
py4j | 0.10.9.5 | pyarrow | 11.0.0 |
pyasn1 | 0.4.8 | pyasn1-modules | 0.2.8 |
pyathena | 2.23.0 | pybind11 | 2.10.4 |
pycairo | 1.23.0 | pycodestyle | 2.10.0 |
pycosat | 0.6.3 | pycountry | 22.3.5 |
pycountry-convert | 0.7.2 | pycparser | 2.21 |
pycron | 3.0.0 | PyCRS | 1.0.2 |
pycrypto | 2.6.1 | pycryptodome | 3.17 |
pycryptodomex | 3.17 | pycurl | 7.45.2 |
pydantic | 1.10.7 | pydata-google-auth | 1.7.0 |
pydeequ | 1.0.1 | PyDispatcher | 2.0.7 |
pydot | 1.4.2 | pydotplus | 2.0.2 |
pydub | 0.25.1 | pyexpect | 1.0.22 |
pyflakes | 3.0.1 | pygame | 2.3.0 |
pygeos | 0.14 | PyGithub | 1.58.1 |
pyglet | 2.0.5 | Pygments | 2.14.0 |
PyGObject | 3.36.0 | PyGreSQL | 5.2.4 |
pyhcl | 0.4.4 | PyJWT | 2.6.0 |
pykerberos | 1.1.14 | pylev | 1.4.0 |
pylint | 2.17.2 | pyluach | 2.2.0 |
PyMeeus | 0.5.12 | pymongo | 4.3.3 |
pymssql | 2.2.7 | PyMySQL | 1.0.3 |
PyNaCl | 1.5.0 | pyodbc | 4.0.35 |
pyOpenSSL | 23.1.1 | pypandoc | 1.11 |
pyparsing | 3.0.9 | PyPDF4 | 1.27.0 |
pyperclip | 1.8.2 | pypika-tortoise | 0.1.6 |
pypopulation | 2020.3 | pyproj | 3.5.0 |
pyproject_api | 1.5.1 | pyproject_hooks | 1.0.0 |
pyquery | 2.0.0 | pyrsistent | 0.15.5 |
pysal | 23.1 | pyscreenshot | 3.1 |
pyserial | 3.4 | pysftp | 0.2.9 |
pyshp | 2.3.1 | pysndfile | 1.4.4 |
PySocks | 1.7.1 | pyspark | 3.3.2 |
pystac | 1.7.1 | pystac-client | 0.6.1 |
pytest | 7.2.2 | pytest-cov | 4.0.0 |
pytest-forked | 1.6.0 | pytest-mock | 3.10.0 |
pytest-runner | 6.0.0 | pytest-xdist | 3.2.1 |
python-apt | 2.0.1+ubuntu0.20.4.1 | python-box | 7.0.1 |
python-crfsuite | 0.9.8 | python-daemon | 3.0.1 |
python-dateutil | 2.8.2 | python-debian | =0.1.36ubuntu1 |
python-distutils-extra | 2.39 | python-docx | 0.8.11 |
python-dotenv | 1.0.0 | python-editor | 1.0.4 |
python-gitlab | 3.13.0 | python-gnupg | 0.5.0 |
python-http-client | 3.3.7 | python-jose | 3.3.0 |
python-json-logger | 2.0.7 | python-jwt | 4.0.0 |
python-keycloak | 2.14.0 | python-Levenshtein | 0.20.9 |
python-magic | 0.4.27 | python-multipart | 0.0.6 |
python-nvd3 | 0.15.0 | python-slugify | 8.0.1 |
python-stdnum | 1.18 | python-twitter | 3.5 |
python-utils | 3.5.2 | pytimeparse | 1.1.8 |
pytz | 2022.7.1 | pytz-deprecation-shim | 0.1.0.post0 |
pytzdata | 2020.1 | PyWavelets | 1.4.1 |
pywinrm | 0.3.0 | PyX | 0.16 |
PyYAML | 5.3.1 | pyzmq | 25.0.2 |
qtconsole | 5.4.2 | QtPy | 2.3.1 |
quantecon | 0.6.0 | querystring-parser | 1.2.4 |
queuelib | 1.6.2 | quilt3 | 5.2.0 |
rapidfuzz | 2.15.0 | rasterio | 1.3.6 |
rasterstats | 0.18.0 | ratelim | 0.1.6 |
ratelimit | 2.2.1 | readme-renderer | 37.3 |
redis | 4.5.4 | redshift-connector | 2.0.910 |
regex | 2021.11.10 | reportlab | 3.6.12 |
reportlib | 3.4.0 | repoze.lru | 0.7 |
requests | 2.28.2 | requests-aws4auth | 1.2.2 |
requests-file | 1.5.1 | requests-futures | 1.0.0 |
requests-kerberos | 0.12.0 | requests-ntlm | 1.1.0 |
requests-oauthlib | 1.3.1 | requests-toolbelt | 0.10.1 |
requests-unixsocket | 0.2.0 | resampy | 0.4.2 |
resolvelib | 0.8.1 | responses | 0.18.0 |
retry | 0.9.2 | retrying | 1.3.4 |
reverse-geocoder | 1.5.1 | rfc3339-validator | 0.1.4 |
rfc3986 | 1.5.0 | rfc3986-validator | 0.1.1 |
rich | 13.3.3 | roman | 4.0 |
rsa | 4.9 | Rtree | 1.0.1 |
ruamel.yaml | 0.17.17 | ruamel.yaml.clib | 0.2.7 |
rvlib | 0.0.6 | s3fs | 0.6.0 |
s3transfer | 0.6.0 | sacremoses | 0.0.53 |
sankee | 0.2.3 | sarif-om | 1.0.4 |
sasl | 0.3.1 | scandir | 1.10.0 |
schema | 0.7.5 | scikit-image | 0.20.0 |
scikit-learn | 1.2.2 | scipy | 1.9.1 |
scooby | 0.7.1 | scp | 0.14.5 |
scramp | 1.4.4 | scrape | 0.11.3 |
Scrapy | 2.8.0 | seaborn | 0.12.2 |
SecretStorage | 2.3.1 | segregation | 2.3.1 |
selenium | 4.8.3 | selinux | 3.0 |
semantic-version | 2.10.0 | semver | 3.0.0 |
Send2Trash | 1.8.0 | sendgrid | 6.10.0 |
sentencepiece | 0.1.97 | sentry-sdk | 1.18.0 |
service-identity | 21.1.0 | setproctitle | 1.3.2 |
setuptools-scm | 7.1.0 | sh | 2.0.3 |
shap | 0.41.0 | Shapely | 1.8.5.post1 |
shellingham | 1.5.0.post1 | shortuuid | 1.0.11 |
simpervisor | 0.4 | simple-salesforce | 1.12.3 |
simplejson | 3.16.0 | singledispatch | 4.0.0 |
six | 1.14.0 | sklearn-pandas | 2.2.0 |
slack-sdk | 3.20.2 | slackclient | 2.9.4 |
slicer | 0.0.7 | smart-open | 6.3.0 |
smdebug-rulesconfig | 1.0.1 | smmap | 5.0.0 |
sniffio | 1.3.0 | snowballstemmer | 2.2.0 |
snowflake-connector-python | 3.0.2 | snowflake-sqlalchemy | 1.4.7 |
snuggs | 1.4.7 | sortedcontainers | 2.4.0 |
sos | 4.4 | soundfile | 0.12.1 |
soupsieve | 2.4 | soxr | 0.3.4 |
spacy | 3.5.1 | spacy-legacy | 3.0.12 |
spacy-loggers | 1.0.4 | spaghetti | 1.7.2 |
spams | 2.6.5.4 | spglm | 1.0.8 |
Sphinx | 6.1.3 | sphinxcontrib-applehelp | 1.0.4 |
sphinxcontrib-devhelp | 1.0.2 | sphinxcontrib-htmlhelp | 2.0.1 |
sphinxcontrib-jsmath | 1.0.1 | sphinxcontrib-qthelp | 1.0.3 |
sphinxcontrib-serializinghtml | 1.1.5 | spint | 1.0.7 |
splot | 1.1.5.post1 | spopt | 0.5.0 |
spreg | 1.3.1 | spvcm | 0.3.0 |
SQLAlchemy | 1.4.41 | SQLAlchemy-JSONField | 1.0.1.post0 |
SQLAlchemy-Utils | 0.40.0 | sqlalchemy2-stubs | 0.0.2a32 |
sqlmodel | 0.0.8 | sqlparse | 0.4.3 |
srsly | 2.4.6 | ssh-import-id | 5.10 |
sshtunnel | 0.4.0 | stack-data | 0.6.2 |
starkbank-ecdsa | 2.2.0 | starlette | 0.26.1 |
statsd | 4.0.1 | statsmodels | 0.13.5 |
stevedore | 5.0.0 | stringcase | 1.2.0 |
structlog | 22.3.0 | swagger-ui-bundle | 0.0.9 |
sympy | 1.11.1 | systemd-python | 234 |
tabulate | 0.9.0 | tangled-up-in-unicode | 0.2.0 |
tblib | 1.7.0 | tenacity | 8.2.2 |
tensorboard | 2.12.1 | tensorboard-data-server | 0.7.0 |
tensorboard-plugin-wit | 1.8.1 | tensorboardX | 2.5 |
tensorflow | 2.12.0 | tensorflow-estimator | 2.12.0 |
tensorflow-io-gcs-filesystem | 0.32.0 | termcolor | 2.2.0 |
terminado | 0.17.1 | testpath | 0.6.0 |
testresources | 2.0.1 | text-unidecode | 1.3 |
tf-estimator-nightly | 2.13.0.dev2023040308 | Theano | 1.0.5 |
thinc | 8.1.9 | threadpoolctl | 3.1.0 |
thrift | 0.16.0 | tifffile | 2023.3.21 |
timer | 0.2.2 | timezonefinder | 6.2.0 |
tinycss2 | 1.2.1 | tldextract | 3.4.0 |
tobler | 0.9.0 | tokenizers | 0.13.2 |
toml | 0.10.2 | tomli | 2.0.1 |
tomlkit | 0.11.7 | toolz | 0.12.0 |
torch | 2.0.0+cu118 | torchaudio | 2.0.1+cu118 |
torchvision | 0.15.1+cu118 | tornado | 6.2 |
tortoise-orm | 0.19.3 | tox | 4.4.8 |
tqdm | 4.64.1 | traitlets | 5.9.0 |
traittypes | 0.2.1 | transformers | 4.27.4 |
trio | 0.22.0 | trio-websocket | 0.10.2 |
triton | 2.0.0 | trove-classifiers | 2023.3.9 |
Twisted | 22.10.0 | txaio | 23.1.1 |
typed-ast | 1.5.4 | typeguard | 2.13.3 |
typer | 0.7.0 | types-PyYAML | 6.0.12.9 |
types-requests | 2.28.11.17 | types-urllib3 | 1.26.25.10 |
typing | 3.7.4.3 | typing-inspect | 0.8.0 |
typing_extensions | 4.5.0 | tzdata | 2023.3 |
tzlocal | 4.3 | ua-parser | 0.16.1 |
uamqp | 1.6.4 | ubuntu-advantage-tools | 8001 |
uc-micro-py | 1.0.1 | ujson | 5.7.0 |
unattended-upgrades | 0.1 | unicodecsv | 0.14.1 |
Unidecode | 1.3.6 | uri-template | 1.2.0 |
uritemplate | 4.1.1 | urllib3 | 1.26.15 |
usaddress | 0.5.10 | uvicorn | 0.21.1 |
uvloop | 0.17.0 | varname | 0.8.2 |
vega-datasets | 0.9.0 | vine | 5.0.0 |
virtualenv | 20.21.0 | virtualenv-clone | 0.5.7 |
visions | 0.7.5 | vpython | 7.6.4 |
w3lib | 2.1.1 | wadllib | 1.3.3 |
wasabi | 1.1.1 | watchdog | 3.0.0 |
watchtower | 3.0.1 | watergrid | 1.1.1 |
wcwidth | 0.2.6 | webcolors | 1.13 |
webencodings | 0.5.1 | websocket-client | 1.1.0 |
websockets | 11.0 | Werkzeug | 2.2.3 |
whitebox | 2.3.1 | whiteboxgui | 2.3.0 |
widgetsnbextension | 3.6.4 | woops | 0.2.1 |
wordcloud | 1.8.2.2 | workdays | 1.4 |
wrapt | 1.14.1 | wsproto | 1.2.0 |
WTForms | 3.0.1 | xarray | 2023.1.0 |
xlrd | 2.0.1 | XlsxWriter | 3.0.9 |
xlwt | 1.3.0 | xmltodict | 0.12.0 |
xxhash | 3.2.0 | xyzservices | 2023.2.0 |
y-py | 0.5.9 | yahoo-finance | 1.4.0 |
yarl | 1.8.2 | ydata-profiling | 4.1.2 |
yfinance | 0.2.14 | youtube-dl | 2021.12.17 |
youtube-search | 2.1.2 | youtube-search-python | 1.6.6 |
ypy-websocket | 0.8.2 | zeep | 4.2.1 |
zict | 2.2.0 | zipp | 3.15.0 |
zope.event | 4.6 | zope.interface | 6.0 |
Data science packages
tensorflow | torch |
---|---|
2.12.0 | 2.0.0+cu118 |
GPU Support
NVIDIA Driver | CUDA |
---|---|
520.61.05 | 11.8.0 |
Python version: 3.8.10
Python packages
package | version | package | version |
---|---|---|---|
absl-py | 1.4.0 | access | 1.1.8 |
adal | 1.2.7 | aenum | 3.1.12 |
affine | 2.4.0 | aiobotocore | 2.5.0 |
aioconsole | 0.6.1 | aiofiles | 22.1.0 |
aiohttp | 3.8.1 | aioitertools | 0.11.0 |
aiosignal | 1.3.1 | aiosqlite | 0.17.0 |
alabaster | 0.7.13 | alembic | 1.10.2 |
altair | 4.2.0 | amqp | 5.1.1 |
analytics-python | 1.4.post1 | aniso8601 | 9.0.1 |
ansible | 2.9.6 | ansible-core | 2.13.8 |
antlr4-python3-runtime | 4.12.0 | anyio | 3.6.2 |
apache-airflow | 2.5.3 | apache-airflow-providers-common-sql | 1.3.4 |
apache-airflow-providers-ftp | 3.3.1 | apache-airflow-providers-http | 4.2.0 |
apache-airflow-providers-imap | 3.1.1 | apache-airflow-providers-sqlite | 3.3.1 |
apache-libcloud | 2.8.0 | apispec | 3.3.2 |
appdirs | 1.4.4 | applicationinsights | 0.11.10 |
argcomplete | 3.0.5 | argon2-cffi | 21.3.0 |
argon2-cffi-bindings | 21.2.0 | args | 0.1.0 |
arrow | 1.2.3 | asgiref | 3.6.0 |
asn1crypto | 1.5.1 | astor | 0.8.1 |
astroid | 2.15.2 | asttokens | 2.2.1 |
astunparse | 1.6.3 | async-generator | 1.10 |
async-timeout | 4.0.2 | asynctest | 0.13.0 |
atomicwrites | 1.4.1 | attrs | 22.2.0 |
audioread | 3.0.0 | Authlib | 1.2.0 |
autobahn | 23.1.2 | autograd | 1.5 |
Automat | 22.10.0 | avro | 1.11.1 |
avro-python3 | 1.10.2 | aws-requests-auth | 0.4.3 |
azure-core | 1.26.3 | Babel | 2.12.1 |
backcall | 0.2.0 | backoff | 1.10.0 |
backports.tempfile | 1.0 | backports.weakref | 1.0.post1 |
backports.zoneinfo | 0.2.1 | base64io | 1.0.3 |
bcrypt | 4.0.1 | beautifulsoup4 | 4.12.0 |
billiard | 4.1.0 | black | 23.3.0 |
bleach | 6.0.0 | blinker | 1.4 |
blis | 0.7.9 | bokeh | 2.4.3 |
boltons | 23.0.0 | boto | 2.49.0 |
boto3 | 1.26.76 | botocore | 1.29.76 |
Bottleneck | 1.3.7 | bqplot | 0.12.37 |
branca | 0.6.0 | Brotli | 1.0.9 |
brotlipy | 0.7.0 | bs4 | 0.0.1 |
build | 0.10.0 | bytecode | 0.14.0 |
CacheControl | 0.12.11 | cached-property | 1.5.2 |
cachelib | 0.9.0 | cachetools | 5.3.0 |
cachy | 0.3.0 | catalogue | 2.0.8 |
cattrs | 22.2.0 | certifi | 2022.12.7 |
certipy | 0.1.3 | cffi | 1.15.1 |
cfgv | 3.3.1 | chainer | 7.8.1 |
chardet | 5.1.0 | charset-normalizer | 2.1.1 |
cleo | 2.0.1 | click | 8.1.3 |
click-didyoumean | 0.3.0 | click-plugins | 1.1.1 |
click-repl | 0.2.0 | clickclick | 20.10.2 |
cligj | 0.7.2 | clikit | 0.5.1 |
clint | 0.5.1 | cloud-init | 23.1.1 |
cloudpickle | 2.2.1 | cmake | 3.25.0 |
colorama | 0.4.6 | coloredlogs | 15.0.1 |
colorlog | 4.8.0 | colour | 0.1.5 |
comm | 0.1.3 | commonmark | 0.9.1 |
confection | 0.0.4 | configobj | 5.0.6 |
configparser | 5.3.0 | ConfigUpdater | 3.1.1 |
confluent-kafka | 2.0.2 | connexion | 2.14.2 |
constantly | 15.1.0 | constructs | 10.1.300 |
contextily | 1.3.0 | contextlib2 | 21.6.0 |
contourpy | 1.0.7 | convertdate | 2.4.0 |
countryinfo | 0.1.2 | coverage | 6.5.0 |
coveralls | 3.3.1 | cramjam | 2.6.2 |
crashtest | 0.4.1 | crcmod | 1.7 |
cron-descriptor | 1.2.35 | croniter | 1.3.8 |
cryptography | 40.0.1 | css-html-js-minify | 2.5.5 |
cssselect | 1.2.0 | cssutils | 2.6.0 |
cupy-cuda111 | 12.0.0 | curlify | 2.2.1 |
cx-Oracle | 8.3.0 | cycler | 0.11.0 |
cymem | 2.0.7 | Cython | 0.29.34 |
dash | 2.9.2 | dash-core-components | 2.0.0 |
dash-html-components | 2.0.0 | dash-renderer | 1.9.1 |
dash-table | 5.0.0 | dask | 2023.3.2 |
databricks-cli | 0.17.6 | dataclasses | 0.6 |
dataclasses-json | 0.5.7 | datadog | 0.45.0 |
dataprep | 0.4.4 | datascience | 0.17.6 |
datasets | 2.11.0 | dateparser | 1.1.8 |
DateTime | 5.1 | db-dtypes | 1.1.1 |
dbus-python | 1.2.16 | ddsketch | 2.0.4 |
ddtrace | 1.11.0 | debugpy | 1.6.6 |
decorator | 4.4.2 | deepdiff | 6.3.0 |
defusedxml | 0.7.1 | delta-spark | 2.2.0 |
Deprecated | 1.2.13 | deprecation | 2.1.0 |
descartes | 1.1.0 | dill | 0.3.6 |
dipy | 1.6.0 | distlib | 0.3.6 |
distributed | 2023.3.2 | distro | 1.4.0 |
distro-info | =0.23ubuntu1 | Django | 4.2 |
djangorestframework | 3.14.0 | dmri-amico | 1.5.4 |
dmri-commit | 1.6.4 | dnspython | 1.16.0 |
docker | 6.0.1 | docopt | 0.6.2 |
docutils | 0.19 | dulwich | 0.21.3 |
dynamo-json | 1.2.0 | earthengine-api | 0.1.347 |
EasyProcess | 1.1 | ebaysdk | 2.2.0 |
ec2-hibinit-agent | 1.0.0 | ecdsa | 0.18.0 |
ee-extra | 0.0.15 | eemeter | 3.1.1 |
eerepr | 0.0.4 | eli5 | 0.13.0 |
email-validator | 1.3.1 | emoji | 2.2.0 |
entrypoint2 | 1.1 | entrypoints | 0.3 |
enum34 | 1.1.10 | envier | 0.4.0 |
esda | 2.4.3 | et-xmlfile | 1.1.0 |
etils | 1.1.1 | exceptiongroup | 1.1.1 |
exchange-calendars | 4.2.5 | execnet | 1.9.0 |
executing | 1.2.0 | facebook-business | 16.0.2 |
facebook-sdk | 3.1.0 | facebook-wda | 1.4.6 |
Faker | 18.3.2 | fastapi | 0.95.0 |
fastavro | 1.7.3 | fasteners | 0.18 |
fastjsonschema | 2.16.3 | fastnumbers | 5.0.1 |
fastparquet | 2023.2.0 | fastrlock | 0.8.1 |
fasttext | 0.9.2 | ffmpeg-python | 0.2.0 |
ffmpy | 0.3.0 | filelock | 3.10.7 |
Fiona | 1.8.22 | fire | 0.5.0 |
flake8 | 6.0.0 | Flask | 2.2.3 |
Flask-AppBuilder | 4.1.4 | Flask-Babel | 2.0.0 |
Flask-CacheBuster | 1.0.0 | Flask-Caching | 2.0.2 |
Flask-Compress | 1.13 | Flask-Cors | 3.0.10 |
Flask-JWT-Extended | 4.4.4 | Flask-Limiter | 3.3.0 |
Flask-Login | 0.6.2 | Flask-Session | 0.4.0 |
Flask-SQLAlchemy | 2.5.1 | Flask-WTF | 1.1.1 |
flatbuffers | 23.3.3 | folium | 0.13.0 |
fonttools | 4.39.3 | fqdn | 1.5.1 |
freezegun | 1.2.2 | frozendict | 2.3.6 |
frozenlist | 1.3.3 | fsspec | 2023.3.0 |
funcsigs | 1.0.2 | future | 0.18.3 |
fuzzywuzzy | 0.18.0 | gast | 0.4.0 |
gcsfs | 2023.3.0 | GDAL | 3.0.4 |
gdown | 4.7.1 | gdspy | 1.6.12 |
geeadd | 0.5.6 | geemap | 0.20.4 |
gensim | 4.3.1 | geocoder | 1.38.1 |
geographiclib | 2.0 | geoip2 | 4.6.0 |
geojson | 3.0.1 | geopandas | 0.12.2 |
geopy | 2.3.0 | geotext | 0.4.0 |
gevent | 22.10.2 | giddy | 2.3.4 |
gitapi | 1.0.1 | gitdb | 4.0.10 |
GitPython | 3.1.31 | goflow | 0.1.2 |
google-api-core | 2.11.0 | google-api-python-client | 2.83.0 |
google-auth | 2.17.1 | google-auth-httplib2 | 0.1.0 |
google-auth-oauthlib | 1.0.0 | google-cloud-bigquery | 3.9.0 |
google-cloud-bigquery-storage | 2.19.1 | google-cloud-core | 2.3.2 |
google-cloud-storage | 2.8.0 | google-crc32c | 1.5.0 |
google-pasta | 0.2.0 | google-resumable-media | 2.4.1 |
googleapis-common-protos | 1.59.0 | googlemaps | 4.10.0 |
gradio | 3.24.1 | gradio_client | 0.0.5 |
graphviz | 0.20.1 | great-expectations | 0.16.5 |
greenlet | 2.0.2 | gremlinpython | 3.6.2 |
grpc-google-iam-v1 | 0.12.6 | grpcio | 1.53.0 |
grpcio-status | 1.53.0 | grpcio-tools | 1.53.0 |
gspread | 5.7.2 | gunicorn | 20.1.0 |
h11 | 0.14.0 | h2 | 4.1.0 |
h3 | 3.7.6 | h5netcdf | 1.1.0 |
h5py | 3.8.0 | haversine | 2.8.0 |
hdfs | 2.7.0 | hdfs3 | 0.3.1 |
HeapDict | 1.0.1 | hgapi | 1.7.4 |
hibagent | 1.0.1 | hijri-converter | 2.2.4 |
holidays | 0.22 | hpack | 4.0.0 |
html5lib | 1.1 | htmlmin | 0.1.12 |
httpcore | 0.16.3 | httplib2 | 0.22.0 |
httplib2shim | 0.0.3 | httptools | 0.5.0 |
httpx | 0.23.3 | huggingface-hub | 0.13.3 |
humanfriendly | 10.0 | humanize | 4.6.0 |
hvac | 1.1.0 | hyperframe | 6.0.1 |
hyperlink | 21.0.0 | ibm-cloud-sdk-core | 3.16.5 |
ibm-watson | 7.0.0 | identify | 2.5.22 |
idna | 2.8 | ijson | 3.2.0.post0 |
ImageHash | 4.3.1 | imageio | 2.27.0 |
imageio-ffmpeg | 0.4.8 | imagesize | 1.4.1 |
importlib-metadata | 4.13.0 | importlib-resources | 5.12.0 |
incremental | 22.10.0 | inequality | 1.0.0 |
inflection | 0.5.1 | iniconfig | 2.0.0 |
installer | 0.7.0 | invoke | 2.0.0 |
ipaddress | 1.0.23 | ipyevents | 2.0.1 |
ipyfilechooser | 0.6.0 | ipykernel | 6.22.0 |
ipyleaflet | 0.17.2 | ipysheet | 0.7.0 |
ipython | 8.12.0 | ipython-genutils | 0.2.0 |
ipytree | 0.2.2 | ipywidgets | 7.7.5 |
iso8601 | 1.1.0 | isodate | 0.6.1 |
isoduration | 20.11.0 | isort | 5.12.0 |
itemadapter | 0.8.0 | itemloaders | 1.0.6 |
itsdangerous | 2.1.2 | jarowinkler | 1.2.3 |
jax | 0.4.8 | jdcal | 1.4.1 |
jedi | 0.18.2 | jeepney | 0.8.0 |
Jinja2 | 3.0.3 | jira | 3.5.0 |
jmespath | 1.0.1 | joblib | 1.2.0 |
JPype1 | 1.4.1 | jschema-to-python | 1.2.3 |
jsii | 1.79.0 | json5 | 0.9.11 |
jsondiff | 2.0.0 | jsonlines | 1.2.0 |
jsonpatch | 1.22 | jsonpath-ng | 1.5.3 |
jsonpickle | 3.0.1 | jsonpointer | 2.0 |
jsonschema | 4.17.3 | junit-xml | 1.9 |
jupyter | 1.0.0 | jupyter-console | 6.6.3 |
jupyter-events | 0.6.3 | jupyter-server-proxy | 3.2.2 |
jupyter-telemetry | 0.1.0 | jupyter-ydoc | 0.2.3 |
jupyter_client | 8.1.0 | jupyter_core | 5.3.0 |
jupyter_server | 2.5.0 | jupyter_server_fileid | 0.8.0 |
jupyter_server_terminals | 0.4.4 | jupyter_server_ydoc | 0.8.0 |
jupyterhub | 3.1.1 | jupyterhub-idle-culler | 1.2.1 |
jupyterhub-nativeauthenticator | 1.1.0 | jupyterlab | 3.6.3 |
jupyterlab-pygments | 0.2.2 | jupyterlab-widgets | 1.1.4 |
jupyterlab_server | 2.22.0 | jwcrypto | 1.4.2 |
jwt | 1.3.1 | kafka-python | 2.0.2 |
keplergl | 0.3.2 | keras | 2.12.0 |
Keras-Applications | 1.0.8 | Keras-Preprocessing | 1.1.2 |
keycloakauthenticator | 3.3.0 | keyring | 18.0.1 |
kiwisolver | 1.4.4 | knack | 0.10.1 |
kombu | 5.2.4 | korean-lunar-calendar | 0.3.1 |
langcodes | 3.3.0 | laspy | 2.4.1 |
launchpadlib | 1.10.13 | lazr.restfulclient | 0.14.2 |
lazr.uri | 1.0.3 | lazy-object-proxy | 1.9.0 |
lazy_loader | 0.2 | leafmap | 0.18.8 |
Levenshtein | 0.20.9 | libclang | 16.0.0 |
libcst | 0.4.9 | libpysal | 4.7.0 |
librosa | 0.10.0.post2 | lightgbm | 3.3.5 |
limits | 3.3.1 | linkify-it-py | 2.0.0 |
lit | 15.0.7 | llvmlite | 0.39.1 |
locket | 1.0.0 | lockfile | 0.12.2 |
logzero | 1.7.0 | lorem | 0.1.1 |
lxml | 4.9.2 | M2Crypto | 0.38.0 |
makefun | 1.15.1 | Mako | 1.2.4 |
mamba | 0.11.2 | mapclassify | 2.5.0 |
Markdown | 3.4.3 | markdown-it-py | 2.2.0 |
markdown2 | 2.4.8 | MarkupSafe | 2.1.2 |
marshmallow | 3.19.0 | marshmallow-enum | 1.5.1 |
marshmallow-oneofschema | 3.0.1 | marshmallow-sqlalchemy | 0.26.1 |
matplotlib | 3.6.3 | matplotlib-inline | 0.1.6 |
maxminddb | 2.2.0 | mccabe | 0.7.0 |
mdit-py-plugins | 0.3.3 | mdurl | 0.1.2 |
mechanize | 0.4.8 | meep | 1.0.6 |
mercantile | 1.2.1 | Metaphone | 0.6 |
mgwr | 2.1.2 | missingno | 0.5.2 |
mistune | 2.0.5 | ml-dtypes | 0.0.4 |
mlflow | 2.2.2 | mlpack | 4.0.1 |
mock | 5.0.1 | momepy | 0.5.4 |
monotonic | 1.6 | more-itertools | 4.2.0 |
moto | 4.1.6 | moviepy | 1.0.3 |
mpi4py | 3.1.4 | mpmath | 1.3.0 |
msal | 1.21.0 | msal-extensions | 1.0.0 |
msgpack | 1.0.5 | msrest | 0.7.1 |
msrestazure | 0.6.4 | mss | 7.0.1 |
multidict | 6.0.4 | multimethod | 1.9.1 |
multiprocess | 0.70.14 | multitasking | 0.0.11 |
munch | 2.5.0 | murmurhash | 1.0.9 |
mutagen | 1.46.0 | mypy | 1.1.1 |
mypy-extensions | 1.0.0 | mysql-connector-python | 8.0.29 |
mysqlclient | 2.1.1 | nbclassic | 0.5.4 |
nbclient | 0.7.3 | nbconvert | 7.3.0 |
nbformat | 5.8.0 | nbgitpuller | 1.1.1 |
nbsphinx | 0.9.1 | ndg-httpsclient | 0.5.1 |
nest-asyncio | 1.5.6 | netaddr | 0.7.19 |
netifaces | 0.10.4 | networkx | 3.0 |
nibabel | 5.1.0 | nlopt | 2.7.1 |
nltk | 3.8.1 | nodeenv | 1.7.0 |
nose | 1.3.7 | notebook | 6.5.3 |
notebook_shim | 0.2.2 | ntlm-auth | 1.1.0 |
numba | 0.56.4 | numpy | 1.23.5 |
nvidia-cublas-cu11 | 11.11.3.6 | nvidia-cuda-runtime-cu11 | 11.8.89 |
nvidia-cudnn-cu11 | 8.6.0.163 | nvidia-tensorrt | 8.4.1.5 |
nycflights13 | 0.0.3 | oauth2client | 4.1.3 |
oauthenticator | 15.0.0 | oauthlib | 3.1.0 |
ogr | 0.40.0 | olefile | 0.46 |
onetimepass | 1.0.1 | onnxruntime | 1.14.1 |
opencensus | 0.11.2 | opencensus-context | 0.1.3 |
opencv-contrib-python | 4.7.0.72 | opencv-python | 4.7.0.72 |
openflow | 0.1.2.4 | openpyxl | 3.1.2 |
opensearch-py | 2.2.0 | opentelemetry-api | 1.16.0 |
opt-einsum | 3.3.0 | ordered-set | 4.1.0 |
orjson | 3.8.9 | oscrypto | 1.3.0 |
osmnx | 1.2.2 | outcome | 1.2.0 |
overrides | 7.3.1 | packaging | 23.0 |
pamela | 1.0.0 | pandas | 1.5.3 |
pandas-gbq | 0.19.1 | pandas-market-calendars | 4.1.4 |
pandas-profiling | 3.6.6 | pandas-usaddress | 0.21 |
pandasql | 0.7.3 | pandocfilters | 1.5.0 |
paramiko | 3.1.0 | parsedatetime | 2.6 |
parsel | 1.7.0 | parso | 0.8.3 |
partd | 1.3.0 | pastel | 0.2.1 |
pathlib2 | 2.3.7.post1 | pathos | 0.3.0 |
pathspec | 0.9.0 | pathy | 0.10.1 |
patsy | 0.5.3 | pbr | 5.11.1 |
pdfkit | 1.0.0 | pendulum | 2.1.2 |
pep517 | 0.13.0 | pexpect | 4.6.0 |
pg8000 | 1.29.4 | phik | 0.12.3 |
phonenumbers | 8.13.8 | pickleshare | 0.7.5 |
pika | 1.3.1 | Pillow | 9.5.0 |
pip-tools | 6.12.3 | pipenv | 2023.3.20 |
pkginfo | 1.9.6 | pkgutil_resolve_name | 1.3.10 |
platformdirs | 3.2.0 | plotly | 5.14.0 |
pluggy | 1.0.0 | ply | 3.11 |
Pmw | 2.1.1 | poetry-core | 1.5.2 |
pointpats | 2.3.0 | pooch | 1.6.0 |
portalocker | 2.7.0 | postal-address | 22.4.22.1 |
pox | 0.3.2 | ppft | 1.7.6.6 |
pprintpp | 0.4.0 | pre-commit | 3.2.2 |
premailer | 3.10.0 | preshed | 3.0.8 |
prettytable | 3.6.0 | priority | 2.0.0 |
prison | 0.2.1 | probableparsing | 0.0.1 |
proglog | 0.1.10 | progressbar2 | 4.2.0 |
prometheus-client | 0.16.0 | prometheus-flask-exporter | 0.22.3 |
promise | 2.3 | prompt-toolkit | 3.0.38 |
Protego | 0.2.1 | proto-plus | 1.22.2 |
protobuf | 4.22.1 | protobuf3-to-dict | 0.1.5 |
psutil | 5.9.4 | psycopg2 | 2.9.6 |
psycopg2-binary | 2.9.6 | ptyprocess | 0.7.0 |
publication | 0.0.3 | PuLP | 2.7.0 |
pure-eval | 0.2.2 | py | 1.11.0 |
py4j | 0.10.9.5 | pyarrow | 11.0.0 |
pyasn1 | 0.4.8 | pyasn1-modules | 0.2.8 |
pyathena | 2.23.0 | pybind11 | 2.10.4 |
pycairo | 1.23.0 | pycodestyle | 2.10.0 |
pycosat | 0.6.3 | pycountry | 22.3.5 |
pycountry-convert | 0.7.2 | pycparser | 2.21 |
pycron | 3.0.0 | PyCRS | 1.0.2 |
pycrypto | 2.6.1 | pycryptodome | 3.17 |
pycryptodomex | 3.17 | pycurl | 7.45.2 |
pydantic | 1.10.7 | pydata-google-auth | 1.7.0 |
pydeequ | 1.0.1 | PyDispatcher | 2.0.7 |
pydot | 1.4.2 | pydotplus | 2.0.2 |
pydub | 0.25.1 | pyexpect | 1.0.22 |
pyflakes | 3.0.1 | pygame | 2.3.0 |
pygeos | 0.14 | PyGithub | 1.58.1 |
pyglet | 2.0.5 | Pygments | 2.14.0 |
PyGObject | 3.36.0 | PyGreSQL | 5.2.4 |
pyhcl | 0.4.4 | PyJWT | 2.6.0 |
pykerberos | 1.1.14 | pylev | 1.4.0 |
pylint | 2.17.2 | pyluach | 2.2.0 |
PyMeeus | 0.5.12 | pymongo | 4.3.3 |
pymssql | 2.2.7 | PyMySQL | 1.0.3 |
PyNaCl | 1.5.0 | pyodbc | 4.0.35 |
pyOpenSSL | 23.1.1 | pypandoc | 1.11 |
pyparsing | 3.0.9 | PyPDF4 | 1.27.0 |
pyperclip | 1.8.2 | pypika-tortoise | 0.1.6 |
pypopulation | 2020.3 | pyproj | 3.5.0 |
pyproject_api | 1.5.1 | pyproject_hooks | 1.0.0 |
pyquery | 2.0.0 | pyrsistent | 0.15.5 |
pysal | 23.1 | pyscreenshot | 3.1 |
pyserial | 3.4 | pysftp | 0.2.9 |
pyshp | 2.3.1 | pysndfile | 1.4.4 |
PySocks | 1.7.1 | pyspark | 3.3.2 |
pystac | 1.7.1 | pystac-client | 0.6.1 |
pytest | 7.2.2 | pytest-cov | 4.0.0 |
pytest-forked | 1.6.0 | pytest-mock | 3.10.0 |
pytest-runner | 6.0.0 | pytest-xdist | 3.2.1 |
python-apt | 2.0.1+ubuntu0.20.4.1 | python-box | 7.0.1 |
python-crfsuite | 0.9.8 | python-daemon | 3.0.1 |
python-dateutil | 2.8.2 | python-debian | =0.1.36ubuntu1 |
python-distutils-extra | 2.39 | python-docx | 0.8.11 |
python-dotenv | 1.0.0 | python-editor | 1.0.4 |
python-gitlab | 3.13.0 | python-gnupg | 0.5.0 |
python-http-client | 3.3.7 | python-jose | 3.3.0 |
python-json-logger | 2.0.7 | python-jwt | 4.0.0 |
python-keycloak | 2.14.0 | python-Levenshtein | 0.20.9 |
python-magic | 0.4.27 | python-multipart | 0.0.6 |
python-nvd3 | 0.15.0 | python-slugify | 8.0.1 |
python-stdnum | 1.18 | python-twitter | 3.5 |
python-utils | 3.5.2 | pytimeparse | 1.1.8 |
pytz | 2022.7.1 | pytz-deprecation-shim | 0.1.0.post0 |
pytzdata | 2020.1 | PyWavelets | 1.4.1 |
pywinrm | 0.3.0 | PyX | 0.16 |
PyYAML | 5.3.1 | pyzmq | 25.0.2 |
qtconsole | 5.4.2 | QtPy | 2.3.1 |
quantecon | 0.6.0 | querystring-parser | 1.2.4 |
queuelib | 1.6.2 | quilt3 | 5.2.0 |
rapidfuzz | 2.15.0 | rasterio | 1.3.6 |
rasterstats | 0.18.0 | ratelim | 0.1.6 |
ratelimit | 2.2.1 | readme-renderer | 37.3 |
redis | 4.5.4 | redshift-connector | 2.0.910 |
regex | 2021.11.10 | reportlab | 3.6.12 |
reportlib | 3.4.0 | repoze.lru | 0.7 |
requests | 2.28.2 | requests-aws4auth | 1.2.2 |
requests-file | 1.5.1 | requests-futures | 1.0.0 |
requests-kerberos | 0.12.0 | requests-ntlm | 1.1.0 |
requests-oauthlib | 1.3.1 | requests-toolbelt | 0.10.1 |
requests-unixsocket | 0.2.0 | resampy | 0.4.2 |
resolvelib | 0.8.1 | responses | 0.18.0 |
retry | 0.9.2 | retrying | 1.3.4 |
reverse-geocoder | 1.5.1 | rfc3339-validator | 0.1.4 |
rfc3986 | 1.5.0 | rfc3986-validator | 0.1.1 |
rich | 13.3.3 | roman | 4.0 |
rsa | 4.9 | Rtree | 1.0.1 |
ruamel.yaml | 0.17.17 | ruamel.yaml.clib | 0.2.7 |
rvlib | 0.0.6 | s3fs | 0.6.0 |
s3transfer | 0.6.0 | sacremoses | 0.0.53 |
sankee | 0.2.3 | sarif-om | 1.0.4 |
sasl | 0.3.1 | scandir | 1.10.0 |
schema | 0.7.5 | scikit-image | 0.20.0 |
scikit-learn | 1.2.2 | scipy | 1.9.1 |
scooby | 0.7.1 | scp | 0.14.5 |
scramp | 1.4.4 | scrape | 0.11.3 |
Scrapy | 2.8.0 | seaborn | 0.12.2 |
SecretStorage | 2.3.1 | segregation | 2.3.1 |
selenium | 4.8.3 | selinux | 3.0 |
semantic-version | 2.10.0 | semver | 3.0.0 |
Send2Trash | 1.8.0 | sendgrid | 6.10.0 |
sentencepiece | 0.1.97 | sentry-sdk | 1.18.0 |
service-identity | 21.1.0 | setproctitle | 1.3.2 |
setuptools-scm | 7.1.0 | sh | 2.0.3 |
shap | 0.41.0 | Shapely | 1.8.5.post1 |
shellingham | 1.5.0.post1 | shortuuid | 1.0.11 |
simpervisor | 0.4 | simple-salesforce | 1.12.3 |
simplejson | 3.16.0 | singledispatch | 4.0.0 |
six | 1.14.0 | sklearn-pandas | 2.2.0 |
slack-sdk | 3.20.2 | slackclient | 2.9.4 |
slicer | 0.0.7 | smart-open | 6.3.0 |
smdebug-rulesconfig | 1.0.1 | smmap | 5.0.0 |
sniffio | 1.3.0 | snowballstemmer | 2.2.0 |
snowflake-connector-python | 3.0.2 | snowflake-sqlalchemy | 1.4.7 |
snuggs | 1.4.7 | sortedcontainers | 2.4.0 |
sos | 4.4 | soundfile | 0.12.1 |
soupsieve | 2.4 | soxr | 0.3.4 |
spacy | 3.5.1 | spacy-legacy | 3.0.12 |
spacy-loggers | 1.0.4 | spaghetti | 1.7.2 |
spams | 2.6.5.4 | spglm | 1.0.8 |
Sphinx | 6.1.3 | sphinxcontrib-applehelp | 1.0.4 |
sphinxcontrib-devhelp | 1.0.2 | sphinxcontrib-htmlhelp | 2.0.1 |
sphinxcontrib-jsmath | 1.0.1 | sphinxcontrib-qthelp | 1.0.3 |
sphinxcontrib-serializinghtml | 1.1.5 | spint | 1.0.7 |
splot | 1.1.5.post1 | spopt | 0.5.0 |
spreg | 1.3.1 | spvcm | 0.3.0 |
SQLAlchemy | 1.4.41 | SQLAlchemy-JSONField | 1.0.1.post0 |
SQLAlchemy-Utils | 0.40.0 | sqlalchemy2-stubs | 0.0.2a32 |
sqlmodel | 0.0.8 | sqlparse | 0.4.3 |
srsly | 2.4.6 | ssh-import-id | 5.10 |
sshtunnel | 0.4.0 | stack-data | 0.6.2 |
starkbank-ecdsa | 2.2.0 | starlette | 0.26.1 |
statsd | 4.0.1 | statsmodels | 0.13.5 |
stevedore | 5.0.0 | stringcase | 1.2.0 |
structlog | 22.3.0 | swagger-ui-bundle | 0.0.9 |
sympy | 1.11.1 | systemd-python | 234 |
tabulate | 0.9.0 | tangled-up-in-unicode | 0.2.0 |
tblib | 1.7.0 | tenacity | 8.2.2 |
tensorboard | 2.12.1 | tensorboard-data-server | 0.7.0 |
tensorboard-plugin-wit | 1.8.1 | tensorboardX | 2.5 |
tensorflow | 2.12.0 | tensorflow-estimator | 2.12.0 |
tensorflow-io-gcs-filesystem | 0.32.0 | termcolor | 2.2.0 |
terminado | 0.17.1 | testpath | 0.6.0 |
testresources | 2.0.1 | text-unidecode | 1.3 |
tf-estimator-nightly | 2.13.0.dev2023040308 | Theano | 1.0.5 |
thinc | 8.1.9 | threadpoolctl | 3.1.0 |
thrift | 0.16.0 | tifffile | 2023.3.21 |
timer | 0.2.2 | timezonefinder | 6.2.0 |
tinycss2 | 1.2.1 | tldextract | 3.4.0 |
tobler | 0.9.0 | tokenizers | 0.13.2 |
toml | 0.10.2 | tomli | 2.0.1 |
tomlkit | 0.11.7 | toolz | 0.12.0 |
torch | 2.0.0+cu118 | torchaudio | 2.0.1+cu118 |
torchvision | 0.15.1+cu118 | tornado | 6.2 |
tortoise-orm | 0.19.3 | tox | 4.4.8 |
tqdm | 4.64.1 | traitlets | 5.9.0 |
traittypes | 0.2.1 | transformers | 4.27.4 |
trio | 0.22.0 | trio-websocket | 0.10.2 |
triton | 2.0.0 | trove-classifiers | 2023.3.9 |
Twisted | 22.10.0 | txaio | 23.1.1 |
typed-ast | 1.5.4 | typeguard | 2.13.3 |
typer | 0.7.0 | types-PyYAML | 6.0.12.9 |
types-requests | 2.28.11.17 | types-urllib3 | 1.26.25.10 |
typing | 3.7.4.3 | typing-inspect | 0.8.0 |
typing_extensions | 4.5.0 | tzdata | 2023.3 |
tzlocal | 4.3 | ua-parser | 0.16.1 |
uamqp | 1.6.4 | ubuntu-advantage-tools | 8001 |
uc-micro-py | 1.0.1 | ujson | 5.7.0 |
unattended-upgrades | 0.1 | unicodecsv | 0.14.1 |
Unidecode | 1.3.6 | uri-template | 1.2.0 |
uritemplate | 4.1.1 | urllib3 | 1.26.15 |
usaddress | 0.5.10 | uvicorn | 0.21.1 |
uvloop | 0.17.0 | varname | 0.8.2 |
vega-datasets | 0.9.0 | vine | 5.0.0 |
virtualenv | 20.21.0 | virtualenv-clone | 0.5.7 |
visions | 0.7.5 | vpython | 7.6.4 |
w3lib | 2.1.1 | wadllib | 1.3.3 |
wasabi | 1.1.1 | watchdog | 3.0.0 |
watchtower | 3.0.1 | watergrid | 1.1.1 |
wcwidth | 0.2.6 | webcolors | 1.13 |
webencodings | 0.5.1 | websocket-client | 1.1.0 |
websockets | 11.0 | Werkzeug | 2.2.3 |
whitebox | 2.3.1 | whiteboxgui | 2.3.0 |
widgetsnbextension | 3.6.4 | woops | 0.2.1 |
wordcloud | 1.8.2.2 | workdays | 1.4 |
wrapt | 1.14.1 | wsproto | 1.2.0 |
WTForms | 3.0.1 | xarray | 2023.1.0 |
xlrd | 2.0.1 | XlsxWriter | 3.0.9 |
xlwt | 1.3.0 | xmltodict | 0.12.0 |
xxhash | 3.2.0 | xyzservices | 2023.2.0 |
y-py | 0.5.9 | yahoo-finance | 1.4.0 |
yarl | 1.8.2 | ydata-profiling | 4.1.2 |
yfinance | 0.2.14 | youtube-dl | 2021.12.17 |
youtube-search | 2.1.2 | youtube-search-python | 1.6.6 |
ypy-websocket | 0.8.2 | zeep | 4.2.1 |
zict | 2.2.0 | zipp | 3.15.0 |
zope.event | 4.6 | zope.interface | 6.0 |
package | version | package | version |
---|---|---|---|
absl-py | 0.15.0 | access | 1.1.8 |
adal | 1.2.7 | aenum | 3.1.11 |
affine | 2.3.1 | aiobotocore | 2.3.4 |
aioconsole | 0.5.1 | aiofiles | 22.1.0 |
aiohttp | 3.8.0 | aioitertools | 0.8.0 |
aiosignal | 1.2.0 | aiosqlite | 0.17.0 |
alabaster | 0.7.12 | alembic | 1.7.4 |
altair | 4.1.0 | amqp | 5.1.1 |
analytics-python | 1.4.0 | aniso8601 | 9.0.1 |
ansible | 6.4.0 | ansible-core | 2.13.4 |
antlr4-python3-runtime | 4.11.1 | anyio | 3.4.0 |
apache-airflow | 2.3.4 | apache-airflow-providers-common-sql | 1.2.0 |
apache-airflow-providers-ftp | 3.1.0 | apache-airflow-providers-http | 4.0.0 |
apache-airflow-providers-imap | 3.0.0 | apache-airflow-providers-sqlite | 3.2.1 |
apispec | 3.3.2 | appdirs | 1.4.4 |
applicationinsights | 0.11.10 | argcomplete | 2.0.0 |
argon2-cffi | 21.1.0 | argon2-cffi-bindings | 21.2.0 |
args | 0.1.0 | arrow | 1.2.3 |
asgiref | 3.5.2 | asn1crypto | 1.5.1 |
astor | 0.8.1 | astroid | 2.12.10 |
asttokens | 2.0.5 | astunparse | 1.6.3 |
async-generator | 1.10 | async-timeout | 4.0.2 |
asynctest | 0.13.0 | atomicwrites | 1.4.1 |
attrs | 21.4.0 | audioread | 2.1.9 |
Authlib | 1.1.0 | autobahn | 21.3.1 |
autograd | 1.4 | Automat | 20.2.0 |
avro | 1.11.1 | avro-python3 | 1.10.2 |
aws-cdk.assets | 1.173.0 | aws-cdk.aws-applicationautoscaling | 1.173.0 |
aws-cdk.aws-autoscaling-common | 1.173.0 | aws-cdk.aws-cloudformation | 1.173.0 |
aws-cdk.aws-cloudwatch | 1.173.0 | aws-cdk.aws-codeguruprofiler | 1.173.0 |
aws-cdk.aws-codestarnotifications | 1.173.0 | aws-cdk.aws-ec2 | 1.173.0 |
aws-cdk.aws-ecr | 1.173.0 | aws-cdk.aws-ecr-assets | 1.173.0 |
aws-cdk.aws-efs | 1.173.0 | aws-cdk.aws-events | 1.173.0 |
aws-cdk.aws-glue | 1.173.0 | aws-cdk.aws-iam | 1.173.0 |
aws-cdk.aws-kinesis | 1.173.0 | aws-cdk.aws-kms | 1.173.0 |
aws-cdk.aws-lambda | 1.173.0 | aws-cdk.aws-logs | 1.173.0 |
aws-cdk.aws-logs-destinations | 1.173.0 | aws-cdk.aws-s3 | 1.173.0 |
aws-cdk.aws-s3-assets | 1.173.0 | aws-cdk.aws-signer | 1.173.0 |
aws-cdk.aws-sns | 1.173.0 | aws-cdk.aws-sqs | 1.173.0 |
aws-cdk.aws-ssm | 1.173.0 | aws-cdk.cloud-assembly-schema | 1.173.0 |
aws-cdk.core | 1.173.0 | aws-cdk.custom-resources | 1.173.0 |
aws-cdk.cx-api | 1.173.0 | aws-cdk.region-info | 1.173.0 |
aws-requests-auth | 0.4.3 | awscli | 1.18.69 |
azure-common | 1.1.28 | azure-core | 1.25.1 |
azure-cosmos | 4.3.0 | azure-cosmosdb-nspkg | 2.0.2 |
azure-cosmosdb-table | 1.0.6 | azure-datalake-store | 0.0.52 |
azure-eventhub | 5.10.1 | azure-graphrbac | 0.61.1 |
azure-identity | 1.10.0 | azure-keyvault | 4.2.0 |
azure-keyvault-certificates | 4.5.1 | azure-keyvault-keys | 4.6.1 |
azure-keyvault-secrets | 4.5.1 | azure-mgmt-authorization | 2.0.0 |
azure-mgmt-containerregistry | 10.0.0 | azure-mgmt-core | 1.3.2 |
azure-mgmt-keyvault | 10.1.0 | azure-mgmt-resource | 21.1.0 |
azure-mgmt-storage | 20.1.0 | azure-nspkg | 3.0.2 |
azure-storage-blob | 12.13.1 | azure-storage-common | 2.1.0 |
azure-storage-file-datalake | 12.8.0 | azure-storage-queue | 12.4.0 |
Babel | 2.9.1 | backcall | 0.2.0 |
backoff | 1.10.0 | backports.tempfile | 1.0 |
backports.weakref | 1.0.post1 | backports.zoneinfo | 0.2.1 |
base64io | 1.0.3 | bcrypt | 3.2.0 |
beautifulsoup4 | 4.10.0 | billiard | 4.0.2 |
black | 22.8.0 | bleach | 4.1.0 |
blinker | 1.4 | blis | 0.7.5 |
bokeh | 2.4.1 | boltons | 21.0.0 |
boto | 2.49.0 | boto3 | 1.21.0 |
botocore | 1.24.21 | Bottleneck | 1.3.5 |
bqplot | 0.12.33 | branca | 0.4.2 |
Brotli | 1.0.9 | brotlipy | 0.7.0 |
bs4 | 0.0.1 | build | 0.8.0 |
bytecode | 0.13.0 | CacheControl | 0.12.11 |
cached-property | 1.5.2 | cachelib | 0.9.0 |
cachetools | 4.2.4 | cachy | 0.3.0 |
catalogue | 2.0.6 | cattrs | 22.1.0 |
certifi | 2019.11.28 | certipy | 0.1.3 |
cffi | 1.15.1 | cfgv | 3.3.1 |
chainer | 7.8.0 | chardet | 4.0.0 |
charset-normalizer | 2.0.12 | cleo | 1.0.0a5 |
click | 8.0.3 | click-didyoumean | 0.3.0 |
click-plugins | 1.1.1 | click-repl | 0.2.0 |
clickclick | 20.10.2 | cligj | 0.7.2 |
clikit | 0.6.2 | clint | 0.5.1 |
cloud-init | 22.2 | cloudpickle | 2.0.0 |
colorama | 0.4.3 | coloredlogs | 15.0.1 |
colorlog | 4.8.0 | colour | 0.1.5 |
commonmark | 0.9.1 | conda | 4.3.16 |
configobj | 5.0.6 | configparser | 5.3.0 |
confluent-kafka | 1.9.2 | connexion | 2.14.1 |
constantly | 15.1.0 | constructs | 3.4.99 |
contextily | 1.2.0 | contextlib2 | 21.6.0 |
convertdate | 2.4.0 | countryinfo | 0.1.2 |
coverage | 6.2 | coveralls | 3.3.1 |
cramjam | 2.5.0 | crashtest | 0.3.1 |
crcmod | 1.7 | cron-descriptor | 1.2.31 |
croniter | 1.3.7 | cryptography | 3.4.8 |
css-html-js-minify | 2.5.5 | cssselect | 1.1.0 |
cssutils | 2.5.1 | cupy-cuda111 | 9.5.0 |
curlify | 2.2.1 | cx-Oracle | 8.3.0 |
cycler | 0.11.0 | cymem | 2.0.6 |
Cython | 0.29.24 | dash | 2.0.0 |
dash-core-components | 2.0.0 | dash-html-components | 2.0.0 |
dash-renderer | 1.9.1 | dash-table | 5.0.0 |
dask | 2021.12.0 | databricks-cli | 0.17.3 |
dataclasses | 0.6 | dataclasses-json | 0.5.7 |
datadog | 0.44.0 | dataprep | 0.4.3 |
datascience | 0.17.0 | datasets | 2.4.0 |
dateparser | 1.1.1 | DateTime | 4.7 |
db-dtypes | 1.0.3 | dbus-python | 1.2.16 |
ddsketch | 2.0.4 | ddtrace | 1.4.5 |
debugpy | 1.5.1 | decorator | 4.4.2 |
deepdiff | 5.8.1 | defusedxml | 0.7.1 |
delta-spark | 2.0.0 | Deprecated | 1.2.13 |
deprecation | 2.1.0 | descartes | 1.1.0 |
dill | 0.3.2 | dipy | 1.4.1 |
distlib | 0.3.6 | distributed | 2021.12.0 |
distro | 1.4.0 | distro-info | 1.0 |
Django | 4.1.1 | djangorestframework | 3.13.1 |
dmri-amico | 1.3.0 | dmri-commit | 1.5.0 |
dnspython | 2.2.1 | docker | 5.0.0 |
docopt | 0.6.2 | docutils | 0.15.2 |
dulwich | 0.20.46 | dynamo-json | 1.2.0 |
earthengine-api | 0.1.318 | EasyProcess | 0.3 |
ebaysdk | 2.2.0 | ec2-hibinit-agent | 1.0.0 |
ecdsa | 0.17.0 | ee-extra | 0.0.14 |
eemeter | 3.1.0 | eli5 | 0.11.0 |
email-validator | 1.3.0 | emoji | 2.1.0 |
entrypoint2 | 0.2.4 | entrypoints | 0.3 |
enum34 | 1.1.10 | esda | 2.4.1 |
et-xmlfile | 1.1.0 | etils | 0.8.0 |
exceptiongroup | 1.0.0rc9 | exchange-calendars | 4.2.3 |
execnet | 1.9.0 | executing | 0.8.3 |
facebook-business | 14.0.0 | facebook-sdk | 3.1.0 |
facebook-wda | 1.4.6 | Faker | 14.2.0 |
fastapi | 0.85.0 | fastavro | 1.6.1 |
fasteners | 0.17.3 | fastjsonschema | 2.16.1 |
fastnumbers | 3.2.1 | fastparquet | 0.8.3 |
fastrlock | 0.8 | fasttext | 0.9.2 |
ffmpeg-python | 0.2.0 | ffmpy | 0.3.0 |
filelock | 3.4.1 | Fiona | 1.8.21 |
fire | 0.4.0 | flake8 | 5.0.4 |
Flask | 2.0.2 | Flask-AppBuilder | 4.1.3 |
Flask-Babel | 2.0.0 | Flask-CacheBuster | 1.0.0 |
Flask-Caching | 2.0.1 | Flask-Compress | 1.10.1 |
Flask-Cors | 3.0.10 | Flask-JWT-Extended | 4.4.4 |
Flask-Login | 0.6.2 | Flask-Session | 0.4.0 |
Flask-SQLAlchemy | 2.5.1 | Flask-WTF | 0.15.1 |
flatbuffers | 2.0 | folium | 0.12.1.post1 |
fonttools | 4.34.4 | freezegun | 1.2.2 |
frozenlist | 1.3.1 | fsspec | 2022.5.0 |
funcsigs | 1.0.2 | future | 0.18.2 |
futures | 3.0.5 | fuzzywuzzy | 0.18.0 |
gast | 0.4.0 | gcsfs | 2022.5.0 |
GDAL | 3.0.4 | gdown | 4.5.1 |
gdspy | 1.6.12 | geeadd | 0.5.5 |
geemap | 0.16.2 | gensim | 4.1.2 |
geo-py | 0.4 | geocoder | 1.38.1 |
geographiclib | 1.52 | geoip2 | 4.6.0 |
geojson | 2.5.0 | geopandas | 0.11.1 |
geopy | 2.2.0 | geotext | 0.4.0 |
gevent | 21.12.0 | giddy | 2.3.3 |
gitapi | 1.0.1 | gitdb | 4.0.9 |
GitPython | 3.1.27 | goflow | 0.1.2 |
google-api-core | 2.8.2 | google-api-python-client | 1.12.11 |
google-auth | 2.11.0 | google-auth-httplib2 | 0.0.4 |
google-auth-oauthlib | 0.4.6 | google-cloud-appengine-logging | 1.1.4 |
google-cloud-audit-log | 0.2.4 | google-cloud-bigquery | 3.3.2 |
google-cloud-bigquery-storage | 2.15.0 | google-cloud-bigtable | 2.11.3 |
google-cloud-core | 2.3.2 | google-cloud-datastore | 2.8.1 |
google-cloud-dlp | 3.9.0 | google-cloud-firestore | 2.6.1 |
google-cloud-language | 2.5.2 | google-cloud-logging | 3.2.2 |
google-cloud-pubsub | 2.13.6 | google-cloud-pubsublite | 1.4.3 |
google-cloud-secret-manager | 2.12.4 | google-cloud-spanner | 3.20.0 |
google-cloud-storage | 2.5.0 | google-crc32c | 1.3.0 |
google-pasta | 0.2.0 | google-resumable-media | 2.3.3 |
googleapis-common-protos | 1.56.4 | googlemaps | 4.5.3 |
gradio | 2.4.1 | graphviz | 0.17 |
great-expectations | 0.15.23 | greenlet | 1.1.2 |
gremlinpython | 3.6.1 | grpc-google-iam-v1 | 0.12.4 |
grpcio | 1.49.0 | grpcio-status | 1.41.0 |
grpcio-tools | 1.41.0 | gspread | 5.5.0 |
gunicorn | 20.1.0 | h11 | 0.12.0 |
h2 | 3.2.0 | h3 | 3.7.4 |
h5netcdf | 1.0.2 | h5py | 3.5.0 |
haversine | 2.6.0 | hdfs | 2.7.0 |
hdfs3 | 0.3.1 | HeapDict | 1.0.1 |
hgapi | 1.7.4 | hibagent | 1.0.1 |
hijri-converter | 2.2.4 | holidays | 0.16 |
hpack | 3.0.0 | html5lib | 1.1 |
htmlmin | 0.1.12 | httpcore | 0.13.7 |
httplib2 | 0.15.0 | httplib2shim | 0.0.3 |
httptools | 0.5.0 | httpx | 1.0.0b0 |
huggingface-hub | 0.9.1 | humanfriendly | 10.0 |
humanize | 4.3.0 | hvac | 1.0.1 |
hyperframe | 5.2.0 | hyperlink | 21.0.0 |
ibm-cloud-sdk-core | 3.16.0 | ibm-watson | 6.1.0 |
identify | 2.5.5 | idna | 2.8 |
ijson | 3.1.4 | ImageHash | 4.3.0 |
imageio | 2.10.1 | imageio-ffmpeg | 0.4.5 |
imagesize | 1.3.0 | importlib-metadata | 4.10.0 |
importlib-resources | 5.3.0 | incremental | 21.3.0 |
inequality | 1.0.0 | inflection | 0.5.1 |
iniconfig | 1.1.1 | invoke | 1.7.1 |
ipaddress | 1.0.23 | ipyevents | 2.0.1 |
ipyfilechooser | 0.6.0 | ipykernel | 6.4.2 |
ipyleaflet | 0.17.0 | ipysheet | 0.5.0 |
ipython | 7.29.0 | ipython-genutils | 0.2.0 |
ipytree | 0.2.1 | ipywidgets | 7.6.5 |
iso8601 | 1.0.2 | isodate | 0.6.1 |
isort | 5.10.1 | itemadapter | 0.4.0 |
itemloaders | 1.0.4 | itsdangerous | 2.0.1 |
jarowinkler | 1.2.0 | jax | 0.3.17 |
jdcal | 1.4.1 | jedi | 0.18.0 |
jeepney | 0.7.1 | Jinja2 | 3.0.3 |
jira | 3.4.1 | jmespath | 0.10.0 |
joblib | 1.1.0 | JPype1 | 1.4.0 |
jschema-to-python | 1.2.3 | jsii | 1.67.0 |
json5 | 0.9.6 | jsondiff | 2.0.0 |
jsonlines | 1.2.0 | jsonpatch | 1.22 |
jsonpath-ng | 1.5.3 | jsonpickle | 2.2.0 |
jsonpointer | 2.0 | jsonschema | 4.10.0 |
junit-xml | 1.9 | jupyter | 1.0.0 |
jupyter-client | 7.0.6 | jupyter-console | 6.4.0 |
jupyter-core | 4.9.1 | jupyter-server | 1.11.1 |
jupyter-server-proxy | 3.1.0 | jupyter-telemetry | 0.1.0 |
jupyterhub | 1.4.2 | jupyterhub-idle-culler | 1.2.1 |
jupyterhub-nativeauthenticator | 1.0.5 | jupyterlab | 3.2.3 |
jupyterlab-pygments | 0.1.2 | jupyterlab-server | 2.8.2 |
jupyterlab-widgets | 1.0.2 | jwcrypto | 1.4.2 |
jwt | 1.3.1 | kafka-python | 2.0.2 |
keplergl | 0.3.2 | keras | 2.8.0 |
Keras-Applications | 1.0.8 | Keras-Preprocessing | 1.1.2 |
keycloakauthenticator | 2.0.0 | keyring | 21.2.0 |
kiwisolver | 1.3.2 | knack | 0.10.0 |
kombu | 5.2.4 | korean-lunar-calendar | 0.3.1 |
kubernetes | 24.2.0 | laspy | 2.2.0 |
launchpadlib | 1.10.13 | lazr.restfulclient | 0.14.2 |
lazr.uri | 1.0.3 | lazy-object-proxy | 1.7.1 |
leafmap | 0.10.3 | libclang | 12.0.0 |
libcst | 0.4.7 | libpysal | 4.6.2 |
librosa | 0.8.1 | lightgbm | 3.3.1 |
linkify-it-py | 2.0.0 | llvmlite | 0.39.0 |
locket | 0.2.1 | lockfile | 0.12.2 |
logzero | 1.7.0 | lorem | 0.1.1 |
lxml | 4.6.5 | M2Crypto | 0.38.0 |
makefun | 1.15.0 | Mako | 1.1.5 |
mamba | 0.11.2 | mapclassify | 2.4.3 |
Markdown | 3.3.4 | markdown-it-py | 2.1.0 |
markdown2 | 2.4.1 | MarkupSafe | 2.0.1 |
marshmallow | 3.18.0 | marshmallow-enum | 1.5.1 |
marshmallow-oneofschema | 3.0.1 | marshmallow-sqlalchemy | 0.26.1 |
matplotlib | 3.5.2 | matplotlib-inline | 0.1.3 |
maxminddb | 2.2.0 | mccabe | 0.7.0 |
mdit-py-plugins | 0.3.0 | mdurl | 0.1.2 |
mechanize | 0.4.7 | meep | 1.0.6 |
mercantile | 1.2.1 | Metaphone | 0.6 |
mgwr | 2.1.2 | missingno | 0.5.1 |
mistune | 0.8.4 | mlflow | 1.28.0 |
mlpack | 3.4.2 | mock | 4.0.3 |
momepy | 0.5.3 | monotonic | 1.6 |
more-itertools | 4.2.0 | moto | 4.0.3 |
moviepy | 1.0.3 | mpi4py | 3.1.1 |
mpmath | 1.2.1 | msal | 1.18.0 |
msal-extensions | 1.0.0 | msgpack | 1.0.2 |
msrest | 0.7.1 | msrestazure | 0.6.4 |
mss | 6.1.0 | multidict | 5.2.0 |
multimethod | 1.8 | multiprocess | 0.70.10 |
multitasking | 0.0.11 | munch | 2.5.0 |
murmurhash | 1.0.6 | mutagen | 1.45.1 |
mypy | 0.971 | mypy-extensions | 0.4.3 |
mysql-connector-python | 8.0.30 | mysqlclient | 2.1.1 |
nbclassic | 0.3.4 | nbclient | 0.5.4 |
nbconvert | 6.2.0 | nbformat | 5.1.3 |
nbgitpuller | 1.0.2 | nbsphinx | 0.8.8 |
ndg-httpsclient | 0.5.1 | nest-asyncio | 1.5.1 |
netaddr | 0.8.0 | netifaces | 0.10.4 |
networkx | 2.8.5 | nibabel | 3.2.1 |
nlopt | 2.7.1 | nltk | 3.7 |
nodeenv | 1.7.0 | nose | 1.3.7 |
notebook | 6.4.12 | numba | 0.56.0 |
numpy | 1.21.0 | nycflights13 | 0.0.3 |
oauth2client | 4.1.3 | oauthenticator | 14.2.0 |
oauthlib | 3.1.0 | ogr | 0.38.1 |
olefile | 0.46 | onetimepass | 1.0.1 |
onnxruntime | 1.12.1 | opencensus | 0.11.0 |
opencensus-context | 0.1.3 | opencensus-ext-azure | 1.1.7 |
opencv-contrib-python | 4.6.0.66 | opencv-python | 4.5.4.58 |
openflow | 0.1.2.4 | openpyxl | 3.0.10 |
opensearch-py | 2.0.0 | opt-einsum | 3.3.0 |
ordered-set | 4.1.0 | orjson | 3.8.0 |
oscrypto | 1.3.0 | osmnx | 1.2.0 |
outcome | 1.1.0 | overrides | 6.2.0 |
packaging | 21.3 | pamela | 1.0.0 |
pandas | 1.4.3 | pandas-gbq | 0.17.8 |
pandas-market-calendars | 4.0 | pandas-profiling | 3.3.0 |
pandas-usaddress | 0.21 | pandasql | 0.7.3 |
pandocfilters | 1.5.0 | paramiko | 2.8.0 |
parsedatetime | 2.6 | parsel | 1.6.0 |
parso | 0.8.2 | partd | 1.2.0 |
pastel | 0.2.1 | pathlib2 | 2.3.7.post1 |
pathos | 0.2.0 | pathspec | 0.9.0 |
pathy | 0.6.1 | patsy | 0.5.2 |
pbr | 5.6.0 | pdfkit | 0.6.1 |
pendulum | 2.1.2 | pep517 | 0.13.0 |
pexpect | 4.7.0 | pg8000 | 1.29.1 |
phik | 0.12.2 | phonenumbers | 8.12.55 |
pickleshare | 0.7.5 | pika | 1.3.0 |
Pillow | 9.2.0 | pip-tools | 6.8.0 |
pipenv | 2022.9.8 | pkginfo | 1.8.3 |
pkgutil_resolve_name | 1.3.10 | platformdirs | 2.5.2 |
plotly | 5.3.1 | pluggy | 1.0.0 |
ply | 3.11 | Pmw | 2.1.1 |
poetry | 1.2.1 | poetry-core | 1.2.0 |
poetry-plugin-export | 1.0.7 | pointpats | 2.2.0 |
pooch | 1.5.2 | portalocker | 2.5.1 |
postal-address | 22.4.22.1 | pox | 0.3.1 |
ppft | 1.7.6.5 | pprintpp | 0.4.0 |
pre-commit | 2.20.0 | premailer | 3.10.0 |
preshed | 3.0.6 | prettytable | 3.4.1 |
priority | 1.3.0 | prison | 0.2.1 |
probableparsing | 0.0.1 | proglog | 0.1.9 |
progressbar2 | 4.0.0 | prometheus-client | 0.12.0 |
prometheus-flask-exporter | 0.20.3 | promise | 2.3 |
prompt-toolkit | 3.0.21 | Protego | 0.1.16 |
proto-plus | 1.22.1 | protobuf | 3.19.1 |
protobuf3-to-dict | 0.1.5 | psutil | 5.8.0 |
psycopg2 | 2.9.3 | psycopg2-binary | 2.9.3 |
ptyprocess | 0.7.0 | publication | 0.0.3 |
PuLP | 2.6.0 | pure-eval | 0.2.2 |
py | 1.10.0 | py4j | 0.10.9.2 |
pyarrow | 6.0.0 | pyasn1 | 0.4.8 |
pyasn1-modules | 0.2.8 | pyathena | 2.14.0 |
pybind11 | 2.10.0 | pycairo | 1.20.1 |
pycodestyle | 2.9.1 | pycosat | 0.6.3 |
pycountry | 22.3.5 | pycountry-convert | 0.7.2 |
pycparser | 2.20 | pycron | 3.0.0 |
PyCRS | 1.0.2 | pycrypto | 2.6.1 |
pycryptodome | 3.11.0 | pycryptodomex | 3.15.0 |
pycurl | 7.45.1 | pydantic | 1.8.2 |
pydata-google-auth | 1.4.0 | pydeequ | 1.0.1 |
PyDispatcher | 2.0.5 | pydot | 1.4.2 |
pydotplus | 2.0.2 | pydub | 0.25.1 |
pyexpect | 1.0.21 | pyflakes | 2.5.0 |
pygame | 2.0.2 | pygdal | 3.0.4.10 |
pygeos | 0.12.0 | PyGithub | 1.55 |
pyglet | 1.5.21 | Pygments | 2.10.0 |
PyGObject | 3.36.0 | PyGreSQL | 5.2.2 |
pyhcl | 0.4.4 | PyJWT | 2.5.0 |
pylev | 1.4.0 | pylint | 2.15.2 |
pyluach | 2.0.1 | PyMeeus | 0.5.11 |
pymongo | 3.12.3 | pymssql | 2.2.5 |
PyMySQL | 1.0.2 | PyNaCl | 1.4.0 |
pyodbc | 4.0.34 | pyOpenSSL | 19.0.0 |
pypandoc | 1.8.1 | pyparsing | 2.4.7 |
PyPDF4 | 1.27.0 | pyperclip | 1.8.2 |
pypika-tortoise | 0.1.6 | pypopulation | 2020.3 |
pyproj | 3.3.1 | pyquery | 1.4.3 |
pyrsistent | 0.14.11 | pysal | 2.7.0 |
pyscreenshot | 3.0 | pyserial | 3.4 |
pysftp | 0.2.9 | pyshp | 2.3.1 |
pysndfile | 1.4.4 | PySocks | 1.7.1 |
pyspark | 3.2.0 | pystac | 1.6.1 |
pystac-client | 0.4.0 | pystache | 0.6.0 |
pytest | 6.2.5 | pytest-cov | 3.0.0 |
pytest-forked | 1.4.0 | pytest-mock | 3.8.2 |
pytest-runner | 6.0.0 | pytest-xdist | 2.5.0 |
python-apt | 2.0.0+ubuntu0.20.4.7 | python-box | 6.0.2 |
python-crfsuite | 0.9.8 | python-daemon | 2.3.1 |
python-dateutil | 2.8.2 | python-debian | 0.1.43 |
python-docx | 0.8.11 | python-dotenv | 0.21.0 |
python-editor | 1.0.4 | python-gitlab | 3.8.0 |
python-gnupg | 0.5.0 | python-http-client | 3.3.7 |
python-jose | 3.3.0 | python-json-logger | 2.0.2 |
python-jwt | 3.3.4 | python-keycloak | 0.26.1 |
python-Levenshtein | 0.12.2 | python-magic | 0.4.27 |
python-nvd3 | 0.15.0 | python-slugify | 6.1.2 |
python-spams | 2.6.1.11 | python-stdnum | 1.17 |
python-twitter | 3.5 | python-utils | 3.3.3 |
pytimeparse | 1.1.8 | pytz | 2021.3 |
pytz-deprecation-shim | 0.1.0.post0 | pytzdata | 2020.1 |
PyWavelets | 1.1.1 | PyX | 0.15 |
PyYAML | 5.4.1 | pyzmq | 22.3.0 |
qtconsole | 5.1.1 | QtPy | 1.11.2 |
quantecon | 0.5.3 | querystring-parser | 1.2.4 |
queuelib | 1.6.2 | quilt3 | 5.0.0 |
rapidfuzz | 2.4.2 | rasterio | 1.3.0 |
rasterstats | 0.17.0 | ratelim | 0.1.6 |
ratelimit | 2.2.1 | readme-renderer | 37.1 |
redis | 4.0.0 | redshift-connector | 2.0.905 |
regex | 2021.11.10 | reportlab | 3.6.11 |
reportlib | 3.4.0 | repoze.lru | 0.7 |
requests | 2.27.1 | requests-aws4auth | 1.1.2 |
requests-file | 1.5.1 | requests-futures | 1.0.0 |
requests-oauthlib | 1.3.0 | requests-toolbelt | 0.9.1 |
requests-unixsocket | 0.2.0 | resampy | 0.2.2 |
resolvelib | 0.8.1 | responses | 0.18.0 |
retry | 0.9.2 | retrying | 1.3.3 |
reverse-geocoder | 1.5 | rfc3986 | 1.5.0 |
rich | 12.5.1 | roman | 2.0.0 |
rsa | 3.4.2 | Rtree | 1.0.0 |
ruamel.yaml | 0.17.17 | ruamel.yaml.clib | 0.2.6 |
rvlib | 0.0.6 | s3fs | 2022.5.0 |
s3transfer | 0.5.2 | sacremoses | 0.0.53 |
sagemaker | 2.100.0 | sankee | 0.2.0 |
sarif-om | 1.0.4 | sasl | 0.3.1 |
scandir | 1.10.0 | schema | 0.7.5 |
scikit-image | 0.18.3 | scikit-learn | 1.0.1 |
scipy | 1.7.1 | scooby | 0.6.0 |
scp | 0.14.4 | scramp | 1.4.1 |
scrape | 0.11.1 | Scrapy | 2.5.1 |
seaborn | 0.11.2 | SecretStorage | 3.3.3 |
segregation | 2.3.1 | selenium | 3.9.0 |
semantic-version | 2.10.0 | semver | 2.13.0 |
Send2Trash | 1.8.0 | sendgrid | 6.9.7 |
sentencepiece | 0.1.97 | sentry-sdk | 1.8.0 |
service-identity | 21.1.0 | setproctitle | 1.3.2 |
setuptools-scm | 7.0.5 | sh | 1.14.3 |
shap | 0.41.0 | Shapely | 1.8.2 |
shellingham | 1.5.0 | shortuuid | 1.0.9 |
simpervisor | 0.4 | simple-salesforce | 1.12.2 |
simplejson | 3.16.0 | singledispatch | 3.7.0 |
six | 1.14.0 | sklearn | 0.0 |
sklearn-pandas | 2.2.0 | slack-sdk | 3.18.3 |
slackclient | 2.9.4 | slicer | 0.0.7 |
smart-open | 5.2.1 | smdebug-rulesconfig | 1.0.1 |
smmap | 5.0.0 | sniffio | 1.2.0 |
snowballstemmer | 2.2.0 | snowflake-connector-python | 2.6.0 |
snowflake-sqlalchemy | 1.4.1 | snuggs | 1.4.7 |
sortedcontainers | 2.4.0 | sos | 0.22.7 |
SoundFile | 0.10.3.post1 | soupsieve | 2.2.1 |
spacy | 3.1.4 | spacy-legacy | 3.0.8 |
spaghetti | 1.6.6 | spams | 2.6.5.3 |
spglm | 1.0.8 | Sphinx | 4.5.0 |
sphinxcontrib-applehelp | 1.0.2 | sphinxcontrib-devhelp | 1.0.2 |
sphinxcontrib-htmlhelp | 2.0.0 | sphinxcontrib-jsmath | 1.0.1 |
sphinxcontrib-qthelp | 1.0.3 | sphinxcontrib-serializinghtml | 1.1.5 |
spint | 1.0.7 | splot | 1.1.5.post1 |
spopt | 0.4.1 | spreg | 1.2.4 |
spvcm | 0.3.0 | SQLAlchemy | 1.4.39 |
SQLAlchemy-JSONField | 1.0.0 | SQLAlchemy-Utils | 0.38.3 |
sqlalchemy2-stubs | 0.0.2a24 | sqlmodel | 0.0.6 |
sqlparse | 0.4.2 | srsly | 2.4.2 |
ssh-import-id | 5.10 | sshtunnel | 0.4.0 |
stack-data | 0.5.0 | starkbank-ecdsa | 2.0.3 |
starlette | 0.20.4 | statsd | 3.3.0 |
statsmodels | 0.13.2 | stevedore | 4.0.0 |
stringcase | 1.2.0 | structlog | 22.1.0 |
swagger-ui-bundle | 0.0.9 | sympy | 1.10.1 |
systemd-python | 234 | tabulate | 0.8.9 |
tangled-up-in-unicode | 0.2.0 | tblib | 1.7.0 |
tenacity | 8.0.1 | tensorboard | 2.8.0 |
tensorboard-data-server | 0.6.1 | tensorboard-plugin-wit | 1.8.0 |
tensorboardX | 2.4 | tensorflow | 2.8.0 |
tensorflow-estimator | 2.10.0 | tensorflow-hub | 0.8.0 |
tensorflow-io-gcs-filesystem | 0.23.1 | tensorflow-metadata | 1.10.0 |
tensorflow-serving-api | 2.8.0 | tensorflow-text | 2.8.1 |
termcolor | 1.1.0 | terminado | 0.12.1 |
testpath | 0.5.0 | testresources | 2.0.1 |
text-unidecode | 1.3 | tf-estimator-nightly | 2.8.0.dev2021122109 |
Theano | 1.0.5 | thinc | 8.0.12 |
threadpoolctl | 3.0.0 | thrift | 0.16.0 |
tifffile | 2021.10.12 | timer | 0.2.2 |
timezonefinder | 5.2.0 | tinycss2 | 1.1.1 |
tldextract | 3.1.2 | tobler | 0.9.0 |
tokenizers | 0.12.1 | toml | 0.10.2 |
tomli | 2.0.1 | tomlkit | 0.11.1 |
toolz | 0.11.1 | torch | 1.11.0 |
torchaudio | 0.11.0 | torchvision | 0.12.0 |
tornado | 6.1 | tortoise-orm | 0.19.2 |
tox | 3.26.0 | tqdm | 4.62.3 |
traitlets | 5.1.1 | traittypes | 0.2.1 |
transformers | 4.22.1 | trio | 0.19.0 |
trio-websocket | 0.9.2 | Twisted | 21.7.0 |
txaio | 21.2.1 | typed-ast | 1.5.4 |
typeguard | 2.13.3 | typer | 0.4.0 |
types-PyYAML | 6.0.11 | types-requests | 2.28.10 |
types-urllib3 | 1.26.24 | typing | 3.7.4.3 |
typing-inspect | 0.8.0 | typing_extensions | 4.3.0 |
tzdata | 2022.2 | tzlocal | 4.2 |
ua-parser | 0.16.1 | uamqp | 1.6.0 |
ubuntu-advantage-tools | 27.9 | uc-micro-py | 1.0.1 |
ujson | 5.5.0 | unattended-upgrades | 0.1 |
unicodecsv | 0.14.1 | Unidecode | 1.3.4 |
uritemplate | 3.0.1 | urllib3 | 1.26.0 |
usaddress | 0.5.10 | uvicorn | 0.18.3 |
uvloop | 0.17.0 | varname | 0.8.3 |
vega-datasets | 0.9.0 | vine | 5.0.0 |
virtualenv | 20.16.5 | virtualenv-clone | 0.5.7 |
visions | 0.7.5 | vpython | 7.6.2 |
w3lib | 1.22.0 | wadllib | 1.3.3 |
wasabi | 0.8.2 | watchdog | 2.1.9 |
watchtower | 3.0.0 | watergrid | 1.1.1 |
Wave | 0.0.2 | waves | 0.2.6 |
wcwidth | 0.2.5 | webencodings | 0.5.1 |
websocket-client | 1.1.0 | websockets | 10.3 |
Werkzeug | 2.0.2 | whitebox | 2.1.4 |
whiteboxgui | 0.7.0 | widgetsnbextension | 3.5.2 |
wordcloud | 1.8.2.2 | workdays | 1.4 |
wrapt | 1.13.3 | wsproto | 1.0.0 |
WTForms | 2.3.3 | xarray | 2022.6.0 |
xgboost | 1.5.0 | xlrd | 2.0.1 |
XlsxWriter | 3.0.3 | xlwt | 1.3.0 |
xmltodict | 0.13.0 | xxhash | 3.0.0 |
xyzservices | 2022.6.0 | yahoo-finance | 1.4.0 |
yarl | 1.7.0 | yfinance | 0.1.74 |
youtube-dl | 2021.12.17 | youtube-search | 2.1.1 |
youtube-search-python | 1.6.6 | zeep | 4.1.0 |
zict | 2.0.0 | zipp | 3.6.0 |
zope.event | 4.5.0 | zope.interface | 5.4.0 |
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.0 |
abind | 1.4-5 | ACD | 1.5.3 |
acepack | 1.4.1 | actuar | 3.3-0 |
ada | 2.0-5 | ade4 | 1.7-19 |
ade4TkGUI | 0.3-1 | adegraphics | 1.0-16 |
adehabitatLT | 0.3.25 | adehabitatMA | 0.3.14 |
admisc | 0.29 | affxparser | 1.68.1 |
agricolae | 1.3-5 | akima | 0.6-3.4 |
AlgDesign | 1.2.1 | Amelia | 1.8.0 |
ape | 5.6-2 | arm | 1.12-2 |
aroma.apd | 0.6.1 | ascii | 2.4 |
ash | 1.0-15 | askpass | 1.1 |
assertthat | 0.2.1 | AUC | 0.3.2 |
backports | 1.4.1 | base64enc | 0.1-3 |
BB | 2019.10-1 | BDgraph | 2.68 |
bdsmatrix | 1.3-6 | BGLR | 1.1.0 |
BH | 1.78.0-0 | biganalytics | 1.1.21 |
biglars | 1.0.2 | biglm | 0.9-2.1 |
bigmemory | 4.6.1 | bigmemory.sri | 0.1.3 |
bigml | 0.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | bit | 4.0.4 |
bit64 | 4.0.5 | bitops | 1.0-7 |
blob | 1.2.3 | BLR | 1.6 |
bold | 1.2.0 | bpca | 1.3-4 |
BradleyTerry2 | 1.1-2 | brew | 1.0-7 |
brglm | 0.7.2 | brio | 1.1.3 |
broom | 1.0.0 | bslib | 0.4.0 |
BsMD | 2020.4.30 | cachem | 1.0.6 |
calibrator | 1.2-8 | callr | 3.7.1 |
carData | 3.0-5 | caret | 6.0-92 |
caTools | 1.18.2 | cellranger | 1.1.0 |
checkmate | 2.1.0 | chron | 2.3-57 |
CircStats | 0.2-6 | classInt | 0.4-7 |
cli | 3.3.0 | clipr | 0.8.0 |
clusterGeneration | 1.3.7 | coda | 0.19-4 |
coin | 1.4-2 | collapse | 1.8.6 |
colorspace | 2.0-3 | combinat | 0.0-8 |
commonmark | 1.8.0 | conditionz | 0.1.0 |
conf.design | 2.0.0 | contfrac | 1.1-12 |
corpcor | 1.6.10 | corrgram | 1.14 |
corrplot | 0.92 | cpp11 | 0.4.2 |
crayon | 1.5.1 | credentials | 1.3.2 |
crosstalk | 1.2.0 | crul | 1.2.0 |
cubature | 2.0.4.4 | curl | 4.3.2 |
CVST | 0.2-3 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | data.table | 1.14.2 |
DataExplorer | 0.8.2 | DBI | 1.1.3 |
deldir | 1.0-6 | dendextend | 1.16.0 |
DEoptimR | 1.0-11 | Deriv | 4.1.3 |
desc | 1.4.1 | deSolve | 1.33 |
devtools | 2.4.4 | dfidx | 0.0-5 |
dfoptim | 2020.10-1 | diagram | 1.6.5 |
dichromat | 2.0-0.1 | diffobj | 0.3.5 |
digest | 0.6.29 | dimRed | 0.2.6 |
diptest | 0.76-0 | discretization | 1.0-1.1 |
doBy | 4.6.13 | DoE.base | 1.2-1 |
doMC | 1.3.8 | doParallel | 1.0.17 |
dotCall64 | 1.0-1 | downlit | 0.4.2 |
dplyr | 1.0.9 | DRR | 0.0.4 |
dummies | 1.5.6 | dynamicTreeCut | 1.63-1 |
e1071 | 1.7-11 | EbayesThresh | 1.4-12 |
effects | 4.2-2 | ellipse | 0.4.3 |
ellipsis | 0.3.2 | elliptic | 1.4-0 |
emulator | 1.2-21 | equivalence | 0.7.2 |
estimability | 1.4.1 | ETLUtils | 1.5 |
evaluate | 0.15 | expint | 0.1-7 |
expm | 0.999-6 | fansi | 1.0.3 |
farver | 2.1.1 | fastICA | 1.2-3 |
fastmap | 1.1.0 | fastmatch | 1.1-3 |
fda | 6.0.5 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
ff | 4.0.7 | ffbase | 0.13.3 |
fields | 14.0 | filehash | 2.4-3 |
flashClust | 1.01-2 | flexmix | 2.3-18 |
FNN | 1.1.3.1 | fontawesome | 0.3.0 |
forcats | 0.5.1 | foreach | 1.5.2 |
formatR | 1.12 | Formula | 1.2-4 |
fpc | 2.2-9 | fs | 1.5.2 |
fts | 0.9.9.2 | functional | 0.6 |
future | 1.27.0 | future.apply | 1.9.0 |
gam | 1.20.2 | gamlss | 5.4-3 |
gamlss.data | 6.0-2 | gamlss.dist | 6.0-3 |
gclus | 1.3.2 | gdata | 2.18.0.1 |
geepack | 1.3.4 | genalg | 0.2.1 |
generics | 0.1.3 | genetics | 1.3.8.1.3 |
geosphere | 1.5-14 | gert | 1.7.0 |
ggdendro | 0.1.23 | ggforce | 0.3.3 |
ggformula | 0.10.1 | ggmap | 3.0.0 |
ggplot2 | 3.3.6 | ggrepel | 0.9.1 |
ggridges | 0.5.3 | ggstance | 0.3.5 |
gh | 1.3.0 | git2r | 0.30.1 |
gitcreds | 0.1.1 | glassoFast | 1.0 |
gld | 2.6.5 | glmnet | 4.1-4 |
globals | 0.16.0 | glue | 1.6.2 |
gmm | 1.6-6 | gmodels | 2.18.1.1 |
gmp | 0.6-5 | goftest | 1.2-3 |
googleVis | 0.7.0 | gower | 1.0.0 |
GPArotation | 2022.4-1 | gpclib | 1.5-6 |
gplots | 3.1.3 | gridBase | 0.4-7 |
gridExtra | 2.3 | gridGraphics | 0.5-1 |
gridSVG | 1.7-4 | grImport | 0.9-5 |
grImport2 | 0.2-0 | gsubfn | 0.7 |
gtable | 0.3.0 | gtools | 3.9.3 |
HaploSim | 1.8.4.1 | hardhat | 1.2.0 |
haven | 2.5.0 | hdrcde | 3.4 |
hexbin | 1.28.2 | hflights | 0.1 |
HH | 3.1-47 | highlight | 0.5.0 |
highr | 0.9 | Hmisc | 4.7-0 |
hms | 1.1.1 | htmlTable | 2.4.1 |
htmltools | 0.5.3 | htmlwidgets | 1.5.4 |
httpcode | 0.3.0 | httpuv | 1.6.5 |
httr | 1.4.3 | HydroMe | 2.0-1 |
HyperbolicDist | 0.6-4 | hypergeo | 1.2-13 |
ICC | 2.4.0 | igraph | 1.3.4 |
igraphdata | 1.0.1 | ineq | 0.2-13 |
ini | 0.3.1 | inline | 0.3.19 |
insight | 0.18.0 | interp | 1.1-3 |
intervals | 0.15.2 | introgress | 1.2.3 |
inum | 1.0-4 | ipred | 0.9-13 |
IRdisplay | 1.1 | IRkernel | 1.3 |
Iso | 0.0-18.1 | isoband | 0.2.5 |
iterators | 1.0.14 | itertools | 0.1-3 |
jpeg | 0.1-9 | jquerylib | 0.1.4 |
jsonlite | 1.8.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-31 | klaR | 1.7-1 |
knitr | 1.39 | ks | 1.13.5 |
labeling | 0.4.2 | labelled | 2.9.1 |
LaF | 0.8.4 | Lahman | 10.0-1 |
lars | 1.3 | later | 1.3.0 |
latticeExtra | 0.6-30 | lava | 1.6.10 |
lavaan | 0.6-12 | lavaan.survey | 1.1.3.1 |
lazyeval | 0.2.2 | lcda | 0.3.1 |
leaflet | 2.1.1 | leaflet.providers | 1.9.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
lgr | 0.4.3 | libcoin | 1.0-9 |
lifecycle | 1.0.1 | LIM | 1.4.7 |
limSolve | 1.5.6 | lisrelToR | 0.1.5 |
listenv | 0.8.0 | lme4 | 1.1-30 |
lmom | 2.9 | lmtest | 0.9-40 |
locfit | 1.5-9.6 | lokern | 1.1-9 |
lpSolve | 5.6.15 | lubridate | 1.8.0 |
magic | 1.6-0 | magrittr | 2.0.3 |
manipulateWidget | 0.11.1 | mapproj | 1.2.8 |
maps | 3.4.0 | maptools | 1.1-4 |
markdown | 1.1 | Matching | 4.10-2 |
MatchIt | 4.4.0 | mathjaxr | 1.6-0 |
matrixcalc | 1.0-5 | MatrixModels | 0.5-0 |
matrixStats | 0.62.0 | maxLik | 1.5-2 |
mboost | 2.9-7 | mclust | 5.4.10 |
mcmc | 0.9-7 | MCMCglmm | 2.34 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
Metrics | 0.1.4 | mi | 1.1 |
mice | 3.14.0 | microbenchmark | 1.4.9 |
mime | 0.12 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-2 | minqa | 1.2.4 |
misc3d | 0.9-1 | miscTools | 0.6-26 |
mitools | 2.4 | mlbench | 2.1-3 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlr3 | 0.13.4 | mlr3measures | 0.5.0 |
mlr3misc | 0.10.0 | mnormt | 2.1.0 |
ModelMetrics | 1.2.2.2 | modeltools | 0.2-23 |
moments | 0.14.1 | mondate | 0.10.02 |
mosaic | 1.8.3 | mosaicCore | 0.9.0 |
mosaicData | 0.20.2 | mratios | 1.4.2 |
multcomp | 1.4-20 | multicool | 0.1-12 |
munsell | 0.5.0 | mvMORPH | 1.1.6 |
mvtnorm | 1.1-3 | natserv | 1.0.0 |
network | 1.17.2 | networkD3 | 0.4 |
NISTnls | 0.9-13 | nloptr | 2.0.3 |
nls2 | 0.3-3 | nlstools | 2.0-0 |
nnls | 1.4 | nortest | 1.0-4 |
np | 0.60-11 | numbers | 0.8-2 |
numDeriv | 2016.8-1.1 | openssl | 2.0.2 |
openxlsx | 4.2.5 | optextras | 2019-12.4 |
ordinal | 2019.12-10 | PairedData | 1.1.1 |
palmerpenguins | 0.1.0 | paradox | 0.10.0 |
parallelly | 1.32.1 | partitions | 1.10-7 |
party | 1.3-10 | partykit | 1.2-16 |
pastecs | 1.3.21 | pbapply | 1.5-0 |
pbdZMQ | 0.3-7 | pbivnorm | 0.6.0 |
pbkrtest | 0.5.1 | pbmcapply | 1.5.1 |
PBSmapping | 2.73.1 | pcaPP | 2.0-2 |
pedigree | 1.4.1 | permute | 0.9-7 |
phangorn | 2.9.0 | phytools | 1.0-3 |
pillar | 1.8.0 | pixmap | 0.4-12 |
pkgbuild | 1.3.1 | pkgconfig | 2.0.3 |
pkgdown | 2.0.6 | pkgload | 1.3.0 |
plm | 2.6-1 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.0 |
plotrix | 3.8-2 | pls | 2.8-1 |
plyr | 1.8.7 | png | 0.1-7 |
poLCA | 1.6.0.1 | polspline | 1.1.20 |
polyclip | 1.10-0 | polycor | 0.8-1 |
polynom | 1.4-1 | prabclus | 2.3-2 |
pracma | 2.3.8 | praise | 1.0.0 |
prettyunits | 1.1.1 | princurve | 2.1.6 |
pROC | 1.18.0 | processx | 3.7.0 |
prodlim | 2019.11.13 | profileModel | 0.6.1 |
profvis | 0.3.7 | progress | 1.2.2 |
progressr | 0.10.1 | promises | 1.2.0.1 |
proto | 1.0.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | ps | 1.7.1 |
pscl | 1.5.5 | psy | 1.2 |
psych | 2.2.5 | purrr | 0.3.4 |
qap | 0.1-2 | qtl | 1.52 |
quadprog | 1.5-8 | quantmod | 0.4.20 |
quantreg | 5.94 | questionr | 0.7.7 |
qvcalc | 1.0.2 | R.cache | 0.16.0 |
R.devices | 2.17.1 | R.filesets | 2.15.0 |
R.huge | 0.9.0 | R.matlab | 3.6.2 |
R.methodsS3 | 1.8.2 | R.oo | 1.25.0 |
R.rsp | 0.45.0 | R.utils | 2.12.0 |
R2HTML | 2.3.3 | R2OpenBUGS | 3.2-3.2.1 |
R2WinBUGS | 2.1-21 | R6 | 2.5.1 |
ragg | 1.2.2 | rainbow | 3.6 |
randomForest | 4.7-1.1 | rappdirs | 0.3.3 |
raster | 3.5-21 | ratelimitr | 0.4.1 |
rbenchmark | 1.0.0 | rbibutils | 2.2.8 |
Rcgmin | 2022-4.30 | rcmdcheck | 1.4.0 |
RColorBrewer | 1.1-3 | Rcpp | 1.0.9 |
RcppArmadillo | 0.11.2.0.0 | RcppEigen | 0.3.3.9.2 |
RcppParallel | 5.1.5 | RcppProgress | 0.4.2 |
RcppRoll | 0.3.0 | Rcsdp | 0.1.57.2 |
RCurl | 1.98-1.8 | Rdpack | 2.4 |
readr | 2.1.2 | readstata13 | 0.10.0 |
recipes | 1.0.1 | registry | 0.5-1 |
regress | 1.3-21 | relaxnet | 0.3-2 |
reliaR | 0.01 | relimp | 1.0-5 |
rematch | 1.0.1 | rematch2 | 2.1.2 |
remotes | 2.4.2 | rentrez | 1.2.3 |
repr | 1.1.4 | reshape | 0.8.9 |
reshape2 | 1.4.4 | rex | 1.2.1 |
rgl | 0.109.6 | RgoogleMaps | 1.4.5.3 |
RGraphics | 3.0-2 | ritis | 1.0.0 |
rJava | 1.0-6 | RJDBC | 0.2-10 |
rjson | 0.2.21 | RJSONIO | 1.3-1.6 |
rlang | 1.0.4 | rlecuyer | 0.3-5 |
rmarkdown | 2.14 | Rmpfr | 0.8-9 |
rms | 6.3-0 | RMySQL | 0.10.23 |
rncl | 0.8.6 | robustbase | 0.95-0 |
ROCR | 1.0-11 | Rook | 1.1-1 |
rotl | 3.0.12 | roxygen2 | 7.2.1 |
rprojroot | 2.0.3 | rredlist | 0.7.0 |
RSQLite | 2.2.15 | rstudioapi | 0.13 |
RUnit | 0.4.32 | rversions | 2.1.1 |
Rvmmin | 2018-4.17.1 | s2 | 1.1.0 |
sandwich | 3.0-2 | sass | 0.4.2 |
scales | 1.2.0 | scatterplot3d | 0.3-41 |
ScottKnott | 1.3-0 | SDMTools | 1.1-221.2 |
sealasso | 0.1-3 | segmented | 1.6-0 |
sem | 3.1-15 | SemiPar | 1.0-4.2 |
semTools | 0.5-6 | seqinr | 4.2-16 |
seriation | 1.3.6 | sessioninfo | 1.2.2 |
setRNG | 2022.4-1 | sets | 1.0-21 |
sf | 1.0-8 | sfsmisc | 1.1-13 |
shape | 1.4.6 | shapefiles | 0.7 |
shiny | 1.7.2 | shinyjs | 2.1.0 |
SimComp | 3.3 | simsem | 0.5-16 |
slam | 0.1-50 | sn | 2.0.2 |
sna | 2.7 | snow | 0.4-4 |
snowfall | 1.84-6.2 | solrium | 1.2.0 |
sourcetools | 0.1.7 | sp | 1.5-0 |
spam | 2.9-1 | SparseM | 1.81 |
SpatialExtremes | 2.1-0 | spatstat | 2.3-4 |
spatstat.core | 2.4-4 | spatstat.data | 2.2-0 |
spatstat.geom | 2.4-0 | spatstat.linnet | 2.3-2 |
spatstat.random | 2.2-0 | spatstat.sparse | 2.1-1 |
spatstat.utils | 2.3-1 | spData | 2.0.1 |
spdep | 1.2-4 | SQUAREM | 2021.1 |
ssgraph | 1.13 | stabs | 0.6-4 |
StanHeaders | 2.21.0-7 | statmod | 1.4.36 |
statnet.common | 4.6.0 | stringi | 1.7.8 |
stringr | 1.4.0 | strucchange | 1.5-3 |
styler | 1.7.0 | subplex | 1.8 |
superml | 0.5.5 | SuppDists | 1.1-9.7 |
survey | 4.1-1 | survPresmooth | 1.1-11 |
svUnit | 1.0.6 | sybil | 2.2.0 |
synbreedData | 1.5 | sys | 3.4 |
systemfonts | 1.0.4 | tables | 0.9.6 |
taxize | 0.9.100 | tensor | 1.5 |
tensorA | 0.36.2 | terra | 1.6-7 |
testit | 0.13 | testthat | 3.1.4 |
textshaping | 0.3.6 | TH.data | 1.1-1 |
tibble | 3.1.8 | tidyr | 1.2.0 |
tidyselect | 1.1.2 | timeDate | 4021.104 |
timeSeries | 4021.104 | tinytex | 0.40 |
tis | 1.39 | tkrplot | 0.0-26 |
tmvtnorm | 1.5 | triebeard | 0.3.0 |
trimcluster | 0.1-5 | tripack | 1.3-9.1 |
truncnorm | 1.0-8 | truncreg | 0.2-5 |
tseries | 0.10-51 | TSP | 1.2-1 |
TTR | 0.24.3 | tweenr | 1.0.2 |
tzdb | 0.3.0 | ucminf | 1.1-4 |
units | 0.8-0 | urca | 1.3-0 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
usethis | 2.1.6 | utf8 | 1.2.2 |
uuid | 1.1-0 | vcd | 1.4-10 |
vctrs | 0.4.1 | vegan | 2.6-2 |
VGAM | 1.1-7 | VGAMdata | 1.1-6 |
viridis | 0.6.2 | viridisLite | 0.4.0 |
vroom | 1.5.7 | waldo | 0.4.0 |
waveslim | 1.8.3 | wavethresh | 4.7.0 |
webshot | 0.5.3 | whisker | 0.4 |
widenet | 0.1-2 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | WikipediR | 1.5.0 |
wikitaxa | 0.4.0 | withr | 2.5.0 |
wk | 0.6.0 | worrms | 0.4.2 |
xfun | 0.31 | xlsx | 0.6.5 |
xlsxjars | 0.6.1 | XML | 3.99-0.10 |
xml2 | 1.3.3 | xopen | 1.0.0 |
xtable | 1.8-4 | xts | 0.12.1 |
yaml | 2.3.5 | zip | 2.2.0 |
zoo | 1.8-10 |
package | version | package | version |
---|---|---|---|
absl-py | 0.15.0 | access | 1.1.8 |
affine | 2.3.1 | aiobotocore | 1.4.2 |
aiohttp | 3.7.4.post0 | aioitertools | 0.8.0 |
alabaster | 0.7.12 | alembic | 1.7.4 |
altair | 4.1.0 | analytics-python | 1.4.0 |
anyio | 3.3.4 | appdirs | 1.4.4 |
argon2-cffi | 21.1.0 | args | 0.1.0 |
asttokens | 2.0.5 | astunparse | 1.6.3 |
async-generator | 1.10 | async-timeout | 3.0.1 |
attrs | 19.3.0 | audioread | 2.1.9 |
autobahn | 21.3.1 | Automat | 20.2.0 |
aws-requests-auth | 0.4.3 | awscli | 1.25.46 |
Babel | 2.9.1 | backcall | 0.2.0 |
backoff | 1.10.0 | bcrypt | 3.2.0 |
beautifulsoup4 | 4.10.0 | bleach | 4.1.0 |
blinker | 1.4 | blis | 0.7.5 |
bokeh | 2.4.1 | boto3 | 1.24.46 |
botocore | 1.27.46 | Bottleneck | 1.3.5 |
bqplot | 0.12.33 | branca | 0.4.2 |
Brotli | 1.0.9 | brotlipy | 0.7.0 |
cachetools | 4.2.4 | catalogue | 2.0.6 |
certifi | 2019.11.28 | certipy | 0.1.3 |
cffi | 1.15.0 | chainer | 7.8.0 |
chardet | 4.0.0 | charset-normalizer | 2.1.0 |
click | 8.0.3 | click-plugins | 1.1.1 |
cligj | 0.7.2 | clint | 0.5.1 |
cloud-init | 22.2 | cloudpickle | 2.0.0 |
colorama | 0.4.3 | colour | 0.1.5 |
conda | 4.3.16 | configobj | 5.0.6 |
constantly | 15.1.0 | contextily | 1.2.0 |
countryinfo | 0.1.2 | coverage | 6.2 |
coveralls | 3.3.1 | cryptography | 35.0.0 |
css-html-js-minify | 2.5.5 | cssselect | 1.1.0 |
cssutils | 2.5.1 | cupy-cuda111 | 9.5.0 |
cycler | 0.11.0 | cymem | 2.0.6 |
Cython | 0.29.24 | dash | 2.0.0 |
dash-core-components | 2.0.0 | dash-html-components | 2.0.0 |
dash-renderer | 1.9.1 | dash-table | 5.0.0 |
dask | 2021.12.0 | dataprep | 0.4.3 |
datascience | 0.17.0 | dbus-python | 1.2.16 |
debugpy | 1.5.1 | decorator | 4.4.2 |
defusedxml | 0.7.1 | Deprecated | 1.2.13 |
deprecation | 2.1.0 | descartes | 1.1.0 |
dipy | 1.4.1 | distributed | 2021.12.0 |
distro | 1.4.0 | distro-info | 1.0 |
dmri-amico | 1.3.0 | dmri-commit | 1.5.0 |
docopt | 0.6.2 | docutils | 0.15.2 |
earthengine-api | 0.1.318 | EasyProcess | 0.3 |
ec2-hibinit-agent | 1.0.0 | ecdsa | 0.17.0 |
ee-extra | 0.0.14 | eemeter | 3.1.0 |
eli5 | 0.11.0 | entrypoint2 | 0.2.4 |
entrypoints | 0.3 | esda | 2.4.1 |
executing | 0.8.3 | fasteners | 0.17.3 |
fastrlock | 0.8 | fasttext | 0.9.2 |
ffmpeg-python | 0.2.0 | ffmpy | 0.3.0 |
filelock | 3.3.2 | Fiona | 1.8.21 |
Flask | 2.0.2 | Flask-CacheBuster | 1.0.0 |
Flask-Compress | 1.10.1 | Flask-Cors | 3.0.10 |
Flask-Login | 0.5.0 | flatbuffers | 2.0 |
folium | 0.12.1.post1 | fonttools | 4.34.4 |
fsspec | 2021.10.1 | future | 0.18.2 |
gast | 0.4.0 | GDAL | 3.0.4 |
gdown | 4.5.1 | geeadd | 0.5.5 |
geemap | 0.16.2 | gensim | 4.1.2 |
geo-py | 0.4 | geocoder | 1.38.1 |
geographiclib | 1.52 | geojson | 2.5.0 |
geopandas | 0.11.1 | geopy | 2.2.0 |
geotext | 0.4.0 | giddy | 2.3.3 |
gitdb | 4.0.9 | GitPython | 3.1.27 |
goflow | 0.1.2 | google-api-core | 2.8.2 |
google-api-python-client | 1.12.11 | google-auth | 1.35.0 |
google-auth-httplib2 | 0.0.4 | google-auth-oauthlib | 0.4.6 |
google-cloud-core | 2.3.2 | google-cloud-storage | 2.5.0 |
google-crc32c | 1.3.0 | google-pasta | 0.2.0 |
google-resumable-media | 2.3.3 | googleapis-common-protos | 1.56.4 |
googlemaps | 4.5.3 | gradio | 2.4.1 |
graphviz | 0.17 | greenlet | 1.1.2 |
grpcio | 1.41.1 | h11 | 0.12.0 |
h2 | 3.2.0 | h5py | 3.5.0 |
haversine | 2.6.0 | HeapDict | 1.0.1 |
hibagent | 1.0.1 | hpack | 3.0.0 |
html5lib | 1.1 | htmlmin | 0.1.12 |
httplib2 | 0.15.0 | httplib2shim | 0.0.3 |
hyperframe | 5.2.0 | hyperlink | 21.0.0 |
idna | 2.8 | imageio | 2.10.1 |
imageio-ffmpeg | 0.4.5 | imagesize | 1.3.0 |
importlib-metadata | 4.10.0 | importlib-resources | 5.3.0 |
incremental | 21.3.0 | inequality | 1.0.0 |
iniconfig | 1.1.1 | ipyevents | 2.0.1 |
ipyfilechooser | 0.6.0 | ipykernel | 6.4.2 |
ipyleaflet | 0.17.0 | ipysheet | 0.5.0 |
ipython | 7.29.0 | ipython-genutils | 0.2.0 |
ipytree | 0.2.1 | ipywidgets | 7.6.5 |
itemadapter | 0.4.0 | itemloaders | 1.0.4 |
itsdangerous | 2.0.1 | jarowinkler | 1.2.0 |
jedi | 0.18.0 | jeepney | 0.7.1 |
Jinja2 | 3.1.2 | jmespath | 0.10.0 |
joblib | 1.1.0 | json5 | 0.9.6 |
jsonlines | 1.2.0 | jsonpatch | 1.22 |
jsonpath-ng | 1.5.3 | jsonpointer | 2.0 |
jsonschema | 3.2.0 | jupyter | 1.0.0 |
jupyter-client | 7.0.6 | jupyter-console | 6.4.0 |
jupyter-core | 4.9.1 | jupyter-server | 1.11.1 |
jupyter-server-proxy | 3.1.0 | jupyter-telemetry | 0.1.0 |
jupyterhub | 1.4.2 | jupyterhub-idle-culler | 1.2.1 |
jupyterhub-nativeauthenticator | 1.0.5 | jupyterlab | 3.2.3 |
jupyterlab-pygments | 0.1.2 | jupyterlab-server | 2.8.2 |
jupyterlab-widgets | 1.0.2 | keplergl | 0.3.2 |
keras | 2.8.0 | Keras-Preprocessing | 1.1.2 |
keycloakauthenticator | 2.0.0 | keyring | 18.0.1 |
kiwisolver | 1.3.2 | laspy | 2.2.0 |
launchpadlib | 1.10.13 | lazr.restfulclient | 0.14.2 |
lazr.uri | 1.0.3 | leafmap | 0.10.3 |
libclang | 12.0.0 | libpysal | 4.6.2 |
librosa | 0.8.1 | lightgbm | 3.3.1 |
llvmlite | 0.39.0 | locket | 0.2.1 |
logzero | 1.7.0 | lxml | 4.6.3 |
Mako | 1.1.5 | mamba | 0.11.2 |
mapclassify | 2.4.3 | Markdown | 3.3.4 |
markdown2 | 2.4.1 | MarkupSafe | 2.0.1 |
matplotlib | 3.5.2 | matplotlib-inline | 0.1.3 |
mechanize | 0.4.7 | mercantile | 1.2.1 |
Metaphone | 0.6 | mgwr | 2.1.2 |
mistune | 0.8.4 | mlpack | 3.4.2 |
momepy | 0.5.3 | monotonic | 1.6 |
more-itertools | 4.2.0 | moviepy | 1.0.3 |
mpi4py | 3.1.1 | mpmath | 1.2.1 |
msgpack | 1.0.2 | mss | 6.1.0 |
multidict | 5.2.0 | munch | 2.5.0 |
murmurhash | 1.0.6 | mutagen | 1.45.1 |
nbclassic | 0.3.4 | nbclient | 0.5.4 |
nbconvert | 6.2.0 | nbformat | 5.1.3 |
nbgitpuller | 1.0.2 | nbsphinx | 0.8.8 |
nest-asyncio | 1.5.1 | netifaces | 0.10.4 |
networkx | 2.8.5 | nibabel | 3.2.1 |
nltk | 3.7 | notebook | 6.4.5 |
numba | 0.56.0 | numpy | 1.21.0 |
nycflights13 | 0.0.3 | oauthenticator | 14.2.0 |
oauthlib | 3.1.0 | ogr | 0.38.1 |
onetimepass | 1.0.1 | opencv-contrib-python | 4.6.0.66 |
opencv-python | 4.5.4.58 | openflow | 0.1.2.4 |
opt-einsum | 3.3.0 | osmnx | 1.2.0 |
outcome | 1.1.0 | packaging | 21.2 |
pamela | 1.0.0 | pandas | 1.4.3 |
pandocfilters | 1.5.0 | paramiko | 2.8.0 |
parsel | 1.6.0 | parso | 0.8.2 |
partd | 1.2.0 | pathy | 0.6.1 |
patsy | 0.5.2 | pbr | 5.6.0 |
pdfkit | 0.6.1 | pendulum | 2.1.2 |
pexpect | 4.6.0 | pickleshare | 0.7.5 |
Pillow | 9.2.0 | plotly | 5.3.1 |
pluggy | 1.0.0 | ply | 3.11 |
Pmw | 2.1.1 | pointpats | 2.2.0 |
pooch | 1.5.2 | pprintpp | 0.4.0 |
premailer | 3.10.0 | preshed | 3.0.6 |
priority | 1.3.0 | probableparsing | 0.0.1 |
proglog | 0.1.9 | prometheus-client | 0.12.0 |
prompt-toolkit | 3.0.21 | Protego | 0.1.16 |
protobuf | 3.19.1 | psutil | 5.8.0 |
ptyprocess | 0.7.0 | PuLP | 2.6.0 |
pure-eval | 0.2.2 | py | 1.10.0 |
py4j | 0.10.9.2 | pyarrow | 6.0.0 |
pyasn1 | 0.4.8 | pyasn1-modules | 0.2.8 |
pybind11 | 2.8.1 | pycairo | 1.20.1 |
pycosat | 0.6.3 | pycountry | 22.3.5 |
pycountry-convert | 0.7.2 | pycparser | 2.20 |
PyCRS | 1.0.2 | pycryptodome | 3.11.0 |
pycurl | 7.45.1 | pydantic | 1.8.2 |
PyDispatcher | 2.0.5 | pydot | 1.4.2 |
pydotplus | 2.0.2 | pydub | 0.25.1 |
pyexpect | 1.0.21 | pygame | 2.0.2 |
pygdal | 3.0.4.10 | pygeos | 0.12.0 |
PyGithub | 1.55 | pyglet | 1.5.21 |
Pygments | 2.10.0 | PyGObject | 3.36.0 |
PyGreSQL | 5.2.2 | PyJWT | 2.3.0 |
PyNaCl | 1.4.0 | pyOpenSSL | 19.0.0 |
pyparsing | 2.4.7 | pypopulation | 2020.3 |
pyproj | 3.3.1 | pyquery | 1.4.3 |
pyrsistent | 0.15.5 | pysal | 2.7.0 |
pyscreenshot | 3.0 | pyserial | 3.4 |
pyshp | 2.3.1 | pysndfile | 1.4.4 |
PySocks | 1.7.1 | pyspark | 3.2.0 |
pystac | 1.6.1 | pystac-client | 0.4.0 |
pystache | 0.6.0 | pytest | 6.2.5 |
pytest-cov | 3.0.0 | pytest-mock | 3.8.2 |
python-apt | 2.0.0+ubuntu0.20.4.7 | python-box | 6.0.2 |
python-crfsuite | 0.9.8 | python-dateutil | 2.8.2 |
python-debian | 0.1.43 | python-gitlab | 3.8.0 |
python-jose | 3.3.0 | python-json-logger | 2.0.2 |
python-keycloak | 0.26.1 | python-Levenshtein | 0.12.2 |
python-spams | 2.6.1.11 | python-stdnum | 1.17 |
pytz | 2021.3 | pytzdata | 2020.1 |
PyWavelets | 1.1.1 | PyX | 0.15 |
PyYAML | 5.4.1 | pyzmq | 22.3.0 |
qtconsole | 5.1.1 | QtPy | 1.11.2 |
quantecon | 0.5.3 | queuelib | 1.6.2 |
quilt3 | 5.0.0 | rapidfuzz | 2.4.2 |
rasterio | 1.3.0 | rasterstats | 0.17.0 |
ratelim | 0.1.6 | regex | 2021.11.10 |
reportlab | 3.6.11 | reportlib | 3.4.0 |
repoze.lru | 0.7 | requests | 2.28.1 |
requests-file | 1.5.1 | requests-futures | 1.0.0 |
requests-oauthlib | 1.3.0 | requests-toolbelt | 0.9.1 |
requests-unixsocket | 0.2.0 | resampy | 0.2.2 |
retrying | 1.3.3 | reverse-geocoder | 1.5 |
rsa | 3.4.2 | Rtree | 1.0.0 |
ruamel.yaml | 0.17.16 | ruamel.yaml.clib | 0.2.6 |
rvlib | 0.0.6 | s3fs | 2021.10.1 |
s3transfer | 0.6.0 | sankee | 0.2.0 |
scikit-image | 0.18.3 | scikit-learn | 1.0.1 |
scipy | 1.7.1 | scooby | 0.6.0 |
scrape | 0.11.1 | Scrapy | 2.5.1 |
seaborn | 0.11.2 | SecretStorage | 2.3.1 |
segregation | 2.3.1 | selenium | 3.9.0 |
Send2Trash | 1.8.0 | service-identity | 21.1.0 |
Shapely | 1.8.2 | simpervisor | 0.4 |
simplejson | 3.16.0 | six | 1.14.0 |
smart-open | 5.2.1 | smmap | 5.0.0 |
sniffio | 1.2.0 | snowballstemmer | 2.2.0 |
snuggs | 1.4.7 | sortedcontainers | 2.4.0 |
sos | 0.22.7 | SoundFile | 0.10.3.post1 |
soupsieve | 2.2.1 | spacy | 3.1.4 |
spacy-legacy | 3.0.8 | spaghetti | 1.6.6 |
spams | 2.6.5.3 | spglm | 1.0.8 |
Sphinx | 4.5.0 | sphinxcontrib-applehelp | 1.0.2 |
sphinxcontrib-devhelp | 1.0.2 | sphinxcontrib-htmlhelp | 2.0.0 |
sphinxcontrib-jsmath | 1.0.1 | sphinxcontrib-qthelp | 1.0.3 |
sphinxcontrib-serializinghtml | 1.1.5 | spint | 1.0.7 |
splot | 1.1.5.post1 | spopt | 0.4.1 |
spreg | 1.2.4 | spvcm | 0.3.0 |
SQLAlchemy | 1.4.39 | sqlalchemy2-stubs | 0.0.2a24 |
sqlmodel | 0.0.6 | srsly | 2.4.2 |
ssh-import-id | 5.10 | statsmodels | 0.13.0 |
sympy | 1.10.1 | systemd-python | 234 |
tabulate | 0.8.9 | tblib | 1.7.0 |
tenacity | 8.0.1 | tensorboard | 2.8.0 |
tensorboard-data-server | 0.6.1 | tensorboard-plugin-wit | 1.8.0 |
tensorboardX | 2.4 | tensorflow | 2.8.0 |
tensorflow-estimator | 2.8.0 | tensorflow-io-gcs-filesystem | 0.24.0 |
termcolor | 1.1.0 | terminado | 0.12.1 |
testpath | 0.5.0 | testresources | 2.0.1 |
tf-estimator-nightly | 2.8.0.dev2021122109 | Theano | 1.0.5 |
thinc | 8.0.12 | threadpoolctl | 3.0.0 |
tifffile | 2021.10.12 | tldextract | 3.1.2 |
tobler | 0.9.0 | toml | 0.10.2 |
tomli | 2.0.1 | toolz | 0.11.1 |
torch | 1.11.0 | torchaudio | 0.11.0 |
torchvision | 0.12.0 | tornado | 6.1 |
tqdm | 4.62.3 | traitlets | 5.1.1 |
traittypes | 0.2.1 | trio | 0.19.0 |
trio-websocket | 0.9.2 | Twisted | 21.7.0 |
txaio | 21.2.1 | typer | 0.4.0 |
typing-extensions | 3.10.0.2 | ubuntu-advantage-tools | 27.9 |
unattended-upgrades | 0.1 | uritemplate | 3.0.1 |
urllib3 | 1.25.11 | usaddress | 0.5.10 |
varname | 0.8.3 | vega-datasets | 0.9.0 |
vpython | 7.6.2 | w3lib | 1.22.0 |
wadllib | 1.3.3 | wasabi | 0.8.2 |
Wave | 0.0.2 | waves | 0.2.6 |
wcwidth | 0.2.5 | webencodings | 0.5.1 |
websocket-client | 1.2.1 | Werkzeug | 2.0.2 |
whitebox | 2.1.4 | whiteboxgui | 0.7.0 |
widgetsnbextension | 3.5.2 | wordcloud | 1.8.2.2 |
wrapt | 1.13.3 | wsproto | 1.0.0 |
xarray | 2022.6.0 | xgboost | 1.5.0 |
xxhash | 3.0.0 | xyzservices | 2022.6.0 |
yarl | 1.7.0 | zict | 2.0.0 |
zipp | 3.6.0 | zope.interface | 5.4.0 |
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.0 |
abind | 1.4-5 | ACD | 1.5.3 |
acepack | 1.4.1 | actuar | 3.3-0 |
ada | 2.0-5 | ade4 | 1.7-19 |
ade4TkGUI | 0.3-1 | adegraphics | 1.0-16 |
adehabitatLT | 0.3.25 | adehabitatMA | 0.3.14 |
admisc | 0.29 | affxparser | 1.68.1 |
agricolae | 1.3-5 | akima | 0.6-3.4 |
AlgDesign | 1.2.1 | Amelia | 1.8.0 |
ape | 5.6-2 | arm | 1.12-2 |
aroma.apd | 0.6.1 | ascii | 2.4 |
ash | 1.0-15 | askpass | 1.1 |
assertthat | 0.2.1 | AUC | 0.3.2 |
backports | 1.4.1 | base64enc | 0.1-3 |
BB | 2019.10-1 | BDgraph | 2.68 |
bdsmatrix | 1.3-6 | BGLR | 1.1.0 |
BH | 1.78.0-0 | biganalytics | 1.1.21 |
biglars | 1.0.2 | biglm | 0.9-2.1 |
bigmemory | 4.6.1 | bigmemory.sri | 0.1.3 |
bigml | 0.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | bit | 4.0.4 |
bit64 | 4.0.5 | bitops | 1.0-7 |
blob | 1.2.3 | BLR | 1.6 |
bold | 1.2.0 | bpca | 1.3-4 |
BradleyTerry2 | 1.1-2 | brew | 1.0-7 |
brglm | 0.7.2 | brio | 1.1.3 |
broom | 1.0.0 | bslib | 0.4.0 |
BsMD | 2020.4.30 | cachem | 1.0.6 |
calibrator | 1.2-8 | callr | 3.7.1 |
carData | 3.0-5 | caret | 6.0-92 |
caTools | 1.18.2 | cellranger | 1.1.0 |
checkmate | 2.1.0 | chron | 2.3-57 |
CircStats | 0.2-6 | classInt | 0.4-7 |
cli | 3.3.0 | clipr | 0.8.0 |
clusterGeneration | 1.3.7 | coda | 0.19-4 |
coin | 1.4-2 | collapse | 1.8.6 |
colorspace | 2.0-3 | combinat | 0.0-8 |
commonmark | 1.8.0 | conditionz | 0.1.0 |
conf.design | 2.0.0 | contfrac | 1.1-12 |
corpcor | 1.6.10 | corrgram | 1.14 |
corrplot | 0.92 | cpp11 | 0.4.2 |
crayon | 1.5.1 | credentials | 1.3.2 |
crosstalk | 1.2.0 | crul | 1.2.0 |
cubature | 2.0.4.4 | curl | 4.3.2 |
CVST | 0.2-3 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | data.table | 1.14.2 |
DataExplorer | 0.8.2 | DBI | 1.1.3 |
deldir | 1.0-6 | dendextend | 1.16.0 |
DEoptimR | 1.0-11 | Deriv | 4.1.3 |
desc | 1.4.1 | deSolve | 1.33 |
devtools | 2.4.4 | dfidx | 0.0-5 |
dfoptim | 2020.10-1 | diagram | 1.6.5 |
dichromat | 2.0-0.1 | diffobj | 0.3.5 |
digest | 0.6.29 | dimRed | 0.2.6 |
diptest | 0.76-0 | discretization | 1.0-1.1 |
doBy | 4.6.13 | DoE.base | 1.2-1 |
doMC | 1.3.8 | doParallel | 1.0.17 |
dotCall64 | 1.0-1 | downlit | 0.4.2 |
dplyr | 1.0.9 | DRR | 0.0.4 |
dummies | 1.5.6 | dynamicTreeCut | 1.63-1 |
e1071 | 1.7-11 | EbayesThresh | 1.4-12 |
effects | 4.2-2 | ellipse | 0.4.3 |
ellipsis | 0.3.2 | elliptic | 1.4-0 |
emulator | 1.2-21 | equivalence | 0.7.2 |
estimability | 1.4.1 | ETLUtils | 1.5 |
evaluate | 0.15 | expint | 0.1-7 |
expm | 0.999-6 | fansi | 1.0.3 |
farver | 2.1.1 | fastICA | 1.2-3 |
fastmap | 1.1.0 | fastmatch | 1.1-3 |
fda | 6.0.5 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
ff | 4.0.7 | ffbase | 0.13.3 |
fields | 14.0 | filehash | 2.4-3 |
flashClust | 1.01-2 | flexmix | 2.3-18 |
FNN | 1.1.3.1 | fontawesome | 0.3.0 |
forcats | 0.5.1 | foreach | 1.5.2 |
formatR | 1.12 | Formula | 1.2-4 |
fpc | 2.2-9 | fs | 1.5.2 |
fts | 0.9.9.2 | functional | 0.6 |
future | 1.27.0 | future.apply | 1.9.0 |
gam | 1.20.2 | gamlss | 5.4-3 |
gamlss.data | 6.0-2 | gamlss.dist | 6.0-3 |
gclus | 1.3.2 | gdata | 2.18.0.1 |
geepack | 1.3.4 | genalg | 0.2.1 |
generics | 0.1.3 | genetics | 1.3.8.1.3 |
geosphere | 1.5-14 | gert | 1.7.0 |
ggdendro | 0.1.23 | ggforce | 0.3.3 |
ggformula | 0.10.1 | ggmap | 3.0.0 |
ggplot2 | 3.3.6 | ggrepel | 0.9.1 |
ggridges | 0.5.3 | ggstance | 0.3.5 |
gh | 1.3.0 | git2r | 0.30.1 |
gitcreds | 0.1.1 | glassoFast | 1.0 |
gld | 2.6.5 | glmnet | 4.1-4 |
globals | 0.16.0 | glue | 1.6.2 |
gmm | 1.6-6 | gmodels | 2.18.1.1 |
gmp | 0.6-5 | goftest | 1.2-3 |
googleVis | 0.7.0 | gower | 1.0.0 |
GPArotation | 2022.4-1 | gpclib | 1.5-6 |
gplots | 3.1.3 | gridBase | 0.4-7 |
gridExtra | 2.3 | gridGraphics | 0.5-1 |
gridSVG | 1.7-4 | grImport | 0.9-5 |
grImport2 | 0.2-0 | gsubfn | 0.7 |
gtable | 0.3.0 | gtools | 3.9.3 |
HaploSim | 1.8.4.1 | hardhat | 1.2.0 |
haven | 2.5.0 | hdrcde | 3.4 |
hexbin | 1.28.2 | hflights | 0.1 |
HH | 3.1-47 | highlight | 0.5.0 |
highr | 0.9 | Hmisc | 4.7-0 |
hms | 1.1.1 | htmlTable | 2.4.1 |
htmltools | 0.5.3 | htmlwidgets | 1.5.4 |
httpcode | 0.3.0 | httpuv | 1.6.5 |
httr | 1.4.3 | HydroMe | 2.0-1 |
HyperbolicDist | 0.6-4 | hypergeo | 1.2-13 |
ICC | 2.4.0 | igraph | 1.3.4 |
igraphdata | 1.0.1 | ineq | 0.2-13 |
ini | 0.3.1 | inline | 0.3.19 |
insight | 0.18.0 | interp | 1.1-3 |
intervals | 0.15.2 | introgress | 1.2.3 |
inum | 1.0-4 | ipred | 0.9-13 |
IRdisplay | 1.1 | IRkernel | 1.3 |
Iso | 0.0-18.1 | isoband | 0.2.5 |
iterators | 1.0.14 | itertools | 0.1-3 |
jpeg | 0.1-9 | jquerylib | 0.1.4 |
jsonlite | 1.8.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-31 | klaR | 1.7-1 |
knitr | 1.39 | ks | 1.13.5 |
labeling | 0.4.2 | labelled | 2.9.1 |
LaF | 0.8.4 | Lahman | 10.0-1 |
lars | 1.3 | later | 1.3.0 |
latticeExtra | 0.6-30 | lava | 1.6.10 |
lavaan | 0.6-12 | lavaan.survey | 1.1.3.1 |
lazyeval | 0.2.2 | lcda | 0.3.1 |
leaflet | 2.1.1 | leaflet.providers | 1.9.0 |
leaps | 3.1 | LearnBayes | 2.15.1 |
lgr | 0.4.3 | libcoin | 1.0-9 |
lifecycle | 1.0.1 | LIM | 1.4.7 |
limSolve | 1.5.6 | lisrelToR | 0.1.5 |
listenv | 0.8.0 | lme4 | 1.1-30 |
lmom | 2.9 | lmtest | 0.9-40 |
locfit | 1.5-9.6 | lokern | 1.1-9 |
lpSolve | 5.6.15 | lubridate | 1.8.0 |
magic | 1.6-0 | magrittr | 2.0.3 |
manipulateWidget | 0.11.1 | mapproj | 1.2.8 |
maps | 3.4.0 | maptools | 1.1-4 |
markdown | 1.1 | Matching | 4.10-2 |
MatchIt | 4.4.0 | mathjaxr | 1.6-0 |
matrixcalc | 1.0-5 | MatrixModels | 0.5-0 |
matrixStats | 0.62.0 | maxLik | 1.5-2 |
mboost | 2.9-7 | mclust | 5.4.10 |
mcmc | 0.9-7 | MCMCglmm | 2.34 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
Metrics | 0.1.4 | mi | 1.1 |
mice | 3.14.0 | microbenchmark | 1.4.9 |
mime | 0.12 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-2 | minqa | 1.2.4 |
misc3d | 0.9-1 | miscTools | 0.6-26 |
mitools | 2.4 | mlbench | 2.1-3 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlr3 | 0.13.4 | mlr3measures | 0.5.0 |
mlr3misc | 0.10.0 | mnormt | 2.1.0 |
ModelMetrics | 1.2.2.2 | modeltools | 0.2-23 |
moments | 0.14.1 | mondate | 0.10.02 |
mosaic | 1.8.3 | mosaicCore | 0.9.0 |
mosaicData | 0.20.2 | mratios | 1.4.2 |
multcomp | 1.4-20 | multicool | 0.1-12 |
munsell | 0.5.0 | mvMORPH | 1.1.6 |
mvtnorm | 1.1-3 | natserv | 1.0.0 |
network | 1.17.2 | networkD3 | 0.4 |
NISTnls | 0.9-13 | nloptr | 2.0.3 |
nls2 | 0.3-3 | nlstools | 2.0-0 |
nnls | 1.4 | nortest | 1.0-4 |
np | 0.60-11 | numbers | 0.8-2 |
numDeriv | 2016.8-1.1 | openssl | 2.0.2 |
openxlsx | 4.2.5 | optextras | 2019-12.4 |
ordinal | 2019.12-10 | PairedData | 1.1.1 |
palmerpenguins | 0.1.0 | paradox | 0.10.0 |
parallelly | 1.32.1 | partitions | 1.10-7 |
party | 1.3-10 | partykit | 1.2-16 |
pastecs | 1.3.21 | pbapply | 1.5-0 |
pbdZMQ | 0.3-7 | pbivnorm | 0.6.0 |
pbkrtest | 0.5.1 | pbmcapply | 1.5.1 |
PBSmapping | 2.73.1 | pcaPP | 2.0-2 |
pedigree | 1.4.1 | permute | 0.9-7 |
phangorn | 2.9.0 | phytools | 1.0-3 |
pillar | 1.8.0 | pixmap | 0.4-12 |
pkgbuild | 1.3.1 | pkgconfig | 2.0.3 |
pkgdown | 2.0.6 | pkgload | 1.3.0 |
plm | 2.6-1 | plogr | 0.2.0 |
plot3D | 1.4 | plotly | 4.10.0 |
plotrix | 3.8-2 | pls | 2.8-1 |
plyr | 1.8.7 | png | 0.1-7 |
poLCA | 1.6.0.1 | polspline | 1.1.20 |
polyclip | 1.10-0 | polycor | 0.8-1 |
polynom | 1.4-1 | prabclus | 2.3-2 |
pracma | 2.3.8 | praise | 1.0.0 |
prettyunits | 1.1.1 | princurve | 2.1.6 |
pROC | 1.18.0 | processx | 3.7.0 |
prodlim | 2019.11.13 | profileModel | 0.6.1 |
profvis | 0.3.7 | progress | 1.2.2 |
progressr | 0.10.1 | promises | 1.2.0.1 |
proto | 1.0.0 | proxy | 0.4-27 |
PRROC | 1.3.1 | ps | 1.7.1 |
pscl | 1.5.5 | psy | 1.2 |
psych | 2.2.5 | purrr | 0.3.4 |
qap | 0.1-2 | qtl | 1.52 |
quadprog | 1.5-8 | quantmod | 0.4.20 |
quantreg | 5.94 | questionr | 0.7.7 |
qvcalc | 1.0.2 | R.cache | 0.16.0 |
R.devices | 2.17.1 | R.filesets | 2.15.0 |
R.huge | 0.9.0 | R.matlab | 3.6.2 |
R.methodsS3 | 1.8.2 | R.oo | 1.25.0 |
R.rsp | 0.45.0 | R.utils | 2.12.0 |
R2HTML | 2.3.3 | R2OpenBUGS | 3.2-3.2.1 |
R2WinBUGS | 2.1-21 | R6 | 2.5.1 |
ragg | 1.2.2 | rainbow | 3.6 |
randomForest | 4.7-1.1 | rappdirs | 0.3.3 |
raster | 3.5-21 | ratelimitr | 0.4.1 |
rbenchmark | 1.0.0 | rbibutils | 2.2.8 |
Rcgmin | 2022-4.30 | rcmdcheck | 1.4.0 |
RColorBrewer | 1.1-3 | Rcpp | 1.0.9 |
RcppArmadillo | 0.11.2.0.0 | RcppEigen | 0.3.3.9.2 |
RcppParallel | 5.1.5 | RcppProgress | 0.4.2 |
RcppRoll | 0.3.0 | Rcsdp | 0.1.57.2 |
RCurl | 1.98-1.8 | Rdpack | 2.4 |
readr | 2.1.2 | readstata13 | 0.10.0 |
recipes | 1.0.1 | registry | 0.5-1 |
regress | 1.3-21 | relaxnet | 0.3-2 |
reliaR | 0.01 | relimp | 1.0-5 |
rematch | 1.0.1 | rematch2 | 2.1.2 |
remotes | 2.4.2 | rentrez | 1.2.3 |
repr | 1.1.4 | reshape | 0.8.9 |
reshape2 | 1.4.4 | rex | 1.2.1 |
rgl | 0.109.6 | RgoogleMaps | 1.4.5.3 |
RGraphics | 3.0-2 | ritis | 1.0.0 |
rJava | 1.0-6 | RJDBC | 0.2-10 |
rjson | 0.2.21 | RJSONIO | 1.3-1.6 |
rlang | 1.0.4 | rlecuyer | 0.3-5 |
rmarkdown | 2.14 | Rmpfr | 0.8-9 |
rms | 6.3-0 | RMySQL | 0.10.23 |
rncl | 0.8.6 | robustbase | 0.95-0 |
ROCR | 1.0-11 | Rook | 1.1-1 |
rotl | 3.0.12 | roxygen2 | 7.2.1 |
rprojroot | 2.0.3 | rredlist | 0.7.0 |
RSQLite | 2.2.15 | rstudioapi | 0.13 |
RUnit | 0.4.32 | rversions | 2.1.1 |
Rvmmin | 2018-4.17.1 | s2 | 1.1.0 |
sandwich | 3.0-2 | sass | 0.4.2 |
scales | 1.2.0 | scatterplot3d | 0.3-41 |
ScottKnott | 1.3-0 | SDMTools | 1.1-221.2 |
sealasso | 0.1-3 | segmented | 1.6-0 |
sem | 3.1-15 | SemiPar | 1.0-4.2 |
semTools | 0.5-6 | seqinr | 4.2-16 |
seriation | 1.3.6 | sessioninfo | 1.2.2 |
setRNG | 2022.4-1 | sets | 1.0-21 |
sf | 1.0-8 | sfsmisc | 1.1-13 |
shape | 1.4.6 | shapefiles | 0.7 |
shiny | 1.7.2 | shinyjs | 2.1.0 |
SimComp | 3.3 | simsem | 0.5-16 |
slam | 0.1-50 | sn | 2.0.2 |
sna | 2.7 | snow | 0.4-4 |
snowfall | 1.84-6.2 | solrium | 1.2.0 |
sourcetools | 0.1.7 | sp | 1.5-0 |
spam | 2.9-1 | SparseM | 1.81 |
SpatialExtremes | 2.1-0 | spatstat | 2.3-4 |
spatstat.core | 2.4-4 | spatstat.data | 2.2-0 |
spatstat.geom | 2.4-0 | spatstat.linnet | 2.3-2 |
spatstat.random | 2.2-0 | spatstat.sparse | 2.1-1 |
spatstat.utils | 2.3-1 | spData | 2.0.1 |
spdep | 1.2-4 | SQUAREM | 2021.1 |
ssgraph | 1.13 | stabs | 0.6-4 |
StanHeaders | 2.21.0-7 | statmod | 1.4.36 |
statnet.common | 4.6.0 | stringi | 1.7.8 |
stringr | 1.4.0 | strucchange | 1.5-3 |
styler | 1.7.0 | subplex | 1.8 |
superml | 0.5.5 | SuppDists | 1.1-9.7 |
survey | 4.1-1 | survPresmooth | 1.1-11 |
svUnit | 1.0.6 | sybil | 2.2.0 |
synbreedData | 1.5 | sys | 3.4 |
systemfonts | 1.0.4 | tables | 0.9.6 |
taxize | 0.9.100 | tensor | 1.5 |
tensorA | 0.36.2 | terra | 1.6-7 |
testit | 0.13 | testthat | 3.1.4 |
textshaping | 0.3.6 | TH.data | 1.1-1 |
tibble | 3.1.8 | tidyr | 1.2.0 |
tidyselect | 1.1.2 | timeDate | 4021.104 |
timeSeries | 4021.104 | tinytex | 0.40 |
tis | 1.39 | tkrplot | 0.0-26 |
tmvtnorm | 1.5 | triebeard | 0.3.0 |
trimcluster | 0.1-5 | tripack | 1.3-9.1 |
truncnorm | 1.0-8 | truncreg | 0.2-5 |
tseries | 0.10-51 | TSP | 1.2-1 |
TTR | 0.24.3 | tweenr | 1.0.2 |
tzdb | 0.3.0 | ucminf | 1.1-4 |
units | 0.8-0 | urca | 1.3-0 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
usethis | 2.1.6 | utf8 | 1.2.2 |
uuid | 1.1-0 | vcd | 1.4-10 |
vctrs | 0.4.1 | vegan | 2.6-2 |
VGAM | 1.1-7 | VGAMdata | 1.1-6 |
viridis | 0.6.2 | viridisLite | 0.4.0 |
vroom | 1.5.7 | waldo | 0.4.0 |
waveslim | 1.8.3 | wavethresh | 4.7.0 |
webshot | 0.5.3 | whisker | 0.4 |
widenet | 0.1-2 | WikidataQueryServiceR | 1.0.0 |
WikidataR | 2.3.3 | WikipediR | 1.5.0 |
wikitaxa | 0.4.0 | withr | 2.5.0 |
wk | 0.6.0 | worrms | 0.4.2 |
xfun | 0.31 | xlsx | 0.6.5 |
xlsxjars | 0.6.1 | XML | 3.99-0.10 |
xml2 | 1.3.3 | xopen | 1.0.0 |
xtable | 1.8-4 | xts | 0.12.1 |
yaml | 2.3.5 | zip | 2.2.0 |
zoo | 1.8-10 |
JupyterHub Server with Keycloak User Management
The JupyterHub Server, integrated with Keycloak User Management, offers a secure and powerful environment for your data science and analytics endeavors.
Accessing JupyterHub
-
Getting Started: Once your EC2 instance is up and running, access the JupyterHub Server through your web browser using the provided public IP address.
-
User Credentials: Use the default username jhub-admin and the initial password, which is the EC2 instance ID in the format i-0c7fadc4dc193eca7.
-
First Login: During your initial login, you'll be prompted to change the default password for added security.
Keycloak user management
-
Getting Started: You can access the admin console through your web browser using http://public_ip_address/auth/.
-
Credentials: Log in with the username keycloak-admin and the EC2 instance ID.
Login and start coding
Startup page
After the EC2 instance is started, you can access the JupyterHub Server with its public IP address. For example, if the IP address is 3.236.45.107, typing http://3.236.45.107 in the browser will bring you to the following startup page:
Credentials
The preconfigured username and password are jhub-admin and the EC2 instance ID.
Change password
If it is the first time for you to log in, you will be asked to change the password.
JupyterLab
Logout
User management
Admin console
The admin console can be accessed through http://3.236.45.107/auth
Credentials
The preconfigured username and password are keycloak-admin and the EC2 instance ID.
Switch to Realm JupyterHub-User
Create a new user
Click Add user
Enter username and click Create
Click Save
Set password
Select Credentials and click Set password
Enter password and make it temporary such that the user will be asked to change it when logging in for the first time
Click Save password
Logout
Linux with GUI Desktop
After the EC2 instance is started, you can access the Linux with GUI Desktop through Microsoft Remote Desktop.
Username and password
The default username is elm and the password is the EC2 instance ID that has the form of i-0c7fadc4dc193eca7.
XFCE Desktop Environment
Steps to connect to the remote Linux GUI desktop
Install Microsoft Remote Desktop
The Microsoft Remote Desktop can be found from App Store (for Mac users).
Start Microsoft Remote Desktop
Add PC
The public address (like 54.198.198.85) is used for the PC name.
Add a User Account
The default username is elm and the password is the EC2 instance ID that has the form of i-0c7fadc4dc193eca7.
Accept the certificate
The PC is added
Clicking on the PC will connect to the remote Linux Desktop
Log out of the Linux GUI Desktop
Select Logout
Click Logout
Linux SFTP Server
After the EC2 instance is started, you can access the SFTP Server through FileZilla.
Username and password
The default username is elm and the password is the EC2 instance ID that has the form of i-0c7fadc4dc193eca7.
FileZilla
Steps to connect to the Linux SFTP Server
Install FileZilla
FileZilla can be downloaded here
Connect to the SFTP Server
- Host: sftp://public_address (like sftp://54.146.32.239)
- Username: elm
- Password: the EC2 instance ID that has the form of i-0c7fadc4dc193eca7
- Port: 2222
Selecting "Always trust this host, add this key to the cache" will avoid showing this message.
Once the server is connected, the directory share is used to exchange files.
Location of shared folder
On the server, the shared folder is /data/elm/share.
Linux SFTP Server for Amazon S3
After the EC2 instance is started, you can access the SFTP Server through FileZilla.
Username and password
The default username is elm and the password is the EC2 instance ID that has the form of i-0c7fadc4dc193eca7.
FileZilla
Steps to connect to the Linux SFTP Server
Install FileZilla
FileZilla can be downloaded here
Connect to the SFTP Server
- Host: sftp://public_address (like sftp://54.146.32.239)
- Username: elm
- Password: the EC2 instance ID that has the form of i-0c7fadc4dc193eca7
- Port: 2222
Selecting "Always trust this host, add this key to the cache" will avoid showing this message.
Once the server is connected, the directory share is used to exchange files.
Location of shared folder
On the server, the shared folder is /data/elm/share. The S3 bucket is mounted at /data/elm/share/s3.
Stable Diffusion with Web User Interface
This AWS AMI is 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.
Access the web UI
Once your EC2 instance is up and running, you can easily access the Stable Diffusion WebUI using the instance's public IP address. Please note that the initial setup might take a few minutes for the complete initialization.
To start your experience, use the default username 'elm'. For your password, enter the EC2 instance ID, which follows the pattern 'i-0c7fadc4dc193eca7'.
Stable Diffusion
VPN Server with Web Administration Interface AMI on AWS Marketplace
The VPN Server with Web GUI Admin is powered by OpenVPN which provides secure and encrypted communication channels, ensuring seamless connectivity and privacy for users across networks.
Once the EC2 instance is deployed, a VPN client elm is created and the certificate can be downloaded through the web admin panel where more clients can be created.
You can access the admin panel with its public IP address. The default username is elm and the password is the EC2 instance ID that has the form of i-0c7fadc4dc193eca7.
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 VPN Server
If you do not already have an SSH key pair, please generate a new one to use when logging into the VPN Server using ssh.
Create SSH key pair with default values
Launch your EC2 instance
Go to EC2 console
Select the new EC2 instance
Public IP address and Instance ID
Access the web admin
Enter the web admin to download the certificate
Download and install OpenVPN Client from https://openvpn.net/client/
Import the downloaded certificate
Connect to the VPN server
Connection status
Check the VPN status by accessing https://www.showmyip.com/
Create new VPN client
Check the newly created client and download the certificate
Revoke a client certificate
When a new IP address (53.80.91.153) is assigned to the VPN server, the client profile needs to be updated.
Change instance type
To change the instance type once the server is tested, please go to "Launch instances", "Instance settings", and then "Change instance type".
Materials Science Workbench
This AMI provides pre-compiled versions of DFT and MD packages, available as modules, alongside necessary dependencies and additional utilities frequently used in computational materials science.
Features:
-
Pre-installed and configured packages for electronic structure and materials property calculations:
-
Quantum ESPRESSO
-
Abinit
-
Siesta
-
Lammps
-
Gromacs
-
-
Can be used with AWS ParallelCluster to deploy on-demand clusters or as a standalone EC2 instance for computational tasks.
This AMI is an ideal platform for researchers, engineers, and students involved in materials simulations, offering a ready-to-use environment to accelerate DFT, MD and other computational materials science workflows.
Once you have created a cluster or launched a standalone EC2 instance, run the following commands to display the available modules and load the required module:
module avail
module load module_name
Quantum ESPRESSO is an open-source first-principles density functional theory (DFT) materials modeling package based on plane waves and pseudopotentials. It is widely used for electronic-structure calculations and materials modeling at the nanoscale.
Abinit is another open-source software suite for first-principles DFT, with a focus on the calculation of the electronic properties of materials using pseudopotentials and plane waves. Abinit also includes tools for the study of phonons, dielectric properties, and many other properties of materials.
Siesta is an open-source DFT package optimized for electronic structure calculations of molecules and solids using localized basis sets. Siesta is highly efficient for large-scale systems, offering a balance between accuracy and computational cost, making it suitable for simulations involving complex materials and nanostructures.
LAMMPS is an open-source molecular dynamics (MD) software designed for simulating particles at the atomic, molecular, and mesoscale, widely used for materials science and engineering applications.
GROMACS is a high-performance molecular dynamics software designed for simulating the interactions of particles, with a primary focus on biomolecular systems like proteins, lipids, and nucleic acids. It is widely used in research areas such as biochemistry, biophysics, and chemistry for tasks like molecular modeling, drug discovery, and protein folding simulations. Known for its speed and scalability, GROMACS supports a wide range of algorithms for molecular dynamics and energy minimization, and it can run efficiently on both CPUs and GPUs.
Version 5.0
added GROMACS 2024.3
The following packages are included:
- Quantum ESPRESSO 7.3.1
- ABINIT 9.10.5
- SIESTA 5.0.1
- LAMMPS 29Aug2024
- GROMACS 2024.3
Version 4.0
added LAMMPS 29Aug2024
The following packages are included:
- Quantum ESPRESSO 7.3.1
- ABINIT 9.10.5
- SIESTA 5.0.1
- LAMMPS 29Aug2024
Version 3.0
Added Siesta 5.0.1
The following packages are included:
- Quantum ESPRESSO 7.3.1
- ABINIT 9.10.5
- SIESTA 5.0.1
Version 2.0
Added ABINIT 9.10.5
The following packages are included:
- Quantum ESPRESSO 7.3.1
- ABINIT 9.10.5
Version 1.0
Added Quantume ESPRESSO 7.3.1
The following package is included:
- Quantum ESPRESSO 7.3.1
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 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: 2023.03.0-548-arm64
OS: Ubuntu 22.04
Release Notes
Upgraded R to version 4.4.2 and 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 (4294)
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 | acnr | 1.0.0 |
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 | archetypes | 2.2-0.1 |
archive | 1.1.9 | archivist | 2.3.8 |
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 |
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 | 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 |
binsegRcpp | 2023.8.31 | 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 | 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 |
colmozzie | 1.1.1 | 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 |
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 | denguedatahub | 2.1.1 |
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 | diyar | 0.5.1 |
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 | 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 |
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 | fpop | 2019.08.26 |
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 | 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 |
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 | 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 |
insee | 1.1.7 | 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.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.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 | LearningRlab | 2.4 |
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 | OBsMD | 12.0 |
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 | parglm | 0.1.7 |
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 |
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 | rbedrock | 0.3.2 |
rbenchmark | 1.0.0 | RBGL | 1.80.0 |
rBiasCorrection | 0.3.4 | rbibutils | 2.3 |
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 | 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 | 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 |
rxode2ll | 2.0.11 | 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 | 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 | shinySIR | 0.1.2 |
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 |
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 |
tabulapdf | 1.0.5-3 | 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.1 | 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 | tidychangepoint | 0.0.1 |
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 |
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 | tsgc | 0.0 |
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 | wbs | 1.4 |
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: 2023.03.0-548-arm64
OS: Ubuntu 22.04
Release Notes
First release for ARM
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 (4288)
package | version | 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 |
acnr | 1.0.0 | 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.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 | adiv | 2.2.1 |
adjclust | 0.6.9 | adlift | 1.4-5 |
admisc | 0.36 | AdMit | 2.1.9 |
ads | 1.5-10 | AdvancedBasketballStats | 1.0.1 |
AER | 1.2-13 | 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.8.0 | ARCensReg | 3.0.1 |
archetypes | 2.2-0.1 | archive | 1.1.9 |
archivist | 2.3.8 | 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.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-12 |
autostsm | 3.1.5 | av | 0.9.1 |
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.12 | bang | 1.0.4 |
BANOVA | 1.2.1 | BarcodingR | 1.0-3 |
BART | 2.9.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.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.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 |
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.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.1.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.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-1 | 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.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 | binsegRcpp | 2023.8.31 |
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.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.0.5 | bit64 | 4.0.5 |
bitops | 1.0-8 | 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.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.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.1 |
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.17.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.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-2 | caRamel | 1.4 |
CARBayes | 6.1.1 | CARBayesdata | 3.0 |
CARBayesST | 4.0 | carData | 3.0-5 |
cards | 0.2.2 | 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.0.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.0 |
CeRNASeek | 2.1.3 | cffr | 1.1.1 |
cfr | 0.1.1 | 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.2 | 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.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.16 | collapsibleTree | 0.1.8 |
collections | 0.3.7 | colmozzie | 1.1.1 |
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-8 | contactdata | 1.0.0 |
contfrac | 1.1-12 | ContourFunctions | 0.1.2 |
convevol | 2.2.1 | convey | 1.0.0 |
coop | 0.6-3 | cops | 1.11-3 |
copula | 1.1-4 | 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.9.0 | corrgram | 1.14 |
corrplot | 0.94 | 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.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.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.2 |
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.2 |
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.0 |
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.3 | date | 1.2-42 |
dateback | 1.0.5 | datetimeoffset | 0.3.1 |
datetimeutils | 0.6-4 | 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.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 | 2.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.17.1 |
dendsort | 0.3.4 | denguedatahub | 1.0.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.56 | 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.1-0 | 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.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.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.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-0 | divest | 1.0.0 |
divseg | 0.0.5 | diyar | 0.5.1 |
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.5 | DoseFinding | 1.2-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-12 |
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.1.0 | 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-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.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.6 | 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.7 |
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.4 | 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.55 |
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.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.0 |
equateMultiple | 1.0.0 | 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 | 1.0.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 | 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.3.4 | 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.2 |
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.0 | feather | 0.3.5 |
fechner | 1.0-3 | 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.4.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.6 |
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 |
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 | 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.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.4.0 |
fourPNO | 1.1.0 | fpc | 2.2-12 |
fpcb | 0.1.0 | fpCompare | 0.2.4 |
FPLdata | 0.1.0 | fpop | 2019.08.26 |
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.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-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.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.4.0 |
gear | 0.3.4 | gee | 4.13-27 |
geeM | 0.10.1 | geepack | 1.3.11.1 |
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 |
GenOrd | 1.4.0 | GenSA | 1.1.14 |
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 | 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-18 |
geospt | 1.0-4 | geostan | 0.7.0 |
geotopbricks | 1.5.8.2 | geouy | 0.2.8 |
gert | 2.1.1 | GET | 1.0-3 |
GetoptLong | 1.0.5 | getPass | 0.2-4 |
gets | 0.38 | GetTDData | 1.5.6 |
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.6 | gggenes | 0.5.1 |
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.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.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.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-1 | 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-5 |
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.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.4 |
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.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.2 | gratis | 1.0.7 |
gravitas | 0.1.3 | gravity | 1.1 |
gRbase | 2.0.2 | 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.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-7 | gsisdecoder | 0.0.1 |
gsl | 2.1-8 | gslnls | 1.3.2 |
GSODR | 4.1.2 | gson | 0.1.0 |
gss | 2.2-7 | 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.0 |
gtable | 0.3.5 | gtheory | 0.1.2 |
gtools | 3.9.5 | gtrendsR | 1.5.1 |
gtsummary | 2.0.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.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 |
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.2.2 |
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-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.4 | hubeau | 0.5.0 |
humanFormat | 1.2 | humanize | 0.2.0 |
humidity | 0.1.5 | hunspell | 3.0.4 |
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.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.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.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.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.4.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 | insee | 1.1.7 |
insight | 0.20.4 | 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.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-8 | 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.0 | jpeg | 0.1-10 |
jqr | 1.3.4 | 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 |
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.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 | LearningRlab | 2.4 |
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-24 |
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 | 1.0.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.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.4 |
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.2 |
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.0 | 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.2.0 |
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.3 | 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.9.1 | mapmisc | 2.1.0 |
mapproj | 1.2.11 | maps | 3.4.2 |
mapsapi | 0.5.4 | mapsf | 0.11.0 |
mapSpain | 0.9.2 | 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.22.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.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-1 | 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-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.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.5.0 |
micromap | 1.9.9 | 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.2.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 | 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 | 1.0.0 | mlr3misc | 0.15.1 |
mlr3spatiotempcv | 2.3.1 | mlr3tuning | 1.0.1 |
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.2.0 | modeltime | 1.3.0 |
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.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-4 | mpt | 0.8-0 |
MPTinR | 1.14.1 | MPV | 1.64 |
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.8 | 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.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.2.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.5.0.1 | nanonext | 1.2.1 |
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.5.2 | NlcOptim | 0.6 |
nleqslv | 3.3.5 | NlinTS | 1.4.5 |
nlmeVPC | 2.6 | nlmixr2 | 3.0.0 |
nlmixr2data | 2.0.9 | nlmixr2est | 3.0.0 |
nlmixr2extra | 3.0.0 | 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.8-0 | nmw | 0.1.5 |
nnfor | 0.9.9 | nnls | 1.5 |
NNS | 10.9.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.5 | nonmemica | 1.0.8 |
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.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 | OBsMD | 12.0 |
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.5 | odr | 1.4.4 |
OECD | 0.2.5 | oeli | 0.6.0 |
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.12 |
openNLP | 0.2-7 | openNLPdata | 1.5.3-5 |
openssl | 2.2.1 | OpenStreetMap | 0.4.0 |
openxlsx | 4.2.7 | 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.22.2 | ParamHelpers | 1.14.1 |
params | 0.7.3 | paran | 1.5.3 |
Pareto | 2.4.5 | parglm | 0.1.7 |
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-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.6 |
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.73.4 | 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.1 | pdftables | 0.1 |
pdftools | 3.4.0 | pdist | 1.2.1 |
pdp | 0.8.1 | pdR | 1.9.3 |
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.3 | 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.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.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.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.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.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.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.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.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-3 |
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-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-4 |
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.8.0 |
PSCBS | 0.67.0 | pscl | 1.5.9 |
psd | 2.1.1 | PSF | 0.5 |
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-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.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.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.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.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.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.2 |
rapiclient | 0.1.6 | 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 | rbedrock | 0.3.2 |
rbenchmark | 1.0.0 | RBGL | 1.80.0 |
rBiasCorrection | 0.3.4 | rbibutils | 2.2.16 |
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.2-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.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.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.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.9.1 |
REDCapR | 1.2.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.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.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.11 | 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-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.20.0 |
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.2 | 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-16 |
rJava | 1.0-11 | RJDBC | 0.2-10 |
RJDemetra | 0.2.6 | 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.28 | 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.15 |
robsurvey | 0.7 | robustbase | 0.99-4 |
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 |
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-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.2.1 |
rsm | 2.10.5 | RSmartlyIO | 0.1.3 |
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.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-2 | 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.3 |
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 | 3.0.0 | rxode2ll | 2.0.11 |
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 |
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 | 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.2 | seeker | 1.1.6 |
seer | 1.1.8 | segmented | 2.1-2 |
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.31 |
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-17 |
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.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.5 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.1 |
shinyjs | 2.1.0 | shinymaterial | 1.2.0 |
shinySIR | 0.1.2 | 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.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-53 | 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.5 | 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.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.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-2 | spam | 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.5.1 | SpatialTools | 1.0.5 |
spatialwidget | 0.2.5 | spatstat | 3.1-1 |
spatstat.data | 3.1-2 | spatstat.explore | 3.3-2 |
spatstat.geom | 3.3-3 | spatstat.linnet | 3.2-1 |
spatstat.model | 3.3-1 | spatstat.random | 3.3-2 |
spatstat.sparse | 3.1-0 | spatstat.univar | 3.0-1 |
spatstat.utils | 3.1-0 | spBayes | 0.4-7 |
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.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.8.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.3 | sptotal | 1.0.1 |
sqldf | 0.4-11 | SqlRender | 1.18.1 |
SQRL | 1.0.2 | SQUAREM | 2021.1 |
srvyr | 1.3.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.1 |
sstvars | 1.0.1 | stable | 1.1.6 |
stabledist | 0.7-2 | 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.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.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.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-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.8 | support.CEs | 0.7-0 |
surface | 0.6 | SurrogateRegression | 0.6.0.1 |
suRtex | 0.9 | survcomp | 1.54.0 |
surveillance | 1.23.1 | survey | 4.4-2 |
surveybootstrap | 0.0.3 | surveydata | 0.2.7 |
surveyplanning | 4.0 | surveysd | 1.3.1 |
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.6 | svDialogs | 1.1.0 |
SVDNF | 0.1.9 | 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.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.7.1 |
tau | 0.0-25 | taxize | 0.9.100.1 |
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.3 |
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.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.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.7 | tidycensus | 1.6.5 |
tidychangepoint | 0.0.1 | tidyestimate | 1.1.1 |
tidygraph | 1.3.1 | tidyhydat | 0.6.1 |
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 | 4032.109 | timeSeries | 4041.110 |
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.4.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.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.2 |
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 |
tsgc | 0.0 | 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.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 | 5.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 |
wbs | 1.4 | 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.1 | wehoop | 2.1.0 |
WeightedPortTest | 1.1 | WeightIt | 1.3.0 |
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.1 |
wk | 0.9.3 | 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.3 | writexl | 1.5.0 |
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.47 |
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.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 |
ympes | 1.5.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 |
Where to find the AMI?
Our JupyterHub Server AMI products can be found at AWS Marketplace.
Pricing
$0.10/hour charge for the AMI plus the cost charged for computing resources by AWS.
Set up JupyterHub Server on EC2
Default user: jhub-admin
Please sign up and set your password for jhub-admin when you start the server for the first time. Different from regular users, jhub-admin is automatically authorized to log in after the password is created.
http is supported out of box.
If https is desired, please send your request to support@elmcomputing.io
Startup page
After the EC2 instance is started, you can access the JupyterHub 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:
Sign-up page
When the JupyterHub Server is activated, a default user "jhub-admin" is created. The first time you access the server, a password need to be set for "jhub-admin".
jupyterlab
Authorize page
When creating new users, an authorization step is needed at "http://10.11.12.13/hub/authorize"
Change password
The password can be changed at "http://10.11.12.13/hub/change-password"
Python version: 3.10.12
Python packages
package | version | package | version |
---|---|---|---|
absl-py | 2.1.0 | aiobotocore | 2.15.0 |
aiofiles | 23.2.1 | aiohappyeyeballs | 2.4.0 |
aiohttp | 3.10.5 | aioitertools | 0.12.0 |
aiosignal | 1.3.1 | alembic | 1.13.2 |
altair | 5.4.1 | analytics-python | 1.2.9 |
aniso8601 | 9.0.1 | annotated-types | 0.7.0 |
anyio | 4.4.0 | appdirs | 1.4.4 |
argon2-cffi | 23.1.0 | argon2-cffi-bindings | 21.2.0 |
args | 0.1.0 | arrow | 1.3.0 |
arviz | 0.19.0 | asgiref | 3.8.1 |
asttokens | 2.4.1 | astunparse | 1.6.3 |
async-generator | 1.10 | async-lru | 2.0.4 |
async-property | 0.2.2 | async-timeout | 4.0.3 |
attrs | 24.2.0 | audioread | 3.0.1 |
autobahn | 24.4.2 | automat | 24.8.1 |
awscli | 1.34.16 | babel | 2.16.0 |
backcall | 0.2.0 | backoff | 2.2.1 |
backports-tarfile | 1.2.0 | bayesian-optimization | 1.5.1 |
bcrypt | 4.2.0 | beautifulsoup4 | 4.12.3 |
black | 24.8.0 | bleach | 6.1.0 |
blinker | 1.8.2 | blis | 0.7.11 |
bokeh | 3.5.2 | boruta | 0.4.3 |
botocore | 1.35.16 | branca | 0.7.2 |
brotli | 1.1.0 | brotlipy | 0.7.0 |
cachetools | 5.5.0 | catalogue | 2.0.10 |
catboost | 1.2.7 | certifi | 2024.8.30 |
certipy | 0.2.1 | cffi | 1.17.1 |
chainer | 7.8.1 | chardet | 5.2.0 |
charset-normalizer | 3.3.2 | click | 8.1.7 |
clint | 0.5.1 | cloudpathlib | 0.19.0 |
cloudpickle | 3.0.0 | cmdstanpy | 1.2.4 |
colorama | 0.4.6 | colorlog | 6.8.2 |
colorlover | 0.3.0 | comm | 0.2.2 |
confection | 0.1.5 | configobj | 5.0.8 |
constantly | 23.10.4 | contourpy | 1.3.0 |
coverage | 7.6.1 | cryptography | 43.0.1 |
cssselect | 1.2.0 | cufflinks | 0.17.3 |
cycler | 0.12.1 | cymem | 2.0.8 |
cython | 3.0.11 | dacite | 1.8.1 |
dash | 2.18.1 | dash-core-components | 2.0.0 |
dash-html-components | 2.0.0 | dash-renderer | 1.9.1 |
dash-table | 5.0.0 | dask | 2024.9.0 |
databricks-sdk | 0.32.1 | datascience | 0.17.6 |
deap | 1.4.1 | debugpy | 1.8.5 |
decorator | 5.1.1 | deepdiff | 8.0.1 |
defusedxml | 0.7.1 | deprecated | 1.2.14 |
deprecation | 2.1.0 | dill | 0.3.8 |
dipy | 1.9.0 | distributed | 2024.9.0 |
distro | 1.9.0 | distro-info | 1.0 |
django | 5.1.1 | dm-tree | 0.1.8 |
dmri-amico | 2.0.3 | dmri-commit | 2.3.0 |
dmri-dicelib | 1.1.2 | docker | 7.1.0 |
docutils | 0.16 | easyprocess | 1.1 |
ecdsa | 0.19.0 | eli5 | 0.13.0 |
entrypoint2 | 1.1 | entrypoints | 0.4 |
exceptiongroup | 1.2.2 | executing | 2.1.0 |
facets | 1.1.0 | fairlearn | 0.10.0 |
fastapi | 0.114.2 | fasteners | 0.19 |
fastjsonschema | 2.20.0 | fastprogress | 1.0.3 |
fastrlock | 0.8.2 | fasttext | 0.9.3 |
ffmpy | 0.4.0 | filelock | 3.16.0 |
flake8 | 7.1.1 | flask | 3.0.3 |
flask-cachebuster | 1.0.0 | flask-compress | 1.15 |
flask-cors | 5.0.0 | flask-login | 0.6.3 |
flatbuffers | 24.3.25 | folium | 0.17.0 |
fonttools | 4.53.1 | fqdn | 1.5.1 |
frozenlist | 1.4.1 | fsspec | 2024.9.0 |
funcy | 2.0 | future | 1.0.0 |
gast | 0.6.0 | gensim | 4.3.3 |
geopandas | 1.0.1 | gitdb | 4.0.11 |
gitpython | 3.1.43 | google-auth | 2.34.0 |
google-auth-oauthlib | 1.2.1 | google-pasta | 0.2.0 |
googlemaps | 4.10.0 | gradio | 4.44.0 |
gradio-client | 1.3.0 | graphene | 3.3 |
graphql-core | 3.2.4 | graphql-relay | 3.2.0 |
graphviz | 0.8.4 | greenlet | 3.1.0 |
grpcio | 1.66.1 | gunicorn | 23.0.0 |
h11 | 0.14.0 | h2 | 4.1.0 |
h5netcdf | 1.3.0 | h5py | 3.11.0 |
hdbscan | 0.8.38.post1 | headers-workaround | 0.18 |
heapdict | 1.0.1 | holidays | 0.57 |
hpack | 4.0.0 | html5lib | 1.1 |
htmlmin | 0.1.12 | httpcore | 1.0.5 |
httplib2 | 0.22.0 | httpx | 0.27.2 |
huggingface-hub | 0.24.7 | hyperframe | 6.0.1 |
hyperlink | 21.0.0 | hyperopt | 0.2.7 |
idna | 3.10 | imagehash | 4.3.1 |
imageio | 2.35.1 | imageio-ffmpeg | 0.5.1 |
imbalanced-learn | 0.12.3 | imblearn | 0.0 |
importlib-metadata | 8.5.0 | importlib-resources | 6.4.5 |
incremental | 24.7.2 | iniconfig | 2.0.0 |
ipykernel | 6.29.5 | ipython | 8.27.0 |
ipython-genutils | 0.2.0 | ipywidgets | 8.1.5 |
isoduration | 20.11.0 | isort | 5.13.2 |
itemadapter | 0.9.0 | itemloaders | 1.3.1 |
itsdangerous | 2.2.0 | jaraco-classes | 3.4.0 |
jaraco-context | 6.0.1 | jaraco-functools | 4.0.2 |
jedi | 0.19.1 | jeepney | 0.8.0 |
jinja2 | 3.1.4 | jmespath | 1.0.1 |
joblib | 1.4.2 | json5 | 0.9.25 |
jsonpatch | 1.33 | jsonpointer | 3.0.0 |
jsonschema | 4.23.0 | jsonschema-specifications | 2023.12.1 |
jupyter | 1.1.1 | jupyter-client | 8.6.2 |
jupyter-console | 6.6.3 | jupyter-core | 5.7.2 |
jupyter-events | 0.10.0 | jupyter-lsp | 2.2.5 |
jupyter-server | 2.14.2 | jupyter-server-proxy | 4.4.0 |
jupyter-server-terminals | 0.5.3 | jupyter-telemetry | 0.1.0 |
jupyterhub | 3.1.1 | jupyterhub-nativeauthenticator | 1.2.0 |
jupyterlab | 4.2.5 | jupyterlab-pygments | 0.3.0 |
jupyterlab-server | 2.27.3 | jupyterlab-vpython | 3.1.8 |
jupyterlab-widgets | 3.0.13 | jwcrypto | 1.5.6 |
keras | 3.5.0 | keras-preprocessing | 1.1.2 |
keras-tuner | 1.4.7 | keycloakauthenticator | 2.0.0 |
keyring | 25.3.0 | kiwisolver | 1.4.7 |
kmodes | 0.12.2 | kt-legacy | 1.0.5 |
langcodes | 3.4.0 | language-data | 1.2.0 |
launchpadlib | 2.0.0 | lazr-restfulclient | 0.14.6 |
lazr-uri | 1.0.6 | lazy-loader | 0.4 |
libclang | 18.1.1 | librosa | 0.10.2.post1 |
lightgbm | 4.5.0 | lime | 0.2.0.1 |
llvmlite | 0.43.0 | locket | 1.0.0 |
lucid | 0.3.8 | lxml | 5.3.0 |
mako | 1.3.5 | mamba | 0.11.3 |
marisa-trie | 1.2.0 | markdown | 3.7 |
markdown-it-py | 3.0.0 | markdown2 | 2.5.0 |
markupsafe | 2.1.5 | matplotlib | 3.9.2 |
matplotlib-inline | 0.1.7 | matplotlib-venn | 1.1.1 |
mccabe | 0.7.0 | mdurl | 0.1.2 |
mechanize | 0.4.10 | missingno | 0.5.2 |
mistune | 3.0.2 | ml-dtypes | 0.4.1 |
mlflow | 2.16.1 | mlflow-skinny | 2.16.1 |
mlpack | 4.3.0.post2 | mlxtend | 0.23.1 |
monotonic | 1.6 | more-itertools | 10.5.0 |
moviepy | 0.2.3.1 | mpi4py | 4.0.0 |
mpld3 | 0.5.10 | mpmath | 1.3.0 |
msgpack | 1.1.0 | mss | 9.0.2 |
multidict | 6.1.0 | multimethod | 1.12 |
murmurhash | 1.0.10 | mutagen | 1.47.0 |
mxnet | 1.9.1 | mypy-extensions | 1.0.0 |
namex | 0.0.8 | narwhals | 1.8.1 |
nbclient | 0.10.0 | nbconvert | 7.16.4 |
nbformat | 5.10.4 | nbgitpuller | 1.2.1 |
nest-asyncio | 1.6.0 | netifaces | 0.11.0 |
networkx | 3.3 | nibabel | 5.2.1 |
nilearn | 0.10.4 | nltk | 3.9.1 |
notebook | 7.2.2 | notebook-shim | 0.2.4 |
numba | 0.60.0 | numexpr | 2.10.1 |
numpy | 1.26.4 | nycflights13 | 0.0.3 |
oauthenticator | 17.0.0 | oauthlib | 3.2.2 |
onetimepass | 1.0.1 | opencv-python | 4.10.0.84 |
opentelemetry-api | 1.16.0 | opentelemetry-sdk | 1.16.0 |
opentelemetry-semantic-conventions | 0.37b0 | opt-einsum | 3.3.0 |
optree | 0.12.1 | optuna | 4.0.0 |
orderly-set | 5.2.2 | orjson | 3.10.7 |
outcome | 1.3.0.post0 | overrides | 7.7.0 |
packaging | 24.1 | pamela | 1.2.0 |
pandas | 2.2.2 | pandas-profiling | 3.6.6 |
pandocfilters | 1.5.1 | paramiko | 3.5.0 |
parsel | 1.9.1 | parso | 0.8.4 |
partd | 1.4.2 | pathlib-abc | 0.1.1 |
pathspec | 0.12.1 | pathy | 0.11.0 |
patsy | 0.5.6 | pbr | 6.1.0 |
pdfkit | 1.0.0 | pendulum | 3.0.0 |
pexpect | 4.9.0 | phik | 0.12.4 |
pickleshare | 0.7.5 | pillow | 10.4.0 |
pip | 24.2 | platformdirs | 4.3.3 |
plotly | 5.24.1 | pluggy | 1.5.0 |
pooch | 1.8.2 | preshed | 3.0.9 |
priority | 2.0.0 | proglog | 0.1.10 |
prometheus-client | 0.20.0 | prompt-toolkit | 3.0.47 |
prophet | 1.1.5 | protego | 0.3.1 |
protobuf | 4.25.4 | psutil | 6.0.0 |
ptyprocess | 0.7.0 | pure-eval | 0.2.3 |
py | 1.11.0 | py4j | 0.10.9.7 |
pyarrow | 17.0.0 | pyasn1 | 0.6.1 |
pyasn1-modules | 0.4.1 | pybind11 | 2.13.6 |
pycairo | 1.27.0 | pycaret | 2.2.2 |
pycodestyle | 2.12.1 | pycosat | 0.6.6 |
pycparser | 2.22 | pycryptodome | 3.20.0 |
pydantic | 2.9.1 | pydantic-core | 2.23.3 |
pydeck | 0.9.1 | pydispatcher | 2.0.7 |
pydot | 3.0.1 | pydotplus | 2.0.2 |
pydub | 0.25.1 | pyexpect | 1.0.22 |
pyflakes | 3.2.0 | pygame | 2.6.0 |
pyglet | 2.0.17 | pygments | 2.18.0 |
pygobject | 3.50.0 | pygresql | 6.0.1 |
pyjwt | 2.9.0 | pyldavis | 3.4.1 |
pymc3 | 3.11.4 | pynacl | 1.5.0 |
pynndescent | 0.5.13 | pyod | 2.0.2 |
pyogrio | 0.9.0 | pyopengl | 3.1.7 |
pyopenssl | 24.2.1 | pyparsing | 3.1.4 |
pyproj | 3.6.1 | pyquery | 2.0.1 |
pyrsistent | 0.20.0 | pyscreenshot | 3.1 |
pyserial | 3.5 | pysocks | 1.7.1 |
pyspark | 3.5.2 | pytest | 8.3.3 |
pytest-cov | 5.0.0 | python-dateutil | 2.9.0.post0 |
python-debian | 0.1.49 | python-jose | 3.3.0 |
python-json-logger | 2.0.7 | python-keycloak | 4.4.0 |
python-multipart | 0.0.9 | pytz | 2024.2 |
pytzdata | 2020.1 | pywavelets | 1.7.0 |
pyyaml | 6.0.2 | pyzmq | 26.2.0 |
qtconsole | 5.6.0 | qtpy | 2.4.1 |
queuelib | 1.7.0 | referencing | 0.35.1 |
regex | 2024.9.11 | requests | 2.32.3 |
requests-file | 2.1.0 | requests-oauthlib | 2.0.0 |
requests-toolbelt | 1.0.0 | requests-unixsocket | 0.3.0 |
resampy | 0.4.3 | retrying | 1.3.4 |
rfc3339-validator | 0.1.4 | rfc3986-validator | 0.1.1 |
rich | 13.8.1 | rpds-py | 0.20.0 |
rsa | 4.7.2 | ruamel-yaml | 0.18.6 |
ruamel-yaml-clib | 0.2.8 | ruff | 0.6.5 |
s3fs | 2024.9.0 | s3transfer | 0.10.2 |
safetensors | 0.4.5 | scikit-base | 0.9.0 |
scikit-image | 0.24.0 | scikit-learn | 1.5.2 |
scikit-plot | 0.3.7 | scipy | 1.13.1 |
scrape | 0.11.3 | scrapy | 2.11.2 |
seaborn | 0.13.2 | secretstorage | 3.3.3 |
selenium | 4.24.0 | semantic-version | 2.10.0 |
semver | 3.0.2 | send2trash | 1.8.3 |
service-identity | 24.1.0 | setuptools | 75.1.0 |
setuptools-scm | 8.1.0 | shap | 0.46.0 |
shapely | 2.0.6 | shellingham | 1.5.4 |
simpervisor | 1.0.0 | simplejson | 3.19.3 |
six | 1.16.0 | sktime | 0.33.0 |
slicer | 0.0.8 | smart-open | 6.4.0 |
smmap | 5.0.1 | sniffio | 1.3.1 |
sortedcontainers | 2.4.0 | sos | 0.25.1 |
soundfile | 0.12.1 | soupsieve | 2.6 |
soxr | 0.5.0.post1 | spacy | 3.7.6 |
spacy-legacy | 3.0.12 | spacy-loggers | 1.0.5 |
sqlalchemy | 2.0.35 | sqlparse | 0.5.1 |
srsly | 2.4.8 | ssh-import-id | 5.11 |
stack-data | 0.6.3 | stanio | 0.5.1 |
starlette | 0.38.5 | statsmodels | 0.14.3 |
stopit | 1.1.2 | streamlit | 1.38.0 |
sympy | 1.13.2 | tabulate | 0.9.0 |
tblib | 3.0.0 | tenacity | 8.5.0 |
tensorboard | 2.17.1 | tensorboard-data-server | 0.7.2 |
tensorboard-plugin-wit | 1.8.1 | tensorboardx | 2.6.2.2 |
tensorflow | 2.17.0 | tensorflow-io-gcs-filesystem | 0.37.1 |
tensorflow-probability | 0.24.0 | termcolor | 2.4.0 |
terminado | 0.18.1 | testpath | 0.6.0 |
testresources | 2.0.1 | textblob | 0.18.0.post0 |
theano | 1.0.5 | theano-pymc | 1.1.2 |
thinc | 8.2.5 | threadpoolctl | 3.5.0 |
tifffile | 2024.8.30 | time-machine | 2.15.0 |
tinycss2 | 1.3.0 | tldextract | 5.1.2 |
tokenizers | 0.19.1 | toml | 0.10.2 |
tomli | 2.0.1 | tomlkit | 0.12.0 |
toolz | 0.12.1 | torch | 2.4.1 |
tornado | 6.4.1 | tpot | 0.12.2 |
tqdm | 4.66.5 | traitlets | 5.14.3 |
transformers | 4.44.2 | trio | 0.26.2 |
trio-websocket | 0.11.1 | trx-python | 0.3 |
twisted | 24.7.0 | txaio | 23.1.1 |
typeguard | 4.3.0 | typer | 0.12.5 |
types-python-dateutil | 2.9.0.20240906 | typing-extensions | 4.12.2 |
tzdata | 2024.1 | umap-learn | 0.5.6 |
update-checker | 0.18.0 | uri-template | 1.3.0 |
urllib3 | 2.2.3 | uvicorn | 0.30.6 |
vega | 2.6.0 | vega-datasets | 0.9.0 |
visions | 0.7.6 | vpython | 7.6.5 |
w3lib | 2.2.1 | wadllib | 1.3.6 |
wasabi | 1.1.3 | watchdog | 4.0.2 |
wcwidth | 0.2.13 | weasel | 0.4.1 |
webcolors | 24.8.0 | webencodings | 0.5.1 |
websocket-client | 1.8.0 | websockets | 12.0 |
werkzeug | 3.0.4 | wheel | 0.44.0 |
widgetsnbextension | 4.0.13 | wordcloud | 1.9.3 |
wrapt | 1.16.0 | wsproto | 1.2.0 |
xarray | 2024.9.0 | xarray-einstats | 0.7.0 |
xgboost | 2.1.1 | xxhash | 3.5.0 |
xyzservices | 2024.9.0 | yarl | 1.11.1 |
ydata-profiling | 4.10.0 | yellowbrick | 1.5 |
zict | 3.0.0 | zipp | 3.20.2 |
zope-interface | 7.0.3 | zstandard | 0.23.0 |
package | version | package | version |
---|---|---|---|
absl-py | 0.15.0 | aiobotocore | 1.4.2 |
aiohttp | 3.7.4.post0 | aioitertools | 0.8.0 |
alembic | 1.7.4 | altair | 4.1.0 |
analytics-python | 1.4.0 | anyio | 3.3.4 |
appdirs | 1.4.4 | argon2-cffi | 21.1.0 |
args | 0.1.0 | astunparse | 1.6.3 |
async-generator | 1.10 | async-timeout | 3.0.1 |
atomicwrites | 1.1.5 | attrs | 19.3.0 |
audioread | 2.1.9 | autobahn | 21.3.1 |
Automat | 20.2.0 | awscli | 1.19.106 |
Babel | 2.9.1 | backcall | 0.2.0 |
backoff | 1.10.0 | bcrypt | 3.2.0 |
beautifulsoup4 | 4.10.0 | bleach | 4.1.0 |
blinker | 1.4 | blis | 0.7.5 |
bokeh | 2.4.1 | botocore | 1.20.106 |
branca | 0.5.0 | Brotli | 1.0.9 |
brotlipy | 0.7.0 | cachetools | 4.2.4 |
catalogue | 2.0.6 | certifi | 2019.11.28 |
certipy | 0.1.3 | cffi | 1.15.0 |
chainer | 7.8.0 | chardet | 3.0.4 |
click | 8.0.3 | clint | 0.5.1 |
cloud-init | 22.1 | cloudpickle | 2.0.0 |
colorama | 0.4.3 | command-not-found | 0.3 |
conda | 4.0.9 | configobj | 5.0.6 |
constantly | 15.1.0 | coverage | 6.0.2 |
cryptography | 35.0.0 | cssselect | 1.1.0 |
cycler | 0.11.0 | cymem | 2.0.6 |
Cython | 0.29.24 | dash | 2.0.0 |
dash-core-components | 2.0.0 | dash-html-components | 2.0.0 |
dash-renderer | 1.9.1 | dash-table | 5.0.0 |
dask | 2021.10.0 | datascience | 0.17.2 |
dbus-python | 1.2.16 | debugpy | 1.5.1 |
decorator | 4.4.2 | defusedxml | 0.7.1 |
dipy | 1.4.1 | distributed | 2021.10.0 |
distro | 1.4.0 | distro-info | =0.23ubuntu1 |
dmri-amico | 1.3.0 | dmri-commit | 1.5.0 |
docutils | 0.15.2 | EasyProcess | 0.3 |
ecdsa | 0.17.0 | eemeter | 3.1.0 |
eeweather | 0.3.24 | eli5 | 0.11.0 |
entrypoint2 | 0.2.4 | entrypoints | 0.3 |
et-xmlfile | 1.0.1 | fastrlock | 0.8 |
fasttext | 0.9.2 | ffmpy | 0.3.0 |
filelock | 3.3.2 | Flask | 2.0.2 |
Flask-CacheBuster | 1.0.0 | Flask-Compress | 1.10.1 |
Flask-Cors | 3.0.10 | Flask-Login | 0.5.0 |
flatbuffers | 2.0 | folium | 0.12.1.post1 |
fsspec | 2021.10.1 | future | 0.18.2 |
gast | 0.4.0 | gensim | 4.1.2 |
google-auth | 2.3.2 | google-auth-oauthlib | 0.4.6 |
google-pasta | 0.2.0 | googlemaps | 4.5.3 |
gradio | 2.4.1 | graphviz | 0.17 |
greenlet | 1.1.2 | grpcio | 1.41.1 |
h11 | 0.12.0 | h2 | 3.2.0 |
h5py | 3.5.0 | haversine | 2.5.1 |
HeapDict | 1.0.1 | hibagent | 1.0.1 |
hpack | 3.0.0 | html5lib | 1.1 |
httplib2 | 0.14.0 | hyperframe | 5.2.0 |
hyperlink | 21.0.0 | idna | 2.8 |
imageio | 2.10.1 | imageio-ffmpeg | 0.4.5 |
importlib-metadata | 1.5.0 | importlib-resources | 5.3.0 |
incremental | 21.3.0 | iniconfig | 1.1.1 |
ipykernel | 6.4.2 | ipython | 7.29.0 |
ipython-genutils | 0.2.0 | ipywidgets | 7.6.5 |
itemadapter | 0.4.0 | itemloaders | 1.0.4 |
itsdangerous | 2.0.1 | jdcal | 1.0 |
jedi | 0.18.0 | jeepney | 0.7.1 |
Jinja2 | 3.0.2 | jmespath | 0.10.0 |
joblib | 1.1.0 | json5 | 0.9.6 |
jsonpatch | 1.22 | jsonpointer | 2.0 |
jsonschema | 3.2.0 | jupyter | 1.0.0 |
jupyter-client | 7.0.6 | jupyter-console | 6.4.0 |
jupyter-core | 4.9.1 | jupyter-server | 1.11.1 |
jupyter-server-proxy | 3.1.0 | jupyter-telemetry | 0.1.0 |
jupyterhub | 1.4.2 | jupyterhub-nativeauthenticator | 1.0.5 |
jupyterlab | 3.2.3 | jupyterlab-pygments | 0.1.2 |
jupyterlab-server | 2.8.2 | jupyterlab-widgets | 1.0.2 |
keras | 2.7.0 | Keras-Preprocessing | 1.1.2 |
keycloakauthenticator | 2.0.0 | keyring | 18.0.1 |
kiwisolver | 1.3.2 | language-selector | 0.1 |
launchpadlib | 1.10.13 | lazr.restfulclient | 0.14.2 |
lazr.uri | 1.0.3 | libclang | 12.0.0 |
librosa | 0.8.1 | lightgbm | 3.3.1 |
llvmlite | 0.38.1 | locket | 0.2.1 |
lxml | 4.6.3 | Mako | 1.1.5 |
mamba | 0.11.2 | Markdown | 3.3.4 |
markdown2 | 2.4.1 | MarkupSafe | 2.0.1 |
matplotlib | 3.4.3 | matplotlib-inline | 0.1.3 |
mechanize | 0.4.7 | mistune | 0.8.4 |
mlpack | 3.2.2 | monotonic | 1.6 |
more-itertools | 4.2.0 | moviepy | 1.0.3 |
mpi4py | 3.1.1 | msgpack | 1.0.2 |
mss | 6.1.0 | multidict | 5.2.0 |
murmurhash | 1.0.6 | mutagen | 1.45.1 |
nbclassic | 0.3.4 | nbclient | 0.5.4 |
nbconvert | 6.2.0 | nbformat | 5.1.3 |
nbgitpuller | 1.0.2 | nest-asyncio | 1.5.1 |
netifaces | 0.10.4 | networkx | 2.6.3 |
nibabel | 3.2.1 | nltk | 3.6.5 |
notebook | 6.4.5 | numba | 0.55.1 |
numexpr | 2.7.1 | numpy | 1.20.3 |
nycflights13 | 0.0.3 | oauthenticator | 14.2.0 |
oauthlib | 3.1.0 | olefile | 0.46 |
onetimepass | 1.0.1 | opencv-python | 4.5.4.58 |
openpyxl | 3.0.3 | opt-einsum | 3.3.0 |
outcome | 1.1.0 | packaging | 21.2 |
pamela | 1.0.0 | pandas | 1.3.4 |
pandocfilters | 1.5.0 | paramiko | 2.8.0 |
parsel | 1.6.0 | parso | 0.8.2 |
partd | 1.2.0 | pathy | 0.6.1 |
patsy | 0.5.2 | pbr | 5.6.0 |
pdfkit | 0.6.1 | pendulum | 2.1.2 |
pexpect | 4.6.0 | pickleshare | 0.7.5 |
Pillow | 8.4.0 | plotly | 5.3.1 |
pluggy | 1.0.0 | pooch | 1.5.2 |
preshed | 3.0.6 | priority | 1.3.0 |
proglog | 0.1.9 | prometheus-client | 0.12.0 |
prompt-toolkit | 3.0.21 | Protego | 0.1.16 |
protobuf | 3.19.1 | psutil | 5.8.0 |
ptyprocess | 0.7.0 | py | 1.10.0 |
py4j | 0.10.9.2 | pyarrow | 6.0.0 |
pyasn1 | 0.4.8 | pyasn1-modules | 0.2.8 |
pybind11 | 2.8.1 | pycairo | 1.20.1 |
pycosat | 0.6.3 | pycparser | 2.20 |
pycryptodome | 3.11.0 | pycurl | 7.45.1 |
pydantic | 1.8.2 | PyDispatcher | 2.0.5 |
pydot | 1.4.2 | pydub | 0.25.1 |
pyexpect | 1.0.21 | pygame | 2.0.2 |
pyglet | 1.5.21 | Pygments | 2.10.0 |
PyGObject | 3.36.0 | PyGreSQL | 5.2.2 |
PyHamcrest | 1.9.0 | PyJWT | 2.3.0 |
pymacaroons | 0.13.0 | PyNaCl | 1.4.0 |
pyOpenSSL | 19.0.0 | pyparsing | 2.4.7 |
pyproj | 3.3.1 | pyquery | 1.4.3 |
pyrsistent | 0.15.5 | pyscreenshot | 3.0 |
pyserial | 3.4 | PySocks | 1.7.1 |
pyspark | 3.2.0 | pytest | 6.2.5 |
python-apt | 2.0.0+ubuntu0.20.4.7 | python-dateutil | 2.8.2 |
python-debian | =0.1.36ubuntu1 | python-jose | 3.3.0 |
python-json-logger | 2.0.2 | python-keycloak | 0.26.1 |
python-spams | 2.6.1.11 | pytz | 2021.3 |
pytzdata | 2020.1 | PyWavelets | 1.1.1 |
PyYAML | 5.2 | pyzmq | 22.3.0 |
qtconsole | 5.1.1 | QtPy | 1.11.2 |
queuelib | 1.6.2 | regex | 2021.10.23 |
requests | 2.22.0 | requests-file | 1.5.1 |
requests-oauthlib | 1.3.0 | requests-unixsocket | 0.2.0 |
resampy | 0.2.2 | retrying | 1.3.3 |
rsa | 3.4.2 | ruamel.yaml | 0.17.16 |
ruamel.yaml.clib | 0.2.6 | s3fs | 2021.10.1 |
s3transfer | 0.4.2 | scikit-image | 0.18.3 |
scikit-learn | 1.0.1 | scipy | 1.7.1 |
scrape | 0.11.1 | Scrapy | 2.5.1 |
seaborn | 0.11.2 | SecretStorage | 2.3.1 |
selenium | 4.0.0 | Send2Trash | 1.8.0 |
service-identity | 21.1.0 | Shapely | 1.8.2 |
simpervisor | 0.4 | simplejson | 3.16.0 |
six | 1.14.0 | smart-open | 5.2.1 |
sndfile | 0.2.0 | sniffio | 1.2.0 |
sortedcontainers | 2.4.0 | sos | 4.3 |
SoundFile | 0.10.3.post1 | soupsieve | 2.2.1 |
spacy | 3.1.4 | spacy-legacy | 3.0.8 |
SQLAlchemy | 1.4.26 | srsly | 2.4.2 |
ssh-import-id | 5.10 | statsmodels | 0.13.0 |
systemd-python | 234 | tables | 3.6.1 |
tabulate | 0.8.9 | tblib | 1.7.0 |
tenacity | 8.0.1 | tensorboard | 2.7.0 |
tensorboard-data-server | 0.6.1 | tensorboard-plugin-wit | 1.8.0 |
tensorboardX | 2.4 | termcolor | 1.1.0 |
terminado | 0.12.1 | testpath | 0.5.0 |
testresources | 2.0.1 | Theano | 1.0.5 |
thinc | 8.0.12 | threadpoolctl | 3.0.0 |
tifffile | 2021.10.12 | tldextract | 3.1.2 |
toml | 0.10.2 | toolz | 0.11.1 |
torch | 1.10.0 | torchaudio | 0.11.0 |
torchvision | 0.12.0 | tornado | 6.1 |
tqdm | 4.62.3 | traitlets | 5.1.1 |
trio | 0.19.0 | trio-websocket | 0.9.2 |
Twisted | 21.7.0 | txaio | 21.2.1 |
typer | 0.4.0 | typing-extensions | 3.10.0.2 |
ubuntu-advantage-tools | 27.7 | ufw | 0.36 |
unattended-upgrades | 0.1 | urllib3 | 1.26.7 |
vega-datasets | 0.9.0 | vpython | 7.6.2 |
w3lib | 1.22.0 | wadllib | 1.3.3 |
wasabi | 0.8.2 | wcwidth | 0.2.5 |
webencodings | 0.5.1 | websocket-client | 1.2.1 |
Werkzeug | 2.0.2 | widgetsnbextension | 3.5.2 |
wrapt | 1.13.3 | wsproto | 1.0.0 |
xgboost | 1.5.0 | xlrd | 1.1.0 |
xlwt | 1.3.0 | yarl | 1.7.0 |
zict | 2.0.0 | zipp | 3.6.0 |
zope.interface | 5.4.0 |
After the virtual machine 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 last 12 digits of the vmId. The vmId can be found in the JSON View with the form of 1f61b751-037a-489e-8638-3fc32fe6894d. Only the last 12 digits 3fc32fe6894d are used as the password.
Azure VM console
JSON View
RStudio Server
R: 4.4.1
rstudio-server: 2024.04.2-764
R packages (4310)
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 | acnr | 1.0.0 |
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.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.23 |
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 |
Allspice | 1.0.7 | 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 | apt | 4.0 |
ARCensReg | 3.0.1 | archetypes | 2.2-0.1 |
archive | 1.1.9 | archivist | 2.3.8 |
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-4 | 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.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.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 |
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.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 | bbk | 0.4.0 |
BBmisc | 1.13 | bbmle | 1.0.25.1 |
bbotk | 1.1.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.6.1 |
BGLR | 1.1.3 | BGVAR | 2.5.8 |
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.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 |
binsegRcpp | 2023.8.31 | 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.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.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.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 | 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-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 |
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.1 | bsvarSIGNs | 1.0.1 |
BTLLasso | 0.1-13 | BTM | 0.3.7 |
bullishTrader | 1.0.1 | bundesbank | 0.1-12 |
bundesligR | 0.1.0 | 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 | 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 |
ChessGmooG | 0.1.0 | 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.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-5 |
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.16 |
collapsibleTree | 0.1.8 | collections | 0.3.7 |
colmozzie | 1.1.1 | 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.0 | 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.4 |
corona | 0.3.0 | coronavirus | 0.4.1 |
corpcor | 1.6.10 | corpora | 0.6 |
corporaexplorer | 0.9.0 | corrgram | 1.14 |
corrplot | 0.94 | 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.0 |
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.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.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.0 | dendsort | 0.3.4 |
denguedatahub | 2.1.1 | 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.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.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.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.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.0.0 | divseg | 0.0.5 |
diyar | 0.5.1 | 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-12 | 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.2.0 |
dreamerr | 1.4.0 | DriftBurstHypothesis | 0.4.0.1 |
driveR | 0.4.1 | DRomics | 2.6-0 |
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.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-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.1 | 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 |
EloOptimized | 0.3.2 | 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.4 | 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.4.0 | epinet | 2.1.11 |
EpiNow2 | 1.6.0 | 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.0 | equivalence | 0.7.2 |
era | 0.4.1 | erah | 2.0.1 |
erer | 4.0 | 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 |
euroleaguer | 0.2.0 | europepmc | 0.4.3 |
eurostat | 4.0.0 | evaluate | 1.0.0 |
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 | 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.1.2 | finnts | 0.4.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.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 | FlowScreen | 1.2.6 |
fma | 2.5 | FMC | 1.0.1 |
fmcmc | 0.5-2 | 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.3 |
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 |
fpop | 2019.08.26 | 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.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-5 |
gameR | 0.0.6 | 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.0 |
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.1 |
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 | 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.2 | GET | 1.0-3 |
GetoptLong | 1.0.5 | getPass | 0.2-4 |
gets | 0.38 | GetTDData | 1.5.6 |
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.6 | gggenes | 0.5.1 |
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.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.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.4 |
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.3 | 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.2 | 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.2 | gson | 0.1.0 |
gss | 2.2-7 | 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.5 | 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 |
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.2.2 |
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-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.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.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.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.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 | insee | 1.1.7 |
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 |
ISAR | 0.1.12 | 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.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.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.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 | LearningRlab | 2.4 |
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-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-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 | 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.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.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.0 | 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.2 | mapmisc | 2.1.0 |
mapproj | 1.2.11 | maps | 3.4.2 |
mapsapi | 0.5.4 | mapsf | 0.11.0 |
mapSpain | 0.9.2 | 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.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-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.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.11 |
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 |
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 |
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.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.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.9 |
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 |
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 | mlbplotR | 1.1.0 |
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.21.0 | mlr3learners | 0.7.0 |
mlr3measures | 1.0.0 | mlr3misc | 0.15.1 |
mlr3spatiotempcv | 2.3.1 | mlr3tuning | 1.0.1 |
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.1.1 |
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.0 |
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.4-4 | mpt | 0.8-0 |
MPTinR | 1.14.1 | MPV | 1.64 |
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.8.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.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.2.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.5.0.1 | 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 | nblR | 0.0.4 |
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.5.2 |
NlcOptim | 0.6 | nleqslv | 3.3.5 |
NlinTS | 1.4.5 | nlmeVPC | 2.6 |
nlmixr2 | 3.0.0 | nlmixr2data | 2.0.9 |
nlmixr2est | 3.0.0 | nlmixr2extra | 3.0.0 |
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.8-0 |
nmw | 0.1.5 | nnfor | 0.9.9 |
nnls | 1.5 | NNS | 10.9.2 |
noaastormevents | 0.2.0 | nodbi | 0.10.7 |
nominatimlite | 0.4.1 | 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.8 |
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.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 | OBsMD | 12.0 |
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.6.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.12 |
openNLP | 0.2-7 | openNLPdata | 1.5.3-5 |
openssl | 2.2.2 | OpenStreetMap | 0.4.0 |
openxlsx | 4.2.7.1 | openxlsx2 | 1.9 |
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.22.2 |
ParamHelpers | 1.14.1 | 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-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.1 |
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.3 |
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.4 | 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.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.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.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.1 |
protr | 1.7-4 | 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.8.0 | PSCBS | 0.67.0 |
pscl | 1.5.9 | psd | 2.1.1 |
PSF | 0.5 | 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.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.1 |
qgraph | 1.9.8 | qicharts2 | 0.7.5 |
qlcal | 0.0.12 | 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.98 | quantspec | 1.2-4 |
Quartet | 1.2.6 | 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-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.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.4 | 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.2.6 |
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-4 | 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.2-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.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.9.1 | REDCapCAST | 24.10.3 |
REDCapDM | 0.9.9 | REDCapR | 1.2.0 |
REDCapTidieR | 1.1.1 | Rediscover | 0.3.2 |
redland | 1.0.17-18 | redux | 1.1.4 |
RefManageR | 1.4.0 | reformulas | 0.3.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.10 |
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 | ReviewR | 2.3.10 |
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.1 |
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.20.0 | 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.16.3 |
rivernet | 1.2.3 | rivnet | 0.5.0 |
rix | 0.12.4 | 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-9 | 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 | robustarima | 0.2.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.0 |
rsm | 2.10.5 | RSmartlyIO | 0.1.3 |
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.1 | rstudioapi | 0.16.0 |
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.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-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.1 | rxode2ll | 2.0.11 |
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 |
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 | 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.3 | seeker | 1.1.6 |
seer | 1.1.8 | segmented | 2.1-2 |
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-17 |
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.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.5 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.1 |
shinyjs | 2.1.0 | shinymaterial | 1.2.0 |
shinySIR | 0.1.2 | 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-53 | 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.6-1 | smacpod | 2.6 |
SmallCountRounding | 1.0.5 | smam | 0.7.2 |
SmCCNet | 2.0.3 | SMDIC | 0.1.5 |
smerc | 1.8.3 | 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.3.2 | 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-2 | 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-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 | splusTimeDate | 2.5.8 |
splusTimeSeries | 1.5.7 | spmodel | 0.8.0 |
spmoran | 0.3.0 | 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.4 |
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.15 | 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.4 |
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-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.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 | 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.7 |
svDialogs | 1.1.0 | SVDNF | 0.1.10 |
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.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 | tabulapdf | 1.0.5-3 |
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-25 | taxize | 0.9.100.1 |
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-78 | 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.6 |
tidychangepoint | 0.0.1 | 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 | 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 | 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.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.2 | tsDyn | 11.0.4.1 |
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.2 | tsgc | 0.0 |
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.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.6 | 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 | 5.0.1 | 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 | wbs | 1.4 |
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.1 | wk | 0.9.3 |
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.48 | 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.0 |
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.5.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.3.1
rstudio-server: 2023.06.2+561
R packages (2906)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.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 |
actuar | 3.3-2 | ada | 2.0-5 |
adagio | 0.8.5 | adaptivetau | 2.2-3 |
adaptMCMC | 1.4 | adaptr | 1.3.2 |
adaptsmoFMRI | 1.2 | adaptTest | 1.1 |
ade4 | 1.7-22 | ade4TkGUI | 0.3-1 |
adegenet | 2.1.10 | adegraphics | 1.0-18 |
adehabitatHR | 0.4.21 | adehabitatHS | 0.3.17 |
adehabitatLT | 0.3.27 | adehabitatMA | 0.3.16 |
ADGofTest | 0.3 | adimpro | 0.9.6 |
admisc | 0.33 | AdMit | 2.1.9 |
ads | 1.5-9 | AER | 1.2-10 |
affy | 1.78.2 | affyio | 1.70.0 |
africamonitor | 0.2.3 | agricolae | 1.3-6 |
agricolaeplotr | 0.3.1 | agridat | 1.22 |
aion | 1.0.1 | airports | 0.1.0 |
akima | 0.6-3.4 | alabama | 2023.1.0 |
AlgDesign | 1.2.1 | almanac | 1.0.0 |
alphavantager | 0.1.3 | ALTopt | 0.1.2 |
Amelia | 1.8.1 | AmericanCallOpt | 0.95 |
ammiBayes | 1.0-1 | AMR | 2.1.0 |
AnaCoDa | 0.1.4.4 | anacor | 1.1-4 |
anesrake | 0.80 | animation | 2.7 |
anipaths | 0.10.2 | AnnotationDbi | 1.62.2 |
anytime | 0.3.9 | aod | 1.3.2 |
aoos | 0.5.0 | AovBay | 0.1.0 |
ape | 5.7-1 | APFr | 1.0.2 |
aplot | 0.2.1 | approximator | 1.2-8 |
ARCensReg | 3.0.1 | ArchaeoChron | 0.1 |
ArchaeoPhases | 1.8 | ArDec | 2.1-1 |
ARDL | 0.2.4 | ardl.nardl | 1.2.3 |
areal | 0.1.8 | arfima | 1.8-1 |
argo | 3.0.2 | argparse | 2.2.2 |
arkhe | 1.3.0 | arm | 1.13-1 |
aroma.apd | 0.7.0 | arrangements | 1.1.9 |
arrow | 13.0.0.1 | ars | 0.6 |
ascii | 2.4 | asd | 2.2 |
ash | 1.0-15 | ashr | 2.2-63 |
askpass | 1.2.0 | aspect | 1.0-6 |
ASSA | 2.0 | assertthat | 0.2.1 |
AssetCorr | 1.0.4 | astsa | 2.0 |
asymmetry | 2.0.4 | ata | 1.1.1 |
aTSA | 3.1.2 | attempt | 0.3.1 |
attention | 0.3.0 | AUC | 0.3.2 |
audio | 0.1-11 | autoFRK | 1.4.3 |
autoimage | 2.2.3 | automap | 1.1-9 |
autostsm | 3.1.2 | av | 0.8.5 |
aweek | 1.0.3 | aws | 2.5-3 |
awsMethods | 1.1-1 | BACCO | 2.1-0 |
BACCT | 1.0 | backports | 1.4.1 |
backtest | 0.3-4 | baggr | 0.7.6 |
bain | 0.2.10 | BalancedSampling | 1.6.3 |
BaM | 1.0.3 | bama | 1.3.0 |
bamdit | 3.4.0 | bamlss | 1.2-1 |
bang | 1.0.2 | BANOVA | 1.2.1 |
BART | 2.9.4 | bartBMA | 1.0 |
bartCause | 1.0-6 | bartMachine | 1.3.4.1 |
bartMachineJARs | 1.2.1 | BAS | 1.6.4 |
basad | 0.3.0 | base64 | 2.0.1 |
base64enc | 0.1-3 | base64url | 1.4 |
basicMCMCplots | 0.2.7 | BaSkePro | 0.1.0 |
BASS | 1.3.1 | BatchExperiments | 1.4.3 |
BatchJobs | 1.9 | batchmeans | 1.0-4 |
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-8 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.2.0 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.5 |
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.8 | BayesLogit | 2.1 |
bayeslongitudinal | 0.1.0 | bayesm | 3.1-6 |
BayesMallows | 1.3.2 | BayesMassBal | 1.1.0 |
bayesmeta | 3.3 | bayesmix | 0.7-6 |
bayesnec | 2.1.1.0 | bayesplot | 1.10.0 |
bayesQR | 2.4 | bayesRecon | 0.1.2 |
bayestestR | 0.13.1 | bayesTFR | 7.4-0 |
BayesTools | 0.2.16 | BayesTree | 0.3-1.4 |
BayesVarSel | 2.2.5 | BayesX | 0.3-2 |
BAYSTAR | 0.2-10 | BB | 2019.10-1 |
BBmisc | 1.13 | BCBCSF | 1.0-1 |
BCC1997 | 0.1.1 | BCE | 2.2.0 |
Bchron | 4.7.6 | bcp | 4.0.3 |
bcpa | 1.3.2 | bcrm | 0.5.4 |
BDgraph | 2.72 | bdsmatrix | 1.3-6 |
BE | 0.2.4 | beadarray | 2.50.0 |
BeadDataPackR | 1.52.0 | bearishTrader | 1.0.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.6 | Bernadette | 1.1.4 |
Bessel | 0.6-0 | BetaBit | 2.2 |
betafunctions | 1.8.1 | 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.2 | BGGM | 2.0.4 |
BGLR | 1.1.0 | BGVAR | 2.5.2 |
BH | 1.81.0-1 | BHH2 | 2016.05.31 |
BiasedUrn | 2.0.11 | bibtex | 0.5.1 |
bidask | 1.0.0 | BIFIEsurvey | 3.4-15 |
biganalytics | 1.1.21 | bigD | 0.2.0 |
biglm | 0.9-2.1 | bigmemory | 4.6.1 |
bigmemory.sri | 0.1.6 | bigrquery | 1.4.2 |
bigsplines | 1.1-1 | bigtime | 0.2.3 |
BigVAR | 1.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | binom | 1.1-1.1 |
binr | 1.1.1 | binseqtest | 1.0.4 |
Biobase | 2.60.0 | BiocGenerics | 0.46.0 |
BiocManager | 1.30.22 | BiocParallel | 1.34.2 |
BiocVersion | 3.17.1 | bioinactivation | 1.2.3 |
biomformat | 1.28.0 | bioOED | 0.2.1 |
Biostrings | 2.68.1 | birtr | 1.0.0 |
bit | 4.0.5 | bit64 | 4.0.5 |
bitops | 1.0-7 | biwavelet | 0.20.21 |
bizdays | 1.0.13 | bkmr | 0.2.2 |
blaise | 1.3.10 | blastula | 0.3.4 |
blavaan | 0.5-2 | BLModel | 1.0.2 |
blob | 1.2.4 | blocklength | 0.1.5 |
blockrand | 1.5 | blocksdesign | 4.9 |
blockTools | 0.6.4 | BLR | 1.6 |
BMA | 3.18.17 | bmgarch | 2.0.0 |
bmixture | 1.7 | BMS | 0.3.5 |
BMTAR | 0.1.1 | bnlearn | 4.9 |
BNPTSclust | 2.0 | BNSP | 2.2.3 |
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.35 |
Boom | 0.9.11 | BoomSpikeSlab | 1.2.5 |
bootnet | 1.5.5 | BootPR | 1.0 |
bootstrap | 2019.6 | bootUR | 1.0.2 |
bqtl | 1.0-35 | BradleyTerry2 | 1.1-2 |
brainR | 1.6.0 | breakfast | 2.3 |
brew | 1.0-8 | brglm | 0.7.2 |
brglm2 | 0.9 | bridgesampling | 1.1-2 |
brio | 1.1.3 | brms | 2.20.4 |
Brobdingnag | 1.2-9 | broman | 0.80 |
broom | 1.0.5 | bsam | 1.1.3 |
bsamGP | 1.2.4 | bslib | 0.5.1 |
BsMD | 2023.920 | bspec | 1.6 |
bspmma | 0.1-2 | bssm | 2.0.1 |
BSSprep | 0.1 | bsts | 0.9.9 |
bsvars | 1.0.0 | BTLLasso | 0.1-11 |
BTM | 0.3.7 | bullishTrader | 1.0.1 |
bundesbank | 0.1-9 | BurStFin | 1.3 |
BurStMisc | 1.1 | BVAR | 1.0.4 |
bvartools | 0.2.3 | ca | 0.71.1 |
cabootcrs | 2.1.0 | cachem | 1.0.8 |
cacIRT | 1.4 | CADFtest | 0.3-3 |
caffsim | 0.2.2 | Cairo | 1.6-1 |
calculus | 1.0.1 | CalibrateSSB | 1.3.0 |
calibrator | 1.2-8 | callr | 3.7.3 |
cancensus | 0.5.6 | candisc | 0.8-6 |
CANSIM2R | 1.14.1 | car | 3.1-2 |
CARBayes | 6.0 | CARBayesdata | 3.0 |
CARBayesST | 3.3.1 | carData | 3.0-5 |
caret | 6.0-94 | carfima | 2.0.2 |
caribou | 1.1-1 | cartogram | 0.3.0 |
caTools | 1.18.2 | catR | 3.17 |
causact | 0.5.3 | CausalImpact | 1.3.0 |
CAvariants | 5.9 | cbsodataR | 0.5.1 |
cccp | 0.2-9 | cdlTools | 0.15 |
CDM | 8.2-6 | cds | 1.0.3 |
CellNOptR | 1.46.0 | cellranger | 1.1.0 |
censusapi | 0.8.0 | CFtime | 1.0.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.2.0 | cherryblossom | 0.1.0 |
chilemapas | 0.3.0 | chk | 0.9.0 |
choiceDes | 0.9-3 | cholera | 0.8.0 |
CholWishart | 1.1.2 | chron | 2.3-61 |
cifti | 0.4.5 | cinterpolate | 1.0.0 |
CircSpaceTime | 0.9.0 | CircStats | 0.2-6 |
circular | 0.5-0 | ciTools | 0.6.1 |
classInt | 0.4-10 | cli | 3.6.1 |
clime | 0.5.0 | clinDR | 2.4.1 |
clinfun | 1.1.3 | clinicalsignificance | 1.2.0 |
clinPK | 0.11.1 | clinsig | 1.2 |
clipr | 0.8.0 | clisymbols | 1.2.0 |
clock | 0.7.0 | clue | 0.3-65 |
clustDRM | 0.1-0 | clusterGeneration | 1.3.8 |
clusterPower | 0.7.0 | ClustVarLV | 2.1.1 |
clv | 0.3-2.4 | cmaes | 1.0-12 |
CMLS | 1.0-1 | cmm | 1.0 |
cmocean | 0.3-1 | cmprsk | 2.2-11 |
cmrutils | 1.3.1 | cNORM | 3.0.3 |
CNORode | 1.42.0 | coalescentMCMC | 0.4-4 |
coalitions | 0.6.24 | coarseDataTools | 0.6-6 |
cobalt | 4.5.1 | coconots | 1.1.3 |
cocor | 1.1-4 | cocorresp | 0.4-3 |
cocron | 1.0-1 | coda | 0.19-4 |
coin | 1.4-3 | cointReg | 0.2.0 |
collapse | 1.9.6 | collapsibleTree | 0.1.7 |
colorRamps | 2.3.1 | colorspace | 2.1-0 |
colourpicker | 1.3.0 | colourvalues | 0.3.9 |
combinat | 0.0-8 | CombinS | 1.1-1 |
CommonJavaJars | 1.0-6 | commonmark | 1.9.0 |
compare | 0.2-6 | CompQuadForm | 1.4.3 |
conditionz | 0.1.0 | conf.design | 2.0.0 |
config | 0.3.2 | conflicted | 1.2.0 |
conquer | 1.3.3 | conquestr | 1.0.7 |
contactdata | 1.0.0 | contfrac | 1.1-12 |
convey | 0.2.5 | cops | 1.3-1 |
copula | 1.1-2 | copulaData | 0.0-1 |
cordillera | 1.0-0 | 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 |
costat | 2.4.1 | countrycode | 1.5.0 |
COVID19 | 3.0.3 | covid19.analytics | 2.1.3.1 |
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.1 |
CPBayes | 1.1.0 | cplm | 0.7-11 |
cpp11 | 0.4.6 | crawl | 2.3.0 |
crayon | 1.5.2 | credentials | 2.0.1 |
credule | 0.1.4 | crfsuite | 0.4.2 |
CRM | 1.2.4 | crmPack | 1.0.3 |
crossdes | 1.1-2 | Crossover | 0.1-21 |
crosstalk | 1.2.0 | crs | 0.15-37 |
crseEventStudy | 1.2.2 | crsmeta | 0.3.0 |
crul | 1.4.0 | cSEM | 0.5.0 |
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.15.2 |
CTT | 2.3.3 | CTTShiny | 0.1 |
ctv | 0.9-5 | cubature | 2.1.0 |
cubble | 0.3.0 | Cubist | 0.4.2.1 |
curl | 5.1.0 | cvar | 0.5 |
cvAUC | 1.1.4 | CVST | 0.2-3 |
CVXR | 1.0-11 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | dae | 3.2.19 |
daewr | 1.2-11 | dagitty | 0.3-1 |
DAKS | 2.1-3 | DALEX | 2.4.3 |
data.table | 1.14.8 | data.tree | 1.0.0 |
DatabaseConnector | 6.2.4 | DataExplorer | 0.8.2 |
datapasta | 3.1.0 | dataseries | 0.2.0 |
datawizard | 0.9.0 | date | 1.2-42 |
datetimeoffset | 0.3.1 | datetimeutils | 0.6-2 |
dbarts | 0.9-23 | DBI | 1.1.3 |
DBItest | 1.7.3 | dbmss | 2.8-2 |
dbparser | 2.0.1 | dbplyr | 2.3.4 |
dbscan | 1.1-11 | dbx | 0.2.8 |
DChaos | 0.1-7 | dclone | 2.3-2 |
DCluster | 0.2-9 | DClusterm | 1.0-1 |
dcov | 0.1.1 | dCovTS | 1.4 |
dcurver | 0.9.2 | dde | 1.0.4 |
deBInfer | 0.4.4 | deducorrect | 1.3.7 |
deductive | 1.0.0 | deldir | 1.0-9 |
deltaPlotR | 1.6 | dendextend | 1.17.1 |
densEstBayes | 1.0-2.2 | DEoptim | 2.2-8 |
DEoptimR | 1.1-2 | depmix | 0.9.16 |
depmixS4 | 1.5-0 | DepthProc | 2.1.5 |
Deriv | 4.1.3 | derivmkts | 0.2.5 |
desc | 1.4.2 | DescTools | 0.99.50 |
designmatch | 0.5.4 | desirability | 2.1 |
deSolve | 1.38 | desplot | 1.10 |
devtools | 2.4.5 | dexter | 1.2.2 |
dextergui | 0.2.6 | dexterMST | 0.9.3 |
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 |
DHARMa | 0.4.6 | DHS.rates | 0.9.1 |
diagis | 0.2.3 | diagonals | 6.4.0 |
diagram | 1.6.5 | DiagrammeR | 1.0.10 |
dials | 1.2.0 | DiceDesign | 1.9 |
DiceEval | 1.5.1 | DiceKriging | 1.6.0 |
DiceView | 2.1-0 | dichromat | 2.0-0.1 |
DICOMread | 0.0.0.3 | DIFboost | 0.3 |
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.33 | DIMORA | 0.3.5 |
dimRed | 0.2.6 | dina | 2.0.0 |
dipsaus | 0.2.8 | diptest | 0.76-0 |
Dire | 2.1.1 | DIRECT | 1.1.0 |
directlabels | 2023.8.25 | dirichletprocess | 0.4.2 |
disaggR | 1.0.5 | discretization | 1.0-1.1 |
DistatisR | 1.1.1 | distcrete | 1.0.3 |
distfree.cr | 1.5.1 | distr | 2.9.2 |
distrEx | 2.9.0 | distributional | 0.3.2 |
distributions3 | 0.2.1 | DistributionUtils | 0.6-1 |
distrom | 1.0.1 | distrTeach | 2.9.0 |
dittodb | 0.1.7 | divest | 0.10.3 |
divseg | 0.0.5 | dLagM | 1.1.13 |
dlm | 1.1-6 | dlnm | 2.4.7 |
dlstats | 0.1.7 | dmri.tracking | 0.1.0 |
doBy | 4.6.19 | doc2vec | 0.2.0 |
docopulae | 0.4.0 | DoE.base | 1.2-2 |
DoE.MIParray | 1.0-1 | DoE.wrapper | 0.12 |
doMC | 1.3.8 | doParallel | 1.0.17 |
doRNG | 1.8.6 | DoseFinding | 1.0-5 |
doSNOW | 1.0.20 | DOSPortfolio | 0.1.0 |
dotCall64 | 1.0-2 | Dowd | 0.12 |
downlit | 0.4.3 | downloader | 0.4 |
dparser | 1.3.1-10 | dplyr | 1.1.3 |
dqrng | 0.3.1 | dr4pl | 2.0.0 |
DriftBurstHypothesis | 0.4.0.1 | DRR | 0.0.4 |
dsa | 1.0.12 | DSAIDE | 0.9.6 |
dse | 2020.2-1 | DSI | 1.5.0 |
DSL | 0.1-7 | DT | 0.29 |
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.1 | dtw | 1.23-1 |
dtwclust | 5.5.12 | duckdb | 0.8.1-3 |
dygraphs | 1.1.1.6 | dyn | 0.2-9.6 |
dynamicTreeCut | 1.63-1 | dynaTree | 1.2-16 |
dynlm | 0.3-6 | e1071 | 1.7-13 |
earlyR | 0.0.5 | earth | 5.3.2 |
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.3 | ecb | 0.4.2 |
Ecdat | 0.4-2 | ecespa | 1.1-17 |
Ecfun | 0.3-2 | ecm | 7.0.0 |
ecodist | 2.0.9 | ECOSolveR | 0.5.5 |
ecp | 3.1.5 | edfReader | 1.2.1 |
edgeR | 3.42.4 | edina | 0.1.1 |
editrules | 2.9.3 | edmdata | 1.2.0 |
edstan | 1.0.6 | EdSurvey | 4.0.1 |
eegkit | 1.0-4 | eegkitdata | 1.1 |
EFAutilities | 2.1.3 | effects | 4.2-2 |
EGAnet | 2.0.1 | egg | 0.4.5 |
egor | 1.23.3 | eha | 2.11.1 |
eigenmodel | 1.11 | elastic | 1.2.0 |
elasticnet | 1.3 | elevatr | 0.99.0 |
ellipse | 0.5.0 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | emayili | 0.7.18 |
EMbC | 2.0.4 | EMD | 1.5.9 |
emdi | 2.2.0 | emg | 1.0.9 |
emmeans | 1.8.8 | emulator | 1.2-21 |
encode | 0.3.6 | endtoend | 2.29 |
energy | 1.7-11 | EngrExpt | 0.1-8 |
enrichwith | 0.3.1 | ensembleBMA | 5.1.8 |
EntropyMCMC | 1.0.4 | EnvStats | 2.8.1 |
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.8 | EpiNow2 | 1.4.0 |
epiR | 2.0.65 | EpiReport | 1.0.2 |
episensr | 1.3.0 | epitools | 0.5-10.1 |
epitrix | 0.4.0 | epitweetr | 2.2.13 |
epo | 0.1.0 | equate | 2.0.8 |
equateIRT | 2.3.0 | equateMultiple | 0.1.1 |
equivalence | 0.7.2 | era | 0.4.1 |
ergm | 4.5.0 | ergm.ego | 1.1.0 |
ergm.multi | 0.2.0 | eRm | 1.0-4 |
errorlocate | 1.1.1 | errum | 0.0.3 |
esaBcv | 1.2.1.1 | esemifar | 1.0.1 |
ESG | 1.3 | EstCRM | 1.6 |
estimability | 1.4.1 | EstimateGroupNetwork | 0.3.1 |
ETLUtils | 1.5 | etm | 1.1.1 |
etrm | 1.0.1 | etrunct | 0.1 |
eurostat | 3.8.2 | evaluate | 0.22 |
evd | 2.3-6.1 | ewoc | 0.3.0 |
Exact | 3.2 | exactextractr | 0.10.0 |
exams | 2.4-0 | ExceedanceTools | 1.3.6 |
exdex | 1.2.2 | EXPARMA | 0.1.0 |
experiment | 1.2.1 | expint | 0.1-8 |
expm | 0.999-7 | ExPosition | 2.8.23 |
expsmooth | 2.3 | extraDistr | 1.9.1 |
extrafont | 0.19 | extrafontdb | 1.0 |
extraoperators | 0.1.1 | eyelinker | 0.2.1 |
ez | 4.4-0 | fable | 0.3.3 |
fable.prophet | 0.1.0 | fabletools | 0.3.3 |
FactoClass | 1.2.8 | FactoMineR | 2.8 |
fanplot | 4.0.0 | fansi | 1.0.4 |
FAOSTAT | 2.3.0 | faoutlier | 0.7.6 |
faraway | 1.0.8 | farver | 2.1.1 |
fAssets | 4023.85 | fastcluster | 1.2.3 |
fastDummies | 1.7.3 | fastGHQuad | 1.0.1 |
fastICA | 1.2-3 | fastLink | 0.6.0 |
fastmap | 1.1.1 | fastmatch | 1.1-4 |
fasttime | 1.1-0 | FatTailsR | 1.8-0 |
FAVAR | 0.1.3 | fBasics | 4022.94 |
fBonds | 3042.78 | fCopulae | 4022.85 |
FCVAR | 0.1.4 | fda | 6.1.4 |
fdaACF | 1.0.0 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
feasts | 0.3.1 | fechner | 1.0-3 |
FeedbackTS | 1.5 | fExtremes | 4021.83 |
ff | 4.0.9 | FFD | 1.0-9 |
fftwtools | 0.9-11 | fGarch | 4022.89 |
fHMM | 1.1.0 | FielDHub | 1.3.1 |
fields | 15.2 | filearray | 0.1.6 |
filehash | 2.4-5 | filehashSQLite | 0.2-6 |
filelock | 1.0.2 | filematrix | 1.3 |
fImport | 4021.86 | finalsize | 0.2.0 |
FinancialMath | 0.1.1 | FinAsym | 1.0 |
findpython | 1.0.8 | finnts | 0.3.0 |
finreportr | 1.0.4 | FinTS | 0.4-6 |
fishMod | 0.29 | fitdistrplus | 1.1-11 |
FKF | 0.2.4 | FKF.SP | 0.3.1 |
flashClust | 1.01-2 | flexclust | 1.4-1 |
flexmix | 2.3-19 | FlexScan | 0.2.2 |
flextable | 0.9.3 | float | 0.3-1 |
fma | 2.5 | FMC | 1.0.1 |
fmdates | 0.1.4 | FME | 1.3.6.3 |
fmri | 1.9.12 | fMultivar | 4031.84 |
fnets | 0.1.5 | FNN | 1.1.3.2 |
fNonlinear | 4021.81 | fontawesome | 0.5.2 |
fontBitstreamVera | 0.1.1 | fontLiberation | 0.1.0 |
fontquiver | 0.2.1 | 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 |
ForeComp | 0.9.0 | 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 |
fourPNO | 1.1.0 | fpc | 2.2-10 |
fpcb | 0.1.0 | fPortfolio | 4023.84 |
fpp2 | 2.5 | fpp3 | 0.5 |
fracdiff | 1.5-2 | fracdist | 0.1.1 |
Frames2 | 0.2.1 | FRAPO | 0.4-1 |
fredr | 2.1.0 | freecurrencyapi | 0.1.0 |
freesurferformats | 0.1.17 | 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-2 |
FRK | 2.1.5 | fs | 1.6.3 |
fslr | 2.25.2 | fsMTS | 0.1.7 |
fst | 0.9.8 | fstcore | 0.9.14 |
fTrading | 3042.79 | functional | 0.6 |
funtimes | 9.1 | furrr | 0.3.1 |
futile.logger | 1.4.3 | futile.options | 1.0.1 |
future | 1.33.0 | future.apply | 1.11.0 |
fuzzyjoin | 0.1.6 | GA | 3.2.3 |
GAD | 1.1.1 | gam | 1.22-2 |
gamlr | 1.13-8 | gamlss | 5.4-18 |
gamlss.data | 6.0-2 | gamlss.dist | 6.1-1 |
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.5.1 | gaussquad | 1.0-3 |
GaussSuppression | 0.7.0 | gbm | 2.1.8.1 |
gbutils | 0.5 | gclus | 1.3.2 |
GCPM | 1.2.2 | gdalcubes | 0.6.4 |
gdalraster | 1.5.0 | gdalUtilities | 1.2.5 |
gdata | 2.19.0 | GDINA | 2.9.4 |
gdistance | 1.6.4 | gdpc | 1.1.3 |
gdtools | 0.3.3 | gear | 0.3.4 |
gee | 4.13-25 | geepack | 1.3.9 |
genalg | 0.2.1 | gender | 0.6.0 |
GeneralizedHyperbolic | 0.8-4 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | GenomeInfoDb | 1.36.4 |
GenomeInfoDbData | 1.2.10 | GenomicRanges | 1.52.0 |
GenSA | 1.1.10.1 | 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.3 |
geometry | 0.4.7 | geonames | 0.999 |
geonapi | 0.7 | GEOquery | 2.68.0 |
geoR | 1.9-2 | geos | 0.2.3 |
geosapi | 0.6-7 | geosphere | 1.5-18 |
geospt | 1.0-2 | geostan | 0.5.2 |
geouy | 0.2.8 | gert | 2.0.0 |
getPass | 0.2-2 | gets | 0.37 |
GetTDData | 1.5.4 | gfonts | 0.2.0 |
GGally | 2.1.2 | ggalt | 0.4.0 |
gganimate | 1.0.8 | ggdag | 0.2.10 |
ggdemetra | 0.2.5 | ggdendro | 0.1.23 |
ggdist | 3.3.0 | ggExtra | 0.10.1 |
ggforce | 0.4.1 | ggformula | 0.10.4 |
ggfun | 0.1.3 | gghalves | 0.1.4 |
ggmap | 3.0.2 | ggmcmc | 1.5.1.1 |
ggnewscale | 0.4.9 | ggplot2 | 3.4.3 |
ggplotify | 0.1.2 | ggpubr | 0.6.0 |
ggraph | 2.1.0 | ggrepel | 0.9.3 |
ggridges | 0.5.4 | ggsci | 3.0.0 |
ggseas | 0.5.4 | ggsignif | 0.6.4 |
ggsn | 0.5.0 | ggspatial | 1.1.9 |
ggstance | 0.3.6 | ggtext | 0.1.2 |
ggthemes | 4.2.4 | ggtree | 3.8.2 |
ggvis | 0.4.8 | gh | 1.4.0 |
ghyp | 1.6.4 | Gifi | 0.4-0 |
gifti | 0.8.0 | GIGrvg | 0.8 |
gimme | 0.7-15 | giscoR | 0.3.5 |
git2r | 0.32.0 | gitcreds | 0.1.2 |
glarma | 1.6-0 | GlarmaVarSel | 1.0 |
glasso | 1.11 | glassoFast | 1.0.1 |
gld | 2.6.6 | glm2 | 1.2.1 |
GLMMRR | 0.5.0 | glmmTMB | 1.1.7 |
glmnet | 4.1-8 | globals | 0.16.2 |
glpkAPI | 1.3.4 | glue | 1.6.2 |
GMDH | 1.6 | Gmedian | 1.2.7 |
gmm | 1.8 | gmodels | 2.18.1.1 |
gmp | 0.7-2 | gmt | 2.0.3 |
gmvarkit | 2.0.10 | GNAR | 1.1.2 |
gnm | 1.1-5 | GO.db | 3.17.0 |
goftest | 1.2-3 | gogarch | 0.7-5 |
golem | 0.4.1 | googledrive | 2.1.1 |
googlePolylines | 0.8.4 | googlesheets4 | 1.1.1 |
googleVis | 0.7.1 | gower | 1.0.1 |
GPArotation | 2023.8-1 | GPCMlasso | 0.1-6 |
GPfit | 1.0-8 | gplots | 3.1.3 |
gradethis | 0.2.14 | gRain | 1.3.14 |
graph | 1.78.0 | graphicalVAR | 0.3.1 |
graphlayouts | 1.0.1 | grates | 1.1.0 |
gratis | 1.0.5 | gravitas | 0.1.3 |
gRbase | 2.0.0 | greeks | 1.3 |
greta | 0.4.3 | greybox | 2.0.0 |
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.2-0 | grnn | 0.1.0 |
GroupSeq | 1.4.2 | grplasso | 0.4-7 |
gsarima | 0.1-5 | gsDesign | 3.5.0 |
gsignal | 0.3-5 | gsl | 2.1-8 |
gss | 2.2-7 | gstat | 2.1-1 |
gsubfn | 0.7 | gsw | 1.1-1 |
gt | 0.9.0 | gtable | 0.3.4 |
gtheory | 0.1.2 | gtools | 3.9.4 |
gtop | 0.2.0 | GUIDE | 1.2.7 |
gustave | 0.4.4 | gWidgets2 | 1.0-9 |
GWmodel | 2.3-1 | gwrr | 0.2-2 |
HandTill2001 | 1.0.1 | HaploSim | 1.8.4.2 |
hardhat | 1.3.0 | hash | 2.2.6.3 |
haven | 2.5.3 | hbsae | 1.2 |
hdf5r | 1.3.8 | hdi | 0.1-9 |
HDInterval | 0.2.4 | HDMT | 1.0.5 |
hdrcde | 3.4 | HDShOP | 0.1.3 |
HDTSA | 1.0.2 | heatmaply | 1.4.2 |
heplots | 1.6.0 | here | 1.0.1 |
hett | 0.3-3 | hexbin | 1.28.3 |
hflights | 0.1 | hglm | 2.2-1 |
hglm.data | 1.0-1 | HH | 3.1-49 |
hht | 2.1.6 | 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.3 |
HistData | 0.9-1 | HKRbook | 0.1.3 |
HLMdiag | 0.5.0 | Hmisc | 5.1-1 |
HMMpa | 1.0.1 | hms | 1.1.3 |
hoardr | 0.5.3 | homals | 1.0-10 |
hommel | 1.6 | hpfilter | 1.0.2 |
HRW | 1.0-5 | HSAUR3 | 1.0-14 |
htmlTable | 2.4.1 | htmltools | 0.5.6 |
htmlwidgets | 1.6.2 | hts | 6.0.2 |
httpcode | 0.3.0 | httpuv | 1.6.11 |
httr | 1.4.7 | httr2 | 0.2.3 |
humanize | 0.2.0 | hunspell | 3.0.2 |
hutils | 1.8.1 | hwwntest | 1.3.2 |
HydroMe | 2.0-1 | HyperbolicDist | 0.6-4 |
hypergeo | 1.2-13 | i2extras | 0.2.1 |
iarm | 0.4.3 | ibd | 1.5 |
ibdreg | 0.3.8 | iBreakDown | 2.0.1 |
IBrokers | 0.10-2 | ica | 1.0-3 |
ICAOD | 1.0.1 | icarus | 0.3.2 |
ICC | 2.4.0 | iccbeta | 1.2.0 |
Icens | 1.72.0 | ichimoku | 1.4.9 |
ICS | 1.4-1 | ICSNP | 1.1-2 |
ICtest | 0.3-5 | idbr | 1.0 |
IDE | 0.3.1 | idefix | 1.0.3 |
IDPmisc | 1.1.20 | ids | 1.0.1 |
ifaTools | 0.23 | igraph | 1.5.1 |
igraphdata | 1.0.1 | illuminaio | 0.42.0 |
imbibe | 0.1.1 | immer | 1.4-15 |
implyr | 0.4.0 | impute | 1.74.1 |
imputeTestbench | 3.0.3 | imputeTS | 3.3 |
inca | 0.0.4 | IncDTW | 1.1.4.4 |
incidence | 1.7.3 | incidence2 | 2.2.1 |
inegiR | 3.0.0 | ineq | 0.2-13 |
infer | 1.0.5 | influence.SEM | 2.3 |
influxdbr | 0.14.2 | InfoTrad | 1.2 |
ingredients | 2.3.0 | ini | 0.3.1 |
inline | 0.3.19 | insee | 1.1.5 |
insight | 0.19.5 | InspectChangepoint | 1.2 |
intamap | 1.5-6 | interp | 1.1-4 |
intervals | 0.15.4 | inum | 1.0-5 |
invgamma | 1.1 | iotables | 0.9.1 |
iotools | 0.3-2 | ipdw | 2.0-0 |
ipfp | 1.0.2 | ipred | 0.9-14 |
ipumsr | 0.6.3 | IRanges | 2.34.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 |
Iso | 0.0-21 | isoband | 0.2.7 |
ISOcodes | 2022.09.29 | IsoGene | 1.0-24 |
ISOweek | 0.6-2 | ISwR | 2.0-8 |
iterators | 1.0.14 | iterLap | 1.1-4 |
itertools | 0.1-3 | itsmr | 1.10 |
JADE | 2.0-4 | jalcal | 0.1.0 |
janeaustenr | 1.0.0 | janitor | 2.2.0 |
JavaGD | 0.6-5 | jiebaR | 0.11 |
jiebaRD | 0.1 | jjb | 0.1.1 |
JMdesign | 1.4 | jomo | 2.7-6 |
JoSAE | 0.3.0 | jpeg | 0.1-10 |
jqr | 1.3.0 | jquerylib | 0.1.4 |
jrt | 1.1.2 | jsonify | 1.2.2 |
jsonlite | 1.8.7 | juicyjuice | 0.1.0 |
JuliaConnectoR | 1.1.1 | JWileymisc | 1.4.0 |
kableExtra | 1.3.4 | kalmanfilter | 2.0.2 |
kappaSize | 1.2 | KEGGREST | 1.40.1 |
Kendall | 2.2.1 | kequate | 1.6.4 |
keras | 2.13.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-32 | keyperm | 0.1.1 |
keyring | 1.3.1 | KFAS | 1.5.1 |
klaR | 1.7-2 | km.ci | 0.5-6 |
knitr | 1.44 | koRpus | 0.13-8 |
ks | 1.14.1 | kst | 0.5-4 |
kutils | 1.73 | kza | 4.1.0.1 |
labdsv | 2.1-0 | label.switching | 1.8 |
labeling | 0.4.3 | labelled | 2.12.0 |
laeken | 0.5.2 | LaF | 0.8.4 |
lagged | 0.3.2 | Lahman | 11.0-0 |
LAM | 0.6-19 | lambda.r | 1.2.4 |
lamW | 2.2.1 | landsat | 1.1.2 |
landscapemetrics | 2.0.0 | languageR | 1.5.0 |
LaplacesDemon | 16.1.6 | lars | 1.3 |
lassoshooting | 0.1.5-1.1 | latdiag | 0.3 |
later | 1.3.1 | latex2exp | 0.9.6 |
latticeExtra | 0.6-30 | LatticeKrig | 8.4 |
lava | 1.7.2.1 | lavaan | 0.6-16 |
LAWBL | 1.5.0 | lazyeval | 0.2.2 |
lbfgsb3c | 2020-3.2 | LCAvarsel | 1.1 |
lcda | 0.3.1 | lctools | 0.2-8 |
lda | 1.4.2 | ldbounds | 2.0.1 |
leafem | 0.2.3 | leaflet | 2.2.0 |
leaflet.extras | 1.0.0 | leaflet.providers | 1.13.0 |
leafpm | 0.1.0 | leafpop | 0.1.0 |
leafsync | 0.1.0 | leaps | 3.1 |
LearnBayes | 2.15.1 | learnr | 0.11.5.9000 |
legion | 0.1.2 | lfactors | 1.0.4 |
lgarch | 0.6-2 | lgr | 0.4.4 |
lgtdl | 1.1.5 | lhs | 1.1.6 |
libcoin | 1.0-10 | libgeos | 3.11.1-1 |
lidR | 4.0.4 | lifecontingencies | 1.3.11 |
lifecycle | 1.0.3 | LIM | 1.4.7 |
limma | 3.56.2 | limSolve | 1.5.7 |
linelist | 0.0.1 | link2GI | 0.5-2 |
linpk | 1.1.2 | linprog | 0.9-4 |
lintools | 0.1.7 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | liteq | 1.1.0 |
lme4 | 1.1-34 | lmerTest | 3.1-3 |
lmForc | 0.1.0 | lmm | 1.4 |
lmodel2 | 1.7-3 | lmom | 3.0 |
lmtest | 0.9-40 | LNIRT | 0.5.1 |
locfit | 1.5-9.8 | locits | 1.7.7 |
locpol | 0.8.0 | logger | 0.2.2 |
logging | 0.10-108 | logitnorm | 0.8.38 |
logspline | 2.1.20 | lokern | 1.1-10 |
lomb | 2.1.0 | longCatEDA | 0.31 |
longitudinalData | 2.4.5 | longmemo | 1.1-2 |
LongMemoryTS | 0.1.0 | longpower | 1.0.24 |
loo | 2.6.0 | lordif | 0.3-3 |
lotri | 0.4.3 | lpacf | 1.0.1 |
lpSolve | 5.6.19 | lpSolveAPI | 5.5.2.0-17.10 |
lsa | 0.73.3 | lsl | 0.5.6 |
lslx | 0.6.11 | LSMonteCarlo | 1.0 |
LSMRealOptions | 0.2.1 | LSTS | 2.1 |
LSWPlib | 0.1.0 | ltm | 1.2-0 |
ltsa | 1.4.6 | lubridate | 1.9.3 |
luz | 0.4.0 | lvnet | 0.3.5 |
lvplot | 0.2.1 | lwgeom | 0.2-13 |
m5 | 0.1.1 | maat | 1.1.0 |
magclass | 6.10.0 | magic | 1.6-1 |
magick | 2.8.0 | magrittr | 2.0.3 |
malariaAtlas | 1.2.0 | MAMS | 2.0.1 |
manipulate | 1.0.1 | manipulateWidget | 0.11.1 |
MAPA | 2.0.5 | mapdata | 2.3.1 |
mapdeck | 0.3.4 | mapedit | 0.6.0 |
mapiso | 0.3.0 | mapme.biodiversity | 0.4.0 |
mapmisc | 2.0.1 | mapproj | 1.2.11 |
maps | 3.4.1 | mapsf | 0.7.1 |
mapSpain | 0.8.0 | maptools | 1.1-8 |
maptree | 1.4-8 | mapview | 2.11.0 |
mAr | 1.2-0 | mar1s | 2.1.1 |
marcher | 0.0-2 | markdown | 1.9 |
markovchain | 0.9.5 | MarkowitzR | 1.0.3 |
marmap | 1.0.10 | MARSS | 3.11.8 |
MassSpecWavelet | 1.66.0 | Matching | 4.10-14 |
MatchIt | 4.5.4 | MatchThem | 1.1.0 |
mathjaxr | 1.6-0 | matlabr | 1.5.2 |
matrixcalc | 1.0-6 | MatrixExtra | 0.1.14 |
MatrixModels | 0.5-2 | matrixStats | 1.0.0 |
maxLik | 1.5-2 | MaxPro | 4.1-2 |
MBA | 0.1-0 | MBHdesign | 2.3.15 |
mboost | 2.9-8 | mbsts | 3.0 |
mc2d | 0.2.0 | MCAvariants | 2.6.1 |
mclust | 6.0.0 | mcmc | 0.9-7 |
mcmcensemble | 3.0.0 | MCMCglmm | 2.35 |
MCMCpack | 1.6-3 | mcmcse | 1.5-0 |
MCMCvis | 0.16.2 | mco | 1.15.6 |
Mcomp | 2.8 | mcompanion | 0.5.8 |
MCPMod | 1.0-10.1 | mdftracks | 0.2.1 |
measurements | 1.5.1 | meboot | 1.4-9.4 |
medflex | 0.6-10 | Mediana | 1.0.8 |
mediation | 4.5.0 | MEIGOR | 1.33.0 |
mem | 2.18 | memapp | 2.16 |
memisc | 0.99.31.6 | memoise | 2.0.1 |
MEMSS | 0.9-3 | memuse | 4.2-3 |
meta | 6.5-0 | metadat | 1.2-0 |
metafor | 4.4-0 | metaplot | 0.8.3 |
metaSEM | 1.3.1 | metasens | 1.5-2 |
Metrics | 0.1.4 | metRology | 0.9-28-1 |
mFilter | 0.1-5 | mgm | 1.2-14 |
mi | 1.1 | mice | 3.16.0 |
miceadds | 3.16-18 | micEconIndex | 0.1-8 |
microbenchmark | 1.4.10 | micromap | 1.9.7 |
microsamplingDesign | 1.0.8 | MicSim | 2.0.0 |
MIIVsem | 0.5.8 | mime | 0.12 |
mind | 1.1.0 | MinEDfind | 0.1.3 |
minimalRSD | 1.0.0 | minimaxdesign | 0.1.5 |
miniUI | 0.1.1.1 | minpack.lm | 1.2-4 |
minqa | 1.2.6 | mipfp | 3.2.1 |
mirt | 1.40 | mirtCAT | 1.12.2 |
misc3d | 0.9-1 | miscTools | 0.6-28 |
missForest | 1.5 | missMDA | 1.18 |
mitml | 0.4-5 | mitools | 2.4 |
mix | 1.0-11 | mixAR | 0.22.7 |
MixedPsy | 1.1.0 | mixexp | 1.2.7 |
mixOmics | 6.24.0 | mixsqp | 0.3-48 |
mixtools | 2.0.0 | mkssd | 1.2 |
mlapi | 0.1.1 | mlbench | 2.1-3.1 |
MLCIRTwithin | 2.1.1 | MLDS | 0.5.1 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlogitBMA | 0.1-7 | mlr | 2.19.1 |
mlr3 | 0.16.1 | mlr3measures | 0.5.0 |
mlr3misc | 0.13.0 | mlr3spatiotempcv | 2.1.0 |
mlrMBO | 1.1.5.1 | mlVAR | 0.5.1 |
mma | 10.7-1 | mmand | 1.6.3 |
mmrm | 0.2.2 | mnormt | 2.1.1 |
MNP | 3.1-4 | modeldata | 1.2.0 |
modelenv | 0.1.1 | ModelMap | 3.4.0.4 |
ModelMetrics | 1.2.2.2 | modelr | 0.1.11 |
modeltime | 1.2.8 | modeltime.ensemble | 1.0.3 |
modeltime.resample | 0.2.3 | modeltools | 0.2-23 |
moderndive | 0.5.5 | modules | 0.12.0 |
mokken | 3.1.0 | mombf | 3.4.2 |
moments | 0.14.1 | momentuHMM | 1.5.5 |
mondate | 0.10.02 | mongolite | 2.7.2 |
mongopipe | 0.1.1 | monmlp | 1.1.5 |
monobin | 0.2.4 | Morpho | 2.11 |
mosaic | 1.8.4.2 | mosaicCore | 0.9.2.1 |
mosaicData | 0.20.3 | mousetrap | 3.2.1 |
move | 4.2.4 | movecost | 2.0 |
moveHMM | 1.9 | moveWindSpeed | 0.2.4 |
movMF | 0.2-7 | MPDiR | 0.2 |
MplusAutomation | 1.1.0 | mpmi | 0.43.2.1 |
mpt | 0.8-0 | MPTinR | 1.14.1 |
MPV | 1.63 | mratios | 1.4.2 |
mrf | 0.1.6 | mrgsolve | 1.1.1 |
mritc | 0.5-3 | mscstexta4r | 0.1.2 |
mscsweblm4r | 0.1.2 | MSGARCH | 2.51 |
msm | 1.7 | 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-9 | multDM | 1.1.4 |
multicool | 0.1-12 | MultiGlarmaVarSel | 1.0 |
MultiLCIRT | 2.11 | MultipleBubbles | 0.2.0 |
multiplex | 3.1.0 | multipol | 1.0-9 |
multitaper | 1.0-17 | multiway | 1.0-6 |
multtest | 2.56.0 | MuMIn | 1.47.5 |
munfold | 0.3.5 | munsell | 0.5.0 |
mvLSW | 1.2.5 | mvMORPH | 1.1.7 |
mvnfast | 0.2.8 | mvnormtest | 0.1-9 |
mvQuad | 1.0-8 | mvtnorm | 1.2-3 |
mvtsplot | 1.0-4 | mxkssd | 1.2 |
n1qn1 | 6.0.1-11 | nabor | 0.5.0 |
NADA | 1.6-1.1 | NAEPirtparams | 1.0.0 |
NAEPprimer | 1.0.1 | nanoarrow | 0.3.0 |
nanonext | 0.10.2 | nanotime | 0.3.7 |
nardl | 0.1.6 | natserv | 1.0.0 |
nbTransmission | 1.1.2 | ncappc | 0.3.0 |
ncar | 0.4.5 | ncdf4 | 1.21 |
ncf | 1.3-2 | ncvreg | 3.14.1 |
nets | 0.9.1 | network | 1.18.1 |
NetworkChange | 0.8 | NetworkComparisonTest | 2.2.2 |
networkD3 | 0.4 | networkDynamic | 0.11.3 |
networkLite | 1.0.5 | NetworkRiskMeasures | 0.1.4 |
NetworkToolbox | 1.4.2 | networktools | 1.5.1 |
networktree | 1.0.1 | neuralnet | 1.44.2 |
neurobase | 1.32.3 | neuroim | 0.0.6 |
neuRosim | 0.2-13 | nFactors | 2.4.1.1 |
NFCP | 1.2.1 | ngspatial | 1.2-2 |
nhanesA | 0.7.4 | nifti.io | 1.0.0 |
nimble | 1.0.1 | NISTnls | 0.9-13 |
NlcOptim | 0.6 | nleqslv | 3.3.4 |
NlinTS | 1.4.5 | nlmeVPC | 2.6 |
nlmixr2 | 2.0.9 | nlmixr2data | 2.0.8 |
nlmixr2est | 2.1.7 | nlmixr2extra | 2.0.8 |
nlmixr2plot | 2.0.7 | nlmixr2rpt | 0.2.0 |
nloptr | 2.0.3 | NLP | 0.2-1 |
nls2 | 0.3-3 | nlsem | 0.8-1 |
nlstools | 2.0-1 | nlts | 1.0-2 |
NMOF | 2.7-1 | nmw | 0.1.5 |
nnfor | 0.9.8 | nnls | 1.5 |
nodbi | 0.9.8 | nomisr | 0.4.7 |
NonCompart | 0.6.0 | nonlinearTseries | 0.2.12 |
nonmemica | 1.0.8 | nonnest2 | 0.5-6 |
NonProbEst | 0.2.4 | norm | 1.0-11.1 |
nortest | 1.0-4 | nosoi | 1.1.0 |
np | 0.60-17 | NPflow | 0.13.3 |
npi | 0.2.0 | nppbib | 1.2-0 |
nsarfima | 0.2.0.0 | nsprcomp | 0.5.1-2 |
NTS | 1.1.3 | numbers | 0.8-5 |
numDeriv | 2016.8-1.1 | nvmix | 0.1-0 |
o2geosocial | 1.1.0 | oai | 0.4.0 |
OasisR | 3.1.0 | obAnalytics | 0.1.1 |
occ | 1.1 | oce | 1.8-1 |
octopus | 0.3.0 | odbc | 1.3.5 |
odin | 1.2.5 | odpc | 2.0.5 |
odr | 1.4.4 | OECD | 0.2.5 |
officer | 0.6.2 | ohoegdm | 0.1.0 |
onbrand | 1.0.3 | onlineforecast | 1.0.1 |
opdisDownsampling | 0.8.2 | OPDOE | 1.0-10 |
openair | 2.17-0 | openEBGM | 0.9.1 |
openintro | 2.4.0 | OpenMx | 2.21.8 |
openNLP | 0.2-7 | openNLPdata | 1.5.3-4 |
openssl | 2.1.1 | OpenStreetMap | 0.3.4 |
openxlsx | 4.2.5.2 | opera | 1.2.0 |
operator.tools | 1.6.3 | optextras | 2019-12.4 |
OptHedging | 1.0 | OptimalDesign | 1.0.1 |
OptimaRegion | 1.2 | optimParallel | 1.0-2 |
optimx | 2023-8.13 | OptionPricing | 0.1.2 |
optiscale | 1.2.2 | ORCME | 2.0.2 |
ordinal | 2022.11-16 | ore | 1.7.3.1 |
ORIClust | 1.0-2 | oro.dicom | 0.5.3 |
oro.nifti | 0.11.4 | oro.pet | 0.2.7 |
orthopolynom | 1.0-6.1 | osDesign | 1.8 |
osmdata | 0.2.5 | osmextract | 0.5.0 |
osqp | 0.6.3 | otsad | 0.2.0 |
otsfeatures | 1.0.0 | outbreaker2 | 1.1.3 |
outbreaks | 1.9.0 | outliers | 0.15 |
overlapping | 2.1 | ows4R | 0.3-6 |
pa | 1.2-4 | packcircles | 0.3.6 |
padr | 0.6.2 | PairedData | 1.1.1 |
pairwise | 0.6.1-0 | paleoTS | 0.5.3 |
palmerpenguins | 0.1.1 | pan | 1.9 |
pander | 0.6.5 | panelaggregation | 0.1.1 |
paradox | 0.11.1 | parallelly | 1.36.0 |
parallelMap | 1.5.1 | ParamHelpers | 1.14.1 |
paran | 1.5.2 | parma | 1.7 |
parsedate | 1.3.1 | parsnip | 1.1.1 |
partitions | 1.10-7 | partsm | 1.1-3 |
parttime | 0.1.1 | party | 1.3-13 |
partykit | 1.2-20 | pastecs | 1.3.21 |
patchwork | 1.1.3 | paws | 0.4.0 |
paws.analytics | 0.4.0 | paws.application.integration | 0.4.0 |
paws.common | 0.6.1 | paws.compute | 0.4.0 |
paws.cost.management | 0.4.0 | paws.customer.engagement | 0.4.0 |
paws.database | 0.4.0 | paws.developer.tools | 0.4.0 |
paws.end.user.computing | 0.4.0 | paws.machine.learning | 0.4.0 |
paws.management | 0.4.0 | paws.networking | 0.4.0 |
paws.security.identity | 0.4.0 | paws.storage | 0.4.0 |
pbapply | 1.7-2 | pbdZMQ | 0.3-10 |
PBIBD | 1.3 | pbivnorm | 0.6.0 |
pbkrtest | 0.5.2 | pbmcapply | 1.5.1 |
pbo | 1.3.5 | pbs | 1.1 |
PBSddesolve | 1.13.3 | PBSmapping | 2.73.2 |
PBSmodelling | 2.68.8 | pbv | 0.4-22 |
pcaMethods | 1.92.0 | pcaPP | 2.0-3 |
pcdpca | 0.4 | pcFactorStan | 1.5.4 |
pcIRT | 0.2.4 | PCMRS | 0.1-4 |
pcts | 0.15.5 | pdc | 1.0.3 |
pdfetch | 0.2.9 | pdftools | 3.4.0 |
pdist | 1.2.1 | pedigree | 1.4.2 |
PeerPerformance | 2.2.5 | penalized | 0.9-52 |
performance | 0.10.5 | PerformanceAnalytics | 2.0.4 |
permute | 0.9-7 | PGM2 | 1.0-1 |
ph2bayes | 0.0.2 | ph2bye | 0.1.4 |
phangorn | 2.11.1 | pheatmap | 1.0.12 |
phonics | 1.3.10 | phyloseq | 1.44.0 |
phytools | 1.9-16 | picasso | 1.3.1 |
pid | 0.50 | piecewiseSEM | 2.3.0 |
pillar | 1.9.0 | pins | 1.2.2 |
pipe.design | 0.5.1 | pipeR | 0.6.1.3 |
pixmap | 0.4-12 | PK | 1.3-6 |
PKconverter | 1.5 | pkdata | 0.1.0 |
pkgbuild | 1.4.2 | pkgconfig | 2.0.3 |
pkgdown | 2.0.7 | pkgfilecache | 0.1.4 |
pkgload | 1.3.3 | PKNCA | 0.10.2 |
pkr | 0.1.3 | pks | 0.6-0 |
PlackettLuce | 0.4.3 | plgp | 1.1-12 |
plink | 1.5-1 | plm | 2.6-3 |
PLMIX | 2.1.1 | PLmixed | 0.1.7 |
plogr | 0.2.0 | plot3D | 1.4 |
plotdap | 1.0.2 | plotly | 4.10.2 |
plotMCMC | 2.0.1 | plotmo | 3.6.2 |
plotrix | 3.8-2 | plotSEMM | 2.4 |
pls | 2.8-2 | plyr | 1.8.9 |
pmr | 1.2.5.1 | pmxTools | 1.3 |
png | 0.1-8 | pointblank | 0.11.4 |
poisbinom | 1.0.1 | poLCA | 1.6.0.1 |
polspline | 1.1.23 | polyclip | 1.10-6 |
polycor | 0.8-1 | polyCub | 0.8.1 |
polynom | 1.4-1 | PolynomF | 2.0-5 |
polyreg | 0.8.0 | pomp | 5.4 |
pool | 1.0.1 | PopED | 0.6.0 |
popEpi | 0.4.11 | portes | 6.0 |
PortfolioOptim | 1.1.1 | PortRisk | 1.1.0 |
posterior | 1.4.1 | powerbydesign | 1.0.5 |
powerGWASinteraction | 1.1.3 | powerSurvEpi | 0.1.3 |
PowerTOST | 1.5-4 | PowerUpR | 1.1.0 |
PP | 0.6.3-11 | ppcor | 1.1 |
PPRL | 0.3.8 | pps | 1.0 |
prabclus | 2.3-2 | pracma | 2.4.2 |
PracTools | 1.4 | praise | 1.0.0 |
PreciseSums | 0.6 | prefmod | 0.8-36 |
PReMiuM | 3.2.10 | preprocessCore | 1.62.1 |
PresenceAbsence | 1.1.11 | presize | 0.3.7 |
prettydoc | 0.4.1 | prettyGraphs | 2.1.6 |
prettyunits | 1.2.0 | prevalence | 0.4.1 |
prevR | 5.0.0 | princurve | 2.1.6 |
ProbitSpatial | 1.1 | pROC | 1.18.4 |
processx | 3.8.2 | prodlim | 2023.08.28 |
ProfessR | 2.4-3 | profileModel | 0.6.1 |
profileR | 0.3-5 | profoc | 1.2.1 |
profvis | 0.3.8 | progress | 1.2.2 |
progressr | 0.14.0 | PROJ | 0.4.0 |
proj4 | 1.0-13 | promises | 1.2.1 |
prophet | 1.0 | PROsetta | 0.4.1 |
proto | 1.0.0 | protolite | 2.3.0 |
proxy | 0.4-27 | PRROC | 1.3.1 |
ps | 1.7.5 | pscl | 1.5.5.1 |
psd | 2.1.1 | PSF | 0.5 |
pso | 1.0.4 | pspline | 1.0-19 |
psy | 1.2 | psych | 2.3.9 |
psychomix | 1.1-8 | psychonetrics | 0.11.5 |
psychotools | 0.7-3 | psychotree | 0.16-0 |
psychTools | 2.3.9 | psyphy | 0.3 |
PTAk | 2.0.0 | PTSR | 0.1.2 |
ptw | 1.9-16 | purrr | 1.0.2 |
pwr | 1.3-0 | PwrGSD | 2.3.6 |
pwrRasch | 0.1-2 | pxweb | 0.16.2 |
PxWebApiData | 0.8.0 | qap | 0.1-2 |
Qardl | 0.1.1 | qcv | 1.0 |
qdap | 2.4.6 | qdapDictionaries | 1.0.7 |
qdapRegex | 0.7.5 | qdapTools | 1.3.7 |
qgam | 1.3.4 | qgisprocess | 0.1.0 |
qgraph | 1.9.5 | qicharts2 | 0.7.4 |
qlcal | 0.0.7 | qMRI | 1.2.7 |
qpdf | 1.3.2 | qpNCA | 1.1.6 |
qqconf | 1.3.2 | qqplotr | 0.0.6 |
qrmdata | 2022-05-31-1 | qrmtools | 0.0-16 |
qrng | 0.0-9 | qs | 0.25.5 |
qtl | 1.60 | quadprog | 1.5-8 |
qualmap | 0.2.1 | Quandl | 2.11.0 |
quanteda | 3.3.1 | quantification | 0.2.0 |
quantmod | 0.4.25 | quantreg | 5.97 |
quantspec | 1.2-3 | questionr | 0.7.8 |
QuickJSR | 1.0.6 | quickpsy | 0.1.5.1 |
qvalue | 2.32.0 | qvcalc | 1.0.3 |
R.cache | 0.16.0 | R.devices | 2.17.1 |
R.filesets | 2.15.0 | R.huge | 0.10.0 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.25.0 | R.rsp | 0.45.0 |
R.utils | 2.12.2 | R0 | 1.3-1 |
R2BEAT | 1.0.5 | r2d3 | 0.2.6 |
R2HTML | 2.3.3 | R2jags | 0.7-1 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R4CouchDB | 0.7.5 | R6 | 2.5.1 |
radarchart | 0.3.1 | ragg | 1.2.5 |
ragtop | 1.1.1 | rainbow | 3.7 |
rakeR | 0.2.1 | rAmCharts | 2.1.15 |
ramcmc | 0.1.2 | ramps | 0.6.18 |
randomForest | 4.7-1.1 | randomForestSRC | 3.2.2 |
randomizeR | 3.0.2 | randomLCA | 1.1-3 |
randtoolbox | 2.0.4 | ranger | 0.15.1 |
rankdist | 1.1.4 | RANN | 2.6.1 |
rapidjsonr | 1.2.0 | RApiSerialize | 0.1.2 |
rappdirs | 0.3.3 | rARPACK | 0.11-0 |
RaschSampler | 0.8-10 | raster | 3.6-23 |
rasterImage | 0.4.0 | rasterVis | 0.51.5 |
ratelimitr | 0.4.1 | raveio | 0.9.0 |
ravetools | 0.1.2 | Rbeast | 0.9.9 |
rbenchmark | 1.0.0 | RBGL | 1.76.0 |
rbibutils | 2.2.15 | Rblpapi | 0.3.14 |
rbmi | 1.2.5 | rcartocolor | 2.1.1 |
Rcatch22 | 0.2.1 | rcdd | 1.5-2 |
Rcgmin | 2022-4.30 | rcmdcheck | 1.4.0 |
Rcmdr | 2.9-1 | RcmdrMisc | 2.9-1 |
RcmdrPlugin.DoE | 0.12-4 | RcmdrPlugin.temis | 0.7.10 |
RColorBrewer | 1.1-3 | Rcpp | 1.0.11 |
RcppAnnoy | 0.0.21 | RcppArmadillo | 0.12.6.4.0 |
RcppCCTZ | 0.2.12 | RcppDate | 0.0.3 |
RcppDE | 0.1.7 | RcppDist | 0.1.1 |
RcppEigen | 0.3.3.9.3 | RcppGSL | 0.3.13 |
RcppParallel | 5.1.7 | RcppProgress | 0.4.2 |
RcppQuantuccia | 0.1.1 | RcppRedis | 0.2.4 |
RcppRoll | 0.3.0 | RcppSimdJson | 0.1.10 |
RcppThread | 2.1.5 | RcppTN | 0.2-2 |
RcppTOML | 0.2.2 | RcppZiggurat | 0.1.6 |
Rcsdp | 0.1.57.5 | RCurl | 1.98-1.12 |
RCzechia | 1.11.1 | rdbnomics | 0.6.4 |
rdhs | 0.7.6 | Rdpack | 2.5 |
Rdsdp | 1.0.5.2.1 | re2 | 0.1.2 |
reactable | 0.4.4 | reactR | 0.4.4 |
readabs | 0.4.14 | readODS | 2.1.0 |
readr | 2.1.4 | readsdmx | 0.3.1 |
readstata13 | 0.10.1 | readxl | 1.4.3 |
REBayes | 2.54 | recipes | 1.0.8 |
recmap | 1.0.17 | RecordLinkage | 0.4-12.4 |
redux | 1.1.3 | RefManageR | 1.4.0 |
refugees | 2022.12.1 | regions | 0.1.8 |
registry | 0.5-1 | regress | 1.3-21 |
RegSDC | 0.7.0 | regsem | 1.9.5 |
regspec | 2.7 | regtools | 1.7.0 |
reinsureR | 0.1.0 | relations | 0.6-13 |
relimp | 1.0-5 | rematch | 2.0.0 |
rematch2 | 2.1.2 | remotes | 2.4.2.1 |
rentrez | 1.2.3 | renv | 1.0.3 |
replicateBE | 1.1.3 | reportr | 1.3.0 |
repr | 1.1.6 | reprex | 2.0.2 |
reproj | 0.4.3 | REQS | 0.8-13 |
rerddap | 1.0.4 | rerddapXtracto | 1.1.5 |
resampledata | 0.3.1 | resde | 1.1 |
reshape | 0.8.9 | reshape2 | 1.4.4 |
restimizeapi | 1.0.0 | reticulate | 1.32.0 |
retry | 0.1.0 | revdbayes | 1.5.2 |
rex | 1.2.1 | Rfast | 2.0.8 |
Rfast2 | 0.1.5.1 | rflexscan | 1.1.0 |
rgbif | 3.7.8 | rgdal | 1.6-7 |
rgee | 1.1.7 | rgen | 0.0.1 |
RGENERATE | 1.3.7 | rgenoud | 5.9-0.3 |
rgeoda | 0.0.10-4 | rgeos | 0.6-4 |
rgl | 1.2.1 | Rglpk | 0.6-5 |
RgoogleMaps | 1.4.5.3 | RGraphics | 3.0-2 |
Rgraphviz | 2.44.0 | rgrass | 0.3-9 |
rgrass7 | 0.2-13 | RGreenplum | 0.1.2 |
rgugik | 0.4.0 | RH2 | 0.2.4 |
rhandsontable | 0.3.8 | rhdf5 | 2.44.0 |
rhdf5filters | 1.12.1 | Rhdf5lib | 1.22.1 |
rhosa | 0.2.0 | RhpcBLASctl | 0.23-42 |
rib | 0.19.0 | riingo | 0.3.1 |
Rilostat | 1.1.8 | ring | 1.0.4 |
RInside | 0.2.18 | rintrojs | 0.3.2 |
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.1 | rjags | 4-14 |
rJava | 1.0-6 | RJDBC | 0.2-10 |
RJDemetra | 0.2.3 | rje | 1.12.1 |
rjson | 0.2.21 | RJSONIO | 1.3-1.8 |
rjstat | 0.4.3 | RKEA | 0.0-6 |
RKEAjars | 5.0-4 | rlang | 1.1.1 |
rlas | 1.6.3 | rle | 0.9.2 |
rlecuyer | 0.3-7 | Rlgt | 0.2-1 |
Rlibeemd | 1.4.3 | rLiDAR | 0.1.5 |
rlist | 0.4.6.2 | RM2006 | 0.1.1 |
rmapshaper | 0.5.0 | RMariaDB | 1.2.2 |
rmarkdown | 2.25 | rmatio | 0.18.0 |
RMAWGEN | 1.3.7 | rmeta | 3.0 |
rmgarch | 1.3-9 | Rmpfr | 0.9-3 |
rms | 6.7-1 | rmutil | 1.1.10 |
RMySQL | 0.10.26 | rnaturalearth | 0.3.4 |
rnaturalearthdata | 0.1.0 | rncl | 0.8.7 |
RND | 1.2 | rneos | 0.4-0 |
RNetCDF | 2.6-2 | rngtools | 1.5.2 |
rngWELL | 0.10-9 | RNifti | 1.5.0 |
RNiftyReg | 2.8.1 | rnn | 1.9.0 |
robfilter | 4.1.3 | RobKF | 1.0.2 |
RoBMA | 3.1.0 | robsurvey | 0.5-2 |
robustbase | 0.99-0 | rockchalk | 1.8.157 |
rocker | 0.3.1 | ROCR | 1.0-11 |
RODBC | 1.3-21 | rodd | 0.2-1 |
ROI | 1.0-1 | roll | 1.1.6 |
Rook | 1.2 | rootSolve | 1.8.2.4 |
roptim | 0.1.6 | rosm | 0.3.0 |
rotl | 3.1.0 | roxygen2 | 7.2.3 |
rpact | 3.4.0 | rpanel | 1.1-5.2 |
rpart.plot | 3.1.1 | rpf | 1.0.14 |
RPMG | 2.2-7 | rpms | 0.5.1 |
rpostgis | 1.4.4 | RPostgres | 1.4.5 |
RPostgreSQL | 0.7-5 | RPPairwiseDesign | 1.0 |
RPresto | 1.4.5 | rprojroot | 2.0.3 |
RPyGeo | 1.0.0 | rpymat | 0.1.7 |
RQuantLib | 0.4.17 | rrcov | 1.7-4 |
rredlist | 0.7.1 | RRreg | 0.7.5 |
RRTCS | 0.0.4 | rrum | 0.2.0 |
rsae | 0.2 | RSAGA | 1.4.0 |
Rsagacmd | 0.4.1 | rsample | 1.2.0 |
rsdmx | 0.6-3 | RSEIS | 4.1-6 |
rsem | 0.5.1 | Rsfar | 0.0.1 |
RSGHB | 1.2.2 | rsm | 2.10.4 |
Rsolnp | 1.16 | rspa | 0.2.8 |
rsparse | 0.5.1 | RSpectra | 0.16-1 |
RSQLite | 2.3.1 | Rssa | 1.0.5 |
rstac | 0.9.2-4 | rstan | 2.26.23 |
rstanarm | 2.26.1 | rstantools | 2.3.1.1 |
rstatix | 0.7.2 | rstiefel | 1.0.1 |
rstudioapi | 0.15.0 | rsurface | 1.1.0 |
RSurveillance | 0.2.1 | Rsymphony | 0.1-33 |
rTensor | 1.4.8 | rtf | 0.4-14.1 |
RTFA | 0.1.0 | RTL | 1.3.3 |
rtop | 0.6-6 | RTransferEntropy | 0.2.21 |
rtrim | 2.1.1 | rts | 1.1-14 |
Rtsne | 0.16 | Rttf2pt1 | 1.3.12 |
rtweet | 1.1.0 | rucrdtw | 0.1.5 |
rugarch | 1.5-1 | ruimtehol | 0.3.1 |
rules | 1.0.2 | RUnit | 0.4.32 |
runjags | 2.2.2-1.1 | runner | 0.4.3 |
runstats | 1.1.0 | Runuran | 0.38 |
rust | 1.4.1 | Rvcg | 0.22.1 |
rversions | 2.1.2 | rvest | 1.0.3 |
Rvmmin | 2018-4.17.1 | Rwave | 2.6-5 |
rwebstat | 1.1.1 | RWeka | 0.4-46 |
RWekajars | 3.9.3-2 | rworldmap | 1.3-6 |
rworldxtra | 1.01 | rxode2 | 2.0.13 |
rxode2et | 2.0.10 | rxode2ll | 2.0.11 |
rxode2parse | 2.0.16 | rxode2random | 2.0.11 |
s2 | 1.1.4 | S4Vectors | 0.38.2 |
sae | 1.3 | saeRobust | 0.4.0 |
saeSim | 0.11.0 | SAEval | 1.0.0 |
samadb | 0.2.6 | samplesize | 0.2-4 |
sampling | 2.9 | SamplingBigData | 1.0.0 |
samplingbook | 1.2.4 | SamplingStrata | 1.5-4 |
samplingVarEst | 1.5 | sandwich | 3.0-2 |
sarima | 0.9.1 | sass | 0.4.7 |
satellite | 1.0.4 | sazedR | 2.0.2 |
sbgcop | 0.980 | scales | 1.2.1 |
scalreg | 1.0.1 | scam | 1.2-14 |
scatterplot3d | 0.3-44 | scoringRules | 1.1.1 |
scoringutils | 1.1.0 | ScottKnott | 1.3-2 |
scs | 3.2.4 | SDaA | 0.1-5 |
sdcHierarchies | 0.20.0 | sdcMicro | 5.7.6 |
sdcSpatial | 0.5.2 | sdcTable | 0.32.6 |
sde | 2.0.18 | sdmTMB | 0.3.0 |
sealasso | 0.1-3 | seas | 0.6-0 |
season | 0.3.15 | seasonal | 1.9.0 |
seasonalview | 0.3 | seastests | 0.15.4 |
seer | 1.1.8 | seg | 0.5-7 |
segmented | 1.6-4 | selectr | 0.4-2 |
sem | 3.1-15 | semds | 0.9-6 |
SemiPar | 1.0-4.2 | semPlot | 1.1.6 |
SEMsens | 1.5.5 | semTools | 0.5-6 |
semtree | 0.9.18 | sendmailR | 1.4-0 |
SensoMineR | 1.26 | sentencepiece | 0.2.3 |
separationplot | 1.4 | seqDesign | 1.2 |
seqinr | 4.2-30 | seriation | 1.5.1 |
servr | 0.27 | sessioninfo | 1.2.2 |
setartree | 0.2.1 | setRNG | 2022.4-1 |
sets | 1.0-24 | settings | 0.2.7 |
sf | 1.0-14 | sFFLHD | 0.1.2 |
sfheaders | 0.4.3 | sfsmisc | 1.1-16 |
sftime | 0.2-0 | sgd | 1.1.1 |
sgeostat | 1.0-27 | shades | 1.4.0 |
shadowtext | 0.1.2 | shape | 1.4.6 |
shapefiles | 0.7.2 | shapes | 1.2.7 |
SharpeR | 1.3.0 | shiny | 1.7.5 |
shiny.semantic | 0.4.3 | shinyAce | 0.4.2 |
shinyalert | 3.0.0 | shinybrms | 1.8.0 |
shinyBS | 0.61.1 | shinycssloaders | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.0 |
shinyjqui | 0.4.1 | shinyjs | 2.1.0 |
shinystan | 2.6.0 | shinythemes | 1.2.0 |
shinyTree | 0.3.1 | shinyWidgets | 0.8.0 |
sigmoid | 1.4.0 | signal | 0.7-7 |
signs | 0.1.2 | Sim.DiffProc | 4.8 |
simcdm | 0.1.1 | SimComp | 3.3 |
simex | 1.8 | simfinapi | 0.2.4 |
simglm | 0.8.9 | SimilarityMeasures | 1.4 |
SimInf | 9.5.0 | simPop | 2.1.2 |
simputation | 0.2.8 | simrel | 2.1.0 |
SiMRiv | 1.0.6 | simsem | 0.5-16 |
SimSurvey | 0.1.6 | singleRcapture | 0.2.0 |
siplab | 1.6 | sirt | 3.13-228 |
sitmo | 2.0.2 | sits | 1.4.1 |
SkewHyperbolic | 0.4-0 | skmeans | 0.2-16 |
skpr | 1.4.0 | slam | 0.1-50 |
SLBDD | 0.0.4 | sleekts | 1.0.2 |
Sleuth2 | 2.0-5 | Sleuth3 | 1.0-3 |
SLHD | 2.1-1 | slider | 0.3.0 |
slippymath | 0.3.1 | sm | 2.2-5.7.1 |
smacof | 2.1-5 | smacpod | 2.6 |
SmallCountRounding | 1.0.3 | smam | 0.7.0 |
smerc | 1.8.2 | smoof | 1.6.0.3 |
smooth | 4.0.0 | smoother | 1.1 |
smoots | 1.1.4 | smovie | 1.1.5 |
SMPracticals | 1.4-3 | sms | 2.3.1 |
sn | 2.1.1 | sna | 2.7-1 |
snakecase | 0.11.1 | snow | 0.4-4 |
SnowballC | 0.7.1 | snowfall | 1.84-6.2 |
SOAs | 1.4 | soc.ca | 0.8.0 |
socialmixr | 0.2.0 | sodium | 1.3.0 |
sofa | 0.4.0 | solaR | 0.46 |
solrium | 1.2.0 | sorvi | 0.8.21 |
sourcetools | 0.1.7-1 | sp | 2.1-0 |
sp23design | 0.9-1 | spacetime | 1.3-0 |
spam | 2.9-1 | spaMM | 4.4.0 |
spant | 2.15.0 | sparklyr | 1.8.3 |
sparr | 2.3-10 | sparseDFM | 1.0 |
SparseFactorAnalysis | 1.0 | sparseinv | 0.1.3 |
SparseM | 1.81 | 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.1 | spatialreg | 1.2-9 |
spatialsample | 0.4.0 | SpatialTools | 1.0.5 |
spatialwidget | 0.2.3 | spatstat | 3.0-6 |
spatstat.data | 3.0-1 | spatstat.explore | 3.2-3 |
spatstat.geom | 3.2-5 | spatstat.linnet | 3.1-1 |
spatstat.model | 3.2-6 | spatstat.random | 3.1-6 |
spatstat.sparse | 3.0-2 | spatstat.utils | 3.0-3 |
spBayes | 0.4-6 | spBayesSurv | 1.1.7 |
Spbsampling | 1.3.5 | spd | 2.0-1 |
spData | 2.3.0 | spdep | 1.2-8 |
spec | 0.1.7 | spectral | 2.0 |
speff2trial | 1.0.5 | sperrorest | 3.0.5 |
sphet | 2.0 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-19 | spINAR | 0.1.0 |
spind | 2.2.1 | splancs | 2.01-44 |
splines2 | 0.5.1 | splm | 1.6-3 |
spmodel | 0.4.0 | spmoran | 0.2.2.9 |
SpotSampling | 0.1.0 | spselect | 0.0.1 |
spsur | 1.0.2.5 | spsurvey | 5.5.0 |
spTimer | 3.3.2 | sptotal | 1.0.1 |
sqldf | 0.4-11 | SqlRender | 1.16.0 |
SQRL | 1.0.1 | SQUAREM | 2021.1 |
srvyr | 1.2.0 | ssanv | 1.1 |
SSBtools | 1.4.8 | ssgraph | 1.15 |
ssize.fdr | 1.3 | ssizeRNA | 1.3.2 |
ssMousetrack | 1.1.6 | SSN | 1.1.17 |
stabledist | 0.7-1 | stabs | 0.6-4 |
stampr | 0.3.0 | StanHeaders | 2.26.28 |
starma | 1.3 | stars | 0.6-4 |
STARTS | 1.3-8 | startupmsg | 0.9.6 |
statcanR | 0.2.6 | statcodelists | 0.9.2 |
statebins | 1.4.0 | statespacer | 0.5.0 |
StatMatch | 1.4.1 | statmod | 1.5.0 |
statnet.common | 4.9.0 | StatRank | 0.0.6 |
steadyICA | 1.0 | STFTS | 0.1.0 |
stinepack | 1.4 | stlplus | 0.5.1 |
stm | 1.3.6.1 | STMedianPolish | 0.2 |
stochvol | 3.2.1 | stockAnalyst | 1.0.1 |
stopwords | 2.3 | storr | 1.2.5 |
stR | 0.6 | strand | 0.2.0 |
stratification | 2.2-7 | stringdist | 0.9.10 |
stringfish | 0.15.8 | stringi | 1.7.12 |
stringr | 1.5.0 | strucchange | 1.5-3 |
strucchangeRcpp | 1.5-3-1.0.4 | StructuralDecompose | 0.1.1 |
styler | 1.10.2 | subplex | 1.8 |
subscore | 3.3 | sufficientForecasting | 0.1.0 |
sugrrants | 0.2.8 | SUMMER | 1.3.0 |
suntools | 1.0.0 | SuperLearner | 2.0-28.1 |
superml | 0.5.6 | SuppDists | 1.1-9.7 |
support.CEs | 0.6-0 | survcomp | 1.50.0 |
surveillance | 1.21.1 | survey | 4.2-1 |
surveybootstrap | 0.0.3 | surveydata | 0.2.7 |
surveyplanning | 4.0 | surveysd | 1.3.1 |
survivalROC | 1.0.3.1 | survPresmooth | 1.1-11 |
svars | 1.3.11 | svd | 0.5.4.1 |
SVDNF | 0.1.8 | svglite | 2.1.1 |
svrep | 0.6.3 | svs | 3.0.0 |
svUnit | 1.0.6 | sweep | 0.2.5 |
swephR | 0.3.1 | swirl | 2.4.5 |
swirlify | 0.5.3 | sylly | 0.1-6 |
sym.arma | 1.0 | symengine | 0.2.2 |
symmoments | 1.2.1 | synthACS | 1.7.1 |
synthesis | 1.2.3 | synthpop | 1.8-0 |
sys | 3.4.2 | systemfit | 1.1-30 |
systemfonts | 1.0.4 | tables | 0.9.17 |
tabnet | 0.4.0 | TAM | 4.1-4 |
tanaka | 0.3.0 | TAQMNGR | 2018.5-1 |
targets | 1.3.0 | tau | 0.0-24 |
taxize | 0.9.100 | tbrf | 0.1.5 |
tcltk2 | 1.2-11 | Tcomp | 1.0.1 |
tdigest | 0.4.1 | TeachingDemos | 2.12 |
telegram.bot | 3.0.0 | tempdisagg | 1.1.1 |
tensor | 1.5 | tensorA | 0.36.2 |
tensorflow | 2.14.0 | TensorPreAve | 1.1.0 |
tensorTS | 1.0.1 | TEQR | 6.0-0 |
tergm | 4.2.0 | terra | 1.7-46 |
tesseract | 5.2.0 | testcorr | 0.2.0 |
TestDataImputation | 2.3 | TestDesign | 1.5.1 |
tester | 0.1.7 | testit | 0.13 |
TestScorer | 1.7.2 | testthat | 3.1.10 |
TexExamRandomizer | 1.2.3 | texreg | 1.38.6 |
text2vec | 0.6.3 | textcat | 1.0-8 |
textir | 2.0-5 | textplot | 0.2.2 |
textrank | 0.3.1 | textreuse | 0.1.5 |
textshaping | 0.3.6 | textTinyR | 1.1.7 |
tfarima | 0.3.2 | tfautograph | 0.3.2 |
tfdatasets | 2.9.0 | tfio | 0.4.1 |
tfplot | 2021.6-1 | tframe | 2015.12-1.1 |
tfruns | 1.5.1 | tgp | 2.4-21 |
TH.data | 1.1-2 | theft | 0.5.4 |
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.3 | tibble | 3.2.1 |
tibbletime | 0.1.8 | tictoc | 1.2 |
Tides | 2.1 | tidyBdE | 0.3.4 |
tidycensus | 1.5 | tidygraph | 1.2.3 |
tidyLPA | 1.1.0 | tidymodels | 1.1.1 |
tidyquant | 1.0.7 | tidyqwi | 0.1.2 |
tidyr | 1.3.0 | tidyselect | 1.2.0 |
tidyterra | 0.4.0 | tidytext | 0.4.1 |
tidytree | 0.4.5 | tidyverse | 2.0.0 |
tiff | 0.1-11 | tigris | 2.0.4 |
timechange | 0.2.0 | timeDate | 4022.108 |
timeSeries | 4031.107 | timeseriesdb | 1.0.0-1.1.2 |
timetk | 2.8.4 | timsac | 1.3.8-4 |
tinytex | 0.47 | tis | 1.39 |
tkrplot | 0.0-27 | tm | 0.7-11 |
tm.plugin.alceste | 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.6 | tmvnsim | 1.0-2 |
tmvtnorm | 1.5 | tokenizers | 0.3.0 |
tokenizers.bpe | 0.1.3 | toOrdinal | 1.3-0.0 |
topicdoc | 0.1.1 | topicmodels | 0.2-14 |
topicmodels.etm | 0.1.0 | torch | 0.11.0 |
torchaudio | 0.3.1.9000 | torchdatasets | 0.3.0 |
torchvision | 0.5.1 | tpr | 0.3-3 |
trackdem | 0.6 | trackdf | 0.3.2 |
trackeR | 1.5.2 | trackeRapp | 1.2 |
TrackReconstruction | 1.3 | tractor.base | 3.3.5.1 |
traipse | 0.3.0 | trajectories | 0.2-7 |
trajr | 1.5.0 | TransPhylo | 1.4.5 |
trapezoid | 2.0-2 | tree | 1.0-43 |
TreeBUGS | 1.5.0 | treeio | 1.24.3 |
treemap | 2.4-4 | trend | 1.1.5 |
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 | TSA | 1.3.1 |
TSANN | 0.1.0 | tsbox | 0.4.1 |
tsBSS | 1.0.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 |
TSEntropies | 0.9 | tseries | 0.10-54 |
tseriesChaos | 0.1-13.1 | tseriesEntropy | 0.7-2 |
tseriesTARMA | 0.3-4 | tsfeatures | 1.1.1 |
tsfknn | 0.5.2 | tsibble | 1.1.3 |
tsibbledata | 0.4.1 | tsibbletalk | 0.1.0 |
tsintermittent | 1.10 | tsiR | 0.4.3 |
TSLSTM | 0.1.0 | tsModel | 0.6-1 |
tsoutliers | 0.6-8 | 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.3 | tswge | 2.1.0 |
TTR | 0.24.3 | tune | 1.1.2 |
turner | 0.1.7 | tvm | 0.5.2 |
twdtw | 1.0-1 | tweedie | 2.3.5 |
tweenr | 2.0.2 | twosamples | 2.0.1 |
tzdb | 0.4.0 | ubiquity | 2.0.0 |
ucminf | 1.2.0 | UComp | 4.0.2 |
udpipe | 0.8.11 | ufRisk | 1.0.6 |
ugatsdb | 0.2.3 | uGMAR | 3.4.5 |
UnifiedDoseFinding | 0.1.10 | units | 0.8-4 |
univOutl | 0.4 | unrepx | 1.0-2 |
uptasticsearch | 0.4.0 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
uroot | 2.1-2 | usdata | 0.2.0 |
usethis | 2.2.2 | usmap | 0.6.2 |
usmapdata | 0.1.0 | utf8 | 1.2.3 |
uuid | 1.1-1 | uwot | 0.1.16 |
V8 | 4.3.3 | validate | 1.1.3 |
validatetools | 0.5.2 | vapour | 0.9.5 |
VAR.etp | 1.1 | VARDetect | 0.1.6 |
vardiag | 0.2-1 | vardpoor | 0.20.1 |
VaRES | 1.0.2 | vars | 1.5-9 |
VARshrink | 0.3.1 | varycoef | 0.3.4 |
VCA | 1.4.5 | vcd | 1.4-11 |
vcdExtra | 0.8-5 | vctrs | 0.6.3 |
vdg | 1.2.2 | VedicDateTime | 0.1.9 |
vegan | 2.6-4 | VennDiagram | 1.7.3 |
venneuler | 1.1-3 | VGAM | 1.1-9 |
VGAMdata | 1.1-9 | vglmer | 1.0.3 |
VIM | 6.2.2 | VineCopula | 2.5.0 |
viridis | 0.6.4 | viridisLite | 0.4.2 |
visNetwork | 2.1.2 | visualize | 4.4.0 |
volatilityTrader | 1.0.1 | vpc | 1.2.2 |
vroom | 1.6.4 | vrtest | 1.2 |
waiter | 0.2.5 | waldo | 0.5.1 |
warp | 0.2.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.2 |
wCorr | 1.9.8 | WDI | 2.7.8 |
webshot | 0.5.5 | WeightedPortTest | 1.1 |
WeightIt | 0.14.2 | weights | 1.0.4 |
WeMix | 4.0.0 | whisker | 0.4.1 |
whitebox | 2.3.1 | widgetframe | 0.3.1 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
WikipediR | 1.5.0 | wikitaxa | 0.4.0 |
wildlifeDI | 0.5.0 | wINEQ | 1.2.0 |
withr | 2.5.1 | wk | 0.8.0 |
wktmo | 1.0.5 | wkutils | 0.1.3 |
wnl | 0.7.3 | wooldridge | 1.4-3 |
word2vec | 0.3.4 | wordcloud | 2.6 |
wordnet | 0.1-16 | workflows | 1.1.3 |
workflowsets | 1.0.1 | worrms | 0.4.3 |
wpp2017 | 1.2-3 | wpp2019 | 1.1-1 |
WrightMap | 1.3 | writexl | 1.4.2 |
wrswoR | 1.1.1 | x12 | 1.10.3 |
x13binary | 1.1.57-4 | XBRL | 0.99.19.1 |
xfun | 0.40 | xgboost | 1.7.5.1 |
xgxr | 1.1.2 | XLConnect | 1.0.7 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.14 | xml2 | 1.3.5 |
xopen | 1.0.0 | xplain | 0.2.2 |
xpose | 0.4.17 | xpose.nlmixr2 | 0.4.0 |
xpose4 | 4.7.2 | xtable | 1.8-4 |
xts | 0.13.1 | XVector | 0.40.0 |
xxIRT | 2.1.2 | yaImpute | 1.0-33 |
yaml | 2.3.7 | yardstick | 1.2.0 |
yesno | 0.1.2 | yuima | 1.15.22 |
yulab.utils | 0.1.0 | zeallot | 0.1.0 |
zic | 0.9.1 | ZIM | 1.1.0 |
ZINARp | 0.1.0 | zip | 2.3.0 |
zipfR | 0.6-70 | zlibbioc | 1.46.0 |
zoo | 1.8-12 | ZRA | 0.2 |
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.0 |
abind | 1.4-5 | ACD | 1.5.3 |
acepack | 1.4.1 | actuar | 3.3-1 |
ada | 2.0-5 | ade4 | 1.7-20 |
ade4TkGUI | 0.3-1 | adegraphics | 1.0-16 |
adehabitatLT | 0.3.26 | adehabitatMA | 0.3.15 |
admisc | 0.30 | affxparser | 1.70.0 |
agricolae | 1.3-5 | akima | 0.6-3.4 |
AlgDesign | 1.2.1 | alphavantager | 0.1.2 |
Amelia | 1.8.1 | anytime | 0.3.9 |
ape | 5.6-2 | arm | 1.13-1 |
aroma.apd | 0.6.1 | ascii | 2.4 |
ash | 1.0-15 | askpass | 1.1 |
assertthat | 0.2.1 | AUC | 0.3.2 |
backports | 1.4.1 | base64enc | 0.1-3 |
bayesplot | 1.10.0 | BB | 2019.10-1 |
BDgraph | 2.70 | bdsmatrix | 1.3-6 |
BGLR | 1.1.0 | BH | 1.78.0-0 |
biganalytics | 1.1.21 | bigD | 0.2.0 |
biglars | 1.0.2 | biglm | 0.9-2.1 |
bigmemory | 4.6.1 | bigmemory.sri | 0.1.6 |
bigml | 0.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | bit | 4.0.5 |
bit64 | 4.0.5 | bitops | 1.0-7 |
blob | 1.2.3 | BLR | 1.6 |
bold | 1.2.0 | bpca | 1.3-4 |
BradleyTerry2 | 1.1-2 | brew | 1.0-8 |
brglm | 0.7.2 | brglm2 | 0.8.2 |
bridgesampling | 1.1-2 | brio | 1.1.3 |
brms | 2.18.0 | Brobdingnag | 1.2-9 |
broom | 1.0.1 | bslib | 0.4.1 |
BsMD | 2020.4.30 | ca | 0.71.1 |
cachem | 1.0.6 | calibrator | 1.2-8 |
callr | 3.7.3 | car | 3.1-1 |
carData | 3.0-5 | caret | 6.0-93 |
caTools | 1.18.2 | cellranger | 1.1.0 |
checkmate | 2.1.0 | chron | 2.3-58 |
CircStats | 0.2-6 | classInt | 0.4-8 |
cli | 3.4.1 | clipr | 0.8.0 |
clock | 0.6.1 | clusterGeneration | 1.3.7 |
coda | 0.19-4 | coin | 1.4-2 |
collapse | 1.8.9 | colorspace | 2.0-3 |
colourpicker | 1.2.0 | combinat | 0.0-8 |
commonmark | 1.8.1 | conditionz | 0.1.0 |
conf.design | 2.0.0 | conflicted | 1.1.0 |
contfrac | 1.1-12 | corpcor | 1.6.10 |
corrgram | 1.14 | corrplot | 0.92 |
cpp11 | 0.4.3 | crayon | 1.5.2 |
credentials | 1.3.2 | crosstalk | 1.2.0 |
crul | 1.3 | cubature | 2.0.4.5 |
curl | 4.3.3 | CVST | 0.2-3 |
d3Network | 0.5.2.1 | DAAG | 1.25.4 |
data.table | 1.14.6 | DataExplorer | 0.8.2 |
datapasta | 3.1.0 | DBI | 1.1.3 |
dbplyr | 2.2.1 | deldir | 1.0-6 |
dendextend | 1.16.0 | DEoptimR | 1.0-11 |
Deriv | 4.1.3 | desc | 1.4.2 |
deSolve | 1.34 | devtools | 2.4.5 |
dfidx | 0.0-5 | dfoptim | 2020.10-1 |
diagram | 1.6.5 | DiagrammeR | 1.0.9 |
dials | 1.1.0 | DiceDesign | 1.9 |
dichromat | 2.0-0.1 | diffobj | 0.3.5 |
digest | 0.6.30 | dimRed | 0.2.6 |
diptest | 0.76-0 | discretization | 1.0-1.1 |
distributional | 0.3.1 | doBy | 4.6.14 |
DoE.base | 1.2-1 | doMC | 1.3.8 |
doParallel | 1.0.17 | dotCall64 | 1.0-2 |
downlit | 0.4.2 | downloader | 0.4 |
dplyr | 1.0.10 | DRR | 0.0.4 |
DT | 0.26 | dtplyr | 1.2.2 |
dummies | 1.5.6 | dygraphs | 1.1.1.6 |
dynamicTreeCut | 1.63-1 | e1071 | 1.7-12 |
EbayesThresh | 1.4-12 | effects | 4.2-2 |
ellipse | 0.4.3 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | emulator | 1.2-21 |
enrichwith | 0.3.1 | equivalence | 0.7.2 |
estimability | 1.4.1 | ETLUtils | 1.5 |
evaluate | 0.18 | expint | 0.1-8 |
expm | 0.999-6 | extraDistr | 1.9.1 |
fansi | 1.0.3 | farver | 2.1.1 |
fastICA | 1.2-3 | fastmap | 1.1.0 |
fastmatch | 1.1-3 | fda | 6.0.5 |
fdrtool | 1.2.17 | fds | 1.8 |
fdth | 1.2-6 | ff | 4.0.7 |
ffbase | 0.13.3 | fields | 14.1 |
filehash | 2.4-3 | flashClust | 1.01-2 |
flexmix | 2.3-18 | FNN | 1.1.3.1 |
fontawesome | 0.4.0 | forcats | 0.5.2 |
foreach | 1.5.2 | forecast | 8.18 |
formatR | 1.12 | Formula | 1.2-4 |
fpc | 2.2-9 | fracdiff | 1.5-2 |
fs | 1.5.2 | fts | 0.9.9.2 |
functional | 0.6 | furrr | 0.3.1 |
future | 1.29.0 | future.apply | 1.10.0 |
gam | 1.22 | gamlss | 5.4-10 |
gamlss.data | 6.0-2 | gamlss.dist | 6.0-5 |
gargle | 1.2.1 | gclus | 1.3.2 |
gdata | 2.18.0.1 | geepack | 1.3.9 |
genalg | 0.2.1 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | geosphere | 1.5-18 |
gert | 1.9.1 | ggdendro | 0.1.23 |
ggforce | 0.4.1 | ggformula | 0.10.2 |
ggmap | 3.0.1 | ggplot2 | 3.4.0 |
ggridges | 0.5.4 | ggstance | 0.3.6 |
ggvis | 0.4.7 | gh | 1.3.1 |
git2r | 0.30.1 | gitcreds | 0.1.2 |
glassoFast | 1.0 | gld | 2.6.6 |
glmnet | 4.1-4 | globals | 0.16.1 |
glue | 1.6.2 | gmm | 1.7 |
gmodels | 2.18.1.1 | gmp | 0.6-8 |
goftest | 1.2-3 | googledrive | 2.0.0 |
googlesheets4 | 1.0.1 | googleVis | 0.7.0 |
gower | 1.0.0 | GPArotation | 2022.10-2 |
gpclib | 1.5-6 | GPfit | 1.0-8 |
gplots | 3.1.3 | gradethis | 0.2.11.9000 |
gridBase | 0.4-7 | gridExtra | 2.3 |
gridGraphics | 0.5-1 | gridSVG | 1.7-4 |
grImport | 0.9-5 | grImport2 | 0.2-0 |
gsubfn | 0.7 | gt | 0.8.0 |
gtable | 0.3.1 | gtools | 3.9.3 |
HaploSim | 1.8.4.2 | hardhat | 1.2.0 |
haven | 2.5.1 | hdrcde | 3.4 |
hexbin | 1.28.2 | hflights | 0.1 |
HH | 3.1-49 | highlight | 0.5.0 |
highr | 0.9 | Hmisc | 4.7-2 |
hms | 1.1.2 | htmlTable | 2.4.1 |
htmltools | 0.5.3 | htmlwidgets | 1.5.4 |
httpcode | 0.3.0 | httpuv | 1.6.6 |
httr | 1.4.4 | HydroMe | 2.0-1 |
HyperbolicDist | 0.6-4 | hypergeo | 1.2-13 |
ICC | 2.4.0 | ids | 1.0.1 |
igraph | 1.3.5 | igraphdata | 1.0.1 |
ineq | 0.2-13 | infer | 1.0.3 |
influenceR | 0.1.0.1 | ini | 0.3.1 |
inline | 0.3.19 | insight | 0.18.7 |
interp | 1.1-3 | intervals | 0.15.2 |
introgress | 1.2.3 | inum | 1.0-4 |
ipred | 0.9-13 | Iso | 0.0-18.1 |
isoband | 0.2.6 | iterators | 1.0.14 |
itertools | 0.1-3 | janitor | 2.1.0 |
jpeg | 0.1-9 | jquerylib | 0.1.4 |
jsonlite | 1.8.3 | juicyjuice | 0.1.0 |
kernelFactory | 0.3.0 | kernlab | 0.9-31 |
klaR | 1.7-1 | knitr | 1.41 |
ks | 1.13.5 | labeling | 0.4.2 |
labelled | 2.10.0 | LaF | 0.8.4 |
Lahman | 10.0-1 | lars | 1.3 |
later | 1.3.0 | latticeExtra | 0.6-30 |
lava | 1.7.0 | lavaan | 0.6-12 |
lavaan.survey | 1.1.3.1 | lazyeval | 0.2.2 |
lcda | 0.3.1 | leaflet | 2.1.1 |
leaflet.providers | 1.9.0 | leaps | 3.1 |
LearnBayes | 2.15.1 | learnr | 0.11.2.9000 |
lgr | 0.4.4 | lhs | 1.1.5 |
libcoin | 1.0-9 | lifecycle | 1.0.3 |
LIM | 1.4.7 | limSolve | 1.5.6 |
lisrelToR | 0.1.5 | listenv | 0.8.0 |
lme4 | 1.1-31 | lmom | 2.9 |
lmtest | 0.9-40 | locfit | 1.5-9.6 |
lokern | 1.1-9 | loo | 2.5.1 |
lpSolve | 5.6.17 | lubridate | 1.9.0 |
magic | 1.6-1 | magrittr | 2.0.3 |
manipulateWidget | 0.11.1 | mapproj | 1.2.9 |
maps | 3.4.1 | maptools | 1.1-5 |
markdown | 1.4 | Matching | 4.10-8 |
MatchIt | 4.5.0 | mathjaxr | 1.6-0 |
matrixcalc | 1.0-6 | MatrixModels | 0.5-1 |
matrixStats | 0.63.0 | maxLik | 1.5-2 |
mboost | 2.9-7 | mclust | 6.0.0 |
mcmc | 0.9-7 | MCMCglmm | 2.34 |
memoise | 2.0.1 | MEMSS | 0.9-3 |
Metrics | 0.1.4 | mi | 1.1 |
mice | 3.15.0 | microbenchmark | 1.4.9 |
mime | 0.12 | miniUI | 0.1.1.1 |
minpack.lm | 1.2-2 | minqa | 1.2.5 |
misc3d | 0.9-1 | miscTools | 0.6-26 |
mitools | 2.4 | mlbench | 2.1-3 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlr3 | 0.14.1 | mlr3measures | 0.5.0 |
mlr3misc | 0.11.0 | mnormt | 2.1.1 |
modeldata | 1.0.1 | modelenv | 0.1.0 |
ModelMetrics | 1.2.2.2 | modelr | 0.1.10 |
modeltime | 1.2.4 | modeltools | 0.2-23 |
moments | 0.14.1 | mondate | 0.10.02 |
mosaic | 1.8.4.2 | mosaicCore | 0.9.2.1 |
mosaicData | 0.20.3 | mratios | 1.4.2 |
multcomp | 1.4-20 | multicool | 0.1-12 |
munsell | 0.5.0 | mvMORPH | 1.1.6 |
mvtnorm | 1.1-3 | natserv | 1.0.0 |
network | 1.18.0 | networkD3 | 0.4 |
NISTnls | 0.9-13 | nleqslv | 3.3.3 |
nloptr | 2.0.3 | nls2 | 0.3-3 |
nlstools | 2.0-0 | nnls | 1.4 |
nortest | 1.0-4 | np | 0.60-16 |
numbers | 0.8-2 | numDeriv | 2016.8-1.1 |
odbc | 1.3.3 | openssl | 2.0.4 |
openxlsx | 4.2.5.1 | optextras | 2019-12.4 |
optimParallel | 1.0-2 | ordinal | 2022.11-16 |
padr | 0.6.1 | PairedData | 1.1.1 |
palmerpenguins | 0.1.1 | paradox | 0.10.0 |
parallelly | 1.32.1 | parsnip | 1.0.3 |
partitions | 1.10-7 | party | 1.3-11 |
partykit | 1.2-16 | pastecs | 1.3.21 |
patchwork | 1.1.2 | pbapply | 1.6-0 |
pbivnorm | 0.6.0 | pbkrtest | 0.5.1 |
pbmcapply | 1.5.1 | PBSmapping | 2.73.2 |
pcaPP | 2.0-3 | pedigree | 1.4.2 |
PerformanceAnalytics | 2.0.4 | permute | 0.9-7 |
phangorn | 2.10.0 | phytools | 1.2-0 |
pillar | 1.8.1 | pixmap | 0.4-12 |
pkgbuild | 1.3.1 | pkgconfig | 2.0.3 |
pkgdown | 2.0.6 | pkgload | 1.3.2 |
PKPDmodels | 0.3.2 | plm | 2.6-2 |
plogr | 0.2.0 | plot3D | 1.4 |
plotly | 4.10.1 | plotrix | 3.8-2 |
pls | 2.8-1 | plyr | 1.8.8 |
png | 0.1-7 | poLCA | 1.6.0.1 |
polspline | 1.1.20 | polyclip | 1.10-4 |
polycor | 0.8-1 | polynom | 1.4-1 |
posterior | 1.3.1 | prabclus | 2.3-2 |
pracma | 2.4.2 | praise | 1.0.0 |
prettyunits | 1.1.1 | princurve | 2.1.6 |
pROC | 1.18.0 | processx | 3.8.0 |
prodlim | 2019.11.13 | profileModel | 0.6.1 |
profvis | 0.3.7 | progress | 1.2.2 |
progressr | 0.11.0 | promises | 1.2.0.1 |
prophet | 1.0 | proto | 1.0.0 |
proxy | 0.4-27 | PRROC | 1.3.1 |
ps | 1.7.2 | pscl | 1.5.5 |
psy | 1.2 | psych | 2.2.9 |
purrr | 0.3.5 | qap | 0.1-2 |
qtl | 1.52 | quadprog | 1.5-8 |
Quandl | 2.11.0 | quantmod | 0.4.20 |
quantreg | 5.94 | questionr | 0.7.7 |
QUIC | 1.1.1 | qvcalc | 1.0.2 |
R.cache | 0.16.0 | R.devices | 2.17.1 |
R.filesets | 2.15.0 | R.huge | 0.9.0 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.25.0 | R.rsp | 0.45.0 |
R.utils | 2.12.2 | R2HTML | 2.3.3 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R6 | 2.5.1 | ragg | 1.2.4 |
rainbow | 3.7 | randomForest | 4.7-1.1 |
rappdirs | 0.3.3 | raster | 3.6-3 |
ratelimitr | 0.4.1 | rbenchmark | 1.0.0 |
rbibutils | 2.2.10 | Rcgmin | 2022-4.30 |
rcmdcheck | 1.4.0 | RColorBrewer | 1.1-3 |
Rcpp | 1.0.9 | RcppArmadillo | 0.11.4.2.1 |
RcppEigen | 0.3.3.9.3 | RcppParallel | 5.1.5 |
RcppProgress | 0.4.2 | RcppRoll | 0.3.0 |
Rcsdp | 0.1.57.2 | RCurl | 1.98-1.9 |
Rdpack | 2.4 | reactable | 0.3.0 |
reactR | 0.4.4 | readr | 2.1.3 |
readstata13 | 0.10.0 | readxl | 1.4.1 |
recipes | 1.0.3 | registry | 0.5-1 |
regress | 1.3-21 | relaxnet | 0.3-2 |
reliaR | 0.01 | relimp | 1.0-5 |
rematch | 1.0.1 | rematch2 | 2.1.2 |
remotes | 2.4.2 | rentrez | 1.2.3 |
renv | 0.16.0 | reprex | 2.0.2 |
reshape | 0.8.9 | reshape2 | 1.4.4 |
rex | 1.2.1 | rgl | 0.110.2 |
RgoogleMaps | 1.4.5.3 | RGraphics | 3.0-2 |
riingo | 0.3.1 | ritis | 1.0.0 |
rJava | 1.0-6 | RJDBC | 0.2-10 |
rjson | 0.2.21 | RJSONIO | 1.3-1.6 |
rlang | 1.0.6 | rlecuyer | 0.3-5 |
rmarkdown | 2.18 | Rmpfr | 0.8-9 |
rms | 6.3-0 | RMySQL | 0.10.24 |
rncl | 0.8.6 | robustbase | 0.95-0 |
ROCR | 1.0-11 | Rook | 1.2 |
rotl | 3.0.14 | roxygen2 | 7.2.2 |
RPostgreSQL | 0.7-4 | rprojroot | 2.0.3 |
rredlist | 0.7.1 | rsample | 1.1.0 |
RSQLite | 2.2.18 | rstan | 2.21.7 |
rstantools | 2.2.0 | rstudioapi | 0.14 |
RUnit | 0.4.32 | rversions | 2.1.2 |
rvest | 1.0.3 | Rvmmin | 2018-4.17.1 |
s2 | 1.1.1 | sandwich | 3.0-2 |
sass | 0.4.3 | scales | 1.2.1 |
scatterplot3d | 0.3-42 | ScottKnott | 1.3-0 |
SDMTools | 1.1-221.2 | sealasso | 0.1-3 |
segmented | 1.6-1 | selectr | 0.4-2 |
sem | 3.1-15 | SemiPar | 1.0-4.2 |
semTools | 0.5-6 | seqinr | 4.2-16 |
seriation | 1.4.0 | sessioninfo | 1.2.2 |
setRNG | 2022.4-1 | sets | 1.0-21 |
sf | 1.0-9 | sfsmisc | 1.1-13 |
shape | 1.4.6 | shapefiles | 0.7.2 |
shiny | 1.7.3 | shiny.semantic | 0.4.3 |
shinyjs | 2.1.0 | shinystan | 2.6.0 |
shinythemes | 1.2.0 | SimComp | 3.3 |
simsem | 0.5-16 | slam | 0.1-50 |
slider | 0.3.0 | sn | 2.1.0 |
sna | 2.7 | snakecase | 0.11.0 |
snow | 0.4-4 | snowfall | 1.84-6.2 |
solrium | 1.2.0 | sourcetools | 0.1.7 |
sp | 1.5-1 | spam | 2.9-1 |
SparseM | 1.81 | SpatialExtremes | 2.1-0 |
spatstat | 3.0-2 | spatstat.data | 3.0-0 |
spatstat.explore | 3.0-5 | spatstat.geom | 3.0-3 |
spatstat.linnet | 3.0-3 | spatstat.model | 3.0-2 |
spatstat.random | 3.0-1 | spatstat.sparse | 3.0-0 |
spatstat.utils | 3.0-1 | spData | 2.2.1 |
spdep | 1.2-7 | SQUAREM | 2021.1 |
ssgraph | 1.14 | stabs | 0.6-4 |
StanHeaders | 2.21.0-7 | statmod | 1.4.37 |
statnet.common | 4.7.0 | stringi | 1.7.8 |
stringr | 1.4.1 | strucchange | 1.5-3 |
styler | 1.8.1 | subplex | 1.8 |
superml | 0.5.6 | SuppDists | 1.1-9.7 |
survey | 4.1-1 | survPresmooth | 1.1-11 |
svUnit | 1.0.6 | sybil | 2.2.0 |
synbreedData | 1.5 | sys | 3.4.1 |
systemfonts | 1.0.4 | tables | 0.9.10 |
taxize | 0.9.100 | tensor | 1.5 |
tensorA | 0.36.2 | terra | 1.6-41 |
testit | 0.13 | testthat | 3.1.5 |
textshaping | 0.3.6 | TH.data | 1.1-1 |
threejs | 0.3.3 | tibble | 3.1.8 |
tidymodels | 1.0.0 | tidyquant | 1.0.6 |
tidyr | 1.2.1 | tidyselect | 1.2.0 |
tidyverse | 1.3.2 | timechange | 0.1.1 |
timeDate | 4021.106 | timeSeries | 4021.105 |
timetk | 2.8.2 | tinytex | 0.42 |
tis | 1.39 | tkrplot | 0.0-27 |
tmvtnorm | 1.5 | triebeard | 0.3.0 |
trimcluster | 0.1-5 | tripack | 1.3-9.1 |
truncnorm | 1.0-8 | truncreg | 0.2-5 |
tseries | 0.10-52 | tsfeatures | 1.1 |
TSP | 1.2-1 | TTR | 0.24.3 |
tune | 1.0.1 | tweenr | 2.0.2 |
tzdb | 0.3.0 | ucminf | 1.1-4.1 |
units | 0.8-0 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
usethis | 2.1.6 | utf8 | 1.2.2 |
uuid | 1.1-0 | V8 | 4.2.2 |
vcd | 1.4-10 | vctrs | 0.5.1 |
vegan | 2.6-4 | VGAM | 1.1-7 |
VGAMdata | 1.1-6 | viridis | 0.6.2 |
viridisLite | 0.4.1 | visNetwork | 2.1.2 |
vroom | 1.6.0 | waldo | 0.4.0 |
warp | 0.2.0 | waveslim | 1.8.4 |
wavethresh | 4.7.2 | webshot | 0.5.4 |
whisker | 0.4 | widenet | 0.1-2 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
WikipediR | 1.5.0 | wikitaxa | 0.4.0 |
withr | 2.5.0 | wk | 0.7.0 |
workflows | 1.1.2 | workflowsets | 1.0.0 |
worrms | 0.4.2 | xfun | 0.35 |
xgboost | 1.6.0.1 | XLConnect | 1.0.6 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.12 | xml2 | 1.3.3 |
xopen | 1.0.0 | xtable | 1.8-4 |
xts | 0.12.2 | yaml | 2.3.6 |
yardstick | 1.1.0 | zip | 2.2.2 |
zoo | 1.8-11 |
JupyterHub Server
JupyterHub is a multi-user server for Jupyter notebooks and allows multiple users to access Jupyter notebooks simultaneously through their web browsers, making it ideal for environments where multiple users need to collaborate or work independently on data science projects. It can be deployed on a single server for small teams or scaled up to handle large numbers of users.
Set up JupyterHub Server
Default user: jhub-admin
Please sign up and set your password for jhub-admin when you start the server for the first time. Different from regular users, jhub-admin is automatically authorized to log in after the password is created.
http is supported out of box.
If https is desired, please send your request to support@elmcomputing.io
Startup page
After the VM is started, you can access the JupyterHub 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:
Sign-up page
When the JupyterHub Server is activated, a default user "jhub-admin" is created. The first time you access the server, a password need to be set for "jhub-admin".
jupyterlab
Authorize page
When creating new users, an authorization step is needed at "http://10.11.12.13/hub/authorize"
Change password
The password can be changed at "http://10.11.12.13/hub/change-password"
Release Notes
Added Python 3.10 and Sagemath; The data science packages such as tensorflow, torch, datascience, mlpack, mlflow and xgboost are installed.
SageMath: 9.0
Python version: 3.10
Python packages
package | version | package | version |
---|---|---|---|
absl-py | 1.0.0 | access | 1.1.8 |
adal | 1.2.7 | aenum | 3.1.11 |
affine | 2.3.1 | aiobotocore | 2.3.4 |
aioconsole | 0.5.1 | aiofiles | 22.1.0 |
aiohttp | 3.8.0 | aioitertools | 0.8.0 |
aiosignal | 1.2.0 | aiosqlite | 0.17.0 |
alabaster | 0.7.12 | alembic | 1.7.4 |
altair | 4.1.0 | amqp | 5.1.1 |
analytics-python | 1.4.0 | aniso8601 | 9.0.1 |
annotated-types | 0.6.0 | ansible | 6.4.0 |
ansible-base | 2.10.8 | ansible-core | 2.13.4 |
antlr4-python3-runtime | 4.11.1 | anyio | 3.4.0 |
apache-airflow | 2.3.4 | apache-airflow-providers-common-sql | 1.2.0 |
apache-airflow-providers-ftp | 3.1.0 | apache-airflow-providers-http | 4.0.0 |
apache-airflow-providers-imap | 3.0.0 | apache-airflow-providers-sqlite | 3.2.1 |
apache-libcloud | 2.8.0 | apispec | 3.3.2 |
appdirs | 1.4.4 | applicationinsights | 0.11.10 |
argcomplete | 2.0.0 | argon2-cffi | 21.1.0 |
argon2-cffi-bindings | 21.2.0 | args | 0.1.0 |
arrow | 1.2.3 | asgiref | 3.5.2 |
asn1crypto | 1.5.1 | astor | 0.8.1 |
astroid | 2.12.10 | asttokens | 2.0.5 |
astunparse | 1.6.3 | async-generator | 1.10 |
async-lru | 2.0.4 | async-timeout | 4.0.2 |
asynctest | 0.13.0 | atomicwrites | 1.4.1 |
attrs | 22.2.0 | audioread | 2.1.9 |
Authlib | 1.1.0 | autobahn | 21.3.1 |
autograd | 1.4 | Automat | 20.2.0 |
avro | 1.11.1 | avro-python3 | 1.10.2 |
aws-requests-auth | 0.4.3 | azure-common | 1.1.28 |
azure-core | 1.30.1 | azure-cosmos | 4.5.1 |
azure-cosmosdb-nspkg | 2.0.2 | azure-cosmosdb-table | 1.0.6 |
azure-datalake-store | 0.0.53 | azure-eventhub | 5.11.6 |
azure-graphrbac | 0.61.1 | azure-identity | 1.15.0 |
azure-keyvault | 4.2.0 | azure-keyvault-certificates | 4.8.0 |
azure-keyvault-keys | 4.9.0 | azure-keyvault-secrets | 4.8.0 |
azure-mgmt-authorization | 4.0.0 | azure-mgmt-containerregistry | 10.3.0 |
azure-mgmt-core | 1.4.0 | azure-mgmt-keyvault | 10.3.0 |
azure-mgmt-resource | 23.0.1 | azure-mgmt-storage | 21.1.0 |
azure-nspkg | 3.0.2 | azure-storage-blob | 12.19.0 |
azure-storage-common | 2.1.0 | azure-storage-file-datalake | 12.14.0 |
azure-storage-queue | 12.9.0 | Babel | 2.10.0 |
backcall | 0.2.0 | backoff | 1.10.0 |
backports.tempfile | 1.0 | backports.weakref | 1.0.post1 |
base64io | 1.0.3 | bcrypt | 3.2.0 |
beautifulsoup4 | 4.10.0 | beniget | 0.4.1 |
billiard | 4.0.2 | black | 22.8.0 |
bleach | 4.1.0 | blinker | 1.4 |
blis | 0.7.11 | bokeh | 2.4.1 |
boltons | 21.0.0 | boto | 2.49.0 |
boto3 | 1.21.0 | botocore | 1.24.21 |
Bottleneck | 1.3.5 | bqplot | 0.12.33 |
branca | 0.4.2 | brial | 1.0.2 |
Brotli | 1.0.9 | brotlipy | 0.7.0 |
bs4 | 0.0.1 | build | 0.8.0 |
bytecode | 0.13.0 | CacheControl | 0.12.11 |
cached-property | 1.5.2 | cachelib | 0.9.0 |
cachetools | 4.2.4 | cachy | 0.3.0 |
catalogue | 2.0.6 | cattrs | 22.1.0 |
certifi | 2019.11.28 | certipy | 0.1.3 |
cffi | 1.15.1 | cfgv | 3.3.1 |
chainer | 7.8.0 | chardet | 3.0.4 |
charset-normalizer | 2.0.12 | cleo | 1.0.0a5 |
click | 8.0.3 | click-didyoumean | 0.3.0 |
click-plugins | 1.1.1 | click-repl | 0.2.0 |
clickclick | 20.10.2 | cligj | 0.7.2 |
clikit | 0.6.2 | clint | 0.5.1 |
cloud-init | 23.4.4 | cloudpathlib | 0.16.0 |
cloudpickle | 2.0.0 | colorama | 0.4.3 |
coloredlogs | 15.0.1 | colorlog | 4.8.0 |
colour | 0.1.5 | comm | 0.2.1 |
command-not-found | 0.3 | commonmark | 0.9.1 |
confection | 0.1.4 | configobj | 5.0.6 |
configparser | 5.3.0 | confluent-kafka | 1.9.2 |
connexion | 2.14.1 | constantly | 15.1.0 |
constructs | 3.4.99 | contextily | 1.2.0 |
contextlib2 | 21.6.0 | convertdate | 2.4.0 |
countryinfo | 0.1.2 | coverage | 6.2 |
coveralls | 3.3.1 | cramjam | 2.5.0 |
crashtest | 0.3.1 | crcmod | 1.7 |
cron_descriptor | 1.2.31 | croniter | 1.3.7 |
cryptography | 3.4.8 | css-html-js-minify | 2.5.5 |
cssselect | 1.1.0 | cssutils | 2.5.1 |
curlify | 2.2.1 | cvxopt | 1.3.2 |
cx-Oracle | 8.3.0 | cycler | 0.11.0 |
cymem | 2.0.6 | cypari2 | 2.1.2 |
cysignals | 1.11.4 | Cython | 0.29.28 |
dacite | 1.8.1 | dash | 2.0.0 |
dash-core-components | 2.0.0 | dash-html-components | 2.0.0 |
dash-table | 5.0.0 | dash_renderer | 1.9.1 |
dask | 2023.3.2 | databricks-cli | 0.17.3 |
dataclasses | 0.6 | dataclasses-json | 0.5.7 |
datadog | 0.44.0 | dataprep | 0.4.4 |
datascience | 0.17.0 | datasets | 2.4.0 |
dateparser | 1.1.1 | DateTime | 4.7 |
db-dtypes | 1.0.3 | dbus-python | 1.2.16 |
ddsketch | 2.0.4 | ddtrace | 1.4.5 |
debugpy | 1.8.1 | decorator | 4.4.2 |
deepdiff | 5.8.1 | defer | 1.0.4 |
defusedxml | 0.7.1 | delta-spark | 2.0.0 |
Deprecated | 1.2.13 | deprecation | 2.1.0 |
descartes | 1.1.0 | dill | 0.3.2 |
dipy | 1.9.0 | distlib | 0.3.6 |
distributed | 2023.3.2 | distro | 1.4.0 |
distro-info | 1.0 | dm-tree | 0.1.8 |
dnspython | 2.2.1 | docker | 5.0.0 |
docopt | 0.6.2 | docutils | 0.15.2 |
dulwich | 0.20.46 | dynamo-json | 1.2.0 |
earthengine-api | 0.1.318 | EasyProcess | 0.3 |
ebaysdk | 2.2.0 | ecdsa | 0.17.0 |
ee_extra | 0.0.14 | eemeter | 3.1.0 |
eli5 | 0.11.0 | email-validator | 1.3.0 |
emoji | 2.1.0 | entrypoint2 | 0.2.4 |
entrypoints | 0.3 | enum34 | 1.1.10 |
esda | 2.4.1 | et-xmlfile | 1.1.0 |
etils | 0.8.0 | exceptiongroup | 1.0.0rc9 |
exchange-calendars | 4.2.3 | execnet | 1.9.0 |
executing | 0.8.3 | facebook-business | 14.0.0 |
facebook-sdk | 3.1.0 | facebook-wda | 1.4.6 |
Faker | 14.2.0 | fastavro | 1.6.1 |
fasteners | 0.17.3 | fastjsonschema | 2.16.1 |
fastnumbers | 3.2.1 | fastparquet | 0.8.3 |
fastrlock | 0.8 | fasttext | 0.9.2 |
ffmpeg-python | 0.2.0 | ffmpy | 0.3.0 |
filelock | 3.4.1 | Fiona | 1.8.21 |
fire | 0.4.0 | flake8 | 5.0.4 |
Flask | 2.1.3 | Flask-AppBuilder | 4.1.3 |
Flask-Babel | 2.0.0 | Flask-CacheBuster | 1.0.0 |
Flask-Caching | 2.1.0 | Flask-Compress | 1.14 |
Flask-Cors | 3.0.10 | Flask-JWT-Extended | 4.6.0 |
Flask-Login | 0.6.3 | Flask-Session | 0.4.1 |
Flask-SQLAlchemy | 2.5.1 | Flask-WTF | 0.15.1 |
flatbuffers | 24.3.7 | folium | 0.12.1.post1 |
fonttools | 4.34.4 | fpylll | 0.5.2.dev0 |
fqdn | 1.5.1 | freezegun | 1.2.2 |
frozenlist | 1.3.1 | fs | 2.4.12 |
fsspec | 2022.5.0 | funcsigs | 1.0.2 |
future | 0.18.2 | futures | 3.0.5 |
fuzzywuzzy | 0.18.0 | gast | 0.4.0 |
gcsfs | 2022.5.0 | GDAL | 3.4.1 |
gdown | 4.5.1 | gdspy | 1.6.12 |
geeadd | 0.5.5 | geemap | 0.16.2 |
gensim | 4.1.2 | geocoder | 1.38.1 |
geographiclib | 1.52 | geoip2 | 4.6.0 |
geojson | 2.5.0 | geopandas | 0.11.1 |
geopy | 2.2.0 | geotext | 0.4.0 |
gevent | 21.12.0 | giddy | 2.3.3 |
gitapi | 1.0.1 | gitdb | 4.0.9 |
GitPython | 3.1.27 | gmpy2 | 2.1.2 |
goflow | 0.1.2 | google-api-core | 2.17.1 |
google-api-python-client | 1.12.11 | google-auth | 2.28.2 |
google-auth-httplib2 | 0.1.0 | google-auth-oauthlib | 1.0.0 |
google-cloud-bigquery | 3.18.0 | google-cloud-bigquery-storage | 2.24.0 |
google-cloud-core | 2.4.1 | google-cloud-storage | 2.15.0 |
google-crc32c | 1.5.0 | google-pasta | 0.2.0 |
google-resumable-media | 2.7.0 | googleapis-common-protos | 1.62.0 |
gradio | 2.4.1 | graphviz | 0.17 |
great-expectations | 0.15.23 | greenlet | 1.1.2 |
gremlinpython | 3.6.1 | grpc-google-iam-v1 | 0.12.4 |
grpcio | 1.62.0 | grpcio-status | 1.41.0 |
grpcio-tools | 1.46.5 | gspread | 5.5.0 |
gunicorn | 20.1.0 | h11 | 0.12.0 |
h2 | 3.2.0 | h3 | 3.7.4 |
h5netcdf | 1.3.0 | h5py | 3.10.0 |
haversine | 2.6.0 | hdfs | 2.7.0 |
hdfs3 | 0.3.1 | HeapDict | 1.0.1 |
hgapi | 1.7.4 | hibagent | 1.0.1 |
hijri-converter | 2.2.4 | holidays | 0.16 |
hpack | 3.0.0 | html5lib | 1.1 |
htmlmin | 0.1.12 | httpcore | 0.13.7 |
httplib2 | 0.15.0 | httplib2shim | 0.0.3 |
httptools | 0.5.0 | httpx | 1.0.0b0 |
huggingface-hub | 0.9.1 | humanfriendly | 10.0 |
humanize | 4.3.0 | hvac | 2.1.0 |
hyperframe | 5.2.0 | hyperlink | 21.0.0 |
identify | 2.5.5 | idna | 2.8 |
ijson | 3.1.4 | ImageHash | 4.3.1 |
imageio | 2.10.1 | imageio-ffmpeg | 0.4.5 |
imagesize | 1.3.0 | importlib-metadata | 6.11.0 |
importlib-resources | 5.3.0 | incremental | 21.3.0 |
inequality | 1.0.0 | inflection | 0.5.1 |
iniconfig | 1.1.1 | invoke | 1.7.1 |
ipaddress | 1.0.23 | ipyevents | 2.0.1 |
ipyfilechooser | 0.6.0 | ipykernel | 6.29.2 |
ipyleaflet | 0.17.0 | ipysheet | 0.5.0 |
ipython | 7.29.0 | ipython_genutils | 0.2.0 |
ipytree | 0.2.1 | ipywidgets | 7.6.5 |
iso8601 | 1.0.2 | isodate | 0.6.1 |
isoduration | 20.11.0 | isort | 5.10.1 |
itemadapter | 0.4.0 | itemloaders | 1.0.4 |
itsdangerous | 2.0.1 | jarowinkler | 1.2.0 |
jax | 0.3.17 | jdcal | 1.4.1 |
jedi | 0.18.0 | jeepney | 0.7.1 |
Jinja2 | 3.0.3 | jira | 3.4.1 |
jmespath | 0.10.0 | joblib | 1.1.0 |
JPype1 | 1.4.0 | jschema-to-python | 1.2.3 |
jsii | 1.67.0 | json5 | 0.9.6 |
jsondiff | 2.0.0 | jsonlines | 1.2.0 |
jsonpatch | 1.22 | jsonpath-ng | 1.5.3 |
jsonpickle | 2.2.0 | jsonpointer | 2.0 |
jsonschema | 4.18.0 | jsonschema-specifications | 2023.12.1 |
junit-xml | 1.9 | jupyter | 1.0.0 |
jupyter-console | 6.6.3 | jupyter-events | 0.9.0 |
jupyter-lsp | 2.2.4 | jupyter-server | 1.24.0 |
jupyter-telemetry | 0.1.0 | jupyter-ydoc | 0.2.5 |
jupyter_client | 8.6.0 | jupyter_core | 5.7.1 |
jupyter_server_fileid | 0.9.1 | jupyter_server_proxy | 4.0.0 |
jupyter_server_terminals | 0.5.2 | jupyter_server_ydoc | 0.8.0 |
jupyterhub | 3.1.1 | jupyterhub-idle-culler | 1.3.1 |
jupyterhub-nativeauthenticator | 1.2.0 | jupyterlab | 3.6.7 |
jupyterlab_pygments | 0.3.0 | jupyterlab_server | 2.24.0 |
jupyterlab_widgets | 3.0.10 | jwcrypto | 1.4.2 |
jwt | 1.3.1 | kafka-python | 2.0.2 |
keplergl | 0.3.2 | keras | 2.15.0 |
Keras-Applications | 1.0.8 | Keras-Preprocessing | 1.1.2 |
keycloakauthenticator | 2.0.0 | keyring | 21.2.0 |
kiwisolver | 1.3.2 | knack | 0.10.0 |
kombu | 5.2.4 | korean-lunar-calendar | 0.3.1 |
kubernetes | 24.2.0 | langcodes | 3.3.0 |
laspy | 2.2.0 | launchpadlib | 1.10.13 |
lazr.restfulclient | 0.14.2 | lazr.uri | 1.0.3 |
lazy-object-proxy | 1.7.1 | lazy_loader | 0.3 |
leafmap | 0.10.3 | libclang | 13.0.0 |
libcst | 0.4.7 | libpysal | 4.6.2 |
librosa | 0.8.1 | lightgbm | 3.3.1 |
linkify-it-py | 2.0.0 | llvmlite | 0.39.0 |
locket | 1.0.0 | lockfile | 0.12.2 |
logzero | 1.7.0 | lorem | 0.1.1 |
lxml | 4.6.5 | lz4 | 3.1.3+dfsg |
M2Crypto | 0.38.0 | macaroonbakery | 1.3.1 |
makefun | 1.15.0 | Mako | 1.1.5 |
mamba | 0.11.2 | mapclassify | 2.4.3 |
Markdown | 3.3.4 | markdown-it-py | 2.1.0 |
markdown2 | 2.4.1 | MarkupSafe | 2.0.1 |
marshmallow | 3.18.0 | marshmallow-enum | 1.5.1 |
marshmallow-oneofschema | 3.0.1 | marshmallow-sqlalchemy | 0.26.1 |
matplotlib | 3.5.2 | matplotlib-inline | 0.1.3 |
maxminddb | 2.2.0 | mccabe | 0.7.0 |
mdit-py-plugins | 0.3.0 | mdurl | 0.1.2 |
mechanize | 0.4.7 | meep | 1.0.6 |
memory-allocator | 0.1.2 | mercantile | 1.2.1 |
Metaphone | 0.6 | mgwr | 2.1.2 |
missingno | 0.5.1 | mistune | 3.0.2 |
ml-dtypes | 0.3.2 | mlflow | 2.7.1 |
mlpack | 4.3.0.post1 | mock | 4.0.3 |
momepy | 0.5.3 | monotonic | 1.6 |
more-itertools | 4.2.0 | moto | 4.0.3 |
moviepy | 1.0.3 | mpi4py | 3.1.1 |
mpmath | 1.2.1 | msal | 1.24.0 |
msal-extensions | 1.0.0 | msgpack | 1.0.2 |
msrest | 0.7.1 | msrestazure | 0.6.4 |
mss | 6.1.0 | multidict | 5.2.0 |
multimethod | 1.8 | multiprocess | 0.70.10 |
multitasking | 0.0.11 | munch | 2.5.0 |
murmurhash | 1.0.6 | mutagen | 1.45.1 |
mypy | 0.971 | mypy-extensions | 0.4.3 |
mysql-connector-python | 8.3.0 | mysqlclient | 2.1.1 |
namex | 0.0.7 | nbclassic | 0.3.4 |
nbclient | 0.5.4 | nbconvert | 7.16.1 |
nbformat | 5.9.2 | nbgitpuller | 1.0.2 |
nbsphinx | 0.8.8 | ndg-httpsclient | 0.5.1 |
nest-asyncio | 1.6.0 | netaddr | 0.8.0 |
netifaces | 0.10.4 | networkx | 2.8.5 |
nibabel | 5.2.1 | nlopt | 2.7.1 |
nltk | 3.7 | nodeenv | 1.7.0 |
nose | 1.3.7 | notebook | 6.4.12 |
notebook_shim | 0.2.4 | ntlm-auth | 1.1.0 |
numba | 0.56.4 | numpy | 1.23.5 |
nvidia-cublas-cu12 | 12.1.3.1 | nvidia-cuda-cupti-cu12 | 12.1.105 |
nvidia-cuda-nvrtc-cu12 | 12.1.105 | nvidia-cuda-runtime-cu12 | 12.1.105 |
nvidia-cudnn-cu12 | 8.9.2.26 | nvidia-cufft-cu12 | 11.0.2.54 |
nvidia-curand-cu12 | 10.3.2.106 | nvidia-cusolver-cu12 | 11.4.5.107 |
nvidia-cusparse-cu12 | 12.1.0.106 | nvidia-nccl-cu12 | 2.19.3 |
nvidia-nvjitlink-cu12 | 12.4.99 | nvidia-nvtx-cu12 | 12.1.105 |
nycflights13 | 0.0.3 | oauth2client | 4.1.3 |
oauthenticator | 14.2.0 | oauthlib | 3.1.0 |
ogr | 0.38.1 | olefile | 0.46 |
onetimepass | 1.0.1 | onnxruntime | 1.12.1 |
opencensus | 0.11.0 | opencensus-context | 0.1.3 |
opencensus-ext-azure | 1.1.7 | opencv-contrib-python | 4.6.0.66 |
opencv-python | 4.5.4.58 | openflow | 0.1.2.4 |
openpyxl | 3.0.10 | opensearch-py | 2.0.0 |
opt-einsum | 3.3.0 | ordered-set | 4.1.0 |
orjson | 3.8.0 | oscrypto | 1.3.0 |
osmnx | 1.2.0 | outcome | 1.1.0 |
overrides | 6.2.0 | packaging | 21.3 |
pamela | 1.0.0 | pandas | 1.5.3 |
pandas-gbq | 0.17.8 | pandas-market-calendars | 4.0 |
pandas-profiling | 3.6.6 | pandas-usaddress | 0.21 |
pandasql | 0.7.3 | pandocfilters | 1.5.0 |
paramiko | 2.8.0 | parsedatetime | 2.6 |
parsel | 1.6.0 | parso | 0.8.2 |
partd | 1.2.0 | pastel | 0.2.1 |
path.py | 12.0.1 | pathlib2 | 2.3.7.post1 |
pathlib_abc | 0.1.1 | pathos | 0.2.0 |
pathspec | 0.9.0 | pathy | 0.11.0 |
patsy | 0.5.2 | pbr | 5.6.0 |
pdfkit | 0.6.1 | pendulum | 2.1.2 |
pep517 | 0.13.0 | pexpect | 4.8.0 |
pg8000 | 1.29.1 | phik | 0.12.2 |
phonenumbers | 8.12.55 | pickleshare | 0.7.5 |
pika | 1.3.0 | Pillow | 9.2.0 |
pip-tools | 6.8.0 | pipenv | 2022.9.8 |
pkgconfig | 1.5.1 | pkginfo | 1.8.3 |
pkgutil_resolve_name | 1.3.10 | platformdirs | 2.6.2 |
plotly | 5.19.0 | pluggy | 1.0.0 |
ply | 3.11 | Pmw | 2.1.1 |
poetry-core | 1.2.0 | pointpats | 2.2.0 |
pooch | 1.5.2 | portalocker | 2.5.1 |
postal-address | 22.4.22.1 | pox | 0.3.1 |
ppft | 1.7.6.5 | pplpy | 0.8.7 |
pprintpp | 0.4.0 | pre-commit | 2.20.0 |
premailer | 3.10.0 | preshed | 3.0.6 |
prettytable | 3.4.1 | primecountpy | 0.1.0 |
priority | 1.3.0 | prison | 0.2.1 |
probableparsing | 0.0.1 | proglog | 0.1.9 |
progressbar2 | 4.0.0 | prometheus-client | 0.12.0 |
prometheus-flask-exporter | 0.20.3 | promise | 2.3 |
prompt-toolkit | 3.0.30 | Protego | 0.1.16 |
proto-plus | 1.22.1 | protobuf | 3.20.3 |
protobuf3-to-dict | 0.1.5 | psutil | 5.8.0 |
psycopg2 | 2.9.3 | psycopg2-binary | 2.9.3 |
ptyprocess | 0.7.0 | publication | 0.0.3 |
PuLP | 2.6.0 | pure-eval | 0.2.2 |
py | 1.10.0 | py4j | 0.10.9.2 |
pyarrow | 6.0.0 | pyasn1 | 0.4.8 |
pyasn1-modules | 0.2.1 | pyathena | 2.14.0 |
pybind11 | 2.10.0 | pycairo | 1.20.1 |
pycodestyle | 2.9.1 | pycosat | 0.6.3 |
pycountry | 22.3.5 | pycountry-convert | 0.7.2 |
pycparser | 2.20 | pycron | 3.0.0 |
PyCRS | 1.0.2 | pycrypto | 2.6.1 |
pycryptodome | 3.11.0 | pycryptodomex | 3.15.0 |
pycups | 2.0.1 | pycurl | 7.45.1 |
pydantic | 1.10.14 | pydantic_core | 2.16.3 |
pydata-google-auth | 1.4.0 | pydeequ | 1.0.1 |
PyDispatcher | 2.0.5 | pydot | 1.4.2 |
pydotplus | 2.0.2 | pydub | 0.25.1 |
pyexpect | 1.0.21 | pyflakes | 2.5.0 |
pygame | 2.5.2 | pygdal | 3.4.1.10 |
pygeos | 0.12.0 | PyGithub | 1.55 |
pyglet | 1.5.21 | Pygments | 2.10.0 |
PyGObject | 3.42.1 | PyGreSQL | 5.2.2 |
PyHamcrest | 1.9.0 | pyhcl | 0.4.4 |
pyinotify | 0.9.6 | PyJWT | 2.5.0 |
pykerberos | 1.1.14 | pylev | 1.4.0 |
pylint | 2.15.2 | pyluach | 2.0.1 |
pymacaroons | 0.13.0 | PyMeeus | 0.5.11 |
pymongo | 3.12.3 | pymssql | 2.2.5 |
PyMySQL | 1.0.2 | PyNaCl | 1.4.0 |
pyodbc | 4.0.34 | pyOpenSSL | 19.0.0 |
pypandoc | 1.8.1 | pyparsing | 2.4.7 |
pyparted | 3.11.7 | PyPDF4 | 1.27.0 |
pyperclip | 1.8.2 | pypika-tortoise | 0.1.6 |
pypopulation | 2020.3 | pyproj | 3.3.1 |
pyquery | 1.4.3 | pyRFC3339 | 1.1 |
pyrsistent | 0.14.11 | pysal | 2.7.0 |
pyscreenshot | 3.0 | pyserial | 3.4 |
pysftp | 0.2.9 | pyshp | 2.3.1 |
pysndfile | 1.4.4 | PySocks | 1.7.1 |
pyspark | 3.2.0 | pystac | 1.6.1 |
pystac-client | 0.4.0 | pystache | 0.6.0 |
pytest | 6.2.5 | pytest-cov | 3.0.0 |
pytest-forked | 1.4.0 | pytest-mock | 3.8.2 |
pytest-runner | 6.0.0 | pytest-xdist | 2.5.0 |
python-apt | 2.4.0+ubuntu3 | python-box | 6.0.2 |
python-crfsuite | 0.9.8 | python-daemon | 2.3.1 |
python-dateutil | 2.8.2 | python-debian | 0.1.43+ubuntu1.1 |
python-distutils-extra | 2.39 | python-docx | 0.8.11 |
python-dotenv | 0.21.0 | python-editor | 1.0.4 |
python-gitlab | 3.8.0 | python-gnupg | 0.5.0 |
python-http-client | 3.3.7 | python-jose | 3.3.0 |
python-json-logger | 2.0.4 | python-jwt | 3.3.4 |
python-keycloak | 0.26.1 | python-Levenshtein | 0.12.2 |
python-magic | 0.4.27 | python-nvd3 | 0.15.0 |
python-slugify | 6.1.2 | python-stdnum | 1.17 |
python-twitter | 3.5 | python-utils | 3.3.3 |
python3-openid | 3.1.0 | pythran | 0.10.0 |
pytimeparse | 1.1.8 | pytz | 2021.3 |
pytz-deprecation-shim | 0.1.0.post0 | pytzdata | 2020.1 |
PyWavelets | 1.1.1 | pywinrm | 0.3.0 |
PyX | 0.15 | PyYAML | 5.4.1 |
pyzmq | 25.1.2 | qtconsole | 5.1.1 |
QtPy | 1.11.2 | quantecon | 0.5.3 |
querystring-parser | 1.2.4 | queuelib | 1.6.2 |
quilt3 | 5.0.0 | rapidfuzz | 2.4.2 |
rasterio | 1.3.0 | rasterstats | 0.17.0 |
ratelim | 0.1.6 | ratelimit | 2.2.1 |
readme-renderer | 37.1 | redis | 4.0.0 |
referencing | 0.33.0 | regex | 2021.11.10 |
reportlab | 3.6.11 | reportlib | 3.4.0 |
repoze.lru | 0.7 | requests | 2.28.2 |
requests-aws4auth | 1.1.2 | requests-file | 1.5.1 |
requests-futures | 1.0.0 | requests-kerberos | 0.12.0 |
requests-ntlm | 1.1.0 | requests-oauthlib | 1.3.0 |
requests-toolbelt | 0.9.1 | requests-unixsocket | 0.2.0 |
resampy | 0.2.2 | resolvelib | 0.8.1 |
responses | 0.18.0 | retry | 0.9.2 |
retrying | 1.3.3 | reverse_geocoder | 1.5 |
rfc3339-validator | 0.1.4 | rfc3986 | 1.5.0 |
rfc3986-validator | 0.1.1 | rich | 12.5.1 |
roman | 2.0.0 | rpds-py | 0.18.0 |
rpy2 | 3.2.6 | rsa | 3.4.2 |
Rtree | 1.0.0 | ruamel.yaml | 0.17.17 |
ruamel.yaml.clib | 0.2.6 | rvlib | 0.0.6 |
s3fs | 2022.5.0 | s3transfer | 0.5.2 |
sacremoses | 0.0.53 | sagemath-standard | 9.5 |
sagenb-export | 3.2 | sankee | 0.2.0 |
sarif-om | 1.0.4 | sasl | 0.3.1 |
scandir | 1.10.0 | schema | 0.7.5 |
scikit-image | 0.20.0 | scikit-learn | 1.1.3 |
scipy | 1.8.0 | scooby | 0.6.0 |
scp | 0.14.4 | scramp | 1.4.1 |
scrape | 0.11.1 | Scrapy | 2.5.1 |
seaborn | 0.12.2 | SecretStorage | 3.3.3 |
segregation | 2.3.1 | selenium | 3.9.0 |
selinux | 3.3 | semantic-version | 2.10.0 |
semver | 2.13.0 | Send2Trash | 1.8.0 |
sendgrid | 6.9.7 | sentencepiece | 0.1.97 |
sentry-sdk | 1.8.0 | service-identity | 21.1.0 |
setproctitle | 1.3.2 | setuptools-scm | 7.0.5 |
sh | 1.14.3 | shap | 0.41.0 |
Shapely | 1.8.2 | shellingham | 1.5.0 |
shortuuid | 1.0.9 | simpervisor | 0.4 |
simple-salesforce | 1.12.2 | simplegeneric | 0.8.1 |
simplejson | 3.16.0 | singledispatch | 3.7.0 |
six | 1.14.0 | sklearn | 0.0 |
sklearn-pandas | 2.2.0 | slack-sdk | 3.18.3 |
slackclient | 2.9.4 | slicer | 0.0.7 |
smart-open | 5.2.1 | smdebug-rulesconfig | 1.0.1 |
smmap | 5.0.0 | sniffio | 1.2.0 |
snowballstemmer | 2.2.0 | snowflake-connector-python | 2.7.11 |
snowflake-sqlalchemy | 1.4.1 | snuggs | 1.4.7 |
sortedcontainers | 2.4.0 | sos | 0.22.7 |
SoundFile | 0.10.3.post1 | soupsieve | 2.2.1 |
spacy | 3.7.1 | spacy-legacy | 3.0.12 |
spacy-loggers | 1.0.5 | spaghetti | 1.6.6 |
spams | 2.6.5.4 | spglm | 1.0.8 |
Sphinx | 4.5.0 | sphinxcontrib-applehelp | 1.0.2 |
sphinxcontrib-devhelp | 1.0.2 | sphinxcontrib-htmlhelp | 2.0.0 |
sphinxcontrib-jsmath | 1.0.1 | sphinxcontrib-qthelp | 1.0.3 |
sphinxcontrib-serializinghtml | 1.1.5 | spint | 1.0.7 |
splot | 1.1.5.post1 | spopt | 0.4.1 |
spreg | 1.2.4 | spvcm | 0.3.0 |
SQLAlchemy | 1.4.41 | SQLAlchemy-JSONField | 1.0.0 |
SQLAlchemy-Utils | 0.38.3 | sqlalchemy2-stubs | 0.0.2a24 |
sqlmodel | 0.0.6 | sqlparse | 0.4.2 |
srsly | 2.4.8 | ssh-import-id | 5.10 |
sshtunnel | 0.4.0 | stack-data | 0.5.0 |
starkbank-ecdsa | 2.0.3 | starlette | 0.20.4 |
statsd | 3.3.0 | statsmodels | 0.13.2 |
stevedore | 4.0.0 | stringcase | 1.2.0 |
structlog | 22.1.0 | swagger-ui-bundle | 0.0.9 |
sympy | 1.9 | systemd-python | 234 |
tabulate | 0.8.9 | tangled-up-in-unicode | 0.2.0 |
tblib | 1.7.0 | tenacity | 8.0.1 |
tensorboard | 2.15.2 | tensorboard-data-server | 0.7.2 |
tensorboard-plugin-wit | 1.8.0 | tensorboardX | 2.4 |
tensorflow | 2.15.1 | tensorflow-estimator | 2.15.0 |
tensorflow-hub | 0.16.1 | tensorflow-io-gcs-filesystem | 0.34.0 |
tensorflow-metadata | 1.14.0 | tensorflow-serving-api | 2.10.0 |
tensorflow-text | 2.15.0 | termcolor | 1.1.0 |
terminado | 0.12.1 | testpath | 0.5.0 |
testresources | 2.0.1 | text-unidecode | 1.3 |
tf-estimator-nightly | 2.16.0.dev2024012409 | tf-keras | 2.15.0 |
Theano | 1.0.5 | thinc | 8.2.3 |
threadpoolctl | 3.0.0 | thrift | 0.16.0 |
tifffile | 2021.10.12 | timer | 0.2.2 |
timezonefinder | 5.2.0 | tinycss2 | 1.1.1 |
tldextract | 3.1.2 | tobler | 0.9.0 |
tokenizers | 0.12.1 | toml | 0.10.2 |
tomli | 2.0.1 | tomlkit | 0.11.1 |
toolz | 0.11.1 | torch | 2.2.1 |
torchaudio | 2.2.1 | torchvision | 0.17.1 |
tornado | 6.2 | tortoise-orm | 0.19.2 |
tox | 3.26.0 | tqdm | 4.62.3 |
traitlets | 5.14.1 | traittypes | 0.2.1 |
transformers | 4.22.1 | trio | 0.19.0 |
trio-websocket | 0.9.2 | triton | 2.2.0 |
trx-python | 0.2.9 | Twisted | 21.7.0 |
txaio | 21.2.1 | typed-ast | 1.5.4 |
typeguard | 2.13.3 | typer | 0.4.0 |
types-cryptography | 3.3.23.2 | types-python-dateutil | 2.8.19.20240106 |
types-PyYAML | 6.0.11 | types-requests | 2.28.10 |
types-urllib3 | 1.26.24 | typing | 3.7.4.3 |
typing-inspect | 0.8.0 | typing_extensions | 4.8.0 |
tzdata | 2024.1 | tzlocal | 4.2 |
ua-parser | 0.16.1 | uamqp | 1.6.0 |
ubuntu-advantage-tools | 8001 | uc-micro-py | 1.0.1 |
ufoLib2 | 0.13.1 | ufw | 0.36.1 |
ujson | 5.5.0 | unattended-upgrades | 0.1 |
unicodecsv | 0.14.1 | unicodedata2 | 14.0.0 |
Unidecode | 1.3.4 | uri-template | 1.3.0 |
uritemplate | 3.0.1 | urllib3 | 1.25.11 |
usaddress | 0.5.10 | uvicorn | 0.18.3 |
uvloop | 0.17.0 | varname | 0.8.3 |
vcversioner | 2.16.0.0 | vega-datasets | 0.9.0 |
vine | 5.0.0 | virtualenv | 20.13.0+ds |
virtualenv-clone | 0.5.7 | visions | 0.7.5 |
vpython | 7.6.2 | w3lib | 1.22.0 |
wadllib | 1.3.3 | WALinuxAgent | 2.2.46 |
wasabi | 1.1.2 | watchdog | 2.1.9 |
watchtower | 3.0.0 | watergrid | 1.1.1 |
Wave | 0.0.2 | wcwidth | 0.2.5 |
weasel | 0.3.4 | webcolors | 1.13 |
webencodings | 0.5.1 | websocket-client | 1.1.0 |
websockets | 10.3 | Werkzeug | 2.0.2 |
whitebox | 2.1.4 | whiteboxgui | 0.7.0 |
widgetsnbextension | 3.5.2 | wordcloud | 1.9.3 |
workdays | 1.4 | wrapt | 1.13.3 |
wsproto | 1.0.0 | WTForms | 2.3.3 |
xarray | 2022.6.0 | xgboost | 2.0.3 |
xlrd | 2.0.1 | XlsxWriter | 3.0.3 |
xlwt | 1.3.0 | xmltodict | 0.13.0 |
xxhash | 3.0.0 | xyzservices | 2022.6.0 |
y-py | 0.6.2 | yahoo-finance | 1.4.0 |
yarl | 1.7.0 | ydata-profiling | 4.1.2 |
yfinance | 0.1.74 | youtube-dl | 2021.12.17 |
youtube-search | 2.1.1 | youtube-search-python | 1.6.6 |
ypy-websocket | 0.8.4 | zeep | 4.1.0 |
zict | 3.0.0 | zipp | 3.6.0 |
zope.event | 4.5.0 | zope.interface | 5.4.0 |
After the virtual machine is started, you can access the RShiny 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 RShiny applications are served from the directory /srv/shiny-server.
RShiny Server
R: 4.4.1
rshiny-server: 1.5.22.1017
R packages (4310)
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 | acnr | 1.0.0 |
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.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.23 |
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 |
Allspice | 1.0.7 | 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 | apt | 4.0 |
ARCensReg | 3.0.1 | archetypes | 2.2-0.1 |
archive | 1.1.9 | archivist | 2.3.8 |
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-4 | 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.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.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 |
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.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 | bbk | 0.4.0 |
BBmisc | 1.13 | bbmle | 1.0.25.1 |
bbotk | 1.1.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.6.1 |
BGLR | 1.1.3 | BGVAR | 2.5.8 |
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.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 |
binsegRcpp | 2023.8.31 | 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.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.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.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 | 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-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 |
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.1 | bsvarSIGNs | 1.0.1 |
BTLLasso | 0.1-13 | BTM | 0.3.7 |
bullishTrader | 1.0.1 | bundesbank | 0.1-12 |
bundesligR | 0.1.0 | 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 | 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 |
ChessGmooG | 0.1.0 | 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.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-5 |
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.16 |
collapsibleTree | 0.1.8 | collections | 0.3.7 |
colmozzie | 1.1.1 | 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.0 | 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.4 |
corona | 0.3.0 | coronavirus | 0.4.1 |
corpcor | 1.6.10 | corpora | 0.6 |
corporaexplorer | 0.9.0 | corrgram | 1.14 |
corrplot | 0.94 | 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.0 |
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.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.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.0 | dendsort | 0.3.4 |
denguedatahub | 2.1.1 | 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.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.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.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.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.0.0 | divseg | 0.0.5 |
diyar | 0.5.1 | 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-12 | 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.2.0 |
dreamerr | 1.4.0 | DriftBurstHypothesis | 0.4.0.1 |
driveR | 0.4.1 | DRomics | 2.6-0 |
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.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-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.1 | 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 |
EloOptimized | 0.3.2 | 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.4 | 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.4.0 | epinet | 2.1.11 |
EpiNow2 | 1.6.0 | 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.0 | equivalence | 0.7.2 |
era | 0.4.1 | erah | 2.0.1 |
erer | 4.0 | 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 |
euroleaguer | 0.2.0 | europepmc | 0.4.3 |
eurostat | 4.0.0 | evaluate | 1.0.0 |
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 | 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.1.2 | finnts | 0.4.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.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 | FlowScreen | 1.2.6 |
fma | 2.5 | FMC | 1.0.1 |
fmcmc | 0.5-2 | 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.3 |
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 |
fpop | 2019.08.26 | 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.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-5 |
gameR | 0.0.6 | 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.0 |
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.1 |
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 | 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.2 | GET | 1.0-3 |
GetoptLong | 1.0.5 | getPass | 0.2-4 |
gets | 0.38 | GetTDData | 1.5.6 |
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.6 | gggenes | 0.5.1 |
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.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.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.4 |
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.3 | 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.2 | 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.2 | gson | 0.1.0 |
gss | 2.2-7 | 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.5 | 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 |
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.2.2 |
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-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.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.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.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.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 | insee | 1.1.7 |
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 |
ISAR | 0.1.12 | 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.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.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.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 | LearningRlab | 2.4 |
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-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-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 | 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.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.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.0 | 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.2 | mapmisc | 2.1.0 |
mapproj | 1.2.11 | maps | 3.4.2 |
mapsapi | 0.5.4 | mapsf | 0.11.0 |
mapSpain | 0.9.2 | 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.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-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.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.11 |
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 |
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 |
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.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.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.9 |
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 |
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 | mlbplotR | 1.1.0 |
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.21.0 | mlr3learners | 0.7.0 |
mlr3measures | 1.0.0 | mlr3misc | 0.15.1 |
mlr3spatiotempcv | 2.3.1 | mlr3tuning | 1.0.1 |
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.1.1 |
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.0 |
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.4-4 | mpt | 0.8-0 |
MPTinR | 1.14.1 | MPV | 1.64 |
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.8.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.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.2.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.5.0.1 | 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 | nblR | 0.0.4 |
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.5.2 |
NlcOptim | 0.6 | nleqslv | 3.3.5 |
NlinTS | 1.4.5 | nlmeVPC | 2.6 |
nlmixr2 | 3.0.0 | nlmixr2data | 2.0.9 |
nlmixr2est | 3.0.0 | nlmixr2extra | 3.0.0 |
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.8-0 |
nmw | 0.1.5 | nnfor | 0.9.9 |
nnls | 1.5 | NNS | 10.9.2 |
noaastormevents | 0.2.0 | nodbi | 0.10.7 |
nominatimlite | 0.4.1 | 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.8 |
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.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 | OBsMD | 12.0 |
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.6.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.12 |
openNLP | 0.2-7 | openNLPdata | 1.5.3-5 |
openssl | 2.2.2 | OpenStreetMap | 0.4.0 |
openxlsx | 4.2.7.1 | openxlsx2 | 1.9 |
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.22.2 |
ParamHelpers | 1.14.1 | 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-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.1 |
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.3 |
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.4 | 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.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.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.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.1 |
protr | 1.7-4 | 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.8.0 | PSCBS | 0.67.0 |
pscl | 1.5.9 | psd | 2.1.1 |
PSF | 0.5 | 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.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.1 |
qgraph | 1.9.8 | qicharts2 | 0.7.5 |
qlcal | 0.0.12 | 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.98 | quantspec | 1.2-4 |
Quartet | 1.2.6 | 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-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.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.4 | 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.2.6 |
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-4 | 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.2-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.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.9.1 | REDCapCAST | 24.10.3 |
REDCapDM | 0.9.9 | REDCapR | 1.2.0 |
REDCapTidieR | 1.1.1 | Rediscover | 0.3.2 |
redland | 1.0.17-18 | redux | 1.1.4 |
RefManageR | 1.4.0 | reformulas | 0.3.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.10 |
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 | ReviewR | 2.3.10 |
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.1 |
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.20.0 | 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.16.3 |
rivernet | 1.2.3 | rivnet | 0.5.0 |
rix | 0.12.4 | 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-9 | 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 | robustarima | 0.2.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.0 |
rsm | 2.10.5 | RSmartlyIO | 0.1.3 |
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.1 | rstudioapi | 0.16.0 |
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.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-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.1 | rxode2ll | 2.0.11 |
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 |
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 | 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.3 | seeker | 1.1.6 |
seer | 1.1.8 | segmented | 2.1-2 |
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-17 |
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.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.5 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.1 |
shinyjs | 2.1.0 | shinymaterial | 1.2.0 |
shinySIR | 0.1.2 | 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-53 | 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.6-1 | smacpod | 2.6 |
SmallCountRounding | 1.0.5 | smam | 0.7.2 |
SmCCNet | 2.0.3 | SMDIC | 0.1.5 |
smerc | 1.8.3 | 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.3.2 | 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-2 | 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-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 | splusTimeDate | 2.5.8 |
splusTimeSeries | 1.5.7 | spmodel | 0.8.0 |
spmoran | 0.3.0 | 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.4 |
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.15 | 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.4 |
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-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.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 | 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.7 |
svDialogs | 1.1.0 | SVDNF | 0.1.10 |
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.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 | tabulapdf | 1.0.5-3 |
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-25 | taxize | 0.9.100.1 |
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-78 | 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.6 |
tidychangepoint | 0.0.1 | 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 | 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 | 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.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.2 | tsDyn | 11.0.4.1 |
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.2 | tsgc | 0.0 |
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.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.6 | 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 | 5.0.1 | 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 | wbs | 1.4 |
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.1 | wk | 0.9.3 |
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.48 | 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.0 |
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.5.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 |
RShiny Server
R: 4.3.1
rshiny-server: 1.5.21.1012
R packages (2906)
package | version | package | version |
---|---|---|---|
abc | 2.2.1 | abc.data | 1.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 |
actuar | 3.3-2 | ada | 2.0-5 |
adagio | 0.8.5 | adaptivetau | 2.2-3 |
adaptMCMC | 1.4 | adaptr | 1.3.2 |
adaptsmoFMRI | 1.2 | adaptTest | 1.1 |
ade4 | 1.7-22 | ade4TkGUI | 0.3-1 |
adegenet | 2.1.10 | adegraphics | 1.0-18 |
adehabitatHR | 0.4.21 | adehabitatHS | 0.3.17 |
adehabitatLT | 0.3.27 | adehabitatMA | 0.3.16 |
ADGofTest | 0.3 | adimpro | 0.9.6 |
admisc | 0.33 | AdMit | 2.1.9 |
ads | 1.5-9 | AER | 1.2-10 |
affy | 1.78.2 | affyio | 1.70.0 |
africamonitor | 0.2.3 | agricolae | 1.3-6 |
agricolaeplotr | 0.3.1 | agridat | 1.22 |
aion | 1.0.1 | airports | 0.1.0 |
akima | 0.6-3.4 | alabama | 2023.1.0 |
AlgDesign | 1.2.1 | almanac | 1.0.0 |
alphavantager | 0.1.3 | ALTopt | 0.1.2 |
Amelia | 1.8.1 | AmericanCallOpt | 0.95 |
ammiBayes | 1.0-1 | AMR | 2.1.0 |
AnaCoDa | 0.1.4.4 | anacor | 1.1-4 |
anesrake | 0.80 | animation | 2.7 |
anipaths | 0.10.2 | AnnotationDbi | 1.62.2 |
anytime | 0.3.9 | aod | 1.3.2 |
aoos | 0.5.0 | AovBay | 0.1.0 |
ape | 5.7-1 | APFr | 1.0.2 |
aplot | 0.2.1 | approximator | 1.2-8 |
ARCensReg | 3.0.1 | ArchaeoChron | 0.1 |
ArchaeoPhases | 1.8 | ArDec | 2.1-1 |
ARDL | 0.2.4 | ardl.nardl | 1.2.3 |
areal | 0.1.8 | arfima | 1.8-1 |
argo | 3.0.2 | argparse | 2.2.2 |
arkhe | 1.3.0 | arm | 1.13-1 |
aroma.apd | 0.7.0 | arrangements | 1.1.9 |
arrow | 13.0.0.1 | ars | 0.6 |
ascii | 2.4 | asd | 2.2 |
ash | 1.0-15 | ashr | 2.2-63 |
askpass | 1.2.0 | aspect | 1.0-6 |
ASSA | 2.0 | assertthat | 0.2.1 |
AssetCorr | 1.0.4 | astsa | 2.0 |
asymmetry | 2.0.4 | ata | 1.1.1 |
aTSA | 3.1.2 | attempt | 0.3.1 |
attention | 0.3.0 | AUC | 0.3.2 |
audio | 0.1-11 | autoFRK | 1.4.3 |
autoimage | 2.2.3 | automap | 1.1-9 |
autostsm | 3.1.2 | av | 0.8.5 |
aweek | 1.0.3 | aws | 2.5-3 |
awsMethods | 1.1-1 | BACCO | 2.1-0 |
BACCT | 1.0 | backports | 1.4.1 |
backtest | 0.3-4 | baggr | 0.7.6 |
bain | 0.2.10 | BalancedSampling | 1.6.3 |
BaM | 1.0.3 | bama | 1.3.0 |
bamdit | 3.4.0 | bamlss | 1.2-1 |
bang | 1.0.2 | BANOVA | 1.2.1 |
BART | 2.9.4 | bartBMA | 1.0 |
bartCause | 1.0-6 | bartMachine | 1.3.4.1 |
bartMachineJARs | 1.2.1 | BAS | 1.6.4 |
basad | 0.3.0 | base64 | 2.0.1 |
base64enc | 0.1-3 | base64url | 1.4 |
basicMCMCplots | 0.2.7 | BaSkePro | 0.1.0 |
BASS | 1.3.1 | BatchExperiments | 1.4.3 |
BatchJobs | 1.9 | batchmeans | 1.0-4 |
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-8 | BayesCR | 2.1 |
bayesCT | 0.99.3 | BayesCTDesign | 0.6.1 |
BayesDA | 2012.04-1 | bayesDccGarch | 3.0.4 |
bayesdfa | 1.2.0 | bayesdistreg | 0.1.0 |
bayesDP | 1.3.6 | BayesFactor | 0.9.12-4.5 |
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.8 | BayesLogit | 2.1 |
bayeslongitudinal | 0.1.0 | bayesm | 3.1-6 |
BayesMallows | 1.3.2 | BayesMassBal | 1.1.0 |
bayesmeta | 3.3 | bayesmix | 0.7-6 |
bayesnec | 2.1.1.0 | bayesplot | 1.10.0 |
bayesQR | 2.4 | bayesRecon | 0.1.2 |
bayestestR | 0.13.1 | bayesTFR | 7.4-0 |
BayesTools | 0.2.16 | BayesTree | 0.3-1.4 |
BayesVarSel | 2.2.5 | BayesX | 0.3-2 |
BAYSTAR | 0.2-10 | BB | 2019.10-1 |
BBmisc | 1.13 | BCBCSF | 1.0-1 |
BCC1997 | 0.1.1 | BCE | 2.2.0 |
Bchron | 4.7.6 | bcp | 4.0.3 |
bcpa | 1.3.2 | bcrm | 0.5.4 |
BDgraph | 2.72 | bdsmatrix | 1.3-6 |
BE | 0.2.4 | beadarray | 2.50.0 |
BeadDataPackR | 1.52.0 | bearishTrader | 1.0.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.6 | Bernadette | 1.1.4 |
Bessel | 0.6-0 | BetaBit | 2.2 |
betafunctions | 1.8.1 | 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.2 | BGGM | 2.0.4 |
BGLR | 1.1.0 | BGVAR | 2.5.2 |
BH | 1.81.0-1 | BHH2 | 2016.05.31 |
BiasedUrn | 2.0.11 | bibtex | 0.5.1 |
bidask | 1.0.0 | BIFIEsurvey | 3.4-15 |
biganalytics | 1.1.21 | bigD | 0.2.0 |
biglm | 0.9-2.1 | bigmemory | 4.6.1 |
bigmemory.sri | 0.1.6 | bigrquery | 1.4.2 |
bigsplines | 1.1-1 | bigtime | 0.2.3 |
BigVAR | 1.1.2 | bindr | 0.1.1 |
bindrcpp | 0.2.2 | binom | 1.1-1.1 |
binr | 1.1.1 | binseqtest | 1.0.4 |
Biobase | 2.60.0 | BiocGenerics | 0.46.0 |
BiocManager | 1.30.22 | BiocParallel | 1.34.2 |
BiocVersion | 3.17.1 | bioinactivation | 1.2.3 |
biomformat | 1.28.0 | bioOED | 0.2.1 |
Biostrings | 2.68.1 | birtr | 1.0.0 |
bit | 4.0.5 | bit64 | 4.0.5 |
bitops | 1.0-7 | biwavelet | 0.20.21 |
bizdays | 1.0.13 | bkmr | 0.2.2 |
blaise | 1.3.10 | blastula | 0.3.4 |
blavaan | 0.5-2 | BLModel | 1.0.2 |
blob | 1.2.4 | blocklength | 0.1.5 |
blockrand | 1.5 | blocksdesign | 4.9 |
blockTools | 0.6.4 | BLR | 1.6 |
BMA | 3.18.17 | bmgarch | 2.0.0 |
bmixture | 1.7 | BMS | 0.3.5 |
BMTAR | 0.1.1 | bnlearn | 4.9 |
BNPTSclust | 2.0 | BNSP | 2.2.3 |
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.35 |
Boom | 0.9.11 | BoomSpikeSlab | 1.2.5 |
bootnet | 1.5.5 | BootPR | 1.0 |
bootstrap | 2019.6 | bootUR | 1.0.2 |
bqtl | 1.0-35 | BradleyTerry2 | 1.1-2 |
brainR | 1.6.0 | breakfast | 2.3 |
brew | 1.0-8 | brglm | 0.7.2 |
brglm2 | 0.9 | bridgesampling | 1.1-2 |
brio | 1.1.3 | brms | 2.20.4 |
Brobdingnag | 1.2-9 | broman | 0.80 |
broom | 1.0.5 | bsam | 1.1.3 |
bsamGP | 1.2.4 | bslib | 0.5.1 |
BsMD | 2023.920 | bspec | 1.6 |
bspmma | 0.1-2 | bssm | 2.0.1 |
BSSprep | 0.1 | bsts | 0.9.9 |
bsvars | 1.0.0 | BTLLasso | 0.1-11 |
BTM | 0.3.7 | bullishTrader | 1.0.1 |
bundesbank | 0.1-9 | BurStFin | 1.3 |
BurStMisc | 1.1 | BVAR | 1.0.4 |
bvartools | 0.2.3 | ca | 0.71.1 |
cabootcrs | 2.1.0 | cachem | 1.0.8 |
cacIRT | 1.4 | CADFtest | 0.3-3 |
caffsim | 0.2.2 | Cairo | 1.6-1 |
calculus | 1.0.1 | CalibrateSSB | 1.3.0 |
calibrator | 1.2-8 | callr | 3.7.3 |
cancensus | 0.5.6 | candisc | 0.8-6 |
CANSIM2R | 1.14.1 | car | 3.1-2 |
CARBayes | 6.0 | CARBayesdata | 3.0 |
CARBayesST | 3.3.1 | carData | 3.0-5 |
caret | 6.0-94 | carfima | 2.0.2 |
caribou | 1.1-1 | cartogram | 0.3.0 |
caTools | 1.18.2 | catR | 3.17 |
causact | 0.5.3 | CausalImpact | 1.3.0 |
CAvariants | 5.9 | cbsodataR | 0.5.1 |
cccp | 0.2-9 | cdlTools | 0.15 |
CDM | 8.2-6 | cds | 1.0.3 |
CellNOptR | 1.46.0 | cellranger | 1.1.0 |
censusapi | 0.8.0 | CFtime | 1.0.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.2.0 | cherryblossom | 0.1.0 |
chilemapas | 0.3.0 | chk | 0.9.0 |
choiceDes | 0.9-3 | cholera | 0.8.0 |
CholWishart | 1.1.2 | chron | 2.3-61 |
cifti | 0.4.5 | cinterpolate | 1.0.0 |
CircSpaceTime | 0.9.0 | CircStats | 0.2-6 |
circular | 0.5-0 | ciTools | 0.6.1 |
classInt | 0.4-10 | cli | 3.6.1 |
clime | 0.5.0 | clinDR | 2.4.1 |
clinfun | 1.1.3 | clinicalsignificance | 1.2.0 |
clinPK | 0.11.1 | clinsig | 1.2 |
clipr | 0.8.0 | clisymbols | 1.2.0 |
clock | 0.7.0 | clue | 0.3-65 |
clustDRM | 0.1-0 | clusterGeneration | 1.3.8 |
clusterPower | 0.7.0 | ClustVarLV | 2.1.1 |
clv | 0.3-2.4 | cmaes | 1.0-12 |
CMLS | 1.0-1 | cmm | 1.0 |
cmocean | 0.3-1 | cmprsk | 2.2-11 |
cmrutils | 1.3.1 | cNORM | 3.0.3 |
CNORode | 1.42.0 | coalescentMCMC | 0.4-4 |
coalitions | 0.6.24 | coarseDataTools | 0.6-6 |
cobalt | 4.5.1 | coconots | 1.1.3 |
cocor | 1.1-4 | cocorresp | 0.4-3 |
cocron | 1.0-1 | coda | 0.19-4 |
coin | 1.4-3 | cointReg | 0.2.0 |
collapse | 1.9.6 | collapsibleTree | 0.1.7 |
colorRamps | 2.3.1 | colorspace | 2.1-0 |
colourpicker | 1.3.0 | colourvalues | 0.3.9 |
combinat | 0.0-8 | CombinS | 1.1-1 |
CommonJavaJars | 1.0-6 | commonmark | 1.9.0 |
compare | 0.2-6 | CompQuadForm | 1.4.3 |
conditionz | 0.1.0 | conf.design | 2.0.0 |
config | 0.3.2 | conflicted | 1.2.0 |
conquer | 1.3.3 | conquestr | 1.0.7 |
contactdata | 1.0.0 | contfrac | 1.1-12 |
convey | 0.2.5 | cops | 1.3-1 |
copula | 1.1-2 | copulaData | 0.0-1 |
cordillera | 1.0-0 | 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 |
costat | 2.4.1 | countrycode | 1.5.0 |
COVID19 | 3.0.3 | covid19.analytics | 2.1.3.1 |
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.1 |
CPBayes | 1.1.0 | cplm | 0.7-11 |
cpp11 | 0.4.6 | crawl | 2.3.0 |
crayon | 1.5.2 | credentials | 2.0.1 |
credule | 0.1.4 | crfsuite | 0.4.2 |
CRM | 1.2.4 | crmPack | 1.0.3 |
crossdes | 1.1-2 | Crossover | 0.1-21 |
crosstalk | 1.2.0 | crs | 0.15-37 |
crseEventStudy | 1.2.2 | crsmeta | 0.3.0 |
crul | 1.4.0 | cSEM | 0.5.0 |
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.15.2 |
CTT | 2.3.3 | CTTShiny | 0.1 |
ctv | 0.9-5 | cubature | 2.1.0 |
cubble | 0.3.0 | Cubist | 0.4.2.1 |
curl | 5.1.0 | cvar | 0.5 |
cvAUC | 1.1.4 | CVST | 0.2-3 |
CVXR | 1.0-11 | d3Network | 0.5.2.1 |
DAAG | 1.25.4 | dae | 3.2.19 |
daewr | 1.2-11 | dagitty | 0.3-1 |
DAKS | 2.1-3 | DALEX | 2.4.3 |
data.table | 1.14.8 | data.tree | 1.0.0 |
DatabaseConnector | 6.2.4 | DataExplorer | 0.8.2 |
datapasta | 3.1.0 | dataseries | 0.2.0 |
datawizard | 0.9.0 | date | 1.2-42 |
datetimeoffset | 0.3.1 | datetimeutils | 0.6-2 |
dbarts | 0.9-23 | DBI | 1.1.3 |
DBItest | 1.7.3 | dbmss | 2.8-2 |
dbparser | 2.0.1 | dbplyr | 2.3.4 |
dbscan | 1.1-11 | dbx | 0.2.8 |
DChaos | 0.1-7 | dclone | 2.3-2 |
DCluster | 0.2-9 | DClusterm | 1.0-1 |
dcov | 0.1.1 | dCovTS | 1.4 |
dcurver | 0.9.2 | dde | 1.0.4 |
deBInfer | 0.4.4 | deducorrect | 1.3.7 |
deductive | 1.0.0 | deldir | 1.0-9 |
deltaPlotR | 1.6 | dendextend | 1.17.1 |
densEstBayes | 1.0-2.2 | DEoptim | 2.2-8 |
DEoptimR | 1.1-2 | depmix | 0.9.16 |
depmixS4 | 1.5-0 | DepthProc | 2.1.5 |
Deriv | 4.1.3 | derivmkts | 0.2.5 |
desc | 1.4.2 | DescTools | 0.99.50 |
designmatch | 0.5.4 | desirability | 2.1 |
deSolve | 1.38 | desplot | 1.10 |
devtools | 2.4.5 | dexter | 1.2.2 |
dextergui | 0.2.6 | dexterMST | 0.9.3 |
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 |
DHARMa | 0.4.6 | DHS.rates | 0.9.1 |
diagis | 0.2.3 | diagonals | 6.4.0 |
diagram | 1.6.5 | DiagrammeR | 1.0.10 |
dials | 1.2.0 | DiceDesign | 1.9 |
DiceEval | 1.5.1 | DiceKriging | 1.6.0 |
DiceView | 2.1-0 | dichromat | 2.0-0.1 |
DICOMread | 0.0.0.3 | DIFboost | 0.3 |
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.33 | DIMORA | 0.3.5 |
dimRed | 0.2.6 | dina | 2.0.0 |
dipsaus | 0.2.8 | diptest | 0.76-0 |
Dire | 2.1.1 | DIRECT | 1.1.0 |
directlabels | 2023.8.25 | dirichletprocess | 0.4.2 |
disaggR | 1.0.5 | discretization | 1.0-1.1 |
DistatisR | 1.1.1 | distcrete | 1.0.3 |
distfree.cr | 1.5.1 | distr | 2.9.2 |
distrEx | 2.9.0 | distributional | 0.3.2 |
distributions3 | 0.2.1 | DistributionUtils | 0.6-1 |
distrom | 1.0.1 | distrTeach | 2.9.0 |
dittodb | 0.1.7 | divest | 0.10.3 |
divseg | 0.0.5 | dLagM | 1.1.13 |
dlm | 1.1-6 | dlnm | 2.4.7 |
dlstats | 0.1.7 | dmri.tracking | 0.1.0 |
doBy | 4.6.19 | doc2vec | 0.2.0 |
docopulae | 0.4.0 | DoE.base | 1.2-2 |
DoE.MIParray | 1.0-1 | DoE.wrapper | 0.12 |
doMC | 1.3.8 | doParallel | 1.0.17 |
doRNG | 1.8.6 | DoseFinding | 1.0-5 |
doSNOW | 1.0.20 | DOSPortfolio | 0.1.0 |
dotCall64 | 1.0-2 | Dowd | 0.12 |
downlit | 0.4.3 | downloader | 0.4 |
dparser | 1.3.1-10 | dplyr | 1.1.3 |
dqrng | 0.3.1 | dr4pl | 2.0.0 |
DriftBurstHypothesis | 0.4.0.1 | DRR | 0.0.4 |
dsa | 1.0.12 | DSAIDE | 0.9.6 |
dse | 2020.2-1 | DSI | 1.5.0 |
DSL | 0.1-7 | DT | 0.29 |
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.1 | dtw | 1.23-1 |
dtwclust | 5.5.12 | duckdb | 0.8.1-3 |
dygraphs | 1.1.1.6 | dyn | 0.2-9.6 |
dynamicTreeCut | 1.63-1 | dynaTree | 1.2-16 |
dynlm | 0.3-6 | e1071 | 1.7-13 |
earlyR | 0.0.5 | earth | 5.3.2 |
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.3 | ecb | 0.4.2 |
Ecdat | 0.4-2 | ecespa | 1.1-17 |
Ecfun | 0.3-2 | ecm | 7.0.0 |
ecodist | 2.0.9 | ECOSolveR | 0.5.5 |
ecp | 3.1.5 | edfReader | 1.2.1 |
edgeR | 3.42.4 | edina | 0.1.1 |
editrules | 2.9.3 | edmdata | 1.2.0 |
edstan | 1.0.6 | EdSurvey | 4.0.1 |
eegkit | 1.0-4 | eegkitdata | 1.1 |
EFAutilities | 2.1.3 | effects | 4.2-2 |
EGAnet | 2.0.1 | egg | 0.4.5 |
egor | 1.23.3 | eha | 2.11.1 |
eigenmodel | 1.11 | elastic | 1.2.0 |
elasticnet | 1.3 | elevatr | 0.99.0 |
ellipse | 0.5.0 | ellipsis | 0.3.2 |
elliptic | 1.4-0 | emayili | 0.7.18 |
EMbC | 2.0.4 | EMD | 1.5.9 |
emdi | 2.2.0 | emg | 1.0.9 |
emmeans | 1.8.8 | emulator | 1.2-21 |
encode | 0.3.6 | endtoend | 2.29 |
energy | 1.7-11 | EngrExpt | 0.1-8 |
enrichwith | 0.3.1 | ensembleBMA | 5.1.8 |
EntropyMCMC | 1.0.4 | EnvStats | 2.8.1 |
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.8 | EpiNow2 | 1.4.0 |
epiR | 2.0.65 | EpiReport | 1.0.2 |
episensr | 1.3.0 | epitools | 0.5-10.1 |
epitrix | 0.4.0 | epitweetr | 2.2.13 |
epo | 0.1.0 | equate | 2.0.8 |
equateIRT | 2.3.0 | equateMultiple | 0.1.1 |
equivalence | 0.7.2 | era | 0.4.1 |
ergm | 4.5.0 | ergm.ego | 1.1.0 |
ergm.multi | 0.2.0 | eRm | 1.0-4 |
errorlocate | 1.1.1 | errum | 0.0.3 |
esaBcv | 1.2.1.1 | esemifar | 1.0.1 |
ESG | 1.3 | EstCRM | 1.6 |
estimability | 1.4.1 | EstimateGroupNetwork | 0.3.1 |
ETLUtils | 1.5 | etm | 1.1.1 |
etrm | 1.0.1 | etrunct | 0.1 |
eurostat | 3.8.2 | evaluate | 0.22 |
evd | 2.3-6.1 | ewoc | 0.3.0 |
Exact | 3.2 | exactextractr | 0.10.0 |
exams | 2.4-0 | ExceedanceTools | 1.3.6 |
exdex | 1.2.2 | EXPARMA | 0.1.0 |
experiment | 1.2.1 | expint | 0.1-8 |
expm | 0.999-7 | ExPosition | 2.8.23 |
expsmooth | 2.3 | extraDistr | 1.9.1 |
extrafont | 0.19 | extrafontdb | 1.0 |
extraoperators | 0.1.1 | eyelinker | 0.2.1 |
ez | 4.4-0 | fable | 0.3.3 |
fable.prophet | 0.1.0 | fabletools | 0.3.3 |
FactoClass | 1.2.8 | FactoMineR | 2.8 |
fanplot | 4.0.0 | fansi | 1.0.4 |
FAOSTAT | 2.3.0 | faoutlier | 0.7.6 |
faraway | 1.0.8 | farver | 2.1.1 |
fAssets | 4023.85 | fastcluster | 1.2.3 |
fastDummies | 1.7.3 | fastGHQuad | 1.0.1 |
fastICA | 1.2-3 | fastLink | 0.6.0 |
fastmap | 1.1.1 | fastmatch | 1.1-4 |
fasttime | 1.1-0 | FatTailsR | 1.8-0 |
FAVAR | 0.1.3 | fBasics | 4022.94 |
fBonds | 3042.78 | fCopulae | 4022.85 |
FCVAR | 0.1.4 | fda | 6.1.4 |
fdaACF | 1.0.0 | fdrtool | 1.2.17 |
fds | 1.8 | fdth | 1.2-6 |
feasts | 0.3.1 | fechner | 1.0-3 |
FeedbackTS | 1.5 | fExtremes | 4021.83 |
ff | 4.0.9 | FFD | 1.0-9 |
fftwtools | 0.9-11 | fGarch | 4022.89 |
fHMM | 1.1.0 | FielDHub | 1.3.1 |
fields | 15.2 | filearray | 0.1.6 |
filehash | 2.4-5 | filehashSQLite | 0.2-6 |
filelock | 1.0.2 | filematrix | 1.3 |
fImport | 4021.86 | finalsize | 0.2.0 |
FinancialMath | 0.1.1 | FinAsym | 1.0 |
findpython | 1.0.8 | finnts | 0.3.0 |
finreportr | 1.0.4 | FinTS | 0.4-6 |
fishMod | 0.29 | fitdistrplus | 1.1-11 |
FKF | 0.2.4 | FKF.SP | 0.3.1 |
flashClust | 1.01-2 | flexclust | 1.4-1 |
flexmix | 2.3-19 | FlexScan | 0.2.2 |
flextable | 0.9.3 | float | 0.3-1 |
fma | 2.5 | FMC | 1.0.1 |
fmdates | 0.1.4 | FME | 1.3.6.3 |
fmri | 1.9.12 | fMultivar | 4031.84 |
fnets | 0.1.5 | FNN | 1.1.3.2 |
fNonlinear | 4021.81 | fontawesome | 0.5.2 |
fontBitstreamVera | 0.1.1 | fontLiberation | 0.1.0 |
fontquiver | 0.2.1 | 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 |
ForeComp | 0.9.0 | 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 |
fourPNO | 1.1.0 | fpc | 2.2-10 |
fpcb | 0.1.0 | fPortfolio | 4023.84 |
fpp2 | 2.5 | fpp3 | 0.5 |
fracdiff | 1.5-2 | fracdist | 0.1.1 |
Frames2 | 0.2.1 | FRAPO | 0.4-1 |
fredr | 2.1.0 | freecurrencyapi | 0.1.0 |
freesurferformats | 0.1.17 | 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-2 |
FRK | 2.1.5 | fs | 1.6.3 |
fslr | 2.25.2 | fsMTS | 0.1.7 |
fst | 0.9.8 | fstcore | 0.9.14 |
fTrading | 3042.79 | functional | 0.6 |
funtimes | 9.1 | furrr | 0.3.1 |
futile.logger | 1.4.3 | futile.options | 1.0.1 |
future | 1.33.0 | future.apply | 1.11.0 |
fuzzyjoin | 0.1.6 | GA | 3.2.3 |
GAD | 1.1.1 | gam | 1.22-2 |
gamlr | 1.13-8 | gamlss | 5.4-18 |
gamlss.data | 6.0-2 | gamlss.dist | 6.1-1 |
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.5.1 | gaussquad | 1.0-3 |
GaussSuppression | 0.7.0 | gbm | 2.1.8.1 |
gbutils | 0.5 | gclus | 1.3.2 |
GCPM | 1.2.2 | gdalcubes | 0.6.4 |
gdalraster | 1.5.0 | gdalUtilities | 1.2.5 |
gdata | 2.19.0 | GDINA | 2.9.4 |
gdistance | 1.6.4 | gdpc | 1.1.3 |
gdtools | 0.3.3 | gear | 0.3.4 |
gee | 4.13-25 | geepack | 1.3.9 |
genalg | 0.2.1 | gender | 0.6.0 |
GeneralizedHyperbolic | 0.8-4 | generics | 0.1.3 |
genetics | 1.3.8.1.3 | GenomeInfoDb | 1.36.4 |
GenomeInfoDbData | 1.2.10 | GenomicRanges | 1.52.0 |
GenSA | 1.1.10.1 | 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.3 |
geometry | 0.4.7 | geonames | 0.999 |
geonapi | 0.7 | GEOquery | 2.68.0 |
geoR | 1.9-2 | geos | 0.2.3 |
geosapi | 0.6-7 | geosphere | 1.5-18 |
geospt | 1.0-2 | geostan | 0.5.2 |
geouy | 0.2.8 | gert | 2.0.0 |
getPass | 0.2-2 | gets | 0.37 |
GetTDData | 1.5.4 | gfonts | 0.2.0 |
GGally | 2.1.2 | ggalt | 0.4.0 |
gganimate | 1.0.8 | ggdag | 0.2.10 |
ggdemetra | 0.2.5 | ggdendro | 0.1.23 |
ggdist | 3.3.0 | ggExtra | 0.10.1 |
ggforce | 0.4.1 | ggformula | 0.10.4 |
ggfun | 0.1.3 | gghalves | 0.1.4 |
ggmap | 3.0.2 | ggmcmc | 1.5.1.1 |
ggnewscale | 0.4.9 | ggplot2 | 3.4.3 |
ggplotify | 0.1.2 | ggpubr | 0.6.0 |
ggraph | 2.1.0 | ggrepel | 0.9.3 |
ggridges | 0.5.4 | ggsci | 3.0.0 |
ggseas | 0.5.4 | ggsignif | 0.6.4 |
ggsn | 0.5.0 | ggspatial | 1.1.9 |
ggstance | 0.3.6 | ggtext | 0.1.2 |
ggthemes | 4.2.4 | ggtree | 3.8.2 |
ggvis | 0.4.8 | gh | 1.4.0 |
ghyp | 1.6.4 | Gifi | 0.4-0 |
gifti | 0.8.0 | GIGrvg | 0.8 |
gimme | 0.7-15 | giscoR | 0.3.5 |
git2r | 0.32.0 | gitcreds | 0.1.2 |
glarma | 1.6-0 | GlarmaVarSel | 1.0 |
glasso | 1.11 | glassoFast | 1.0.1 |
gld | 2.6.6 | glm2 | 1.2.1 |
GLMMRR | 0.5.0 | glmmTMB | 1.1.7 |
glmnet | 4.1-8 | globals | 0.16.2 |
glpkAPI | 1.3.4 | glue | 1.6.2 |
GMDH | 1.6 | Gmedian | 1.2.7 |
gmm | 1.8 | gmodels | 2.18.1.1 |
gmp | 0.7-2 | gmt | 2.0.3 |
gmvarkit | 2.0.10 | GNAR | 1.1.2 |
gnm | 1.1-5 | GO.db | 3.17.0 |
goftest | 1.2-3 | gogarch | 0.7-5 |
golem | 0.4.1 | googledrive | 2.1.1 |
googlePolylines | 0.8.4 | googlesheets4 | 1.1.1 |
googleVis | 0.7.1 | gower | 1.0.1 |
GPArotation | 2023.8-1 | GPCMlasso | 0.1-6 |
GPfit | 1.0-8 | gplots | 3.1.3 |
gradethis | 0.2.14 | gRain | 1.3.14 |
graph | 1.78.0 | graphicalVAR | 0.3.1 |
graphlayouts | 1.0.1 | grates | 1.1.0 |
gratis | 1.0.5 | gravitas | 0.1.3 |
gRbase | 2.0.0 | greeks | 1.3 |
greta | 0.4.3 | greybox | 2.0.0 |
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.2-0 | grnn | 0.1.0 |
GroupSeq | 1.4.2 | grplasso | 0.4-7 |
gsarima | 0.1-5 | gsDesign | 3.5.0 |
gsignal | 0.3-5 | gsl | 2.1-8 |
gss | 2.2-7 | gstat | 2.1-1 |
gsubfn | 0.7 | gsw | 1.1-1 |
gt | 0.9.0 | gtable | 0.3.4 |
gtheory | 0.1.2 | gtools | 3.9.4 |
gtop | 0.2.0 | GUIDE | 1.2.7 |
gustave | 0.4.4 | gWidgets2 | 1.0-9 |
GWmodel | 2.3-1 | gwrr | 0.2-2 |
HandTill2001 | 1.0.1 | HaploSim | 1.8.4.2 |
hardhat | 1.3.0 | hash | 2.2.6.3 |
haven | 2.5.3 | hbsae | 1.2 |
hdf5r | 1.3.8 | hdi | 0.1-9 |
HDInterval | 0.2.4 | HDMT | 1.0.5 |
hdrcde | 3.4 | HDShOP | 0.1.3 |
HDTSA | 1.0.2 | heatmaply | 1.4.2 |
heplots | 1.6.0 | here | 1.0.1 |
hett | 0.3-3 | hexbin | 1.28.3 |
hflights | 0.1 | hglm | 2.2-1 |
hglm.data | 1.0-1 | HH | 3.1-49 |
hht | 2.1.6 | 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.3 |
HistData | 0.9-1 | HKRbook | 0.1.3 |
HLMdiag | 0.5.0 | Hmisc | 5.1-1 |
HMMpa | 1.0.1 | hms | 1.1.3 |
hoardr | 0.5.3 | homals | 1.0-10 |
hommel | 1.6 | hpfilter | 1.0.2 |
HRW | 1.0-5 | HSAUR3 | 1.0-14 |
htmlTable | 2.4.1 | htmltools | 0.5.6 |
htmlwidgets | 1.6.2 | hts | 6.0.2 |
httpcode | 0.3.0 | httpuv | 1.6.11 |
httr | 1.4.7 | httr2 | 0.2.3 |
humanize | 0.2.0 | hunspell | 3.0.2 |
hutils | 1.8.1 | hwwntest | 1.3.2 |
HydroMe | 2.0-1 | HyperbolicDist | 0.6-4 |
hypergeo | 1.2-13 | i2extras | 0.2.1 |
iarm | 0.4.3 | ibd | 1.5 |
ibdreg | 0.3.8 | iBreakDown | 2.0.1 |
IBrokers | 0.10-2 | ica | 1.0-3 |
ICAOD | 1.0.1 | icarus | 0.3.2 |
ICC | 2.4.0 | iccbeta | 1.2.0 |
Icens | 1.72.0 | ichimoku | 1.4.9 |
ICS | 1.4-1 | ICSNP | 1.1-2 |
ICtest | 0.3-5 | idbr | 1.0 |
IDE | 0.3.1 | idefix | 1.0.3 |
IDPmisc | 1.1.20 | ids | 1.0.1 |
ifaTools | 0.23 | igraph | 1.5.1 |
igraphdata | 1.0.1 | illuminaio | 0.42.0 |
imbibe | 0.1.1 | immer | 1.4-15 |
implyr | 0.4.0 | impute | 1.74.1 |
imputeTestbench | 3.0.3 | imputeTS | 3.3 |
inca | 0.0.4 | IncDTW | 1.1.4.4 |
incidence | 1.7.3 | incidence2 | 2.2.1 |
inegiR | 3.0.0 | ineq | 0.2-13 |
infer | 1.0.5 | influence.SEM | 2.3 |
influxdbr | 0.14.2 | InfoTrad | 1.2 |
ingredients | 2.3.0 | ini | 0.3.1 |
inline | 0.3.19 | insee | 1.1.5 |
insight | 0.19.5 | InspectChangepoint | 1.2 |
intamap | 1.5-6 | interp | 1.1-4 |
intervals | 0.15.4 | inum | 1.0-5 |
invgamma | 1.1 | iotables | 0.9.1 |
iotools | 0.3-2 | ipdw | 2.0-0 |
ipfp | 1.0.2 | ipred | 0.9-14 |
ipumsr | 0.6.3 | IRanges | 2.34.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 |
Iso | 0.0-21 | isoband | 0.2.7 |
ISOcodes | 2022.09.29 | IsoGene | 1.0-24 |
ISOweek | 0.6-2 | ISwR | 2.0-8 |
iterators | 1.0.14 | iterLap | 1.1-4 |
itertools | 0.1-3 | itsmr | 1.10 |
JADE | 2.0-4 | jalcal | 0.1.0 |
janeaustenr | 1.0.0 | janitor | 2.2.0 |
JavaGD | 0.6-5 | jiebaR | 0.11 |
jiebaRD | 0.1 | jjb | 0.1.1 |
JMdesign | 1.4 | jomo | 2.7-6 |
JoSAE | 0.3.0 | jpeg | 0.1-10 |
jqr | 1.3.0 | jquerylib | 0.1.4 |
jrt | 1.1.2 | jsonify | 1.2.2 |
jsonlite | 1.8.7 | juicyjuice | 0.1.0 |
JuliaConnectoR | 1.1.1 | JWileymisc | 1.4.0 |
kableExtra | 1.3.4 | kalmanfilter | 2.0.2 |
kappaSize | 1.2 | KEGGREST | 1.40.1 |
Kendall | 2.2.1 | kequate | 1.6.4 |
keras | 2.13.0 | kernelFactory | 0.3.0 |
kernlab | 0.9-32 | keyperm | 0.1.1 |
keyring | 1.3.1 | KFAS | 1.5.1 |
klaR | 1.7-2 | km.ci | 0.5-6 |
knitr | 1.44 | koRpus | 0.13-8 |
ks | 1.14.1 | kst | 0.5-4 |
kutils | 1.73 | kza | 4.1.0.1 |
labdsv | 2.1-0 | label.switching | 1.8 |
labeling | 0.4.3 | labelled | 2.12.0 |
laeken | 0.5.2 | LaF | 0.8.4 |
lagged | 0.3.2 | Lahman | 11.0-0 |
LAM | 0.6-19 | lambda.r | 1.2.4 |
lamW | 2.2.1 | landsat | 1.1.2 |
landscapemetrics | 2.0.0 | languageR | 1.5.0 |
LaplacesDemon | 16.1.6 | lars | 1.3 |
lassoshooting | 0.1.5-1.1 | latdiag | 0.3 |
later | 1.3.1 | latex2exp | 0.9.6 |
latticeExtra | 0.6-30 | LatticeKrig | 8.4 |
lava | 1.7.2.1 | lavaan | 0.6-16 |
LAWBL | 1.5.0 | lazyeval | 0.2.2 |
lbfgsb3c | 2020-3.2 | LCAvarsel | 1.1 |
lcda | 0.3.1 | lctools | 0.2-8 |
lda | 1.4.2 | ldbounds | 2.0.1 |
leafem | 0.2.3 | leaflet | 2.2.0 |
leaflet.extras | 1.0.0 | leaflet.providers | 1.13.0 |
leafpm | 0.1.0 | leafpop | 0.1.0 |
leafsync | 0.1.0 | leaps | 3.1 |
LearnBayes | 2.15.1 | learnr | 0.11.5.9000 |
legion | 0.1.2 | lfactors | 1.0.4 |
lgarch | 0.6-2 | lgr | 0.4.4 |
lgtdl | 1.1.5 | lhs | 1.1.6 |
libcoin | 1.0-10 | libgeos | 3.11.1-1 |
lidR | 4.0.4 | lifecontingencies | 1.3.11 |
lifecycle | 1.0.3 | LIM | 1.4.7 |
limma | 3.56.2 | limSolve | 1.5.7 |
linelist | 0.0.1 | link2GI | 0.5-2 |
linpk | 1.1.2 | linprog | 0.9-4 |
lintools | 0.1.7 | lisrelToR | 0.1.5 |
listenv | 0.9.0 | liteq | 1.1.0 |
lme4 | 1.1-34 | lmerTest | 3.1-3 |
lmForc | 0.1.0 | lmm | 1.4 |
lmodel2 | 1.7-3 | lmom | 3.0 |
lmtest | 0.9-40 | LNIRT | 0.5.1 |
locfit | 1.5-9.8 | locits | 1.7.7 |
locpol | 0.8.0 | logger | 0.2.2 |
logging | 0.10-108 | logitnorm | 0.8.38 |
logspline | 2.1.20 | lokern | 1.1-10 |
lomb | 2.1.0 | longCatEDA | 0.31 |
longitudinalData | 2.4.5 | longmemo | 1.1-2 |
LongMemoryTS | 0.1.0 | longpower | 1.0.24 |
loo | 2.6.0 | lordif | 0.3-3 |
lotri | 0.4.3 | lpacf | 1.0.1 |
lpSolve | 5.6.19 | lpSolveAPI | 5.5.2.0-17.10 |
lsa | 0.73.3 | lsl | 0.5.6 |
lslx | 0.6.11 | LSMonteCarlo | 1.0 |
LSMRealOptions | 0.2.1 | LSTS | 2.1 |
LSWPlib | 0.1.0 | ltm | 1.2-0 |
ltsa | 1.4.6 | lubridate | 1.9.3 |
luz | 0.4.0 | lvnet | 0.3.5 |
lvplot | 0.2.1 | lwgeom | 0.2-13 |
m5 | 0.1.1 | maat | 1.1.0 |
magclass | 6.10.0 | magic | 1.6-1 |
magick | 2.8.0 | magrittr | 2.0.3 |
malariaAtlas | 1.2.0 | MAMS | 2.0.1 |
manipulate | 1.0.1 | manipulateWidget | 0.11.1 |
MAPA | 2.0.5 | mapdata | 2.3.1 |
mapdeck | 0.3.4 | mapedit | 0.6.0 |
mapiso | 0.3.0 | mapme.biodiversity | 0.4.0 |
mapmisc | 2.0.1 | mapproj | 1.2.11 |
maps | 3.4.1 | mapsf | 0.7.1 |
mapSpain | 0.8.0 | maptools | 1.1-8 |
maptree | 1.4-8 | mapview | 2.11.0 |
mAr | 1.2-0 | mar1s | 2.1.1 |
marcher | 0.0-2 | markdown | 1.9 |
markovchain | 0.9.5 | MarkowitzR | 1.0.3 |
marmap | 1.0.10 | MARSS | 3.11.8 |
MassSpecWavelet | 1.66.0 | Matching | 4.10-14 |
MatchIt | 4.5.4 | MatchThem | 1.1.0 |
mathjaxr | 1.6-0 | matlabr | 1.5.2 |
matrixcalc | 1.0-6 | MatrixExtra | 0.1.14 |
MatrixModels | 0.5-2 | matrixStats | 1.0.0 |
maxLik | 1.5-2 | MaxPro | 4.1-2 |
MBA | 0.1-0 | MBHdesign | 2.3.15 |
mboost | 2.9-8 | mbsts | 3.0 |
mc2d | 0.2.0 | MCAvariants | 2.6.1 |
mclust | 6.0.0 | mcmc | 0.9-7 |
mcmcensemble | 3.0.0 | MCMCglmm | 2.35 |
MCMCpack | 1.6-3 | mcmcse | 1.5-0 |
MCMCvis | 0.16.2 | mco | 1.15.6 |
Mcomp | 2.8 | mcompanion | 0.5.8 |
MCPMod | 1.0-10.1 | mdftracks | 0.2.1 |
measurements | 1.5.1 | meboot | 1.4-9.4 |
medflex | 0.6-10 | Mediana | 1.0.8 |
mediation | 4.5.0 | MEIGOR | 1.33.0 |
mem | 2.18 | memapp | 2.16 |
memisc | 0.99.31.6 | memoise | 2.0.1 |
MEMSS | 0.9-3 | memuse | 4.2-3 |
meta | 6.5-0 | metadat | 1.2-0 |
metafor | 4.4-0 | metaplot | 0.8.3 |
metaSEM | 1.3.1 | metasens | 1.5-2 |
Metrics | 0.1.4 | metRology | 0.9-28-1 |
mFilter | 0.1-5 | mgm | 1.2-14 |
mi | 1.1 | mice | 3.16.0 |
miceadds | 3.16-18 | micEconIndex | 0.1-8 |
microbenchmark | 1.4.10 | micromap | 1.9.7 |
microsamplingDesign | 1.0.8 | MicSim | 2.0.0 |
MIIVsem | 0.5.8 | mime | 0.12 |
mind | 1.1.0 | MinEDfind | 0.1.3 |
minimalRSD | 1.0.0 | minimaxdesign | 0.1.5 |
miniUI | 0.1.1.1 | minpack.lm | 1.2-4 |
minqa | 1.2.6 | mipfp | 3.2.1 |
mirt | 1.40 | mirtCAT | 1.12.2 |
misc3d | 0.9-1 | miscTools | 0.6-28 |
missForest | 1.5 | missMDA | 1.18 |
mitml | 0.4-5 | mitools | 2.4 |
mix | 1.0-11 | mixAR | 0.22.7 |
MixedPsy | 1.1.0 | mixexp | 1.2.7 |
mixOmics | 6.24.0 | mixsqp | 0.3-48 |
mixtools | 2.0.0 | mkssd | 1.2 |
mlapi | 0.1.1 | mlbench | 2.1-3.1 |
MLCIRTwithin | 2.1.1 | MLDS | 0.5.1 |
mlmRev | 1.0-8 | mlogit | 1.1-1 |
mlogitBMA | 0.1-7 | mlr | 2.19.1 |
mlr3 | 0.16.1 | mlr3measures | 0.5.0 |
mlr3misc | 0.13.0 | mlr3spatiotempcv | 2.1.0 |
mlrMBO | 1.1.5.1 | mlVAR | 0.5.1 |
mma | 10.7-1 | mmand | 1.6.3 |
mmrm | 0.2.2 | mnormt | 2.1.1 |
MNP | 3.1-4 | modeldata | 1.2.0 |
modelenv | 0.1.1 | ModelMap | 3.4.0.4 |
ModelMetrics | 1.2.2.2 | modelr | 0.1.11 |
modeltime | 1.2.8 | modeltime.ensemble | 1.0.3 |
modeltime.resample | 0.2.3 | modeltools | 0.2-23 |
moderndive | 0.5.5 | modules | 0.12.0 |
mokken | 3.1.0 | mombf | 3.4.2 |
moments | 0.14.1 | momentuHMM | 1.5.5 |
mondate | 0.10.02 | mongolite | 2.7.2 |
mongopipe | 0.1.1 | monmlp | 1.1.5 |
monobin | 0.2.4 | Morpho | 2.11 |
mosaic | 1.8.4.2 | mosaicCore | 0.9.2.1 |
mosaicData | 0.20.3 | mousetrap | 3.2.1 |
move | 4.2.4 | movecost | 2.0 |
moveHMM | 1.9 | moveWindSpeed | 0.2.4 |
movMF | 0.2-7 | MPDiR | 0.2 |
MplusAutomation | 1.1.0 | mpmi | 0.43.2.1 |
mpt | 0.8-0 | MPTinR | 1.14.1 |
MPV | 1.63 | mratios | 1.4.2 |
mrf | 0.1.6 | mrgsolve | 1.1.1 |
mritc | 0.5-3 | mscstexta4r | 0.1.2 |
mscsweblm4r | 0.1.2 | MSGARCH | 2.51 |
msm | 1.7 | 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-9 | multDM | 1.1.4 |
multicool | 0.1-12 | MultiGlarmaVarSel | 1.0 |
MultiLCIRT | 2.11 | MultipleBubbles | 0.2.0 |
multiplex | 3.1.0 | multipol | 1.0-9 |
multitaper | 1.0-17 | multiway | 1.0-6 |
multtest | 2.56.0 | MuMIn | 1.47.5 |
munfold | 0.3.5 | munsell | 0.5.0 |
mvLSW | 1.2.5 | mvMORPH | 1.1.7 |
mvnfast | 0.2.8 | mvnormtest | 0.1-9 |
mvQuad | 1.0-8 | mvtnorm | 1.2-3 |
mvtsplot | 1.0-4 | mxkssd | 1.2 |
n1qn1 | 6.0.1-11 | nabor | 0.5.0 |
NADA | 1.6-1.1 | NAEPirtparams | 1.0.0 |
NAEPprimer | 1.0.1 | nanoarrow | 0.3.0 |
nanonext | 0.10.2 | nanotime | 0.3.7 |
nardl | 0.1.6 | natserv | 1.0.0 |
nbTransmission | 1.1.2 | ncappc | 0.3.0 |
ncar | 0.4.5 | ncdf4 | 1.21 |
ncf | 1.3-2 | ncvreg | 3.14.1 |
nets | 0.9.1 | network | 1.18.1 |
NetworkChange | 0.8 | NetworkComparisonTest | 2.2.2 |
networkD3 | 0.4 | networkDynamic | 0.11.3 |
networkLite | 1.0.5 | NetworkRiskMeasures | 0.1.4 |
NetworkToolbox | 1.4.2 | networktools | 1.5.1 |
networktree | 1.0.1 | neuralnet | 1.44.2 |
neurobase | 1.32.3 | neuroim | 0.0.6 |
neuRosim | 0.2-13 | nFactors | 2.4.1.1 |
NFCP | 1.2.1 | ngspatial | 1.2-2 |
nhanesA | 0.7.4 | nifti.io | 1.0.0 |
nimble | 1.0.1 | NISTnls | 0.9-13 |
NlcOptim | 0.6 | nleqslv | 3.3.4 |
NlinTS | 1.4.5 | nlmeVPC | 2.6 |
nlmixr2 | 2.0.9 | nlmixr2data | 2.0.8 |
nlmixr2est | 2.1.7 | nlmixr2extra | 2.0.8 |
nlmixr2plot | 2.0.7 | nlmixr2rpt | 0.2.0 |
nloptr | 2.0.3 | NLP | 0.2-1 |
nls2 | 0.3-3 | nlsem | 0.8-1 |
nlstools | 2.0-1 | nlts | 1.0-2 |
NMOF | 2.7-1 | nmw | 0.1.5 |
nnfor | 0.9.8 | nnls | 1.5 |
nodbi | 0.9.8 | nomisr | 0.4.7 |
NonCompart | 0.6.0 | nonlinearTseries | 0.2.12 |
nonmemica | 1.0.8 | nonnest2 | 0.5-6 |
NonProbEst | 0.2.4 | norm | 1.0-11.1 |
nortest | 1.0-4 | nosoi | 1.1.0 |
np | 0.60-17 | NPflow | 0.13.3 |
npi | 0.2.0 | nppbib | 1.2-0 |
nsarfima | 0.2.0.0 | nsprcomp | 0.5.1-2 |
NTS | 1.1.3 | numbers | 0.8-5 |
numDeriv | 2016.8-1.1 | nvmix | 0.1-0 |
o2geosocial | 1.1.0 | oai | 0.4.0 |
OasisR | 3.1.0 | obAnalytics | 0.1.1 |
occ | 1.1 | oce | 1.8-1 |
octopus | 0.3.0 | odbc | 1.3.5 |
odin | 1.2.5 | odpc | 2.0.5 |
odr | 1.4.4 | OECD | 0.2.5 |
officer | 0.6.2 | ohoegdm | 0.1.0 |
onbrand | 1.0.3 | onlineforecast | 1.0.1 |
opdisDownsampling | 0.8.2 | OPDOE | 1.0-10 |
openair | 2.17-0 | openEBGM | 0.9.1 |
openintro | 2.4.0 | OpenMx | 2.21.8 |
openNLP | 0.2-7 | openNLPdata | 1.5.3-4 |
openssl | 2.1.1 | OpenStreetMap | 0.3.4 |
openxlsx | 4.2.5.2 | opera | 1.2.0 |
operator.tools | 1.6.3 | optextras | 2019-12.4 |
OptHedging | 1.0 | OptimalDesign | 1.0.1 |
OptimaRegion | 1.2 | optimParallel | 1.0-2 |
optimx | 2023-8.13 | OptionPricing | 0.1.2 |
optiscale | 1.2.2 | ORCME | 2.0.2 |
ordinal | 2022.11-16 | ore | 1.7.3.1 |
ORIClust | 1.0-2 | oro.dicom | 0.5.3 |
oro.nifti | 0.11.4 | oro.pet | 0.2.7 |
orthopolynom | 1.0-6.1 | osDesign | 1.8 |
osmdata | 0.2.5 | osmextract | 0.5.0 |
osqp | 0.6.3 | otsad | 0.2.0 |
otsfeatures | 1.0.0 | outbreaker2 | 1.1.3 |
outbreaks | 1.9.0 | outliers | 0.15 |
overlapping | 2.1 | ows4R | 0.3-6 |
pa | 1.2-4 | packcircles | 0.3.6 |
padr | 0.6.2 | PairedData | 1.1.1 |
pairwise | 0.6.1-0 | paleoTS | 0.5.3 |
palmerpenguins | 0.1.1 | pan | 1.9 |
pander | 0.6.5 | panelaggregation | 0.1.1 |
paradox | 0.11.1 | parallelly | 1.36.0 |
parallelMap | 1.5.1 | ParamHelpers | 1.14.1 |
paran | 1.5.2 | parma | 1.7 |
parsedate | 1.3.1 | parsnip | 1.1.1 |
partitions | 1.10-7 | partsm | 1.1-3 |
parttime | 0.1.1 | party | 1.3-13 |
partykit | 1.2-20 | pastecs | 1.3.21 |
patchwork | 1.1.3 | paws | 0.4.0 |
paws.analytics | 0.4.0 | paws.application.integration | 0.4.0 |
paws.common | 0.6.1 | paws.compute | 0.4.0 |
paws.cost.management | 0.4.0 | paws.customer.engagement | 0.4.0 |
paws.database | 0.4.0 | paws.developer.tools | 0.4.0 |
paws.end.user.computing | 0.4.0 | paws.machine.learning | 0.4.0 |
paws.management | 0.4.0 | paws.networking | 0.4.0 |
paws.security.identity | 0.4.0 | paws.storage | 0.4.0 |
pbapply | 1.7-2 | pbdZMQ | 0.3-10 |
PBIBD | 1.3 | pbivnorm | 0.6.0 |
pbkrtest | 0.5.2 | pbmcapply | 1.5.1 |
pbo | 1.3.5 | pbs | 1.1 |
PBSddesolve | 1.13.3 | PBSmapping | 2.73.2 |
PBSmodelling | 2.68.8 | pbv | 0.4-22 |
pcaMethods | 1.92.0 | pcaPP | 2.0-3 |
pcdpca | 0.4 | pcFactorStan | 1.5.4 |
pcIRT | 0.2.4 | PCMRS | 0.1-4 |
pcts | 0.15.5 | pdc | 1.0.3 |
pdfetch | 0.2.9 | pdftools | 3.4.0 |
pdist | 1.2.1 | pedigree | 1.4.2 |
PeerPerformance | 2.2.5 | penalized | 0.9-52 |
performance | 0.10.5 | PerformanceAnalytics | 2.0.4 |
permute | 0.9-7 | PGM2 | 1.0-1 |
ph2bayes | 0.0.2 | ph2bye | 0.1.4 |
phangorn | 2.11.1 | pheatmap | 1.0.12 |
phonics | 1.3.10 | phyloseq | 1.44.0 |
phytools | 1.9-16 | picasso | 1.3.1 |
pid | 0.50 | piecewiseSEM | 2.3.0 |
pillar | 1.9.0 | pins | 1.2.2 |
pipe.design | 0.5.1 | pipeR | 0.6.1.3 |
pixmap | 0.4-12 | PK | 1.3-6 |
PKconverter | 1.5 | pkdata | 0.1.0 |
pkgbuild | 1.4.2 | pkgconfig | 2.0.3 |
pkgdown | 2.0.7 | pkgfilecache | 0.1.4 |
pkgload | 1.3.3 | PKNCA | 0.10.2 |
pkr | 0.1.3 | pks | 0.6-0 |
PlackettLuce | 0.4.3 | plgp | 1.1-12 |
plink | 1.5-1 | plm | 2.6-3 |
PLMIX | 2.1.1 | PLmixed | 0.1.7 |
plogr | 0.2.0 | plot3D | 1.4 |
plotdap | 1.0.2 | plotly | 4.10.2 |
plotMCMC | 2.0.1 | plotmo | 3.6.2 |
plotrix | 3.8-2 | plotSEMM | 2.4 |
pls | 2.8-2 | plyr | 1.8.9 |
pmr | 1.2.5.1 | pmxTools | 1.3 |
png | 0.1-8 | pointblank | 0.11.4 |
poisbinom | 1.0.1 | poLCA | 1.6.0.1 |
polspline | 1.1.23 | polyclip | 1.10-6 |
polycor | 0.8-1 | polyCub | 0.8.1 |
polynom | 1.4-1 | PolynomF | 2.0-5 |
polyreg | 0.8.0 | pomp | 5.4 |
pool | 1.0.1 | PopED | 0.6.0 |
popEpi | 0.4.11 | portes | 6.0 |
PortfolioOptim | 1.1.1 | PortRisk | 1.1.0 |
posterior | 1.4.1 | powerbydesign | 1.0.5 |
powerGWASinteraction | 1.1.3 | powerSurvEpi | 0.1.3 |
PowerTOST | 1.5-4 | PowerUpR | 1.1.0 |
PP | 0.6.3-11 | ppcor | 1.1 |
PPRL | 0.3.8 | pps | 1.0 |
prabclus | 2.3-2 | pracma | 2.4.2 |
PracTools | 1.4 | praise | 1.0.0 |
PreciseSums | 0.6 | prefmod | 0.8-36 |
PReMiuM | 3.2.10 | preprocessCore | 1.62.1 |
PresenceAbsence | 1.1.11 | presize | 0.3.7 |
prettydoc | 0.4.1 | prettyGraphs | 2.1.6 |
prettyunits | 1.2.0 | prevalence | 0.4.1 |
prevR | 5.0.0 | princurve | 2.1.6 |
ProbitSpatial | 1.1 | pROC | 1.18.4 |
processx | 3.8.2 | prodlim | 2023.08.28 |
ProfessR | 2.4-3 | profileModel | 0.6.1 |
profileR | 0.3-5 | profoc | 1.2.1 |
profvis | 0.3.8 | progress | 1.2.2 |
progressr | 0.14.0 | PROJ | 0.4.0 |
proj4 | 1.0-13 | promises | 1.2.1 |
prophet | 1.0 | PROsetta | 0.4.1 |
proto | 1.0.0 | protolite | 2.3.0 |
proxy | 0.4-27 | PRROC | 1.3.1 |
ps | 1.7.5 | pscl | 1.5.5.1 |
psd | 2.1.1 | PSF | 0.5 |
pso | 1.0.4 | pspline | 1.0-19 |
psy | 1.2 | psych | 2.3.9 |
psychomix | 1.1-8 | psychonetrics | 0.11.5 |
psychotools | 0.7-3 | psychotree | 0.16-0 |
psychTools | 2.3.9 | psyphy | 0.3 |
PTAk | 2.0.0 | PTSR | 0.1.2 |
ptw | 1.9-16 | purrr | 1.0.2 |
pwr | 1.3-0 | PwrGSD | 2.3.6 |
pwrRasch | 0.1-2 | pxweb | 0.16.2 |
PxWebApiData | 0.8.0 | qap | 0.1-2 |
Qardl | 0.1.1 | qcv | 1.0 |
qdap | 2.4.6 | qdapDictionaries | 1.0.7 |
qdapRegex | 0.7.5 | qdapTools | 1.3.7 |
qgam | 1.3.4 | qgisprocess | 0.1.0 |
qgraph | 1.9.5 | qicharts2 | 0.7.4 |
qlcal | 0.0.7 | qMRI | 1.2.7 |
qpdf | 1.3.2 | qpNCA | 1.1.6 |
qqconf | 1.3.2 | qqplotr | 0.0.6 |
qrmdata | 2022-05-31-1 | qrmtools | 0.0-16 |
qrng | 0.0-9 | qs | 0.25.5 |
qtl | 1.60 | quadprog | 1.5-8 |
qualmap | 0.2.1 | Quandl | 2.11.0 |
quanteda | 3.3.1 | quantification | 0.2.0 |
quantmod | 0.4.25 | quantreg | 5.97 |
quantspec | 1.2-3 | questionr | 0.7.8 |
QuickJSR | 1.0.6 | quickpsy | 0.1.5.1 |
qvalue | 2.32.0 | qvcalc | 1.0.3 |
R.cache | 0.16.0 | R.devices | 2.17.1 |
R.filesets | 2.15.0 | R.huge | 0.10.0 |
R.matlab | 3.7.0 | R.methodsS3 | 1.8.2 |
R.oo | 1.25.0 | R.rsp | 0.45.0 |
R.utils | 2.12.2 | R0 | 1.3-1 |
R2BEAT | 1.0.5 | r2d3 | 0.2.6 |
R2HTML | 2.3.3 | R2jags | 0.7-1 |
R2OpenBUGS | 3.2-3.2.1 | R2WinBUGS | 2.1-21 |
R4CouchDB | 0.7.5 | R6 | 2.5.1 |
radarchart | 0.3.1 | ragg | 1.2.5 |
ragtop | 1.1.1 | rainbow | 3.7 |
rakeR | 0.2.1 | rAmCharts | 2.1.15 |
ramcmc | 0.1.2 | ramps | 0.6.18 |
randomForest | 4.7-1.1 | randomForestSRC | 3.2.2 |
randomizeR | 3.0.2 | randomLCA | 1.1-3 |
randtoolbox | 2.0.4 | ranger | 0.15.1 |
rankdist | 1.1.4 | RANN | 2.6.1 |
rapidjsonr | 1.2.0 | RApiSerialize | 0.1.2 |
rappdirs | 0.3.3 | rARPACK | 0.11-0 |
RaschSampler | 0.8-10 | raster | 3.6-23 |
rasterImage | 0.4.0 | rasterVis | 0.51.5 |
ratelimitr | 0.4.1 | raveio | 0.9.0 |
ravetools | 0.1.2 | Rbeast | 0.9.9 |
rbenchmark | 1.0.0 | RBGL | 1.76.0 |
rbibutils | 2.2.15 | Rblpapi | 0.3.14 |
rbmi | 1.2.5 | rcartocolor | 2.1.1 |
Rcatch22 | 0.2.1 | rcdd | 1.5-2 |
Rcgmin | 2022-4.30 | rcmdcheck | 1.4.0 |
Rcmdr | 2.9-1 | RcmdrMisc | 2.9-1 |
RcmdrPlugin.DoE | 0.12-4 | RcmdrPlugin.temis | 0.7.10 |
RColorBrewer | 1.1-3 | Rcpp | 1.0.11 |
RcppAnnoy | 0.0.21 | RcppArmadillo | 0.12.6.4.0 |
RcppCCTZ | 0.2.12 | RcppDate | 0.0.3 |
RcppDE | 0.1.7 | RcppDist | 0.1.1 |
RcppEigen | 0.3.3.9.3 | RcppGSL | 0.3.13 |
RcppParallel | 5.1.7 | RcppProgress | 0.4.2 |
RcppQuantuccia | 0.1.1 | RcppRedis | 0.2.4 |
RcppRoll | 0.3.0 | RcppSimdJson | 0.1.10 |
RcppThread | 2.1.5 | RcppTN | 0.2-2 |
RcppTOML | 0.2.2 | RcppZiggurat | 0.1.6 |
Rcsdp | 0.1.57.5 | RCurl | 1.98-1.12 |
RCzechia | 1.11.1 | rdbnomics | 0.6.4 |
rdhs | 0.7.6 | Rdpack | 2.5 |
Rdsdp | 1.0.5.2.1 | re2 | 0.1.2 |
reactable | 0.4.4 | reactR | 0.4.4 |
readabs | 0.4.14 | readODS | 2.1.0 |
readr | 2.1.4 | readsdmx | 0.3.1 |
readstata13 | 0.10.1 | readxl | 1.4.3 |
REBayes | 2.54 | recipes | 1.0.8 |
recmap | 1.0.17 | RecordLinkage | 0.4-12.4 |
redux | 1.1.3 | RefManageR | 1.4.0 |
refugees | 2022.12.1 | regions | 0.1.8 |
registry | 0.5-1 | regress | 1.3-21 |
RegSDC | 0.7.0 | regsem | 1.9.5 |
regspec | 2.7 | regtools | 1.7.0 |
reinsureR | 0.1.0 | relations | 0.6-13 |
relimp | 1.0-5 | rematch | 2.0.0 |
rematch2 | 2.1.2 | remotes | 2.4.2.1 |
rentrez | 1.2.3 | renv | 1.0.3 |
replicateBE | 1.1.3 | reportr | 1.3.0 |
repr | 1.1.6 | reprex | 2.0.2 |
reproj | 0.4.3 | REQS | 0.8-13 |
rerddap | 1.0.4 | rerddapXtracto | 1.1.5 |
resampledata | 0.3.1 | resde | 1.1 |
reshape | 0.8.9 | reshape2 | 1.4.4 |
restimizeapi | 1.0.0 | reticulate | 1.32.0 |
retry | 0.1.0 | revdbayes | 1.5.2 |
rex | 1.2.1 | Rfast | 2.0.8 |
Rfast2 | 0.1.5.1 | rflexscan | 1.1.0 |
rgbif | 3.7.8 | rgdal | 1.6-7 |
rgee | 1.1.7 | rgen | 0.0.1 |
RGENERATE | 1.3.7 | rgenoud | 5.9-0.3 |
rgeoda | 0.0.10-4 | rgeos | 0.6-4 |
rgl | 1.2.1 | Rglpk | 0.6-5 |
RgoogleMaps | 1.4.5.3 | RGraphics | 3.0-2 |
Rgraphviz | 2.44.0 | rgrass | 0.3-9 |
rgrass7 | 0.2-13 | RGreenplum | 0.1.2 |
rgugik | 0.4.0 | RH2 | 0.2.4 |
rhandsontable | 0.3.8 | rhdf5 | 2.44.0 |
rhdf5filters | 1.12.1 | Rhdf5lib | 1.22.1 |
rhosa | 0.2.0 | RhpcBLASctl | 0.23-42 |
rib | 0.19.0 | riingo | 0.3.1 |
Rilostat | 1.1.8 | ring | 1.0.4 |
RInside | 0.2.18 | rintrojs | 0.3.2 |
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.1 | rjags | 4-14 |
rJava | 1.0-6 | RJDBC | 0.2-10 |
RJDemetra | 0.2.3 | rje | 1.12.1 |
rjson | 0.2.21 | RJSONIO | 1.3-1.8 |
rjstat | 0.4.3 | RKEA | 0.0-6 |
RKEAjars | 5.0-4 | rlang | 1.1.1 |
rlas | 1.6.3 | rle | 0.9.2 |
rlecuyer | 0.3-7 | Rlgt | 0.2-1 |
Rlibeemd | 1.4.3 | rLiDAR | 0.1.5 |
rlist | 0.4.6.2 | RM2006 | 0.1.1 |
rmapshaper | 0.5.0 | RMariaDB | 1.2.2 |
rmarkdown | 2.25 | rmatio | 0.18.0 |
RMAWGEN | 1.3.7 | rmeta | 3.0 |
rmgarch | 1.3-9 | Rmpfr | 0.9-3 |
rms | 6.7-1 | rmutil | 1.1.10 |
RMySQL | 0.10.26 | rnaturalearth | 0.3.4 |
rnaturalearthdata | 0.1.0 | rncl | 0.8.7 |
RND | 1.2 | rneos | 0.4-0 |
RNetCDF | 2.6-2 | rngtools | 1.5.2 |
rngWELL | 0.10-9 | RNifti | 1.5.0 |
RNiftyReg | 2.8.1 | rnn | 1.9.0 |
robfilter | 4.1.3 | RobKF | 1.0.2 |
RoBMA | 3.1.0 | robsurvey | 0.5-2 |
robustbase | 0.99-0 | rockchalk | 1.8.157 |
rocker | 0.3.1 | ROCR | 1.0-11 |
RODBC | 1.3-21 | rodd | 0.2-1 |
ROI | 1.0-1 | roll | 1.1.6 |
Rook | 1.2 | rootSolve | 1.8.2.4 |
roptim | 0.1.6 | rosm | 0.3.0 |
rotl | 3.1.0 | roxygen2 | 7.2.3 |
rpact | 3.4.0 | rpanel | 1.1-5.2 |
rpart.plot | 3.1.1 | rpf | 1.0.14 |
RPMG | 2.2-7 | rpms | 0.5.1 |
rpostgis | 1.4.4 | RPostgres | 1.4.5 |
RPostgreSQL | 0.7-5 | RPPairwiseDesign | 1.0 |
RPresto | 1.4.5 | rprojroot | 2.0.3 |
RPyGeo | 1.0.0 | rpymat | 0.1.7 |
RQuantLib | 0.4.17 | rrcov | 1.7-4 |
rredlist | 0.7.1 | RRreg | 0.7.5 |
RRTCS | 0.0.4 | rrum | 0.2.0 |
rsae | 0.2 | RSAGA | 1.4.0 |
Rsagacmd | 0.4.1 | rsample | 1.2.0 |
rsdmx | 0.6-3 | RSEIS | 4.1-6 |
rsem | 0.5.1 | Rsfar | 0.0.1 |
RSGHB | 1.2.2 | rsm | 2.10.4 |
Rsolnp | 1.16 | rspa | 0.2.8 |
rsparse | 0.5.1 | RSpectra | 0.16-1 |
RSQLite | 2.3.1 | Rssa | 1.0.5 |
rstac | 0.9.2-4 | rstan | 2.26.23 |
rstanarm | 2.26.1 | rstantools | 2.3.1.1 |
rstatix | 0.7.2 | rstiefel | 1.0.1 |
rstudioapi | 0.15.0 | rsurface | 1.1.0 |
RSurveillance | 0.2.1 | Rsymphony | 0.1-33 |
rTensor | 1.4.8 | rtf | 0.4-14.1 |
RTFA | 0.1.0 | RTL | 1.3.3 |
rtop | 0.6-6 | RTransferEntropy | 0.2.21 |
rtrim | 2.1.1 | rts | 1.1-14 |
Rtsne | 0.16 | Rttf2pt1 | 1.3.12 |
rtweet | 1.1.0 | rucrdtw | 0.1.5 |
rugarch | 1.5-1 | ruimtehol | 0.3.1 |
rules | 1.0.2 | RUnit | 0.4.32 |
runjags | 2.2.2-1.1 | runner | 0.4.3 |
runstats | 1.1.0 | Runuran | 0.38 |
rust | 1.4.1 | Rvcg | 0.22.1 |
rversions | 2.1.2 | rvest | 1.0.3 |
Rvmmin | 2018-4.17.1 | Rwave | 2.6-5 |
rwebstat | 1.1.1 | RWeka | 0.4-46 |
RWekajars | 3.9.3-2 | rworldmap | 1.3-6 |
rworldxtra | 1.01 | rxode2 | 2.0.13 |
rxode2et | 2.0.10 | rxode2ll | 2.0.11 |
rxode2parse | 2.0.16 | rxode2random | 2.0.11 |
s2 | 1.1.4 | S4Vectors | 0.38.2 |
sae | 1.3 | saeRobust | 0.4.0 |
saeSim | 0.11.0 | SAEval | 1.0.0 |
samadb | 0.2.6 | samplesize | 0.2-4 |
sampling | 2.9 | SamplingBigData | 1.0.0 |
samplingbook | 1.2.4 | SamplingStrata | 1.5-4 |
samplingVarEst | 1.5 | sandwich | 3.0-2 |
sarima | 0.9.1 | sass | 0.4.7 |
satellite | 1.0.4 | sazedR | 2.0.2 |
sbgcop | 0.980 | scales | 1.2.1 |
scalreg | 1.0.1 | scam | 1.2-14 |
scatterplot3d | 0.3-44 | scoringRules | 1.1.1 |
scoringutils | 1.1.0 | ScottKnott | 1.3-2 |
scs | 3.2.4 | SDaA | 0.1-5 |
sdcHierarchies | 0.20.0 | sdcMicro | 5.7.6 |
sdcSpatial | 0.5.2 | sdcTable | 0.32.6 |
sde | 2.0.18 | sdmTMB | 0.3.0 |
sealasso | 0.1-3 | seas | 0.6-0 |
season | 0.3.15 | seasonal | 1.9.0 |
seasonalview | 0.3 | seastests | 0.15.4 |
seer | 1.1.8 | seg | 0.5-7 |
segmented | 1.6-4 | selectr | 0.4-2 |
sem | 3.1-15 | semds | 0.9-6 |
SemiPar | 1.0-4.2 | semPlot | 1.1.6 |
SEMsens | 1.5.5 | semTools | 0.5-6 |
semtree | 0.9.18 | sendmailR | 1.4-0 |
SensoMineR | 1.26 | sentencepiece | 0.2.3 |
separationplot | 1.4 | seqDesign | 1.2 |
seqinr | 4.2-30 | seriation | 1.5.1 |
servr | 0.27 | sessioninfo | 1.2.2 |
setartree | 0.2.1 | setRNG | 2022.4-1 |
sets | 1.0-24 | settings | 0.2.7 |
sf | 1.0-14 | sFFLHD | 0.1.2 |
sfheaders | 0.4.3 | sfsmisc | 1.1-16 |
sftime | 0.2-0 | sgd | 1.1.1 |
sgeostat | 1.0-27 | shades | 1.4.0 |
shadowtext | 0.1.2 | shape | 1.4.6 |
shapefiles | 0.7.2 | shapes | 1.2.7 |
SharpeR | 1.3.0 | shiny | 1.7.5 |
shiny.semantic | 0.4.3 | shinyAce | 0.4.2 |
shinyalert | 3.0.0 | shinybrms | 1.8.0 |
shinyBS | 0.61.1 | shinycssloaders | 1.0.0 |
shinydashboard | 0.7.2 | shinydashboardPlus | 2.0.3 |
shinyFiles | 0.9.3 | ShinyItemAnalysis | 1.5.0 |
shinyjqui | 0.4.1 | shinyjs | 2.1.0 |
shinystan | 2.6.0 | shinythemes | 1.2.0 |
shinyTree | 0.3.1 | shinyWidgets | 0.8.0 |
sigmoid | 1.4.0 | signal | 0.7-7 |
signs | 0.1.2 | Sim.DiffProc | 4.8 |
simcdm | 0.1.1 | SimComp | 3.3 |
simex | 1.8 | simfinapi | 0.2.4 |
simglm | 0.8.9 | SimilarityMeasures | 1.4 |
SimInf | 9.5.0 | simPop | 2.1.2 |
simputation | 0.2.8 | simrel | 2.1.0 |
SiMRiv | 1.0.6 | simsem | 0.5-16 |
SimSurvey | 0.1.6 | singleRcapture | 0.2.0 |
siplab | 1.6 | sirt | 3.13-228 |
sitmo | 2.0.2 | sits | 1.4.1 |
SkewHyperbolic | 0.4-0 | skmeans | 0.2-16 |
skpr | 1.4.0 | slam | 0.1-50 |
SLBDD | 0.0.4 | sleekts | 1.0.2 |
Sleuth2 | 2.0-5 | Sleuth3 | 1.0-3 |
SLHD | 2.1-1 | slider | 0.3.0 |
slippymath | 0.3.1 | sm | 2.2-5.7.1 |
smacof | 2.1-5 | smacpod | 2.6 |
SmallCountRounding | 1.0.3 | smam | 0.7.0 |
smerc | 1.8.2 | smoof | 1.6.0.3 |
smooth | 4.0.0 | smoother | 1.1 |
smoots | 1.1.4 | smovie | 1.1.5 |
SMPracticals | 1.4-3 | sms | 2.3.1 |
sn | 2.1.1 | sna | 2.7-1 |
snakecase | 0.11.1 | snow | 0.4-4 |
SnowballC | 0.7.1 | snowfall | 1.84-6.2 |
SOAs | 1.4 | soc.ca | 0.8.0 |
socialmixr | 0.2.0 | sodium | 1.3.0 |
sofa | 0.4.0 | solaR | 0.46 |
solrium | 1.2.0 | sorvi | 0.8.21 |
sourcetools | 0.1.7-1 | sp | 2.1-0 |
sp23design | 0.9-1 | spacetime | 1.3-0 |
spam | 2.9-1 | spaMM | 4.4.0 |
spant | 2.15.0 | sparklyr | 1.8.3 |
sparr | 2.3-10 | sparseDFM | 1.0 |
SparseFactorAnalysis | 1.0 | sparseinv | 0.1.3 |
SparseM | 1.81 | 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.1 | spatialreg | 1.2-9 |
spatialsample | 0.4.0 | SpatialTools | 1.0.5 |
spatialwidget | 0.2.3 | spatstat | 3.0-6 |
spatstat.data | 3.0-1 | spatstat.explore | 3.2-3 |
spatstat.geom | 3.2-5 | spatstat.linnet | 3.1-1 |
spatstat.model | 3.2-6 | spatstat.random | 3.1-6 |
spatstat.sparse | 3.0-2 | spatstat.utils | 3.0-3 |
spBayes | 0.4-6 | spBayesSurv | 1.1.7 |
Spbsampling | 1.3.5 | spd | 2.0-1 |
spData | 2.3.0 | spdep | 1.2-8 |
spec | 0.1.7 | spectral | 2.0 |
speff2trial | 1.0.5 | sperrorest | 3.0.5 |
sphet | 2.0 | spikeslab | 1.1.6 |
spikeSlabGAM | 1.1-19 | spINAR | 0.1.0 |
spind | 2.2.1 | splancs | 2.01-44 |
splines2 | 0.5.1 | splm | 1.6-3 |
spmodel | 0.4.0 | spmoran | 0.2.2.9 |
SpotSampling | 0.1.0 | spselect | 0.0.1 |
spsur | 1.0.2.5 | spsurvey | 5.5.0 |
spTimer | 3.3.2 | sptotal | 1.0.1 |
sqldf | 0.4-11 | SqlRender | 1.16.0 |
SQRL | 1.0.1 | SQUAREM | 2021.1 |
srvyr | 1.2.0 | ssanv | 1.1 |
SSBtools | 1.4.8 | ssgraph | 1.15 |
ssize.fdr | 1.3 | ssizeRNA | 1.3.2 |
ssMousetrack | 1.1.6 | SSN | 1.1.17 |
stabledist | 0.7-1 | stabs | 0.6-4 |
stampr | 0.3.0 | StanHeaders | 2.26.28 |
starma | 1.3 | stars | 0.6-4 |
STARTS | 1.3-8 | startupmsg | 0.9.6 |
statcanR | 0.2.6 | statcodelists | 0.9.2 |
statebins | 1.4.0 | statespacer | 0.5.0 |
StatMatch | 1.4.1 | statmod | 1.5.0 |
statnet.common | 4.9.0 | StatRank | 0.0.6 |
steadyICA | 1.0 | STFTS | 0.1.0 |
stinepack | 1.4 | stlplus | 0.5.1 |
stm | 1.3.6.1 | STMedianPolish | 0.2 |
stochvol | 3.2.1 | stockAnalyst | 1.0.1 |
stopwords | 2.3 | storr | 1.2.5 |
stR | 0.6 | strand | 0.2.0 |
stratification | 2.2-7 | stringdist | 0.9.10 |
stringfish | 0.15.8 | stringi | 1.7.12 |
stringr | 1.5.0 | strucchange | 1.5-3 |
strucchangeRcpp | 1.5-3-1.0.4 | StructuralDecompose | 0.1.1 |
styler | 1.10.2 | subplex | 1.8 |
subscore | 3.3 | sufficientForecasting | 0.1.0 |
sugrrants | 0.2.8 | SUMMER | 1.3.0 |
suntools | 1.0.0 | SuperLearner | 2.0-28.1 |
superml | 0.5.6 | SuppDists | 1.1-9.7 |
support.CEs | 0.6-0 | survcomp | 1.50.0 |
surveillance | 1.21.1 | survey | 4.2-1 |
surveybootstrap | 0.0.3 | surveydata | 0.2.7 |
surveyplanning | 4.0 | surveysd | 1.3.1 |
survivalROC | 1.0.3.1 | survPresmooth | 1.1-11 |
svars | 1.3.11 | svd | 0.5.4.1 |
SVDNF | 0.1.8 | svglite | 2.1.1 |
svrep | 0.6.3 | svs | 3.0.0 |
svUnit | 1.0.6 | sweep | 0.2.5 |
swephR | 0.3.1 | swirl | 2.4.5 |
swirlify | 0.5.3 | sylly | 0.1-6 |
sym.arma | 1.0 | symengine | 0.2.2 |
symmoments | 1.2.1 | synthACS | 1.7.1 |
synthesis | 1.2.3 | synthpop | 1.8-0 |
sys | 3.4.2 | systemfit | 1.1-30 |
systemfonts | 1.0.4 | tables | 0.9.17 |
tabnet | 0.4.0 | TAM | 4.1-4 |
tanaka | 0.3.0 | TAQMNGR | 2018.5-1 |
targets | 1.3.0 | tau | 0.0-24 |
taxize | 0.9.100 | tbrf | 0.1.5 |
tcltk2 | 1.2-11 | Tcomp | 1.0.1 |
tdigest | 0.4.1 | TeachingDemos | 2.12 |
telegram.bot | 3.0.0 | tempdisagg | 1.1.1 |
tensor | 1.5 | tensorA | 0.36.2 |
tensorflow | 2.14.0 | TensorPreAve | 1.1.0 |
tensorTS | 1.0.1 | TEQR | 6.0-0 |
tergm | 4.2.0 | terra | 1.7-46 |
tesseract | 5.2.0 | testcorr | 0.2.0 |
TestDataImputation | 2.3 | TestDesign | 1.5.1 |
tester | 0.1.7 | testit | 0.13 |
TestScorer | 1.7.2 | testthat | 3.1.10 |
TexExamRandomizer | 1.2.3 | texreg | 1.38.6 |
text2vec | 0.6.3 | textcat | 1.0-8 |
textir | 2.0-5 | textplot | 0.2.2 |
textrank | 0.3.1 | textreuse | 0.1.5 |
textshaping | 0.3.6 | textTinyR | 1.1.7 |
tfarima | 0.3.2 | tfautograph | 0.3.2 |
tfdatasets | 2.9.0 | tfio | 0.4.1 |
tfplot | 2021.6-1 | tframe | 2015.12-1.1 |
tfruns | 1.5.1 | tgp | 2.4-21 |
TH.data | 1.1-2 | theft | 0.5.4 |
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.3 | tibble | 3.2.1 |
tibbletime | 0.1.8 | tictoc | 1.2 |
Tides | 2.1 | tidyBdE | 0.3.4 |
tidycensus | 1.5 | tidygraph | 1.2.3 |
tidyLPA | 1.1.0 | tidymodels | 1.1.1 |
tidyquant | 1.0.7 | tidyqwi | 0.1.2 |
tidyr | 1.3.0 | tidyselect | 1.2.0 |
tidyterra | 0.4.0 | tidytext | 0.4.1 |
tidytree | 0.4.5 | tidyverse | 2.0.0 |
tiff | 0.1-11 | tigris | 2.0.4 |
timechange | 0.2.0 | timeDate | 4022.108 |
timeSeries | 4031.107 | timeseriesdb | 1.0.0-1.1.2 |
timetk | 2.8.4 | timsac | 1.3.8-4 |
tinytex | 0.47 | tis | 1.39 |
tkrplot | 0.0-27 | tm | 0.7-11 |
tm.plugin.alceste | 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.6 | tmvnsim | 1.0-2 |
tmvtnorm | 1.5 | tokenizers | 0.3.0 |
tokenizers.bpe | 0.1.3 | toOrdinal | 1.3-0.0 |
topicdoc | 0.1.1 | topicmodels | 0.2-14 |
topicmodels.etm | 0.1.0 | torch | 0.11.0 |
torchaudio | 0.3.1.9000 | torchdatasets | 0.3.0 |
torchvision | 0.5.1 | tpr | 0.3-3 |
trackdem | 0.6 | trackdf | 0.3.2 |
trackeR | 1.5.2 | trackeRapp | 1.2 |
TrackReconstruction | 1.3 | tractor.base | 3.3.5.1 |
traipse | 0.3.0 | trajectories | 0.2-7 |
trajr | 1.5.0 | TransPhylo | 1.4.5 |
trapezoid | 2.0-2 | tree | 1.0-43 |
TreeBUGS | 1.5.0 | treeio | 1.24.3 |
treemap | 2.4-4 | trend | 1.1.5 |
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 | TSA | 1.3.1 |
TSANN | 0.1.0 | tsbox | 0.4.1 |
tsBSS | 1.0.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 |
TSEntropies | 0.9 | tseries | 0.10-54 |
tseriesChaos | 0.1-13.1 | tseriesEntropy | 0.7-2 |
tseriesTARMA | 0.3-4 | tsfeatures | 1.1.1 |
tsfknn | 0.5.2 | tsibble | 1.1.3 |
tsibbledata | 0.4.1 | tsibbletalk | 0.1.0 |
tsintermittent | 1.10 | tsiR | 0.4.3 |
TSLSTM | 0.1.0 | tsModel | 0.6-1 |
tsoutliers | 0.6-8 | 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.3 | tswge | 2.1.0 |
TTR | 0.24.3 | tune | 1.1.2 |
turner | 0.1.7 | tvm | 0.5.2 |
twdtw | 1.0-1 | tweedie | 2.3.5 |
tweenr | 2.0.2 | twosamples | 2.0.1 |
tzdb | 0.4.0 | ubiquity | 2.0.0 |
ucminf | 1.2.0 | UComp | 4.0.2 |
udpipe | 0.8.11 | ufRisk | 1.0.6 |
ugatsdb | 0.2.3 | uGMAR | 3.4.5 |
UnifiedDoseFinding | 0.1.10 | units | 0.8-4 |
univOutl | 0.4 | unrepx | 1.0-2 |
uptasticsearch | 0.4.0 | urca | 1.3-3 |
urlchecker | 1.0.1 | urltools | 1.7.3 |
uroot | 2.1-2 | usdata | 0.2.0 |
usethis | 2.2.2 | usmap | 0.6.2 |
usmapdata | 0.1.0 | utf8 | 1.2.3 |
uuid | 1.1-1 | uwot | 0.1.16 |
V8 | 4.3.3 | validate | 1.1.3 |
validatetools | 0.5.2 | vapour | 0.9.5 |
VAR.etp | 1.1 | VARDetect | 0.1.6 |
vardiag | 0.2-1 | vardpoor | 0.20.1 |
VaRES | 1.0.2 | vars | 1.5-9 |
VARshrink | 0.3.1 | varycoef | 0.3.4 |
VCA | 1.4.5 | vcd | 1.4-11 |
vcdExtra | 0.8-5 | vctrs | 0.6.3 |
vdg | 1.2.2 | VedicDateTime | 0.1.9 |
vegan | 2.6-4 | VennDiagram | 1.7.3 |
venneuler | 1.1-3 | VGAM | 1.1-9 |
VGAMdata | 1.1-9 | vglmer | 1.0.3 |
VIM | 6.2.2 | VineCopula | 2.5.0 |
viridis | 0.6.4 | viridisLite | 0.4.2 |
visNetwork | 2.1.2 | visualize | 4.4.0 |
volatilityTrader | 1.0.1 | vpc | 1.2.2 |
vroom | 1.6.4 | vrtest | 1.2 |
waiter | 0.2.5 | waldo | 0.5.1 |
warp | 0.2.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.2 |
wCorr | 1.9.8 | WDI | 2.7.8 |
webshot | 0.5.5 | WeightedPortTest | 1.1 |
WeightIt | 0.14.2 | weights | 1.0.4 |
WeMix | 4.0.0 | whisker | 0.4.1 |
whitebox | 2.3.1 | widgetframe | 0.3.1 |
WikidataQueryServiceR | 1.0.0 | WikidataR | 2.3.3 |
WikipediR | 1.5.0 | wikitaxa | 0.4.0 |
wildlifeDI | 0.5.0 | wINEQ | 1.2.0 |
withr | 2.5.1 | wk | 0.8.0 |
wktmo | 1.0.5 | wkutils | 0.1.3 |
wnl | 0.7.3 | wooldridge | 1.4-3 |
word2vec | 0.3.4 | wordcloud | 2.6 |
wordnet | 0.1-16 | workflows | 1.1.3 |
workflowsets | 1.0.1 | worrms | 0.4.3 |
wpp2017 | 1.2-3 | wpp2019 | 1.1-1 |
WrightMap | 1.3 | writexl | 1.4.2 |
wrswoR | 1.1.1 | x12 | 1.10.3 |
x13binary | 1.1.57-4 | XBRL | 0.99.19.1 |
xfun | 0.40 | xgboost | 1.7.5.1 |
xgxr | 1.1.2 | XLConnect | 1.0.7 |
xlsx | 0.6.5 | xlsxjars | 0.6.1 |
XML | 3.99-0.14 | xml2 | 1.3.5 |
xopen | 1.0.0 | xplain | 0.2.2 |
xpose | 0.4.17 | xpose.nlmixr2 | 0.4.0 |
xpose4 | 4.7.2 | xtable | 1.8-4 |
xts | 0.13.1 | XVector | 0.40.0 |
xxIRT | 2.1.2 | yaImpute | 1.0-33 |
yaml | 2.3.7 | yardstick | 1.2.0 |
yesno | 0.1.2 | yuima | 1.15.22 |
yulab.utils | 0.1.0 | zeallot | 0.1.0 |
zic | 0.9.1 | ZIM | 1.1.0 |
ZINARp | 0.1.0 | zip | 2.3.0 |
zipfR | 0.6-70 | zlibbioc | 1.46.0 |
zoo | 1.8-12 | ZRA | 0.2 |
After the virtual machine is started, you can access the Workbench (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 last 12 digits of the vmId. The vmId can be found in the JSON View with the form of 1f61b751-037a-489e-8638-3fc32fe6894d. Only the last 12 digits 3fc32fe6894d are used as the password.
Azure VM console
JSON View
Workbench (RStudio Server)
R: 4.3.0
rstudio-server: 2023.12.1-402
R packages (3826)
package | version | package | version |
---|---|---|---|
a4 | 1.50.1 | a4Base | 1.50.0 |
a4Classif | 1.50.0 | a4Core | 1.50.0 |
a4Preproc | 1.50.0 | a4Reporting | 1.50.0 |
ABarray | 1.70.0 | abind | 1.4-5 |
abseqR | 1.20.0 | ABSSeq | 1.56.0 |
acde | 1.32.0 | ACE | 1.20.0 |
aCGH | 1.80.0 | ACME | 2.58.0 |
ada | 2.0-5 | adabag | 5.0 |
ADaCGH2 | 2.42.0 | ADAM | 1.18.0 |
ADAMgui | 1.18.0 | additivityTests | 1.1-4.1 |
adductData | 1.18.0 | adductomicsR | 1.18.0 |
ade4 | 1.7-22 | adehabitatLT | 0.3.27 |
adehabitatMA | 0.3.16 | ADGofTest | 0.3 |
ADImpute | 1.12.0 | admisc | 0.35 |
adSplit | 1.72.0 | adverSCarial | 1.0.0 |
AffiXcan | 1.20.0 | affxparser | 1.74.0 |
affy | 1.80.0 | affycomp | 1.78.0 |
affyContam | 1.60.0 | affycoretools | 1.74.0 |
affydata | 1.50.0 | affyILM | 1.54.0 |
affyio | 1.72.0 | affylmGUI | 1.76.0 |
affyPLM | 1.78.0 | AffyRNADegradation | 1.48.0 |
AGDEX | 1.50.0 | aggregateBioVar | 1.12.0 |
aggregation | 1.0.1 | agilp | 3.34.0 |
AgiMicroRna | 2.52.0 | agricolae | 1.3-7 |
AHMassBank | 1.2.1 | AhoCorasickTrie | 0.1.2 |
AICcmodavg | 2.3-3 | AIMS | 1.34.0 |
airpart | 1.10.0 | airway | 1.22.0 |
akima | 0.6-3.4 | akmbiclust | 0.1.0 |
alabama | 2023.1.0 | alabaster | 1.2.0 |
alabaster.base | 1.2.1 | alabaster.bumpy | 1.2.0 |
alabaster.files | 1.0.0 | alabaster.mae | 1.2.0 |
alabaster.matrix | 1.2.0 | alabaster.ranges | 1.2.0 |
alabaster.sce | 1.2.0 | alabaster.schemas | 1.2.0 |
alabaster.se | 1.2.0 | alabaster.spatial | 1.2.0 |
alabaster.string | 1.2.0 | alabaster.vcf | 1.2.0 |
ALDEx2 | 1.34.0 | alevinQC | 1.18.0 |
AlgDesign | 1.2.1 | ALL | 1.44.0 |
AllelicImbalance | 1.40.0 | alluvial | 0.1-2 |
AlphaBeta | 1.16.0 | AlpsNMR | 4.4.0 |
altcdfenvs | 2.64.0 | amap | 0.8-19 |
AMARETTO | 1.18.0 | AMOUNTAIN | 1.28.0 |
amplican | 1.24.0 | analogue | 0.17-6 |
Anaquin | 2.26.0 | ANCOMBC | 2.4.0 |
AneuFinder | 1.30.0 | AneuFinderData | 1.30.0 |
ANF | 1.24.1 | animalcules | 1.18.3 |
animation | 2.7 | annaffy | 1.74.0 |
anndata | 0.7.5.6 | annmap | 1.44.0 |
annotate | 1.80.0 | AnnotationDbi | 1.64.1 |
AnnotationFilter | 1.26.0 | AnnotationForge | 1.44.0 |
AnnotationHub | 3.10.0 | AnnotationHubData | 1.32.1 |
annotationTools | 1.76.0 | annotatr | 1.28.0 |
anota | 1.50.0 | anota2seq | 1.24.0 |
antiProfiles | 1.42.0 | AnVIL | 1.14.2 |
AnVILBilling | 1.12.0 | AnVILPublish | 1.12.0 |
AnVILWorkflow | 1.2.0 | anytime | 0.3.9 |
aod | 1.3.3 | aods3 | 0.4-1.2 |
APAlyzer | 1.16.0 | apcluster | 1.4.11 |
apComplex | 2.68.0 | ape | 5.7-1 |
apeglm | 1.24.0 | APL | 1.6.1 |
aplot | 0.2.2 | appreci8R | 1.20.2 |
archive | 1.1.7 | argparse | 2.2.2 |
aricode | 1.0.3 | arm | 1.13-1 |
aroma.affymetrix | 3.2.2 | aroma.apd | 0.7.0 |
aroma.core | 3.3.1 | aroma.light | 3.32.0 |
ArrayExpress | 1.62.0 | arrayhelpers | 1.1-0 |
arrayMvout | 1.60.0 | arrayQuality | 1.80.0 |
arrayQualityMetrics | 3.58.0 | ARRmData | 1.38.0 |
ARRmNormalization | 1.42.0 | arrow | 15.0.1 |
artMS | 1.20.0 | arules | 1.7-7 |
ASAFE | 1.28.0 | ASEB | 1.46.3 |
ASGSCA | 1.36.0 | ash | 1.0-15 |
ashr | 2.2-63 | ASICS | 2.18.1 |
askpass | 1.2.0 | ASpli | 2.12.0 |
assertive.base | 0.0-9 | assertive.files | 0.0-2 |
assertive.numbers | 0.0-2 | assertive.sets | 0.0-3 |
assertthat | 0.2.1 | AssessORF | 1.20.0 |
ASSET | 2.20.0 | ASSIGN | 1.38.0 |
ASURAT | 1.6.0 | ATACCoGAPS | 1.4.0 |
ATACseqQC | 1.26.0 | ATACseqTFEA | 1.4.0 |
atena | 1.8.0 | atSNP | 1.18.0 |
attempt | 0.3.1 | attract | 1.54.0 |
AUCell | 1.24.0 | autonomics | 1.10.2 |
available | 1.1.0 | AWFisher | 1.16.0 |
aws | 2.5-5 | aws.s3 | 0.3.21 |
aws.signature | 0.6.0 | awsMethods | 1.1-1 |
awst | 1.10.0 | BaalChIP | 1.28.0 |
babelgene | 22.9 | backbone | 2.1.3 |
backports | 1.4.1 | bacon | 1.30.0 |
BADER | 1.40.0 | BadRegionFinder | 1.30.0 |
BAGS | 2.42.0 | ballgown | 2.34.0 |
bambu | 3.4.0 | bamlss | 1.2-3 |
bamsignals | 1.34.0 | BANDITS | 1.18.1 |
bandle | 1.6.0 | banocc | 1.26.0 |
barcodetrackR | 1.10.0 | base64 | 2.0.1 |
base64enc | 0.1-3 | base64url | 1.4 |
basecallQC | 1.26.0 | baseline | 1.3-5 |
BaseSpaceR | 1.46.0 | Basic4Cseq | 1.38.0 |
BASiCS | 2.14.0 | BASiCStan | 1.4.0 |
BasicSTARRseq | 1.30.0 | basilisk | 1.14.3 |
basilisk.utils | 1.14.1 | batchelor | 1.18.1 |
BatchJobs | 1.9 | BatchQC | 1.30.0 |
batchtools | 0.9.17 | BayesKnockdown | 1.28.0 |
bayesm | 3.1-6 | BayesSpace | 1.12.0 |
bayNorm | 1.20.0 | baySeq | 2.36.0 |
BB | 2019.10-1 | BBCAnalyzer | 1.32.0 |
BBmisc | 1.13 | bbmle | 1.0.25.1 |
bbotk | 0.8.0 | bcellViper | 1.38.0 |
BCRANK | 1.64.0 | bcSeq | 1.24.0 |
bdsmatrix | 1.3-7 | beachmat | 2.18.1 |
beachmat.hdf5 | 1.0.0 | beadarray | 2.52.0 |
beadarraySNP | 1.68.0 | BeadDataPackR | 1.54.0 |
beanplot | 1.3.1 | BEARscc | 1.22.0 |
BEAT | 1.40.0 | BEclear | 2.18.0 |
beer | 1.6.0 | beeswarm | 0.4.0 |
bench | 1.1.3 | benchdamic | 1.8.2 |
benchmarkme | 1.0.8 | benchmarkmeData | 1.0.4 |
bestNormalize | 1.9.1 | betareg | 3.1-4 |
bezier | 1.1.2 | BG2 | 1.2.0 |
BgeeCall | 1.18.1 | BgeeDB | 2.28.0 |
bgx | 1.68.3 | BH | 1.84.0-0 |
BHC | 1.54.0 | BiasedUrn | 2.0.11 |
bibtex | 0.5.1 | BicARE | 1.60.0 |
biclust | 2.0.3.1 | BiFET | 1.22.0 |
biganalytics | 1.1.21 | bigassertr | 0.1.6 |
BiGGR | 1.38.0 | biglm | 0.9-2.1 |
bigmelon | 1.28.0 | bigmemory | 4.6.4 |
bigmemory.sri | 0.1.8 | bigparallelr | 0.3.2 |
bigrquery | 1.5.1 | bigstatsr | 1.5.12 |
billboarder | 0.4.1 | BindingSiteFinder | 2.0.0 |
binom | 1.1-1.1 | binr | 1.1.1 |
bioassayR | 1.40.0 | Biobase | 2.62.0 |
biobroom | 1.34.0 | biobtreeR | 1.14.0 |
bioCancer | 1.30.8 | BioCartaImage | 1.0.0 |
BiocBaseUtils | 1.4.0 | BiocBook | 1.0.0 |
BiocCheck | 1.38.2 | BiocFHIR | 1.4.0 |
BiocFileCache | 2.10.1 | BiocGenerics | 0.48.1 |
biocGraph | 1.64.0 | BiocHail | 1.2.0 |
BiocHubsShiny | 1.2.0 | BiocIO | 1.12.0 |
BiocManager | 1.30.22 | BiocNeighbors | 1.20.2 |
BioCor | 1.26.0 | BiocParallel | 1.36.0 |
BiocPkgTools | 1.20.0 | BiocSet | 1.16.1 |
BiocSingular | 1.18.0 | BiocSklearn | 1.24.0 |
BiocStyle | 2.30.0 | biocthis | 1.12.0 |
BiocVersion | 3.18.1 | biocViews | 1.70.0 |
BiocWorkflowTools | 1.28.0 | biodb | 1.10.0 |
biodbChebi | 1.8.0 | biodbExpasy | 1.6.0 |
biodbKegg | 1.8.0 | biodbLipidmaps | 1.8.0 |
biodbMirbase | 1.5.0 | biodbNcbi | 1.6.0 |
biodbNci | 1.6.0 | biodbUniprot | 1.8.0 |
bioDist | 1.74.0 | biomaRt | 2.58.2 |
biomartr | 1.0.7 | biomformat | 1.30.0 |
BioMVCClass | 1.70.0 | biomvRCNS | 1.42.2 |
BioNAR | 1.4.4 | BioNERO | 1.10.1 |
BioNet | 1.62.0 | BioNetStat | 1.22.0 |
BioQC | 1.30.0 | biosigner | 1.30.0 |
Biostrings | 2.70.3 | BioTIP | 1.16.0 |
biotmle | 1.26.0 | biovizBase | 1.50.0 |
BiRewire | 3.34.0 | biscuiteer | 1.16.0 |
biscuiteerData | 1.16.0 | BiSeq | 1.42.0 |
bit | 4.0.5 | bit64 | 4.0.5 |
bitops | 1.0-7 | biwt | 1.0.1 |
blacksheepr | 1.16.0 | bladderbatch | 1.40.0 |
BlandAltmanLeh | 0.3.1 | blima | 1.36.0 |
BLMA | 1.26.0 | blme | 1.0-5 |
blob | 1.2.4 | blockmodeling | 1.1.5 |
BloodGen3Module | 1.10.0 | bluster | 1.12.0 |
BMA | 3.18.17 | bmp | 0.3 |
bnbc | 1.24.2 | bnem | 1.10.0 |
bnlearn | 4.9.3 | bnstruct | 1.0.15 |
BOBaFIT | 1.6.0 | bookdown | 0.38 |
BoolNet | 2.1.9 | bootstrap | 2019.6 |
borealis | 1.6.0 | BPRMeth | 1.28.0 |
BRAIN | 1.48.0 | brainflowprobes | 1.16.0 |
branchpointer | 1.28.0 | breakpointR | 1.20.0 |
breakpointRdata | 1.20.0 | breastCancerVDX | 1.40.0 |
brendaDb | 1.16.0 | brew | 1.0-10 |
BRGenomics | 1.14.1 | brglm | 0.7.2 |
BridgeDbR | 2.12.0 | brio | 1.1.4 |
BRISC | 1.0.5 | broom | 1.0.5 |
broom.helpers | 1.14.0 | broom.mixed | 0.2.9.4 |
BrowserViz | 2.24.0 | bs4Dash | 2.3.3 |
BSDA | 1.2.2 | BSgenome | 1.70.2 |
BSgenome.Celegans.UCSC.ce2 | 1.4.0 | BSgenome.Drerio.UCSC.danRer7 | 1.4.0 |
BSgenome.Ecoli.NCBI.20080805 | 1.3.1000 | BSgenome.Hsapiens.1000genomes.hs37d5 | 0.99.1 |
BSgenome.Hsapiens.NCBI.GRCh38 | 1.3.1000 | BSgenome.Hsapiens.UCSC.hg18 | 1.3.1000 |
BSgenome.Hsapiens.UCSC.hg19 | 1.4.3 | BSgenome.Hsapiens.UCSC.hg38 | 1.4.5 |
BSgenome.Mmusculus.UCSC.mm10 | 1.4.3 | BSgenome.Mmusculus.UCSC.mm9 | 1.4.0 |
BSgenomeForge | 1.2.1 | bslib | 0.6.1 |
bsplus | 0.1.4 | bsseq | 1.38.0 |
BubbleTree | 2.32.0 | BufferedMatrix | 1.66.0 |
BufferedMatrixMethods | 1.66.0 | bugsigdbr | 1.8.4 |
BUMHMM | 1.26.0 | bumphunter | 1.44.0 |
BumpyMatrix | 1.10.0 | BUS | 1.58.0 |
BUScorrect | 1.20.0 | BUSpaRse | 1.16.1 |
BUSseq | 1.8.0 | butcher | 0.3.3 |
BWStest | 0.2.3 | C50 | 0.1.8 |
ca | 0.71.1 | cachem | 1.0.8 |
CaDrA | 1.0.2 | CAEN | 1.10.0 |
CAFE | 1.38.0 | CAGEfightR | 1.22.0 |
cageminer | 1.8.0 | CAGEr | 2.8.0 |
Cairo | 1.6-2 | calibrate | 1.7.7 |
callr | 3.7.5 | calm | 1.16.0 |
CAMERA | 1.58.0 | canceR | 1.36.7 |
cancerclass | 1.46.0 | capushe | 1.1.2 |
car | 3.1-2 | carData | 3.0-5 |
cardelino | 1.4.0 | Cardinal | 3.4.3 |
CardinalIO | 1.0.0 | caret | 6.0-94 |
caretEnsemble | 2.0.3 | CARNIVAL | 2.12.0 |
casper | 2.36.0 | CATALYST | 1.26.0 |
catdata | 1.2.4 | Category | 2.68.0 |
categoryCompare | 1.46.0 | CatEncoders | 0.1.1 |
caTools | 1.18.2 | CausalR | 1.34.0 |
cba | 0.2-23 | cbaf | 1.24.0 |
CBEA | 1.2.0 | cBioPortalData | 2.14.2 |
CBNplot | 1.2.1 | cbpManager | 1.10.0 |
ccaPP | 0.3.3 | ccdata | 1.28.0 |
ccfindR | 1.22.0 | ccImpute | 1.4.0 |
ccmap | 1.28.0 | CCP | 1.2 |
CCPlotR | 1.0.0 | CCPROMISE | 1.28.0 |
ccrepe | 1.38.1 | ccTensor | 1.0.2 |
CDFt | 1.2 | CDI | 1.0.2 |
celaref | 1.20.0 | celda | 1.18.1 |
celestial | 1.4.6 | CellaRepertorium | 1.12.0 |
CellBarcode | 1.8.1 | cellbaseR | 1.26.0 |
CellBench | 1.18.0 | celldex | 1.12.0 |
cellHTS2 | 2.66.0 | CelliD | 1.10.1 |
cellity | 1.30.0 | CellMapper | 1.28.0 |
cellmigRation | 1.10.0 | CellMixS | 1.18.0 |
CellNOptR | 1.48.0 | cellranger | 1.1.0 |
cellscape | 1.26.0 | CellScore | 1.22.0 |
CellTrails | 1.20.0 | cellxgenedp | 1.6.1 |
CEMiTool | 1.26.1 | censcyt | 1.10.0 |
Cepo | 1.8.0 | ceRNAnetsim | 1.14.1 |
CeTF | 1.14.0 | CexoR | 1.40.0 |
CFAssay | 1.36.0 | cfdnakit | 1.0.0 |
cfDNAPro | 1.8.0 | cfTools | 1.2.0 |
cfToolsData | 1.0.0 | CGEN | 3.38.0 |
CGHbase | 1.62.0 | CGHcall | 2.64.0 |
cghMCR | 1.60.0 | CGHnormaliter | 1.56.0 |
CGHregions | 1.60.0 | ChAMP | 2.32.0 |
ChAMPdata | 2.34.0 | changepoint | 2.2.4 |
changepoint.np | 1.0.5 | checkmate | 2.3.1 |
ChemmineOB | 1.40.0 | ChemmineR | 3.54.0 |
chemometrics | 1.4.4 | CHETAH | 1.18.0 |
Chicago | 1.30.0 | chihaya | 1.2.0 |
chimeraviz | 1.28.0 | ChIPanalyser | 1.24.0 |
ChIPComp | 1.32.0 | chipenrich | 2.26.0 |
chipenrich.data | 2.26.0 | ChIPexoQual | 1.26.0 |
ChIPpeakAnno | 3.36.1 | ChIPQC | 1.38.0 |
ChIPseeker | 1.38.0 | chipseq | 1.52.0 |
ChIPseqR | 1.56.0 | ChIPsim | 1.56.0 |
ChIPXpress | 1.46.0 | ChIPXpressData | 1.40.0 |
chk | 0.9.1 | chopsticks | 1.68.0 |
chromDraw | 2.32.0 | ChromHeatMap | 1.56.0 |
chromhmmData | 0.99.2 | chromPlot | 1.30.0 |
ChromSCape | 1.12.0 | chromstaR | 1.28.0 |
chromstaRData | 1.28.0 | chromVAR | 1.24.0 |
chron | 2.3-61 | CHRONOS | 1.30.0 |
cicero | 1.20.0 | CIMICE | 1.10.0 |
CINdex | 1.30.0 | circlize | 0.4.16 |
circRNAprofiler | 1.16.0 | CircSeqAlignTk | 1.4.0 |
CircStats | 0.2-6 | circular | 0.5-0 |
cisPath | 1.42.0 | CiteFuse | 1.14.0 |
Ckmeans.1d.dp | 4.3.5 | ClassifyR | 3.6.5 |
classInt | 0.4-10 | cleanUpdTSeq | 1.40.0 |
cleaver | 1.40.0 | clevRvis | 1.2.0 |
cli | 3.6.2 | clippda | 1.52.0 |
clipper | 1.42.0 | clipr | 0.8.0 |
cliProfiler | 1.8.0 | cliqueMS | 1.16.0 |
clisymbols | 1.2.0 | clock | 0.7.0 |
Clomial | 1.38.0 | clst | 1.50.0 |
clstutils | 1.50.0 | clue | 0.3-65 |
CluMSID | 1.18.0 | clustComp | 1.30.0 |
clusterCons | 1.2 | clusterExperiment | 2.22.0 |
ClusterJudge | 1.24.0 | clusterProfiler | 4.10.1 |
ClusterR | 1.3.2 | clusterRepro | 0.9 |
clusterSeq | 1.26.0 | ClusterSignificance | 1.30.0 |
clusterSim | 0.51-3 | clusterStab | 1.74.0 |
clustifyr | 1.14.0 | ClustIRR | 1.0.0 |
clustree | 0.5.1 | clustvarsel | 2.3.4 |
clv | 0.3-2.4 | clValid | 0.7 |
CMA | 1.60.0 | cMAP | 1.15.1 |
cMap2data | 1.38.0 | cmapR | 1.14.0 |
cmdfun | 1.0.2 | cn.farms | 1.50.0 |
cn.mops | 1.48.0 | CNAnorm | 1.48.0 |
CNEr | 1.38.0 | CNORdt | 1.44.0 |
CNORfeeder | 1.42.0 | CNORfuzzy | 1.44.0 |
CNORode | 1.44.0 | CNTools | 1.58.0 |
CNVfilteR | 1.16.0 | cnvGSA | 1.46.0 |
CNViz | 1.10.0 | CNVMetrics | 1.6.0 |
CNVPanelizer | 1.34.0 | CNVRanger | 1.18.1 |
CNVrd2 | 1.40.0 | cobs | 1.3-8 |
CoCiteStats | 1.74.0 | COCOA | 2.16.0 |
coda | 0.19-4.1 | CodeDepends | 0.6.5 |
codelink | 1.70.0 | CODEX | 1.34.0 |
CoGAPS | 3.22.0 | cogena | 1.36.0 |
cogeqc | 1.6.2 | Cogito | 1.8.0 |
coGPS | 1.46.0 | COHCAP | 1.48.0 |
COHCAPanno | 1.38.0 | coin | 1.4-3 |
cola | 2.8.0 | collapse | 2.0.10 |
collections | 0.3.7 | colorRamps | 2.3.4 |
colorspace | 2.1-0 | colourpicker | 1.3.0 |
colourvalues | 0.3.9 | comapr | 1.6.1 |
combi | 1.14.0 | combinat | 0.0-8 |
coMET | 1.34.0 | coMethDMR | 1.6.0 |
common | 1.1.2 | commonmark | 1.9.1 |
compareGroups | 4.8.0 | COMPASS | 1.40.0 |
compcodeR | 1.38.0 | compEpiTools | 1.36.0 |
ComplexHeatmap | 2.18.0 | ComplexUpset | 1.3.3 |
compositions | 2.0-8 | CompoundDb | 1.6.0 |
CompQuadForm | 1.4.3 | ComPrAn | 1.10.0 |
compSPOT | 1.0.0 | concaveman | 1.1.0 |
concordexR | 1.2.0 | condformat | 0.10.1 |
condiments | 1.10.0 | CONFESS | 1.30.0 |
config | 0.3.2 | configr | 0.3.5 |
confintr | 1.0.2 | conflicted | 1.2.0 |
conicfit | 1.0.4 | consensus | 1.20.0 |
ConsensusClusterPlus | 1.66.0 | consensusDE | 1.20.0 |
consensusOV | 1.24.0 | consensusSeekeR | 1.30.0 |
consICA | 2.0.0 | ConsRank | 2.1.4 |
CONSTANd | 1.10.0 | contiBAIT | 1.30.0 |
contrast | 0.24.2 | conumee | 1.36.0 |
convert | 1.78.0 | coop | 0.6-3 |
copa | 1.70.0 | copula | 1.1-3 |
CopyNumberPlots | 1.18.0 | coRdon | 1.20.0 |
CoreGx | 2.6.1 | Cormotif | 1.48.0 |
coro | 1.0.4 | corpcor | 1.6.10 |
corral | 1.12.0 | CORREP | 1.68.0 |
corrgram | 1.14 | corrplot | 0.92 |
coseq | 1.26.0 | CoSIA | 1.2.0 |
COSMIC.67 | 1.38.0 | cosmiq | 1.36.0 |
cosmosR | 1.10.0 | COSNet | 1.36.0 |
COTAN | 2.2.3 | countrycode | 1.5.0 |
countsimQC | 1.20.0 | covEB | 1.28.0 |
CoverageView | 1.40.0 | covr | 3.6.4 |
covRNA | 1.28.0 | cowplot | 1.1.3 |
cp4p | 0.3.6 | cplm | 0.7-12 |
cpp11 | 0.4.7 | cpvSNP | 1.34.0 |
cqn | 1.48.0 | crayon | 1.5.2 |
credentials | 2.0.1 | CRImage | 1.50.0 |
crisprBase | 1.6.0 | crisprBowtie | 1.6.0 |
crisprBwa | 1.6.0 | crisprDesign | 1.4.0 |
crisprScore | 1.6.0 | crisprScoreData | 1.6.0 |
CRISPRseek | 1.42.0 | CrispRVariants | 1.30.0 |
crisprVerse | 1.4.0 | crisprViz | 1.4.0 |
crlmm | 1.60.0 | crmn | 0.0.21 |
crossmeta | 1.28.0 | crosstalk | 1.2.1 |
crul | 1.4.0 | CSAR | 1.54.0 |
csaw | 1.36.1 | csdR | 1.8.0 |
CSSQ | 1.14.0 | ctc | 1.76.0 |
CTdata | 1.2.0 | CTDquerier | 2.10.0 |
cTRAP | 1.20.0 | ctsGE | 1.28.0 |
CTSV | 1.4.0 | cubature | 2.1.0 |
Cubist | 0.4.2.1 | cummeRbund | 2.44.0 |
CuratedAtlasQueryR | 1.0.1 | curatedTCGAData | 1.24.1 |
curl | 5.2.1 | customCMPdb | 1.12.0 |
customProDB | 1.42.1 | cvar | 0.5 |
cvAUC | 1.1.4 | cvTools | 0.3.3 |
CVXR | 1.0-12 | cyanoFilter | 1.10.0 |
cycle | 1.56.0 | cyclocomp | 1.1.1 |
cydar | 1.26.0 | CytoDx | 1.22.0 |
CyTOFpower | 1.8.0 | cytofQC | 1.2.0 |
CytoGLMM | 1.10.0 | cytoKernel | 1.8.0 |
cytolib | 2.14.1 | cytomapper | 1.14.0 |
cytoMEM | 1.6.0 | cytometree | 2.0.2 |
CytoML | 2.14.0 | CytoPipeline | 1.2.0 |
CytoPipelineGUI | 1.0.0 | cytoviewer | 1.2.0 |
dada2 | 1.30.0 | dagLogo | 1.40.0 |
daMA | 1.74.0 | DAMEfinder | 1.14.0 |
DaMiRseq | 2.14.0 | DAPAR | 1.34.6 |
DAPARdata | 1.32.1 | DART | 1.50.0 |
dashboardthemes | 1.1.6 | data.table | 1.15.2 |
data.tree | 1.1.0 | datamods | 1.4.5 |
DataVisualizations | 1.3.2 | datawizard | 0.9.1 |
DBI | 1.2.2 | dbplyr | 2.5.0 |
dbscan | 1.1-12 | dcanr | 1.18.0 |
DCATS | 1.0.0 | dce | 1.10.0 |
dcGSA | 1.30.0 | ddCt | 1.58.0 |
ddPCRclust | 1.22.0 | DDRTree | 0.1.5 |
dearseq | 1.14.0 | debCAM | 1.20.0 |
debrowser | 1.30.2 | DECIPHER | 2.30.0 |
decompTumor2Sig | 2.18.0 | DeconRNASeq | 1.44.0 |
deconstructSigs | 1.8.0 | decontam | 1.22.0 |
decontX | 1.0.0 | deconvR | 1.8.0 |
decoupleR | 2.8.0 | DeepPINCS | 1.10.0 |
deepSNV | 1.48.0 | DEFormats | 1.30.0 |
DegNorm | 1.12.0 | DEGraph | 1.54.0 |
DEGreport | 1.38.5 | DEGseq | 1.56.1 |
Delaporte | 8.3.0 | DelayedArray | 0.28.0 |
DelayedDataFrame | 1.18.0 | DelayedMatrixStats | 1.24.0 |
DelayedRandomArray | 1.10.0 | DelayedTensor | 1.8.0 |
deldir | 2.0-4 | DELocal | 1.2.0 |
deltaCaptureC | 1.16.0 | deltaGseg | 1.42.0 |
DeMAND | 1.32.0 | DeMixT | 1.18.0 |
demuxmix | 1.4.0 | demuxSNP | 1.0.0 |
dendextend | 1.17.1 | densEstBayes | 1.0-2.2 |
densvis | 1.12.1 | DEoptimR | 1.1-3 |
DEP | 1.24.0 | DepecheR | 1.18.0 |
DepInfeR | 1.6.0 | depmap | 1.16.0 |
depmixS4 | 1.5-0 | DEqMS | 1.20.0 |
derfinder | 1.36.0 | derfinderHelper | 1.36.0 |
derfinderPlot | 1.36.0 | Deriv | 4.1.3 |
desc | 1.4.3 | DEScan2 | 1.22.0 |
DescTools | 0.99.54 | DESeq2 | 1.42.1 |
DEsingle | 1.22.0 | deSolve | 1.40 |
DESpace | 1.2.1 | destiny | 3.16.0 |
DEsubs | 1.28.0 | devtools | 2.4.5 |
DEWSeq | 1.16.2 | DExMA | 1.10.7 |
DExMAdata | 1.10.0 | DEXSeq | 1.48.0 |
DFP | 1.60.0 | DGEobj | 1.1.2 |
DGEobj.utils | 1.0.6 | dgof | 1.4 |
diagram | 1.6.5 | DiagrammeR | 1.0.11 |
DIAlignR | 2.10.0 | diceR | 2.2.0 |
dichromat | 2.0-0.1 | DiffBind | 3.12.0 |
diffcoexp | 1.22.0 | DiffCorr | 0.4.3 |
diffcyt | 1.22.1 | DifferentialRegulation | 2.0.3 |
diffGeneAnalysis | 1.84.0 | diffHic | 1.34.0 |
DiffLogo | 2.26.0 | diffobj | 0.3.5 |
diffr | 0.1 | diffuStats | 1.22.0 |
diffUTR | 1.10.0 | digest | 0.6.35 |
diggit | 1.34.0 | Dino | 1.8.0 |
diptest | 0.77-0 | dir.expiry | 1.10.0 |
directlabels | 2024.1.21 | Director | 1.28.0 |
directPA | 1.5.1 | DirichletMultinomial | 1.44.0 |
DirichletReg | 0.7-1 | dirmult | 0.1.3-5 |
discordant | 1.26.0 | DiscoRhythm | 1.18.0 |
distances | 0.1.10 | distillery | 1.2-1 |
distinct | 1.14.5 | distr | 2.9.3 |
distrEx | 2.9.2 | distributional | 0.4.0 |
distributions3 | 0.2.1 | dittoSeq | 1.14.3 |
divergence | 1.18.0 | dixonTest | 1.0.4 |
dks | 1.48.0 | DMCFB | 1.16.1 |
DMCHMM | 1.24.0 | dml | 1.1.0 |
DMRcaller | 1.34.0 | DMRcate | 2.16.1 |
DMRScan | 1.24.0 | dmrseq | 1.22.1 |
DMwR2 | 0.0.2 | DNABarcodeCompatibility | 1.18.0 |
DNABarcodes | 1.32.0 | DNAcopy | 1.76.0 |
DNAfusion | 1.4.0 | DNAshapeR | 1.30.0 |
dnet | 1.1.7 | doBy | 4.6.20 |
docopt | 0.7.1 | doFuture | 1.0.1 |
doMC | 1.3.8 | DominoEffect | 1.22.0 |
doParallel | 1.0.17 | doppelgangR | 1.30.0 |
doRNG | 1.8.6 | dorothea | 1.14.1 |
Doscheda | 1.24.0 | DOSE | 3.28.2 |
doseR | 1.18.0 | doSNOW | 1.0.20 |
dotCall64 | 1.1-1 | doubletrouble | 1.2.5 |
downlit | 0.4.3 | downloader | 0.4 |
downloadthis | 0.3.3 | dplyr | 1.1.4 |
dqrng | 0.3.2 | drawer | 0.2.0.1 |
drawProteins | 1.22.2 | drc | 3.0-1 |
dreamlet | 1.0.3 | DrImpute | 1.0 |
DRIMSeq | 1.30.0 | DriverNet | 1.42.0 |
DropletUtils | 1.22.0 | drtmle | 1.1.2 |
drugTargetInteractions | 1.10.1 | DrugVsDisease | 2.44.0 |
DrugVsDiseasedata | 1.38.0 | DSS | 2.50.1 |
dStruct | 1.8.0 | DT | 0.32 |
DTA | 2.48.0 | dtangle | 2.0.9 |
dtplyr | 1.3.1 | dtt | 0.1-2 |
dtw | 1.23-1 | duckdb | 0.10.0 |
Dune | 1.14.0 | dunn.test | 1.3.5 |
dupRadar | 1.32.0 | dyebias | 1.62.0 |
dynamicTreeCut | 1.63-1 | DynDoc | 1.80.0 |
e1071 | 1.7-14 | earth | 5.3.3 |
easier | 1.8.0 | easierData | 1.8.0 |
easycsv | 1.0.8 | easylift | 1.0.0 |
easyPubMed | 2.13 | easyreporting | 1.14.0 |
easyRNASeq | 2.38.0 | EBarrays | 2.66.0 |
EBcoexpress | 1.46.0 | EBImage | 4.44.0 |
EBSEA | 1.30.0 | EBSeq | 2.0.0 |
EBSeqHMM | 1.35.0 | echarts4r | 0.4.5 |
ecolitk | 1.74.0 | ECOSolveR | 0.5.5 |
ecp | 3.1.5 | Ecume | 0.9.1 |
EDASeq | 2.36.0 | edge | 2.34.0 |
edgeR | 4.0.16 | EDIRquery | 1.2.0 |
eds | 1.4.0 | effsize | 0.8.1 |
EGAD | 1.30.0 | egg | 0.4.5 |
EGSEA | 1.30.1 | EGSEAdata | 1.30.0 |
einsum | 0.1.2 | eiR | 1.42.0 |
eisaR | 1.14.1 | elasticnet | 1.3 |
elitism | 1.1.1 | ellipse | 0.5.0 |
ellipsis | 0.3.2 | ELMER | 2.26.0 |
ELMER.data | 2.26.0 | emdbook | 1.3.13 |
emdist | 0.3-3 | EMDomics | 2.32.0 |
emmeans | 1.10.0 | EmpiricalBrownsMethod | 1.30.0 |
energy | 1.7-11 | english | 1.2-6 |
EnhancedVolcano | 1.20.0 | enhancerHomologSearch | 1.8.3 |
EnMCB | 1.14.0 | ENmix | 1.38.01 |
EnrichedHeatmap | 1.32.0 | EnrichmentBrowser | 2.32.0 |
enrichplot | 1.22.0 | enrichR | 3.2 |
enrichTF | 1.18.0 | enrichViewNet | 1.0.0 |
EnsDb.Hsapiens.v75 | 2.99.0 | EnsDb.Hsapiens.v79 | 2.99.0 |
EnsDb.Hsapiens.v86 | 2.99.0 | EnsDb.Mmusculus.v79 | 2.99.0 |
ensembldb | 2.26.0 | ensemblVEP | 1.44.0 |
ensurer | 1.1 | entropy | 1.3.1 |
enviPat | 2.6 | EnvStats | 2.8.1 |
epialleleR | 1.10.0 | EpiCompare | 1.6.7 |
epidecodeR | 1.10.0 | EpiDISH | 2.18.0 |
epigenomix | 1.42.0 | epigraHMM | 1.10.0 |
EpiMix | 1.4.0 | EpiMix.data | 1.4.0 |
epimutacions | 1.6.1 | epimutacionsData | 1.6.0 |
epiNEM | 1.26.0 | epiR | 2.0.70 |
epistack | 1.8.0 | epistasisGA | 1.4.0 |
EpiTxDb | 1.14.1 | epivizr | 2.32.0 |
epivizrChart | 1.24.0 | epivizrData | 1.30.0 |
epivizrServer | 1.30.0 | epivizrStandalone | 1.30.0 |
erccdashboard | 1.36.0 | erma | 1.18.0 |
ERSSA | 1.20.0 | esATAC | 1.24.0 |
escape | 1.12.0 | escheR | 1.2.0 |
esetVis | 1.28.2 | estimability | 1.5 |
etrunct | 0.1 | eudysbiome | 1.32.0 |
eulerr | 7.0.1 | eva | 0.2.6 |
evaluate | 0.23 | evaluomeR | 1.18.0 |
evd | 2.3-6.1 | EventPointer | 3.10.0 |
evmix | 2.12 | EWCE | 1.10.2 |
ewceData | 1.10.0 | Exact | 3.2 |
exactRankTests | 0.8-35 | excelR | 0.4.0 |
ExCluster | 1.20.0 | ExiMiR | 2.44.0 |
exomeCopy | 1.48.0 | exomePeak2 | 1.14.3 |
ExperimentHub | 2.10.0 | ExperimentHubData | 1.28.0 |
ExperimentSubset | 1.12.0 | ExploreModelMatrix | 1.14.0 |
expm | 0.999-9 | ExpressionAtlas | 1.30.0 |
ExtDist | 0.7-2 | extraChIPs | 1.6.1 |
extraDistr | 1.10.0 | extrafont | 0.19 |
extrafontdb | 1.0 | extRemes | 2.1-4 |
EZtune | 3.1.1 | faahKO | 1.42.0 |
fabia | 2.48.0 | fabricatr | 1.0.2 |
factDesign | 1.78.0 | factoextra | 1.0.7 |
FactoMineR | 2.10 | factR | 1.4.0 |
FamAgg | 1.30.0 | famat | 1.12.0 |
fANCOVA | 0.6-1 | fansi | 1.0.6 |
farver | 2.1.1 | fastcluster | 1.2.6 |
fastDummies | 1.7.3 | fastICA | 1.2-4 |
fastLiquidAssociation | 1.38.0 | fastmap | 1.1.1 |
fastmatch | 1.1-4 | FastqCleaner | 1.20.0 |
fastreeR | 1.6.0 | fastseg | 1.48.0 |
fauxpas | 0.5.2 | fBasics | 4032.96 |
fCCAC | 1.28.0 | fCI | 1.32.0 |
FCPS | 1.3.4 | fcScan | 1.16.0 |
fda | 6.1.8 | FDb.InfiniumMethylation.hg19 | 2.2.0 |
fdrame | 1.74.0 | fdrtool | 1.2.17 |
fds | 1.8 | FEAST | 1.10.0 |
FeatSeekR | 1.2.0 | feature | 1.2.15 |
fedup | 1.10.0 | FELLA | 1.22.0 |
fenr | 1.0.5 | ff | 4.0.12 |
ffpe | 1.46.0 | fftw | 1.0-8 |
fftwtools | 0.9-11 | fGarch | 4032.91 |
fgga | 1.10.2 | FGNet | 3.36.0 |
fgsea | 1.28.0 | fields | 15.2 |
filehash | 2.4-5 | filelock | 1.0.3 |
filematrix | 1.3 | FilterFFPE | 1.12.0 |
FindIT2 | 1.8.0 | findpython | 1.0.8 |
fingerprint | 3.5.7 | FIs | 1.30.0 |
FISHalyseR | 1.36.0 | fishpond | 2.8.0 |
fission | 1.22.0 | fit.models | 0.64 |
fitdistrplus | 1.1-11 | FitHiC | 1.28.0 |
flagme | 1.58.0 | FLAMES | 1.8.0 |
flashClust | 1.01-2 | flatxml | 0.1.1 |
flexclust | 1.4-1 | flexdashboard | 0.6.2 |
flexmix | 2.3-19 | flextable | 0.9.5 |
float | 0.3-2 | flock | 0.7 |
flowAI | 1.32.0 | flowBeads | 1.40.0 |
flowBin | 1.38.0 | flowcatchR | 1.36.0 |
flowCHIC | 1.36.0 | flowClean | 1.40.0 |
flowClust | 3.40.0 | flowCore | 2.14.2 |
flowCut | 1.12.0 | flowCyBar | 1.38.0 |
flowDensity | 1.36.1 | flowFP | 1.60.0 |
flowGate | 1.2.0 | flowGraph | 1.10.0 |
flowMatch | 1.38.0 | flowMeans | 1.62.0 |
flowMerge | 2.50.0 | flowPeaks | 1.48.0 |
flowPloidy | 1.28.0 | flowPlots | 1.50.0 |
FlowSOM | 2.10.0 | FlowSorted.Blood.450k | 1.40.0 |
flowSpecs | 1.16.0 | flowStats | 4.14.1 |
flowTime | 1.26.0 | flowTrans | 1.54.0 |
flowViz | 1.66.0 | flowVS | 1.34.0 |
flowWorkspace | 4.14.3 | fmcsR | 1.44.0 |
FME | 1.3.6.3 | fmrs | 1.12.0 |
fmsb | 0.7.6 | FMStable | 0.1-4 |
FNN | 1.1.4 | fobitools | 1.10.0 |
fontawesome | 0.5.2 | fontBitstreamVera | 0.1.1 |
fontLiberation | 0.1.0 | fontquiver | 0.2.1 |
forcats | 1.0.0 | foreach | 1.5.2 |
forecast | 8.22.0 | forestplot | 3.1.3 |
formatR | 1.14 | formattable | 0.2.1 |
Formula | 1.2-5 | formula.tools | 1.7.1 |
fpc | 2.2-11 | fracdiff | 1.5-3 |
FRASER | 1.14.1 | frenchFISH | 1.14.0 |
FreqProf | 0.0.1 | fresh | 0.2.0 |
FRGEpistasis | 1.38.0 | frma | 1.54.0 |
frmaTools | 1.54.0 | fs | 1.6.3 |
FSelector | 0.34 | fst | 0.9.8 |
fstcore | 0.9.18 | FunChIP | 1.28.0 |
funtooNorm | 1.26.0 | furrr | 0.3.1 |
FuseSOM | 1.4.0 | futile.logger | 1.4.3 |
futile.options | 1.0.1 | future | 1.33.1 |
future.apply | 1.11.1 | fuzzyjoin | 0.1.6 |
GA | 3.2.4 | GA4GHclient | 1.26.0 |
GA4GHshiny | 1.24.0 | gaga | 2.48.0 |
gage | 2.52.0 | gaggle | 1.70.0 |
gam | 1.22-3 | gamlss | 5.4-20 |
gamlss.data | 6.0-6 | gamlss.dist | 6.1-1 |
gap | 1.5-3 | gap.datasets | 0.0.6 |
GAprediction | 1.28.0 | garfield | 1.30.0 |
gargle | 1.5.2 | GARS | 1.22.0 |
GateFinder | 1.22.0 | gatom | 1.0.0 |
gbm | 2.1.9 | GBScleanR | 1.6.0 |
gbutils | 0.5 | gcapc | 1.26.0 |
gcatest | 2.2.0 | gclus | 1.3.2 |
gCrisprTools | 2.8.0 | gcrma | 2.74.0 |
gcspikelite | 1.40.0 | gdata | 3.0.0 |
GDCRNATools | 1.22.0 | gDNAx | 1.0.2 |
gDR | 1.0.0 | gDRcore | 1.0.1 |
gDRimport | 1.0.0 | gDRstyle | 1.0.0 |
gDRutils | 1.0.0 | GDSArray | 1.22.0 |
gdsfmt | 1.38.0 | gdtools | 0.3.7 |
geeM | 0.10.1 | geepack | 1.3.10 |
geigen | 2.3 | GEM | 1.28.0 |
gemini | 1.16.0 | gemma.R | 2.0.0 |
genalg | 0.2.1 | genArise | 1.78.0 |
geneAttribution | 1.28.0 | GeneBreak | 1.32.0 |
geneClassifiers | 1.26.0 | GeneExpressionSignature | 1.48.0 |
genefilter | 1.84.0 | genefu | 2.34.0 |
GeneGA | 1.52.0 | GeneGeneInteR | 1.28.0 |
geneLenDataBase | 1.38.0 | GeneMeta | 1.74.0 |
GeneNet | 1.2.16 | GeneNetworkBuilder | 1.44.0 |
GeneOverlap | 1.38.0 | geneplast | 1.28.0 |
geneplotter | 1.80.0 | geneRecommender | 1.74.0 |
GeneRegionScan | 1.58.0 | generics | 0.1.3 |
geneRxCluster | 1.38.0 | GeneSelectMMD | 2.46.0 |
GENESIS | 2.32.0 | GeneStructureTools | 1.22.0 |
geNetClassifier | 1.42.0 | genetics | 1.3.8.1.3 |
GeneticsPed | 1.64.0 | GeneTonic | 2.6.0 |
geneXtendeR | 1.28.0 | GENIE3 | 1.24.0 |
genieclust | 1.1.5-2 | genlasso | 1.6.1 |
GENLIB | 1.1.10 | genoCN | 1.54.0 |
genomation | 1.34.0 | GenomAutomorphism | 1.4.0 |
GenomeInfoDb | 1.38.8 | GenomeInfoDbData | 1.2.11 |
genomeIntervals | 1.58.0 | genomes | 3.32.0 |
GenomicAlignments | 1.38.2 | GenomicDataCommons | 1.26.0 |
GenomicDistributions | 1.10.0 | GenomicFeatures | 1.54.4 |
GenomicFiles | 1.38.0 | genomicInstability | 1.8.0 |
GenomicInteractionNodes | 1.6.0 | GenomicInteractions | 1.36.0 |
GenomicOZone | 1.16.0 | GenomicPlot | 1.0.5 |
GenomicRanges | 1.54.1 | GenomicScores | 2.14.3 |
GenomicState | 0.99.15 | GenomicSuperSignature | 1.10.0 |
GenomicTools.fileHandler | 0.1.5.9 | GenomicTuples | 1.36.0 |
GenProSeq | 1.6.0 | GenSA | 1.1.14 |
GenVisR | 1.34.0 | GeoDiff | 1.8.0 |
GEOexplorer | 1.8.0 | GEOfastq | 1.10.0 |
GEOmetadb | 1.64.0 | geometry | 0.4.7 |
GeomxTools | 3.6.2 | GEOquery | 2.70.0 |
geosphere | 1.5-18 | GEOsubmission | 1.54.0 |
GeoTcgaData | 2.2.0 | gep2pep | 1.22.0 |
gert | 2.0.1 | gespeR | 1.34.0 |
getDEE2 | 1.12.0 | getopt | 1.20.4 |
GetoptLong | 1.0.5 | getPass | 0.2-4 |
geva | 1.10.0 | GEWIST | 1.46.0 |
gfonts | 0.2.0 | gg4way | 1.0.2 |
ggalluvial | 0.12.5 | GGally | 2.2.1 |
ggalt | 0.4.0 | gganimate | 1.0.9 |
ggbeeswarm | 0.7.2 | ggbio | 1.50.0 |
ggbump | 0.1.0 | ggcorrplot | 0.1.4.1 |
ggcyto | 1.30.2 | 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.16 |
ggfun | 0.1.4 | gggenes | 0.5.1 |
ggh4x | 0.2.8 | gghalves | 0.1.4 |
gghighlight | 0.4.1 | ggimage | 0.3.3 |
ggiraph | 0.8.9 | ggkegg | 1.0.13 |
ggm | 2.5.1 | ggmanh | 1.6.0 |
ggmcmc | 1.5.1.1 | ggmsa | 1.8.0 |
ggnetwork | 0.5.13 | ggnewscale | 0.4.10 |
GGPA | 1.14.0 | ggplot.multistats | 1.0.0 |
ggplot2 | 3.5.0 | ggplotify | 0.1.2 |
ggpmisc | 0.5.5 | ggpp | 0.5.6 |
ggprism | 1.0.4 | ggpubr | 0.6.0 |
ggraph | 2.2.1 | ggrastr | 1.0.2 |
ggrepel | 0.9.5 | ggridges | 0.5.6 |
ggsc | 1.0.2 | ggsci | 3.0.2 |
ggseqlogo | 0.2 | ggside | 0.3.1 |
ggsignif | 0.6.4 | ggspavis | 1.8.1 |
ggstar | 1.0.4 | ggstats | 0.5.1 |
ggtext | 0.1.2 | ggthemes | 5.1.0 |
ggtree | 3.10.1 | ggtreeDendro | 1.4.0 |
ggtreeExtra | 1.12.0 | ggupset | 0.3.0 |
ggvenn | 0.1.10 | ggvis | 0.4.9 |
ggwordcloud | 0.6.1 | gh | 1.4.0 |
GIGSEA | 1.20.0 | girafe | 1.54.0 |
GISPA | 1.26.0 | gistr | 0.9.0 |
git2r | 0.33.0 | gitcreds | 0.1.2 |
GLAD | 2.66.0 | GladiaTOX | 1.18.0 |
glasso | 1.11 | gld | 2.6.6 |
Glimma | 2.12.0 | glm2 | 1.2.1 |
glmGamPoi | 1.14.3 | glmmTMB | 1.1.8 |
glmnet | 4.1-8 | glmpca | 0.2.0 |
glmSparseNet | 1.20.1 | GlobalAncova | 4.20.0 |
GlobalOptions | 0.1.2 | globals | 0.16.3 |
globalSeq | 1.30.0 | globaltest | 5.56.0 |
GloScope | 1.0.0 | glue | 1.7.0 |
gmapR | 1.44.0 | GmicR | 1.16.0 |
gmm | 1.8 | gmodels | 2.19.1 |
gmoviz | 1.14.0 | gmp | 0.7-4 |
GMRP | 1.30.0 | GNET2 | 1.18.0 |
gnm | 1.1-5 | GNOSIS | 1.0.0 |
GO.db | 3.18.0 | GOexpress | 1.36.0 |
GoFKernel | 2.1-1 | goftest | 1.2-3 |
GOfuncR | 1.22.2 | golem | 0.4.1 |
googleAuthR | 2.0.1 | googledrive | 2.1.1 |
googlesheets4 | 1.1.1 | googleVis | 0.7.1 |
GOpro | 1.28.0 | goProfiles | 1.64.0 |
GOSemSim | 2.28.1 | goseq | 1.54.0 |
GOSim | 1.40.0 | goSorensen | 1.4.0 |
goSTAG | 1.26.0 | GOstats | 2.68.0 |
GOsummaries | 2.37.0 | GOTHiC | 1.38.0 |
goTools | 1.76.0 | gower | 1.0.1 |
GPA | 1.14.0 | gplots | 3.1.3.1 |
gpls | 1.74.0 | gProfileR | 0.7.0 |
gprofiler2 | 0.2.3 | gpuMagic | 1.18.0 |
gRain | 1.4.1 | GRaNIE | 1.6.1 |
granulator | 1.10.0 | graper | 1.18.0 |
graph | 1.80.0 | GraphAlignment | 1.66.0 |
GraphAT | 1.74.0 | graphite | 1.48.0 |
graphlayouts | 1.1.1 | GraphPAC | 1.44.0 |
gRbase | 2.0.1 | GRENITS | 1.54.0 |
GreyListChIP | 1.34.0 | gridBase | 0.4-7 |
gridExtra | 2.3 | gridGraphics | 0.5-1 |
gridSVG | 1.7-5 | gridtext | 0.1.5 |
grImport | 0.9-7 | GRmetrics | 1.28.0 |
groHMM | 1.36.0 | grr | 0.9.5 |
GSA | 1.03.2 | GSALightning | 1.30.0 |
GSAR | 1.36.0 | GSCA | 2.32.0 |
gscreend | 1.16.1 | GSEABase | 1.64.0 |
GSEABenchmarkeR | 1.22.0 | GSEAlm | 1.62.0 |
GSEAmining | 1.12.0 | gsean | 1.22.0 |
GSgalgoR | 1.12.0 | gsl | 2.1-8 |
gsmoothr | 0.1.7 | gson | 0.1.0 |
GSReg | 1.36.0 | GSRI | 2.50.0 |
gss | 2.2-7 | gstat | 2.1-1 |
gsubfn | 0.7 | GSVA | 1.50.1 |
GSVAdata | 1.38.0 | gtable | 0.3.4 |
gtools | 3.9.5 | gtrellis | 1.34.0 |
GUIDEseq | 1.32.0 | Guitar | 2.18.0 |
GUniFrac | 1.8 | Gviz | 1.46.1 |
GWAS.BAYES | 1.12.0 | gwascat | 2.34.0 |
GWASExactHW | 1.2 | GWASTools | 1.48.0 |
gwasurvivr | 1.20.0 | GWENA | 1.12.0 |
h5vc | 2.36.0 | h5vcData | 2.22.0 |
hapFabia | 1.44.0 | hardhat | 1.3.1 |
HardyWeinberg | 1.7.5 | Harman | 1.30.0 |
harmonicmeanp | 3.0.1 | HarmonizR | 1.0.0 |
harmony | 1.2.0 | Harshlight | 1.74.0 |
hash | 2.2.6.3 | haven | 2.5.4 |
hca | 1.10.1 | HDCI | 1.0-2 |
HDF5Array | 1.30.1 | hdf5r | 1.3.10 |
HDInterval | 0.2.4 | HDO.db | 0.99.1 |
hdrcde | 3.4 | HDTD | 1.36.0 |
heatmap3 | 1.1.9 | heatmaply | 1.5.0 |
heatmaps | 1.26.0 | Heatplus | 3.10.0 |
HelloRanges | 1.28.0 | HELP | 1.60.0 |
HEM | 1.74.0 | here | 1.0.1 |
hermes | 1.6.1 | HERON | 1.0.0 |
Herper | 1.12.0 | hexbin | 1.28.3 |
HGC | 1.10.0 | HGNChelper | 0.8.1 |
hgu133a.db | 3.13.0 | hgu133a2.db | 3.13.0 |
hgu133plus2.db | 3.13.0 | hgu95a.db | 3.13.0 |
hgu95av2.db | 3.13.0 | HH | 3.1-52 |
hiAnnotator | 1.36.0 | HIBAG | 1.38.2 |
HiCBricks | 1.20.0 | HiCcompare | 1.24.0 |
HiCDCPlus | 1.10.0 | HiCDOC | 1.4.1 |
HiCExperiment | 1.2.0 | HiContacts | 1.4.0 |
HiCool | 1.2.0 | hicVennDiagram | 1.0.2 |
HiddenMarkov | 1.8-13 | hierGWAS | 1.32.0 |
hierinf | 1.20.0 | highcharter | 0.9.4 |
highr | 0.10 | HilbertCurve | 1.32.0 |
HilbertVis | 1.60.0 | HilbertVisGUI | 1.60.0 |
HiLDA | 1.16.0 | hipathia | 3.2.0 |
HIPPO | 1.14.0 | hiReadsProcessor | 1.38.0 |
HIREewas | 1.20.0 | HiTC | 1.46.0 |
HiveR | 0.3.63 | hmdbQuery | 1.22.0 |
Hmisc | 5.1-2 | HMMcopy | 1.44.0 |
hms | 1.1.3 | Homo.sapiens | 1.3.1 |
homologene | 1.4.68.19.3.27 | hoodscanR | 1.0.0 |
hopach | 2.62.0 | howmany | 0.3-1 |
HPAanalyze | 1.20.0 | hpar | 1.44.0 |
HPiP | 1.8.0 | hrbrthemes | 0.8.7 |
HSMMSingleCell | 1.22.0 | htm2txt | 2.2.2 |
htmlTable | 2.4.2 | htmltools | 0.5.7 |
HTMLUtils | 0.1.9 | htmlwidgets | 1.6.4 |
HTqPCR | 1.56.0 | HTSCluster | 2.0.11 |
HTSeqGenie | 4.32.0 | HTSFilter | 1.42.0 |
httpcache | 1.2.0 | httpcode | 0.3.0 |
httpuv | 1.6.14 | httr | 1.4.7 |
httr2 | 1.0.0 | HubPub | 1.10.1 |
huge | 1.3.5 | HumanTranscriptomeCompendium | 1.17.0 |
hummingbird | 1.12.0 | hunspell | 3.0.3 |
hwriter | 1.3.2.1 | HybridMTest | 1.46.0 |
hypeR | 2.0.0 | hyperdraw | 1.54.0 |
hypergraph | 1.74.0 | iASeq | 1.46.0 |
iasva | 1.20.0 | iBBiG | 1.46.0 |
ibh | 1.50.0 | iBMQ | 1.42.0 |
iC10 | 1.5 | iC10TrainingData | 1.3.1 |
ica | 1.0-3 | iCARE | 1.30.0 |
Icens | 1.74.0 | icetea | 1.20.0 |
iCheck | 1.32.0 | iChip | 1.56.0 |
iClusterPlus | 1.38.0 | iCNV | 1.22.0 |
iCOBRA | 1.30.0 | ICS | 1.4-1 |
ICSNP | 1.1-2 | ideal | 1.26.0 |
IdeoViz | 1.37.0 | idiogram | 1.78.0 |
IDPmisc | 1.1.21 | idpr | 1.12.0 |
idr | 1.3 | idr2d | 1.16.0 |
ids | 1.0.1 | IFAA | 1.4.0 |
iGC | 1.32.0 | IgGeneUsage | 1.16.0 |
igraph | 2.0.3 | igvR | 1.22.0 |
IHW | 1.30.0 | Illumina450ProbeVariants.db | 1.38.0 |
IlluminaHumanMethylation450kanno.ilmn12.hg19 | 0.6.1 | IlluminaHumanMethylation450kmanifest | 0.4.0 |
IlluminaHumanMethylationEPICanno.ilm10b2.hg19 | 0.6.0 | IlluminaHumanMethylationEPICanno.ilm10b4.hg19 | 0.6.0 |
IlluminaHumanMethylationEPICmanifest | 0.3.0 | illuminaio | 0.44.0 |
ILoReg | 1.12.1 | imager | 0.45.8 |
IMAS | 1.26.0 | imcRtools | 1.8.0 |
IMMAN | 1.22.0 | ImmuneSpaceR | 1.30.0 |
immunoClust | 1.34.0 | immunotation | 1.10.0 |
imp4p | 1.2 | IMPCdata | 1.38.0 |
import | 1.3.2 | impute | 1.76.0 |
imputeLCMD | 2.1 | inaparc | 1.2.0 |
INDEED | 2.16.0 | ineq | 0.2-13 |
iNETgrate | 1.0.0 | infercnv | 1.18.1 |
infinityFlow | 1.12.0 | Informeasure | 1.12.1 |
infotheo | 1.2.0.1 | ini | 0.3.1 |
inline | 0.3.19 | InPAS | 2.10.0 |
INPower | 1.38.0 | insight | 0.19.9 |
INSPEcT | 1.32.1 | INTACT | 1.2.0 |
InTAD | 1.22.0 | intansv | 1.42.0 |
interacCircos | 1.12.0 | InteractionSet | 1.30.0 |
InteractiveComplexHeatmap | 1.10.0 | interactiveDisplay | 1.40.0 |
interactiveDisplayBase | 1.40.0 | InterCellar | 2.8.0 |
IntEREst | 1.26.0 | intergraph | 2.0-4 |
InterMineR | 1.24.0 | interp | 1.1-6 |
intervals | 0.15.4 | IntOMICS | 1.2.0 |
IntramiRExploreR | 1.24.0 | intrinsicDimension | 1.2.0 |
inum | 1.0-5 | InvariantCausalPrediction | 0.8 |
invgamma | 1.1 | IONiseR | 2.26.0 |
iPAC | 1.46.0 | ipdDb | 1.20.0 |
IPO | 1.28.0 | ipred | 0.9-14 |
IRanges | 2.36.0 | IRdisplay | 1.1 |
IRkernel | 1.3.2 | irlba | 2.3.5.1 |
irr | 0.84.1 | isa2 | 0.3.6 |
ISAnalytics | 1.12.0 | iSEE | 2.14.0 |
iSEEde | 1.0.0 | iSEEhex | 1.4.0 |
iSEEhub | 1.4.0 | iSEEindex | 1.0.0 |
iSEEpathways | 1.0.0 | iSEEu | 1.14.0 |
iSeq | 1.54.0 | ISLET | 1.4.0 |
Iso | 0.0-21 | isoband | 0.2.7 |
isobar | 1.48.0 | IsoBayes | 1.0.1 |
ISOcodes | 2024.02.12 | IsoCorrectoR | 1.20.0 |
IsoCorrectoRGUI | 1.18.0 | IsoformSwitchAnalyzeR | 2.2.0 |
ISoLDE | 1.30.0 | isomiRs | 1.30.0 |
isotree | 0.5.24-3 | isva | 1.9 |
ITALICS | 2.62.0 | ITALICSData | 2.40.0 |
iterativeBMA | 1.60.0 | iterativeBMAsurv | 1.60.0 |
iterators | 1.0.14 | iterClust | 1.24.0 |
itertools | 0.1-3 | IVAS | 2.22.0 |
ivygapSE | 1.24.0 | IWTomics | 1.26.0 |
JADE | 2.0-4 | janeaustenr | 1.0.0 |
janitor | 2.2.0 | JASPAR2016 | 1.30.0 |
JASPAR2018 | 1.1.1 | jomo | 2.7-6 |
jpeg | 0.1-10 | jquerylib | 0.1.4 |
jsonlite | 1.8.8 | jsonvalidate | 1.3.2 |
kableExtra | 1.4.0 | karyoploteR | 1.28.0 |
katdetectr | 1.4.0 | KBoost | 1.10.0 |
KCsmart | 2.60.0 | kde1d | 1.0.7 |
kebabs | 1.36.0 | KEGGandMetacoreDzPathwaysGEO | 1.22.0 |
KEGGdzPathwaysGEO | 1.40.0 | KEGGgraph | 1.62.0 |
KEGGlincs | 1.28.0 | keggorthology | 2.54.0 |
KEGGREST | 1.42.0 | Kendall | 2.2.1 |
keras | 2.13.0 | kernlab | 0.9-32 |
kinship2 | 1.9.6 | KinSwingR | 1.20.0 |
kissDE | 1.22.0 | kknn | 1.3.1 |
klaR | 1.7-3 | km.ci | 0.5-6 |
kmer | 1.1.2 | KMsurv | 0.1-5 |
knitr | 1.45 | knitrBootstrap | 1.0.3 |
knn.covertree | 1.0 | KnowSeq | 1.16.0 |
KOdata | 1.28.0 | kohonen | 3.0.12 |
koRpus | 0.13-8 | koRpus.lang.en | 0.1-4 |
kpeaks | 1.1.0 | kpmt | 0.1.0 |
kriging | 1.2 | ks | 1.14.2 |
kSamples | 1.2-10 | labeling | 0.4.3 |
labelled | 2.12.0 | LACE | 2.6.1 |
laeken | 0.5.3 | lambda.r | 1.2.4 |
LambertW | 0.6.9-1 | lamW | 2.2.3 |
LaplacesDemon | 16.1.6 | lapmix | 1.68.0 |
lars | 1.3 | later | 1.3.2 |
latex2exp | 0.9.6 | latticeExtra | 0.6-30 |
lava | 1.8.0 | lavaan | 0.6-17 |
lazyeval | 0.2.2 | LBE | 1.70.0 |
lbfgs | 1.2.1.2 | ldblock | 1.32.0 |
LEA | 3.14.0 | leaps | 3.1 |
learnr | 0.11.5 | LedPred | 1.36.0 |
lefser | 1.12.1 | leiden | 0.4.3.1 |
leidenbase | 0.1.27 | lemur | 1.0.5 |
les | 1.52.0 | levi | 1.20.0 |
lexicon | 1.2.1 | lfa | 2.2.0 |
lfda | 1.1.3 | lgr | 0.4.4 |
lhs | 1.1.6 | libcoin | 1.0-10 |
LiblineaR | 2.10-23 | lifecycle | 1.0.4 |
liger | 2.0.1 | LIM | 1.4.7.1 |
limma | 3.58.1 | limmaGUI | 1.78.0 |
limSolve | 1.5.7.1 | LineagePulse | 1.21.0 |
lineagespot | 1.6.0 | linkcomm | 1.0-14 |
LinkHD | 1.16.0 | Linnorm | 2.26.0 |
linprog | 0.9-4 | LinTInd | 1.6.0 |
lintr | 3.1.1 | lionessR | 1.16.0 |
lipidr | 2.16.0 | LiquidAssociation | 1.56.0 |
lisaClust | 1.10.1 | listenv | 0.9.1 |
lmdme | 1.44.0 | lme4 | 1.1-35.1 |
lmerTest | 3.1-3 | lmodel2 | 1.7-3 |
lmom | 3.0 | Lmoments | 1.3-1 |
lmtest | 0.9-40 | LOBSTAHS | 1.28.0 |
lobstr | 1.1.2 | locfdr | 1.1-8 |
locfit | 1.5-9.9 | loci2path | 1.22.0 |
log4r | 0.4.3 | logger | 0.3.0 |
logging | 0.10-108 | logicFS | 2.22.0 |
LogicReg | 1.6.6 | logistf | 1.26.0 |
logitnorm | 0.8.39 | logNormReg | 0.5-0 |
logr | 1.3.6 | logspline | 2.1.21 |
lokern | 1.1-10.1 | LOLA | 1.32.0 |
longitudinal | 1.1.13 | loo | 2.7.0 |
LoomExperiment | 1.20.0 | LPE | 1.76.0 |
LPEadj | 1.62.0 | lpNet | 2.34.2 |
lpSolve | 5.6.20 | lpSolveAPI | 5.5.2.0-17.11 |
lpsymphony | 1.30.0 | LRBaseDbi | 2.12.1 |
LRcell | 1.10.0 | lsa | 0.73.3 |
LSD | 4.1-0 | lsr | 0.5.2 |
lubridate | 1.9.3 | lumi | 2.54.0 |
lumiHumanAll.db | 1.22.0 | LungCancerACvsSCCGEO | 1.38.0 |
lwgeom | 0.2-14 | LymphoSeq | 1.30.0 |
LymphoSeqDB | 0.99.2 | M3C | 1.24.0 |
M3Drop | 1.28.0 | m6Aboost | 1.8.0 |
Maaslin2 | 1.16.0 | Macarron | 1.6.0 |
macat | 1.76.0 | maCorrPlot | 1.72.0 |
MACSQuantifyR | 1.16.0 | MACSr | 1.10.0 |
made4 | 1.76.0 | MADSEQ | 1.28.0 |
MafDb.1Kgenomes.phase3.hs37d5 | 3.10.0 | MafDb.ExAC.r1.0.hs37d5 | 3.10.0 |
MafDb.gnomADex.r2.1.hs37d5 | 3.10.0 | maftools | 2.18.0 |
MAGAR | 1.10.0 | MAGeCKFlute | 2.6.0 |
magic | 1.6-1 | magicaxis | 2.4.5 |
magick | 2.8.3 | magpie | 1.2.0 |
magrene | 1.4.0 | magrittr | 2.0.3 |
MAI | 1.8.0 | MAIT | 1.36.0 |
makecdfenv | 1.78.0 | MALDIquant | 1.22.2 |
MANOR | 1.74.0 | MantelCorr | 1.72.0 |
mapplots | 1.5.2 | mapproj | 1.2.11 |
maPredictDSC | 1.40.0 | maps | 3.4.2 |
mapscape | 1.26.0 | maptree | 1.4-8 |
mariner | 1.2.0 | markdown | 1.12 |
marr | 1.12.0 | marray | 1.80.0 |
martini | 1.22.0 | maser | 1.20.0 |
mashr | 0.2.79 | maSigPro | 1.74.0 |
maskBAD | 1.46.0 | MassArray | 1.54.0 |
massiR | 1.38.0 | MassSpecWavelet | 1.68.0 |
MAST | 1.28.0 | mastR | 1.2.3 |
matchBox | 1.44.0 | matchingR | 1.3.3 |
mathjaxr | 1.6-0 | matlab | 1.0.4 |
matrixcalc | 1.0-6 | MatrixEQTL | 2.3 |
MatrixExtra | 0.1.15 | MatrixGenerics | 1.14.0 |
MatrixModels | 0.5-3 | MatrixQCvis | 1.10.0 |
MatrixRider | 1.34.0 | matrixStats | 1.2.0 |
matrixTests | 0.2.3 | matter | 2.4.1 |
maxLik | 1.5-2 | maxstat | 0.7-25 |
MBA | 0.1-0 | MBAmethyl | 1.36.0 |
MBASED | 1.36.0 | MBCB | 1.56.0 |
MBECS | 1.6.0 | mbest | 0.6 |
mbkmeans | 1.18.0 | mboost | 2.9-9 |
mBPCR | 1.56.0 | MBQN | 2.14.0 |
mbQTL | 1.2.0 | MBttest | 1.30.0 |
MCbiclust | 1.26.0 | mcbiopi | 1.1.6 |
MCL | 1.0 | mclust | 6.1 |
mclustcomp | 0.3.3 | mcmc | 0.9-8 |
MCMCglmm | 2.35 | MCMCpack | 1.7-0 |
MCMCprecision | 0.4.0 | mco | 1.16 |
mCSEA | 1.22.0 | mCSEAdata | 1.22.0 |
mdp | 1.22.0 | mdqc | 1.64.0 |
MDTS | 1.22.0 | MEAL | 1.32.0 |
MeasurementError.cor | 1.74.0 | MEAT | 1.14.0 |
MEB | 1.16.0 | MEDIPS | 1.54.0 |
MEDME | 1.62.0 | mefa | 3.2-8 |
megadepth | 1.12.0 | MEIGOR | 1.36.2 |
Melissa | 1.18.0 | memes | 1.10.0 |
memoise | 2.0.1 | memuse | 4.2-3 |
Mergeomics | 1.30.0 | MeSHDbi | 1.38.0 |
meshes | 1.28.0 | meshr | 2.8.0 |
MesKit | 1.12.0 | MESS | 0.5.12 |
messina | 1.38.0 | metabCombiner | 1.12.0 |
metabinR | 1.4.0 | MetaboAnnotation | 1.6.1 |
MetaboCoreUtils | 1.10.0 | metaboliteIDmapping | 1.0.0 |
metabolomicsWorkbenchR | 1.12.0 | metabomxtr | 1.36.0 |
MetaboSignal | 1.32.1 | metaCCA | 1.30.0 |
MetaCycle | 1.2.0 | MetaCyto | 1.24.0 |
metadat | 1.2-0 | metafor | 4.4-0 |
metagene2 | 1.18.0 | metagenomeSeq | 1.43.0 |
metahdep | 1.60.0 | metaMA | 3.1.3 |
metaMS | 1.38.0 | MetaNeighbor | 1.22.0 |
metap | 1.9 | MetaPhOR | 1.4.0 |
metapod | 1.10.1 | metapone | 1.8.0 |
metaSeq | 1.42.0 | metaseqR2 | 1.14.0 |
MetBrewer | 0.2.0 | MetCirc | 1.32.0 |
methimpute | 1.24.0 | methInheritSim | 1.24.0 |
MethPed | 1.30.0 | MethReg | 1.12.0 |
methrix | 1.16.0 | MethTargetedNGS | 1.34.0 |
MethylAid | 1.36.0 | methylCC | 1.16.0 |
methylclock | 1.8.0 | methylclockData | 1.10.0 |
methylGSA | 1.20.0 | methylInheritance | 1.26.0 |
methylKit | 1.28.0 | MethylMix | 2.32.0 |
methylMnM | 1.40.0 | methylPipe | 1.36.0 |
methylscaper | 1.10.0 | MethylSeekR | 1.42.0 |
methylSig | 1.14.0 | methylumi | 2.48.0 |
MetID | 1.20.0 | MetNet | 1.20.0 |
metR | 0.15.0 | mfa | 1.24.0 |
Mfuzz | 2.62.0 | MGFM | 1.36.0 |
MGFR | 1.28.0 | MGLM | 0.2.1 |
mgsa | 1.50.0 | mgsub | 1.7.3 |
mhsmm | 0.4.21 | mia | 1.10.0 |
miaSim | 1.8.0 | miaViz | 1.10.0 |
mice | 3.16.0 | MiChip | 1.56.0 |
microbenchmark | 1.4.10 | microbiome | 1.24.0 |
microbiomeDASim | 1.16.0 | microbiomeExplorer | 1.12.0 |
microbiomeMarker | 1.8.0 | MicrobiomeProfiler | 1.8.0 |
MicrobiomeStat | 1.1 | MicrobiotaProcess | 1.14.0 |
microRNA | 1.60.0 | microSTASIS | 1.2.0 |
MICSQTL | 1.0.0 | midasHLA | 1.10.0 |
miloR | 1.10.0 | mimager | 1.26.0 |
mime | 0.12 | mina | 1.10.0 |
MineICA | 1.42.0 | minet | 3.60.0 |
minfi | 1.48.0 | MinimumDistance | 1.46.0 |
miniUI | 0.1.1.1 | minpack.lm | 1.2-4 |
minqa | 1.2.6 | MiPP | 1.74.0 |
miQC | 1.10.0 | MIRA | 1.24.0 |
MiRaGE | 1.44.0 | mirbase.db | 1.2.0 |
miRBaseVersions.db | 1.1.0 | miRcomp | 1.32.0 |
miRcompData | 1.32.0 | mirIntegrator | 1.32.0 |
miRLAB | 1.32.0 | miRNAmeConverter | 1.30.0 |
miRNApath | 1.62.0 | miRNAtap | 1.36.0 |
miRNAtap.db | 0.99.10 | mirTarRnaSeq | 1.10.0 |
misc3d | 0.9-1 | miscTools | 0.6-28 |
missForest | 1.5 | missMDA | 1.19 |
missMethyl | 1.36.0 | missRows | 1.22.0 |
mistyR | 1.10.0 | mitch | 1.14.0 |
mitml | 0.4-5 | mitoClone2 | 1.8.1 |
mitools | 2.4 | mixOmics | 6.26.0 |
mixsmsn | 1.1-10 | mixsqp | 0.3-54 |
mixtools | 2.0.0 | MKmisc | 1.9 |
mlapi | 0.1.1 | mlbench | 2.1-3.1 |
MLInterfaces | 1.82.0 | MLmetrics | 1.1.1 |
MLP | 1.50.0 | mlr3 | 0.18.0 |
mlr3learners | 0.6.0 | mlr3measures | 0.5.0 |
mlr3misc | 0.14.0 | mlr3tuning | 0.20.0 |
MLSeq | 2.20.0 | mltools | 0.3.5 |
mmand | 1.6.3 | MMDiff2 | 1.30.0 |
MMUPHin | 1.16.0 | mnem | 1.18.0 |
mnormt | 2.1.1 | moanin | 1.10.0 |
MobilityTransformR | 1.6.0 | mockery | 0.4.4 |
MODA | 1.28.0 | ModCon | 1.10.0 |
modeest | 2.4.0 | ModelMetrics | 1.2.2.2 |
modelr | 0.1.11 | modeltools | 0.2-23 |
Modstrings | 1.18.0 | MOFA2 | 1.12.1 |
MOFAdata | 1.18.0 | MOGAMUN | 1.12.0 |
mogsa | 1.36.0 | MoleculeExperiment | 1.2.2 |
MOMA | 1.14.0 | moments | 0.14.1 |
monaLisa | 1.8.0 | monocle | 2.30.0 |
Moonlight2R | 1.0.0 | MoonlightR | 1.28.0 |
mosaicCore | 0.9.4.0 | mosaics | 2.40.0 |
mosbi | 1.8.0 | MOSim | 1.16.0 |
Motif2Site | 1.6.0 | motifbreakR | 2.16.0 |
motifcounter | 1.26.0 | MotifDb | 1.44.0 |
motifmatchr | 1.24.0 | motifStack | 1.46.0 |
MouseFM | 1.12.0 | MPFE | 1.38.0 |
mpm | 1.0-23 | mpra | 1.24.0 |
MPRAnalyze | 1.20.0 | MQmetrics | 1.10.0 |
mrfDepth | 1.0.16 | mRMRe | 2.1.2.1 |
msa | 1.34.0 | MSA2dist | 1.6.0 |
MsBackendMassbank | 1.10.1 | MsBackendMgf | 1.10.0 |
MsBackendMsp | 1.6.0 | MsBackendRawFileReader | 1.8.1 |
MsBackendSql | 1.2.0 | MsCoreUtils | 1.14.1 |
msdata | 0.42.0 | MsDataHub | 1.2.0 |
MsExperiment | 1.4.0 | MsFeatures | 1.10.0 |
msgbsR | 1.26.0 | msgps | 1.3.5 |
msigdb | 1.10.0 | msigdbr | 7.5.1 |
msImpute | 1.12.0 | mslp | 1.4.0 |
msm | 1.7.1 | msmsEDA | 1.40.0 |
msmsTests | 1.40.0 | MSnbase | 2.28.1 |
MSnID | 1.36.0 | MSPrep | 1.12.0 |
msPurity | 1.28.0 | MSQC | 1.1.0 |
msqrob2 | 1.10.0 | MsQuality | 1.2.1 |
MSstats | 4.10.1 | MSstatsBig | 1.0.0 |
MSstatsConvert | 1.12.1 | MSstatsLiP | 1.8.1 |
MSstatsLOBD | 1.10.0 | MSstatsPTM | 2.4.4 |
MSstatsQC | 2.20.0 | MSstatsQCgui | 1.22.0 |
MSstatsShiny | 1.4.3 | MSstatsTMT | 2.10.0 |
MuData | 1.6.0 | Mulcom | 1.52.0 |
multcomp | 1.4-25 | multcompView | 0.1-10 |
MultiAssayExperiment | 1.28.0 | MultiBaC | 1.12.0 |
multiClust | 1.32.0 | multicool | 1.0.1 |
MultiDataSet | 1.30.0 | multiGSEA | 1.12.0 |
multiHiCcompare | 1.20.0 | MultiMed | 2.24.0 |
multiMiR | 1.24.0 | MultimodalExperiment | 1.2.0 |
MultiRNAflow | 1.0.0 | multiscan | 1.62.0 |
multiWGCNA | 1.0.0 | multtest | 2.58.0 |
mumosa | 1.10.0 | MungeSumstats | 1.10.1 |
munsell | 0.5.0 | Mus.musculus | 1.3.1 |
muscat | 1.16.0 | muscle | 3.44.0 |
musicatk | 1.12.0 | MutationalPatterns | 3.12.0 |
mutoss | 0.1-13 | MVCClass | 1.76.0 |
mvnfast | 0.2.8 | mvoutlier | 2.1.1 |
mvtnorm | 1.2-4 | MWASTools | 1.26.0 |
mwcsr | 0.1.8 | mygene | 1.38.0 |
myvariant | 1.32.0 | mzID | 1.40.0 |
mzR | 2.36.0 | nabor | 0.5.0 |
NADA | 1.6-1.1 | NADfinder | 1.26.0 |
naivebayes | 1.0.0 | naniar | 1.1.0 |
NanoMethViz | 2.8.1 | NanoStringDiff | 1.32.0 |
NanoStringNCTools | 1.10.0 | nanotatoR | 1.18.0 |
nanotime | 0.3.7 | NanoTube | 1.8.0 |
naturalsort | 0.1.3 | NBAMSeq | 1.18.0 |
NbClust | 3.0.1 | NBPSeq | 0.3.1 |
ncdf4 | 1.22 | ncdfFlow | 2.48.0 |
ncGTW | 1.16.0 | NCIgraph | 1.50.0 |
NCmisc | 1.2.0 | ncRNAtools | 1.12.0 |
ndexr | 1.24.0 | nearBynding | 1.12.0 |
Nebulosa | 1.12.1 | nempi | 1.10.0 |
neo4r | 0.1.1 | NetActivity | 1.4.0 |
NetActivityData | 1.4.0 | netbiov | 1.36.0 |
netboost | 2.10.0 | netDx | 1.14.0 |
nethet | 1.34.0 | netOmics | 1.8.0 |
NetPathMiner | 1.38.0 | netprioR | 1.28.0 |
NetRep | 1.2.7 | netresponse | 1.62.0 |
NetSAM | 1.42.0 | netSmooth | 1.22.0 |
network | 1.18.2 | networkD3 | 0.4 |
netZooR | 1.6.0 | NeuCA | 1.8.1 |
NewWave | 1.12.0 | NGLVieweR | 1.3.1 |
ngsReports | 2.4.0 | NHPoisson | 3.3 |
nipalsMCIA | 1.0.0 | NISTunits | 1.0.1 |
nleqslv | 3.3.5 | nloptr | 2.0.3 |
NLP | 0.2-1 | nls2 | 0.3-3 |
NMF | 0.27 | NMI | 2.0 |
nnlasso | 0.3 | nnls | 1.5 |
nnNorm | 2.66.0 | nnSVG | 1.6.4 |
nnTensor | 1.2.0 | NOISeq | 2.46.0 |
nondetects | 2.32.0 | nor1mix | 1.3-2 |
NoRCE | 1.14.0 | norm | 1.0-11.1 |
normalize450K | 1.30.0 | NormalyzerDE | 1.20.0 |
NormqPCR | 1.48.0 | normr | 1.28.0 |
nortest | 1.0-4 | Nozzle.R1 | 1.1-1.1 |
np | 0.60-17 | NPARC | 1.14.0 |
npGSEA | 1.38.0 | nsga2R | 1.1 |
NTW | 1.52.0 | nucleoSim | 1.30.0 |
nucleR | 2.34.0 | nuCpos | 1.20.0 |
nullranges | 1.8.0 | numbers | 0.8-5 |
numDeriv | 2016.8-1.1 | NuPoP | 2.10.0 |
NxtIRFdata | 1.8.0 | oaqc | 1.0 |
objectProperties | 0.6.8 | objectSignals | 0.10.3 |
occugene | 1.62.0 | OCplus | 1.76.0 |
octad | 1.4.0 | octad.db | 1.4.0 |
odseq | 1.30.0 | officer | 0.6.5 |
OGRE | 1.6.0 | oligo | 1.66.0 |
oligoClasses | 1.64.0 | OLIN | 1.80.0 |
OLINgui | 1.76.0 | omada | 1.4.0 |
OmaDB | 2.18.0 | omicade4 | 1.42.0 |
OmicCircos | 1.40.0 | omicplotR | 1.22.0 |
omicRexposome | 1.24.3 | OMICsPCA | 1.20.0 |
OMICsPCAdata | 1.20.0 | omicsPrint | 1.22.0 |
omicsViewer | 1.6.0 | Omixer | 1.12.0 |
OmnipathR | 3.10.1 | ompBAM | 1.6.0 |
oncomix | 1.24.0 | oncoscanR | 1.4.0 |
OncoScore | 1.30.0 | OncoSimulR | 4.4.0 |
onlineFDR | 2.10.0 | ontologyIndex | 2.12 |
ontologyPlot | 1.7 | ontoProc | 1.24.0 |
openair | 2.18-2 | opencpu | 2.2.11 |
openCyto | 2.14.0 | openPrimeR | 1.24.0 |
openPrimeRui | 1.24.0 | openssl | 2.1.1 |
OpenStats | 1.14.0 | openxlsx | 4.2.5.2 |
operator.tools | 1.6.3 | oposSOM | 2.20.0 |
oppar | 1.30.0 | oppti | 1.16.0 |
optimalFlow | 1.14.0 | optimalFlowData | 1.14.0 |
optimx | 2023-10.21 | optparse | 1.7.4 |
OPWeight | 1.24.0 | OrderedList | 1.74.0 |
ordinal | 2023.12-4 | ore | 1.7.4.1 |
ORFhunteR | 1.10.0 | ORFik | 1.22.2 |
org.Bt.eg.db | 3.18.0 | org.Ce.eg.db | 3.18.0 |
org.Dm.eg.db | 3.18.0 | org.Dr.eg.db | 3.18.0 |
org.Hs.eg.db | 3.18.0 | org.Mm.eg.db | 3.18.0 |
org.Rn.eg.db | 3.18.0 | org.Sc.sgd.db | 3.18.0 |
Organism.dplyr | 1.30.1 | OrganismDbi | 1.44.0 |
OrgMassSpecR | 0.5-3 | origami | 1.0.7 |
orthogene | 1.8.0 | orthos | 1.0.1 |
orthosData | 1.0.0 | OSAT | 1.50.0 |
Oscope | 1.32.0 | osfr | 0.2.9 |
osqp | 0.6.3.2 | OTUbase | 1.52.0 |
outliers | 0.15 | OUTRIDER | 1.20.0 |
OutSplice | 1.2.0 | OVESEG | 1.18.0 |
PAA | 1.36.0 | packFinder | 1.14.0 |
padma | 1.12.0 | PADOG | 1.44.0 |
pageRank | 1.12.0 | paintmap | 1.0 |
PAIRADISE | 1.18.0 | paircompviz | 1.40.0 |
PairedData | 1.1.1 | pairedGSEA | 1.2.0 |
pairkat | 1.8.0 | pairsD3 | 0.1.3 |
palmerpenguins | 0.1.1 | pals | 1.8 |
pamr | 1.56.1 | pan | 1.9 |
pandaR | 1.34.0 | pander | 0.6.5 |
panelcn.mops | 1.24.0 | PanomiR | 1.6.0 |
panp | 1.72.0 | PANR | 1.48.0 |
PanViz | 1.4.0 | paradox | 0.11.1 |
parallelDist | 0.2.6 | ParallelLogger | 3.3.0 |
parallelly | 1.37.1 | pareg | 1.6.0 |
parglms | 1.34.0 | parmigene | 1.1.0 |
parody | 1.60.0 | partCNV | 1.0.0 |
partykit | 1.2-20 | pasilla | 1.30.0 |
PAST | 1.18.0 | pastecs | 1.4.2 |
patchwork | 1.2.0 | Path2PPI | 1.32.0 |
pathifier | 1.40.0 | PathNet | 1.42.0 |
PathoStat | 1.28.0 | pathRender | 1.70.0 |
pathview | 1.42.0 | pathwayPCA | 1.18.0 |
paws.common | 0.7.1 | paws.storage | 0.5.0 |
paxtoolsr | 1.36.0 | pbapply | 1.7-2 |
pbdZMQ | 0.3-11 | pbivnorm | 0.6.0 |
pbkrtest | 0.5.2 | pbmcapply | 1.5.1 |
pcaExplorer | 2.28.0 | pcalg | 2.7-11 |
pcaMethods | 1.94.0 | PCAN | 1.30.0 |
pcaPP | 2.0-4 | PCAtools | 2.14.0 |
pcxn | 2.24.0 | pcxnData | 2.24.0 |
pd.mapping50k.xba240 | 3.12.0 | PDATK | 1.10.0 |
pdfCluster | 1.0-4 | pdftools | 3.4.0 |
pdInfoBuilder | 1.66.0 | pdist | 1.2.1 |
PeacoQC | 1.12.0 | peakPantheR | 1.16.1 |
PECA | 1.38.0 | peco | 1.14.0 |
penalized | 0.9-52 | pengls | 1.8.0 |
PepsNMR | 1.20.0 | pepStat | 1.36.0 |
Peptides | 2.4.6 | pepXMLTab | 1.36.0 |
PerformanceAnalytics | 2.0.4 | periodicDNA | 1.12.0 |
permute | 0.9-7 | PFAM.db | 3.18.0 |
pfamAnalyzeR | 1.2.0 | pgca | 1.26.0 |
phangorn | 2.11.1 | phantasus | 1.22.2 |
phantasusLite | 1.0.0 | PharmacoGx | 3.6.0 |
phastCons100way.UCSC.hg19 | 3.7.2 | phastCons100way.UCSC.hg38 | 3.7.1 |
phateR | 1.0.7 | pheatmap | 1.0.12 |
phemd | 1.18.0 | PhenoGeneRanker | 1.10.0 |
phenomis | 1.4.0 | phenopath | 1.26.0 |
phenoTest | 1.50.0 | PhenStat | 2.38.0 |
philentropy | 0.8.0 | philr | 1.28.0 |
PhIPData | 1.10.0 | phosphonormalizer | 1.26.0 |
phosphoricons | 0.2.0 | PhosR | 1.12.0 |
phyclust | 0.1-34 | phylobase | 0.8.12 |
phylogram | 2.1.0 | phylolm | 2.6.2 |
PhyloProfile | 1.16.3 | phyloseq | 1.46.0 |
Pi | 2.14.0 | piano | 2.18.0 |
pickgene | 1.74.0 | PICS | 2.46.0 |
Pigengene | 1.28.0 | pillar | 1.9.0 |
pinfsc50 | 1.3.0 | PING | 2.46.0 |
pingr | 2.0.3 | pipeComp | 1.12.0 |
pipeFrame | 1.18.0 | pixmap | 0.4-12 |
pkgbuild | 1.4.4 | pkgconfig | 2.0.3 |
pkgdown | 2.0.7 | pkgload | 1.3.4 |
planet | 1.10.0 | planttfhunter | 1.2.0 |
plasmut | 1.0.0 | plgem | 1.74.0 |
plier | 1.72.0 | PloGO2 | 1.14.0 |
plogr | 0.2.0 | plot3D | 1.4.1 |
plot3Drgl | 1.0.4 | plotgardener | 1.8.2 |
plotGrouper | 1.20.0 | plotly | 4.10.4 |
plotmo | 3.6.3 | plotrix | 3.8-4 |
plotROC | 2.3.1 | PLPE | 1.62.0 |
pls | 2.8-3 | plsgenomics | 1.5-2.1 |
plsVarSel | 0.9.10 | plyinteractions | 1.0.0 |
plyr | 1.8.9 | plyranges | 1.22.0 |
PMA | 1.2-3 | PMCMRplus | 1.9.10 |
pmm | 1.34.0 | pmp | 1.14.1 |
png | 0.1-8 | PoDCall | 1.10.1 |
podkat | 1.34.0 | pogos | 1.22.0 |
poibin | 1.5 | PoiClaClu | 1.0.2.1 |
polspline | 1.1.24 | Polychrome | 1.5.1 |
polyclip | 1.10-6 | polyester | 1.38.0 |
polylabelr | 0.2.0 | polynom | 1.4-1 |
PolynomF | 2.0-8 | PolyPhen.Hsapiens.dbSNP131 | 1.0.2 |
POMA | 1.12.0 | poorman | 0.2.7 |
posterior | 1.5.0 | poweRlaw | 0.80.0 |
powerTCR | 1.22.0 | POWSC | 1.10.0 |
ppclust | 1.1.0.1 | ppcor | 1.1 |
ppcseq | 1.10.0 | PPInfer | 1.28.0 |
pqsfinder | 2.18.0 | prabclus | 2.3-3 |
pracma | 2.4.4 | praise | 1.0.0 |
pram | 1.18.0 | praznik | 11.0.0 |
prebs | 1.42.0 | preciseTAD | 1.12.0 |
precrec | 0.14.4 | PREDA | 1.48.0 |
preprocessCore | 1.64.0 | preseqR | 4.0.0 |
prettydoc | 0.4.1 | prettyunits | 1.2.0 |
primirTSS | 1.20.0 | PRIMME | 3.2-6 |
PrInCE | 1.18.0 | princurve | 2.1.6 |
proActiv | 1.12.0 | proBAMr | 1.36.0 |
pROC | 1.18.5 | PROcess | 1.78.0 |
processx | 3.8.4 | procoil | 2.30.0 |
proDA | 1.16.0 | prodlim | 2023.08.28 |
profileModel | 0.6.1 | profileplyr | 1.18.0 |
profileScoreDist | 1.30.0 | profmem | 0.6.0 |
profvis | 0.3.8 | progeny | 1.24.0 |
progress | 1.2.3 | progressr | 0.14.0 |
proj4 | 1.0-14 | projectR | 1.18.0 |
pRoloc | 1.42.0 | pRolocdata | 1.40.0 |
pRolocGUI | 2.12.0 | PROMISE | 1.54.0 |
promises | 1.2.1 | PROPER | 1.34.0 |
PROPS | 1.24.0 | Prostar | 1.34.6 |
proteinProfiles | 1.42.0 | ProteoDisco | 1.8.0 |
ProteoMM | 1.20.0 | protGear | 1.6.0 |
ProtGenerics | 1.34.0 | proto | 1.0.0 |
protolite | 2.3.0 | protr | 1.7-0 |
protViz | 0.7.9 | proxy | 0.4-27 |
proxyC | 0.3.4 | PRROC | 1.3.1 |
pryr | 0.1.6 | ps | 1.7.6 |
PSCBS | 0.67.0 | pscl | 1.5.9 |
PSEA | 1.36.0 | psichomics | 1.28.1 |
PSMatch | 1.6.0 | pspline | 1.0-19 |
psych | 2.4.3 | psygenet2r | 1.34.1 |
ptairMS | 1.10.0 | ptw | 1.9-16 |
puma | 3.44.0 | PureCN | 2.8.1 |
purrr | 1.0.2 | pvac | 1.50.0 |
pvca | 1.42.0 | pvclust | 2.2-0 |
Pviz | 1.36.0 | PWMEnrich | 4.38.0 |
pwOmics | 1.34.0 | pwr | 1.3-0 |
qap | 0.1-2 | qckitfastq | 1.18.0 |
qcmetrics | 1.40.1 | qdapRegex | 0.7.8 |
qdapTools | 1.3.7 | QDNAseq | 1.38.0 |
QFeatures | 1.12.0 | qgraph | 1.9.8 |
qlcMatrix | 0.9.7 | qmtools | 1.6.0 |
qpcR | 1.4-1 | qpcrNorm | 1.60.0 |
qpdf | 1.3.2 | qpgraph | 2.36.0 |
qPLEXanalyzer | 1.20.0 | qqconf | 1.3.2 |
qqman | 0.1.9 | qs | 0.26.1 |
qsea | 1.28.0 | qsmooth | 1.18.0 |
QSutils | 1.20.0 | qsvaR | 1.6.0 |
qtl | 1.66 | QTLExperiment | 1.0.0 |
Qtlizer | 1.16.0 | quadprog | 1.5-8 |
qualV | 0.3-5 | quanteda | 3.3.1 |
quantiseqr | 1.10.0 | quantmod | 0.4.26 |
quantreg | 5.97 | quantro | 1.36.0 |
quantsmooth | 1.68.0 | quarto | 1.4 |
QuartPAC | 1.34.0 | QuasR | 1.42.1 |
QuaternaryProd | 1.36.0 | QUBIC | 1.30.0 |
questionr | 0.7.8 | QuickJSR | 1.1.3 |
qusage | 2.36.0 | qvalue | 2.34.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 |
R2HTML | 2.3.3 | R2jags | 0.7-1.1 |
R2WinBUGS | 2.1-22.1 | R3CPET | 1.34.1 |
r3Cseq | 1.48.0 | R453Plus1Toolbox | 1.52.0 |
R4RNA | 1.30.0 | R6 | 2.5.1 |
R6P | 0.3.0 | radiant.data | 1.6.3 |
RadioGx | 2.6.0 | raer | 1.0.2 |
rafalib | 1.0.0 | ragg | 1.3.0 |
RaggedExperiment | 1.26.0 | RAIDS | 1.0.0 |
rain | 1.36.0 | rainbow | 3.8 |
ramr | 1.10.0 | ramwas | 1.26.0 |
randomcoloR | 1.1.0.1 | randomForest | 4.7-1.1 |
randomizr | 1.0.0 | RandomWalkRestartMH | 1.22.0 |
randPack | 1.48.0 | randRotation | 1.14.0 |
randtests | 1.0.1 | randtoolbox | 2.0.4 |
ranger | 0.16.0 | RankAggreg | 0.6.6 |
RankProd | 3.28.0 | RANN | 2.6.1 |
rapiclient | 0.1.3 | rapidjsonr | 1.2.0 |
RApiSerialize | 0.1.2 | rappdirs | 0.3.3 |
rapportools | 1.1 | RAREsim | 1.6.0 |
RareVariantVis | 2.30.0 | rARPACK | 0.11-0 |
Rarr | 1.2.0 | raster | 3.6-26 |
rawrr | 1.10.2 | RbcBook1 | 1.70.0 |
Rbec | 1.10.0 | rBeta2009 | 1.0 |
RBGL | 1.78.0 | rbibutils | 2.2.16 |
RBioFormats | 1.2.0 | RBioinf | 1.62.0 |
rBiopaxParser | 2.42.0 | RBM | 1.34.0 |
rbokeh | 0.5.1 | Rbowtie | 1.42.0 |
Rbowtie2 | 2.8.0 | rbsurv | 2.60.0 |
Rbwa | 1.6.0 | RCAS | 1.28.3 |
RCASPAR | 1.48.0 | rcdk | 3.8.1 |
rcdklibs | 2.9 | rcellminer | 2.24.0 |
rcellminerData | 2.24.0 | rCGH | 1.32.0 |
RCircos | 1.2.2 | rclipboard | 0.2.1 |
RCM | 1.18.0 | rcmdcheck | 1.4.0 |
Rcollectl | 1.2.0 | RColorBrewer | 1.1-3 |
Rcpi | 1.38.0 | Rcpp | 1.0.12 |
RcppAlgos | 2.8.3 | RcppAnnoy | 0.0.22 |
RcppArmadillo | 0.12.8.1.0 | 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 |
RcppInt64 | 0.0.4 | RcppML | 0.3.7 |
RcppNumerical | 0.6-0 | RcppParallel | 5.1.7 |
RcppProgress | 0.4.2 | RcppRoll | 0.3.0 |
RcppSpdlog | 0.0.16 | RcppThread | 2.1.7 |
RcppTOML | 0.2.2 | RcppZiggurat | 0.1.6 |
RCurl | 1.98-1.14 | Rcwl | 1.18.0 |
RcwlPipelines | 1.18.1 | RCX | 1.6.0 |
RCy3 | 2.22.1 | RCyjs | 2.24.0 |
rDGIdb | 1.28.0 | Rdisop | 1.62.0 |
rdist | 0.0.5 | Rdpack | 2.6 |
RDRToolbox | 1.52.0 | reactable | 0.4.4 |
reactome.db | 1.86.2 | ReactomeContentService4R | 1.10.0 |
ReactomeGraph4R | 1.10.0 | ReactomeGSA | 1.16.1 |
ReactomePA | 1.46.0 | reactR | 0.5.0 |
readbitmap | 0.1.5 | reader | 1.0.6 |
readJDX | 0.6.4 | ReadqPCR | 1.48.0 |
readr | 2.1.5 | readxl | 1.4.3 |
REBET | 1.20.0 | rebook | 1.12.0 |
rebus | 0.1-3 | rebus.base | 0.0-3 |
rebus.datetimes | 0.0-2 | rebus.numbers | 0.0-1 |
rebus.unicode | 0.0-2 | receptLoss | 1.14.0 |
recipes | 1.0.10 | reconsi | 1.14.0 |
RecordLinkage | 0.4-12.4 | recount | 1.28.0 |
recount3 | 1.12.0 | recountmethylation | 1.12.0 |
recoup | 1.30.0 | RedeR | 2.6.1 |
RedisParam | 1.4.0 | redux | 1.1.4 |
RefManageR | 1.4.0 | regionalpcs | 1.0.0 |
RegionalST | 1.0.1 | regioneR | 1.34.0 |
regioneReloaded | 1.4.0 | regionReport | 1.36.0 |
registry | 0.5-1 | regsplice | 1.28.1 |
regutools | 1.14.0 | relations | 0.6-13 |
reldist | 1.7-2 | relimp | 1.0-5 |
remaCor | 0.0.18 | rematch | 2.0.0 |
rematch2 | 2.1.2 | remotes | 2.5.0 |
REMP | 1.26.0 | rentrez | 1.2.3 |
renv | 1.0.5 | Repitools | 1.48.0 |
repmis | 0.5 | repo | 2.1.5 |
ReportingTools | 2.42.3 | reportr | 1.3.0 |
reportROC | 3.6 | repr | 1.1.6 |
reprex | 2.1.0 | RepViz | 1.18.0 |
ReQON | 1.48.0 | reshape | 0.8.9 |
reshape2 | 1.4.4 | ResidualMatrix | 1.12.0 |
RESOLVE | 1.4.0 | restfulr | 0.0.15 |
restfulSE | 1.24.0 | reticulate | 1.35.0 |
retrofit | 1.2.0 | ReUseData | 1.2.2 |
rex | 1.2.1 | rexposome | 1.24.1 |
rfaRm | 1.14.2 | Rfast | 2.1.0 |
Rfastp | 1.12.0 | rfPred | 1.40.0 |
rGADEM | 2.50.0 | rGenomeTracks | 1.8.0 |
rGenomeTracksData | 0.99.0 | rgl | 1.3.1 |
RGMQL | 1.22.1 | RGMQLlib | 1.22.0 |
RgnTX | 1.4.0 | rgoslin | 1.6.0 |
RGraph2js | 1.30.0 | Rgraphviz | 2.46.0 |
rGREAT | 2.4.0 | RGSEA | 1.36.0 |
rgsepd | 1.34.0 | rhandsontable | 0.3.8 |
rhdf5 | 2.46.1 | rhdf5client | 1.24.0 |
rhdf5filters | 1.14.1 | Rhdf5lib | 1.24.2 |
Rhisat2 | 1.18.0 | RhpcBLASctl | 0.23-42 |
Rhtslib | 2.4.1 | RiboCrypt | 1.8.0 |
RiboDiPA | 1.10.0 | RiboProfiling | 1.32.0 |
ribor | 1.14.0 | riboSeqR | 1.36.0 |
ribosomeProfilingQC | 1.14.1 | ridge | 3.3 |
rifi | 1.6.0 | rifiComparative | 1.2.0 |
RImmPort | 1.30.0 | Ringo | 1.66.0 |
rintrojs | 0.3.4 | rio | 1.0.1 |
Risa | 1.44.0 | RISmed | 2.3.0 |
RITAN | 1.26.0 | RITANdata | 1.26.0 |
RIVER | 1.26.0 | rjags | 4-15 |
rJava | 1.0-11 | RJMCMCNucleosomes | 1.26.0 |
rjson | 0.2.21 | rjsoncons | 1.2.0 |
RJSONIO | 1.3-1.9 | Rlab | 4.0 |
Rlabkey | 3.2.0 | rlang | 1.1.3 |
RLassoCox | 1.10.0 | RLHub | 0.99.5 |
rlist | 0.4.6.2 | RLMM | 1.64.0 |
RLSeq | 1.5.2 | Rmagpie | 1.58.0 |
RMallow | 1.1 | RMariaDB | 1.3.1 |
rmarkdown | 2.26 | RMassBank | 3.12.0 |
rmdformats | 1.0.4 | rmelting | 1.18.0 |
rmeta | 3.0 | rmio | 0.4.0 |
Rmisc | 1.5.1 | Rmixmod | 2.1.10 |
Rmmquant | 1.20.0 | Rmpfr | 0.9-5 |
Rmpi | 0.7-2 | rms | 6.8-0 |
RMSNumpress | 1.0.1 | rmspc | 1.8.0 |
RMTstat | 0.3.1 | rmutil | 1.1.10 |
RMySQL | 0.10.27 | rmzqc | 0.5.3 |
RNAAgeCalc | 1.14.0 | RNAdecay | 1.22.2 |
rnaEditr | 1.12.0 | RNAinteract | 1.50.0 |
RNAmodR | 1.16.0 | RNAmodR.AlkAnilineSeq | 1.16.0 |
RNAmodR.ML | 1.16.0 | RNAmodR.RiboMethSeq | 1.16.0 |
RNAsense | 1.16.0 | rnaseqcomp | 1.32.0 |
RNAseqCovarImpute | 1.0.2 | RNASeqPower | 1.42.0 |
RnaSeqSampleSize | 2.12.0 | RnaSeqSampleSizeData | 1.34.0 |
RnBeads | 2.20.0 | RnBeads.hg19 | 1.34.0 |
rncl | 0.8.7 | RNeXML | 2.4.11 |
rngtools | 1.5.2 | rngWELL | 0.10-9 |
RNifti | 1.6.1 | Rnits | 1.36.0 |
RNOmni | 1.0.1.2 | roar | 1.38.0 |
roastgsa | 1.0.0 | robust | 0.7-4 |
robustbase | 0.99-2 | RobustRankAggreg | 1.2.1 |
ROC | 1.78.0 | ROCit | 2.1.1 |
ROCpAI | 1.14.0 | ROCR | 1.0-11 |
RolDE | 1.6.0 | rols | 2.30.2 |
ROntoTools | 2.30.0 | Rook | 1.2 |
rootSolve | 1.8.2.4 | ropls | 1.34.0 |
roptim | 0.1.6 | rorcid | 0.7.0 |
ROSeq | 1.14.0 | ROTS | 1.30.0 |
roxygen2 | 7.3.1 | RPA | 1.58.0 |
rpart.plot | 3.1.2 | RPMM | 1.25 |
rprimer | 1.6.0 | rprojroot | 2.0.4 |
RProtoBufLib | 2.14.1 | rpx | 2.10.0 |
Rqc | 1.36.0 | rqt | 1.28.0 |
rqubic | 1.48.0 | rrcov | 1.7-5 |
rRDP | 1.36.0 | RRHO | 1.42.0 |
rrvgo | 1.14.2 | rsample | 1.2.0 |
Rsamtools | 2.18.0 | rsbml | 2.60.0 |
rScudo | 1.18.1 | rsemmed | 1.12.0 |
RSeqAn | 1.22.0 | rslurm | 0.6.2 |
rsm | 2.10.4 | RSNNS | 0.4-17 |
Rsolnp | 1.16 | rsparse | 0.5.1 |
RSpectra | 0.16-1 | rSpectral | 1.0.0.10 |
rsq | 2.6 | RSQLite | 2.3.5 |
rstan | 2.32.6 | rstantools | 2.4.0 |
rstatix | 0.7.2 | rstudioapi | 0.15.0 |
Rsubread | 2.16.1 | rsvd | 1.0.5 |
rsvg | 2.6.0 | RSVSim | 1.42.0 |
rSWeeP | 1.14.0 | RTCA | 1.54.0 |
RTCGA | 1.32.0 | RTCGAToolbox | 2.32.1 |
rTensor | 1.4.8 | RTN | 2.26.0 |
RTNduals | 1.26.0 | RTNsurvival | 1.26.0 |
RTopper | 1.48.0 | Rtpca | 1.12.0 |
rtracklayer | 1.62.0 | Rtreemix | 1.64.0 |
RTriangle | 1.6-0.13 | rTRM | 1.40.0 |
rTRMui | 1.40.0 | Rtsne | 0.17 |
Rttf2pt1 | 1.3.12 | runibic | 1.24.0 |
RUnit | 0.4.33 | ruv | 0.9.7.1 |
RUVcorr | 1.34.0 | RUVnormalize | 1.36.0 |
RUVnormalizeData | 1.22.0 | RUVSeq | 1.36.0 |
rversions | 2.1.2 | rvest | 1.0.4 |
rvinecopulib | 0.6.3.1.1 | Rvisdiff | 1.0.0 |
RVS | 1.24.0 | RWeka | 0.4-46 |
RWekajars | 3.9.3-2 | rWikiPathways | 1.22.1 |
s2 | 1.1.6 | S4Arrays | 1.2.1 |
S4Vectors | 0.40.2 | safe | 3.42.0 |
safetensors | 0.1.2 | sagenhaft | 1.72.0 |
SAIGEgds | 2.2.1 | sampleClassifier | 1.26.0 |
sampling | 2.10 | SamSPECTRAL | 1.56.0 |
sandwich | 3.1-0 | sangeranalyseR | 1.12.0 |
sangerseqR | 1.38.0 | SANTA | 2.38.0 |
SARC | 1.0.0 | sarks | 1.14.0 |
sass | 0.4.9 | satuRn | 1.10.0 |
SAVER | 1.1.2 | SBGNview | 1.16.0 |
SBGNview.data | 1.16.0 | SBMLR | 1.98.0 |
SC3 | 1.30.0 | Scale4C | 1.24.0 |
ScaledMatrix | 1.10.0 | scales | 1.3.0 |
scam | 1.2-16 | SCAN.UPC | 2.44.0 |
scanMiR | 1.8.2 | scanMiRApp | 1.8.0 |
scanMiRData | 1.8.0 | scAnnotatR | 1.8.0 |
SCANVIS | 1.16.0 | SCArray | 1.10.0 |
SCArray.sat | 1.2.1 | scater | 1.30.1 |
scatterHatch | 1.8.0 | scattermore | 1.2 |
scatterpie | 0.2.1 | scatterplot3d | 0.3-44 |
scBFA | 1.16.0 | SCBN | 1.20.0 |
scBubbletree | 1.4.0 | scCB2 | 1.12.0 |
scClassify | 1.14.0 | sccomp | 1.6.0 |
scDataviz | 1.12.0 | scDblFinder | 1.16.0 |
scDD | 1.26.0 | scDDboost | 1.4.0 |
scde | 2.30.0 | scDesign3 | 1.0.1 |
scds | 1.18.0 | SCFA | 1.12.0 |
scFeatureFilter | 1.22.0 | scFeatures | 1.3.2 |
scGPS | 1.16.0 | schex | 1.16.1 |
scHOT | 1.14.0 | scico | 1.5.0 |
scider | 1.0.0 | scifer | 1.4.0 |
scmap | 1.24.0 | scMerge | 1.18.0 |
scMET | 1.4.0 | scmeth | 1.22.0 |
SCnorm | 1.24.0 | scone | 1.26.0 |
Sconify | 1.22.0 | SCOPE | 1.14.0 |
scoreInvHap | 1.24.0 | scp | 1.12.0 |
scPCA | 1.16.0 | scPipe | 2.2.0 |
scran | 1.30.2 | scReClassify | 1.8.0 |
scRecover | 1.18.0 | screenCounter | 1.2.0 |
ScreenR | 1.4.0 | scRepertoire | 1.12.0 |
scrime | 1.3.5 | scRNAseq | 2.16.0 |
scRNAseqApp | 1.2.2 | scruff | 1.20.0 |
scry | 1.14.0 | scrypt | 0.1.6 |
scs | 3.2.4 | scShapes | 1.8.0 |
scTensor | 2.12.0 | scTGIF | 1.16.0 |
scTHI | 1.14.0 | sctransform | 0.4.1 |
scTreeViz | 1.8.0 | scuttle | 1.12.0 |
scviR | 1.2.0 | SDAMS | 1.22.0 |
sechm | 1.10.0 | segmented | 2.0-3 |
segmenter | 1.8.0 | segmentSeq | 2.36.0 |
selectKSigs | 1.14.0 | selectr | 0.4-2 |
SELEX | 1.34.0 | SemDist | 1.36.0 |
semisup | 1.26.0 | sendmailR | 1.4-0 |
seq.hotSPOT | 1.2.0 | seq2pathway | 1.34.0 |
seq2pathway.data | 1.34.0 | seqArchR | 1.6.0 |
seqArchRplus | 1.2.0 | SeqArray | 1.42.2 |
seqbias | 1.50.0 | seqCAT | 1.24.0 |
seqCNA | 1.48.0 | seqCNA.annot | 1.38.0 |
seqcombo | 1.24.0 | SeqGate | 1.12.0 |
SeqGSEA | 1.42.0 | seqinr | 4.2-36 |
seqLogo | 1.68.0 | seqmagick | 0.1.7 |
seqminer | 9.4 | seqPattern | 1.34.0 |
seqsetvis | 1.22.1 | SeqSQC | 1.24.0 |
seqTools | 1.36.0 | SeqVarTools | 1.40.0 |
seriation | 1.5.4 | servr | 0.29 |
sesame | 1.20.0 | sesameData | 1.20.0 |
sessioninfo | 1.2.2 | SEtools | 1.16.0 |
setRNG | 2024.2-1 | sets | 1.0-25 |
settings | 0.2.7 | Seurat | 5.0.3 |
SeuratObject | 5.0.1 | sevenbridges | 1.32.0 |
sevenC | 1.22.0 | sf | 1.0-15 |
sfsmisc | 1.1-17 | sftime | 0.2-0 |
SGCP | 1.2.0 | sgeostat | 1.0-27 |
SGSeq | 1.36.0 | shades | 1.4.0 |
shadowtext | 0.1.3 | shape | 1.4.6.1 |
SharedObject | 1.16.0 | shiny | 1.8.0 |
shinyAce | 0.4.2 | shinyalert | 3.0.0 |
shinyBS | 0.61.1 | shinybusy | 0.3.3 |
shinycssloaders | 1.0.0 | shinycustomloader | 0.9.0 |
shinyCyJS | 1.0.0 | shinydashboard | 0.7.2 |
shinydashboardPlus | 2.0.3 | shinyepico | 1.10.0 |
shinyFeedback | 0.4.0 | shinyFiles | 0.9.3 |
shinyHeatmaply | 0.2.0 | shinyhelper | 0.3.2 |
shinyjqui | 0.4.1 | shinyjs | 2.1.0 |
shinylogs | 0.2.1 | shinymanager | 1.0.410 |
shinyMatrix | 0.6.0 | shinymeta | 0.2.0.3 |
shinyMethyl | 1.38.0 | shinypanel | 0.1.5 |
shinyscreenshot | 0.2.1 | shinythemes | 1.2.0 |
shinytitle | 0.1.0 | shinytoastr | 2.2.0 |
shinyTree | 0.3.1 | shinyvalidate | 0.1.3 |
shinyWidgets | 0.8.2 | ShortRead | 1.60.0 |
SIAMCAT | 2.6.0 | SICtools | 1.32.0 |
SIFT.Hsapiens.dbSNP137 | 1.0.0 | SigCheck | 2.34.0 |
sigclust | 1.1.0.1 | sigFeature | 1.20.0 |
SigFuge | 1.40.0 | siggenes | 1.76.0 |
sights | 1.28.0 | signal | 1.8-0 |
signatureSearch | 1.16.0 | signeR | 2.4.0 |
signifinder | 1.4.0 | SigsPack | 1.16.0 |
sigsquared | 1.34.0 | SIM | 1.72.0 |
SIMAT | 1.34.0 | SimBindProfiles | 1.40.0 |
SimBu | 1.4.3 | SIMD | 1.20.0 |
SimFFPE | 1.14.0 | similaRpeak | 1.34.0 |
SIMLR | 1.28.0 | simona | 1.0.10 |
simpIntLists | 1.38.0 | simpleCache | 0.4.2 |
simpleSeg | 1.4.1 | simplifyEnrichment | 1.12.0 |
sincell | 1.34.0 | single | 1.6.0 |
SingleCellExperiment | 1.24.0 | SingleCellSignalR | 1.14.0 |
singleCellTK | 2.12.2 | SingleMoleculeFootprinting | 1.10.0 |
SingleR | 2.4.1 | singscore | 1.22.0 |
SiPSiC | 1.2.2 | sitadela | 1.10.0 |
sitePath | 1.18.0 | sitmo | 2.0.2 |
sizepower | 1.72.0 | sjlabelled | 1.2.0 |
sjmisc | 2.8.9 | skewr | 1.34.0 |
skmeans | 0.2-16 | slalom | 1.24.0 |
slam | 0.1-50 | slider | 0.3.1 |
slingshot | 2.10.0 | SLqPCR | 1.68.0 |
sm | 2.2-6.0 | SMAD | 1.18.0 |
SMAP | 1.66.0 | SmartSVA | 0.1.3 |
smatr | 3.4-8 | SMITE | 1.30.0 |
smoother | 1.1 | smoothie | 1.0-3 |
SmoothWin | 3.0.0 | smurf | 1.1.5 |
SMVar | 1.3.4 | sn | 2.1.1 |
sna | 2.7-2 | SNAGEE | 1.42.0 |
SNAGEEdata | 1.38.0 | snakecase | 0.11.1 |
snapCGH | 1.72.0 | snapcount | 1.14.0 |
snifter | 1.12.0 | snm | 1.50.0 |
snow | 0.4-4 | SnowballC | 0.7.1 |
snowfall | 1.84-6.3 | SNPediaR | 1.28.0 |
SNPhood | 1.32.0 | SNPlocs.Hsapiens.dbSNP144.GRCh37 | 0.99.20 |
SNPRelate | 1.36.1 | snpStats | 1.52.0 |
softImpute | 1.4-1 | soGGi | 1.34.0 |
som | 0.3-5.1 | SomaticSignatures | 2.38.0 |
SOMNiBUS | 1.10.0 | sonicLength | 1.4.7 |
sortable | 0.5.0 | SoupX | 1.6.2 |
sourcetools | 0.1.7-1 | sp | 2.1-3 |
SpacePAC | 1.40.0 | spacetime | 1.3-1 |
spam | 2.10-0 | Spaniel | 1.16.0 |
sparklyr | 1.8.4 | sparrow | 1.8.0 |
SparseArray | 1.2.4 | SparseM | 1.81 |
sparseMatrixStats | 1.14.0 | sparseMVN | 0.2.2 |
sparsenetgls | 1.20.0 | sparsepca | 0.1.2 |
SparseSignatures | 2.12.0 | sparsesvd | 0.2-2 |
spaSim | 1.4.0 | SpatialCPie | 1.18.0 |
spatialDE | 1.8.1 | SpatialDecon | 1.12.3 |
SpatialExperiment | 1.12.0 | SpatialExtremes | 2.1-0 |
SpatialFeatureExperiment | 1.4.0 | spatialHeatmap | 2.8.5 |
SpatialOmicsOverlay | 1.2.1 | SpatialTools | 1.0.5 |
spatstat | 3.0-7 | spatstat.data | 3.0-4 |
spatstat.explore | 3.2-6 | spatstat.geom | 3.2-9 |
spatstat.linnet | 3.1-4 | spatstat.model | 3.2-10 |
spatstat.random | 3.2-3 | spatstat.sparse | 3.0-3 |
spatstat.utils | 3.0-4 | spatzie | 1.8.0 |
spBayes | 0.4-7 | spData | 2.3.0 |
spdep | 1.3-3 | spdl | 0.0.5 |
speaq | 2.7.0 | speckle | 1.2.0 |
specL | 1.36.0 | SpeCond | 1.56.0 |
Spectra | 1.12.0 | SpectralTAD | 1.18.0 |
speedglm | 0.3-5 | SPEM | 1.42.0 |
SPIA | 2.54.0 | SPIAT | 1.4.2 |
spicyR | 1.14.3 | SpidermiR | 1.32.0 |
spikeLI | 2.62.0 | spiky | 1.8.0 |
spkTools | 1.58.0 | splancs | 2.01-44 |
splatter | 1.26.0 | SpliceWiz | 1.4.1 |
SplicingFactory | 1.10.0 | SplicingGraphs | 1.42.0 |
splineTimeR | 1.30.0 | SPLINTER | 1.28.0 |
splitstackshape | 1.4.8 | splots | 1.68.0 |
splus2R | 1.3-5 | SpotClean | 1.4.1 |
SPOTlight | 1.6.7 | spqn | 1.14.0 |
spsComps | 0.3.3.0 | SPsimSeq | 1.12.0 |
spsUtil | 0.2.2 | SQLDataFrame | 1.16.1 |
sqldf | 0.4-11 | SQUADD | 1.52.0 |
SQUAREM | 2021.1 | squash | 1.0.9 |
sRACIPE | 1.18.0 | SRAdb | 1.64.0 |
srnadiff | 1.22.2 | ssc | 2.1-0 |
sscu | 2.32.0 | sSeq | 1.40.0 |
ssize | 1.76.0 | sSNAPPY | 1.6.1 |
ssPATHS | 1.16.0 | ssrch | 1.18.0 |
ssviz | 1.36.0 | stable | 1.1.6 |
stabledist | 0.7-1 | stabs | 0.6-4 |
stageR | 1.24.0 | standR | 1.6.0 |
StanHeaders | 2.32.6 | staRank | 1.44.0 |
StarBioTrek | 1.28.0 | stars | 0.6-4 |
startupmsg | 0.9.6.1 | statebins | 1.4.0 |
STATegRa | 1.38.0 | Statial | 1.4.5 |
statip | 0.2.3 | statmod | 1.5.0 |
statnet.common | 4.9.0 | statTarget | 1.32.0 |
STdeconvolve | 1.6.0 | stemHypoxia | 1.38.0 |
stepNorm | 1.74.0 | stJoincount | 1.4.0 |
stopwords | 2.3 | storr | 1.2.5 |
strandCheckR | 1.20.0 | strawr | 0.0.91 |
Streamer | 1.48.0 | strex | 2.0.0 |
STRINGdb | 2.14.3 | stringdist | 0.9.12 |
stringfish | 0.16.0 | stringi | 1.8.3 |
stringr | 1.5.1 | strucchange | 1.5-3 |
struct | 1.14.1 | Structstrings | 1.18.0 |
structToolbox | 1.14.0 | StructuralVariantAnnotation | 1.18.0 |
styler | 1.10.2 | SubCellBarCode | 1.18.0 |
subSeq | 1.32.0 | SUITOR | 1.4.0 |
SummarizedBenchmark | 2.20.0 | SummarizedExperiment | 1.32.0 |
summarytools | 1.0.1 | Summix | 2.8.0 |
superheat | 0.1.0 | SuperLearner | 2.0-29 |
supersigs | 1.10.0 | SuppDists | 1.1-9.7 |
supraHex | 1.40.0 | surfaltr | 1.8.0 |
survcomp | 1.52.0 | survey | 4.4-1 |
survivalAnalysis | 0.3.0 | survivalROC | 1.0.3.1 |
survivalsvm | 0.0.5 | survminer | 0.4.9 |
survMisc | 0.5.6 | survtype | 1.18.0 |
sva | 3.50.0 | svaNUMT | 1.8.0 |
svaRetro | 1.8.0 | svd | 0.5.5 |
svglite | 2.1.3 | svgPanZoom | 0.3.4 |
SVMDO | 1.2.8 | svMisc | 1.2.3 |
svUnit | 1.0.6 | swamp | 1.5.1 |
SWATH2stats | 1.32.1 | SwathXtend | 2.24.0 |
swfdr | 1.28.0 | switchBox | 1.38.0 |
switchde | 1.28.0 | sylly | 0.1-6 |
sylly.en | 0.1-3 | synapsis | 1.8.0 |
synapter | 2.26.0 | synergyfinder | 3.10.3 |
SynExtend | 1.14.0 | synlet | 2.2.0 |
SynMut | 1.18.0 | syntenet | 1.4.0 |
sys | 3.4.2 | systemfonts | 1.0.6 |
systemPipeR | 2.8.0 | systemPipeShiny | 1.12.0 |
systemPipeTools | 1.10.0 | syuzhet | 1.0.7 |
tadar | 1.0.0 | TADCompare | 1.12.1 |
tagcloud | 0.6 | tanggle | 1.8.0 |
TAPseq | 1.14.1 | target | 1.16.0 |
TargetDecoy | 1.8.0 | TargetScore | 1.40.0 |
TargetSearch | 2.4.2 | TBSignatureProfiler | 1.14.0 |
TBX20BamSubset | 1.38.0 | TCA | 1.2.1 |
TCC | 1.42.0 | TCGAbiolinks | 2.30.0 |
TCGAbiolinksGUI.data | 1.22.0 | TCGAutils | 1.22.2 |
tcltk2 | 1.2-11 | TCseq | 1.26.0 |
TDbasedUFE | 1.2.0 | TDbasedUFEadv | 1.2.0 |
TeachingDemos | 2.13 | TEKRABber | 1.6.0 |
tensor | 1.5 | tensorA | 0.36.2.1 |
tensorflow | 2.15.0 | TENxIO | 1.4.0 |
TENxPBMCData | 1.20.0 | tenXplore | 1.24.0 |
TEQC | 4.24.0 | ternarynet | 1.46.0 |
terra | 1.7-71 | terraTCGAdata | 1.6.0 |
tester | 0.1.7 | testthat | 3.2.1 |
text2vec | 0.6.4 | textclean | 0.9.3 |
textshape | 1.7.3 | textshaping | 0.3.7 |
textstem | 0.1.4 | TFARM | 1.24.0 |
tfautograph | 0.3.2 | TFBSTools | 1.40.0 |
TFEA.ChIP | 1.22.0 | TFHAZ | 1.24.0 |
TFisher | 0.2.0 | TFMPvalue | 0.0.9 |
tfprobability | 0.15.1 | tfruns | 1.5.2 |
TFutils | 1.22.0 | TH.data | 1.1-2 |
threejs | 0.3.3 | tibble | 3.2.1 |
tictoc | 1.2.1 | tidybayes | 3.0.6 |
tidybulk | 1.14.3 | tidydr | 0.0.5 |
tidygraph | 1.3.1 | tidyHeatmap | 1.8.1 |
tidyr | 1.3.1 | tidyselect | 1.2.1 |
tidySingleCellExperiment | 1.12.0 | tidySummarizedExperiment | 1.12.0 |
tidytext | 0.4.1 | tidytidbits | 0.3.2 |
tidytree | 0.4.6 | tidyverse | 2.0.0 |
tiff | 0.1-12 | tigre | 1.56.0 |
tiledb | 0.24.0 | TileDBArray | 1.12.0 |
tilingArray | 1.80.0 | timechange | 0.3.0 |
timecourse | 1.74.0 | timeDate | 4032.109 |
timeOmics | 1.14.0 | timescape | 1.26.0 |
timeSeries | 4032.109 | TimiRGeN | 1.11.0 |
timsac | 1.3.8-4 | TIN | 1.34.0 |
tinytex | 0.50 | tippy | 0.1.0 |
TissueEnrich | 1.22.0 | TitanCNA | 1.40.0 |
tkrplot | 0.0-27 | tkWidgets | 1.80.0 |
tLOH | 1.10.0 | tm | 0.7-12 |
TMB | 1.9.10 | TMixClust | 1.24.0 |
tmvtnorm | 1.6 | TNBC.CMS | 1.18.0 |
TnT | 1.24.0 | TOAST | 1.16.0 |
tokenizers | 0.3.0 | tomoda | 1.12.0 |
tomoseqr | 1.6.0 | TOP | 1.2.0 |
topconfects | 1.18.0 | topdownr | 1.24.0 |
topGO | 2.54.0 | topicmodels | 0.2-16 |
torch | 0.12.0 | ToxicoGx | 2.6.0 |
TPP | 3.30.0 | TPP2D | 1.18.0 |
tracktables | 1.36.0 | trackViewer | 1.38.2 |
tractor.base | 3.4.2 | tradeSeq | 1.16.0 |
TrajectoryGeometry | 1.10.1 | TrajectoryUtils | 1.10.1 |
transcriptogramer | 1.24.0 | transcriptR | 1.30.0 |
transformGamPoi | 1.8.0 | transformr | 0.1.5 |
transite | 1.20.1 | tRanslatome | 1.40.0 |
transomics2cytoscape | 1.12.0 | transport | 0.14-7 |
TransView | 1.46.0 | traseR | 1.32.0 |
traviz | 1.8.0 | TreeAndLeaf | 1.14.0 |
treeio | 1.26.0 | treekoR | 1.10.0 |
treemap | 2.4-4 | TreeSummarizedExperiment | 2.10.0 |
TREG | 1.6.0 | Trendy | 1.24.1 |
TRESS | 1.8.0 | tricycle | 1.10.0 |
triebeard | 0.4.1 | trigger | 1.48.0 |
trio | 3.40.0 | triplex | 1.42.0 |
tripr | 1.8.0 | tRNA | 1.20.1 |
tRNAdbImport | 1.20.1 | tRNAscanImport | 1.22.0 |
TRONCO | 2.34.0 | truncdist | 1.0-2 |
truncnorm | 1.0-9 | trust | 0.1-8 |
TSCAN | 1.40.1 | tseries | 0.10-55 |
tsne | 0.1-3.1 | TSP | 1.2-4 |
ttgsea | 1.10.0 | TTMap | 1.24.0 |
TTR | 0.24.4 | ttservice | 0.4.0 |
TurboNorm | 1.50.0 | TVTB | 1.28.0 |
tweeDEseq | 1.48.0 | tweedie | 2.3.5 |
tweenr | 2.0.3 | twilight | 1.78.0 |
twoddpcr | 1.26.0 | txcutr | 1.8.0 |
TxDb.Celegans.UCSC.ce6.ensGene | 3.2.2 | TxDb.Dmelanogaster.UCSC.dm3.ensGene | 3.2.2 |
TxDb.Dmelanogaster.UCSC.dm6.ensGene | 3.12.0 | TxDb.Hsapiens.UCSC.hg18.knownGene | 3.2.2 |
TxDb.Hsapiens.UCSC.hg19.knownGene | 3.2.2 | TxDb.Hsapiens.UCSC.hg38.knownGene | 3.18.0 |
TxDb.Mmusculus.UCSC.mm10.knownGene | 3.10.0 | TxDb.Mmusculus.UCSC.mm9.knownGene | 3.2.2 |
TxDb.Rnorvegicus.UCSC.rn4.ensGene | 3.2.2 | tximeta | 1.20.3 |
tximport | 1.30.0 | tximportData | 1.30.0 |
TypeInfo | 1.68.0 | tzdb | 0.4.0 |
UCell | 2.6.2 | ucminf | 1.2.1 |
Ularcirc | 1.20.0 | umap | 0.2.10.0 |
UMI4Cats | 1.12.0 | uncoverappLib | 1.12.0 |
UNDO | 1.44.0 | unifiedWMWqPCR | 1.38.0 |
UniProt.ws | 2.42.0 | uniqtag | 1.0.1 |
Uniquorn | 2.22.0 | units | 0.8-5 |
universalmotif | 1.20.0 | unmarked | 1.4.1 |
updateObject | 1.6.0 | UpSetR | 1.4.0 |
urca | 1.3-3 | urlchecker | 1.0.1 |
urltools | 1.7.3 | usethis | 2.2.3 |
uSORT | 1.28.0 | utf8 | 1.2.4 |
uuid | 1.2-0 | uwot | 0.1.16 |
V8 | 4.4.2 | VAExprs | 1.8.0 |
valr | 0.7.0 | VAM | 1.1.0 |
VanillaICE | 1.64.1 | VarCon | 1.10.0 |
VarfromPDB | 2.2.10 | varhandle | 2.0.6 |
variancePartition | 1.32.5 | VariantAnnotation | 1.48.1 |
VariantExperiment | 1.16.0 | VariantFiltering | 1.38.0 |
VariantTools | 1.44.0 | varSelRF | 0.7-8 |
VaSP | 1.14.0 | vbmp | 1.70.0 |
vcd | 1.4-12 | VCFArray | 1.18.0 |
vcfR | 1.15.0 | vctrs | 0.6.5 |
VDJdive | 1.4.0 | VegaMC | 3.40.0 |
vegan | 2.6-4 | velociraptor | 1.12.0 |
veloviz | 1.8.0 | venn | 1.12 |
VennDetail | 1.18.0 | VennDiagram | 1.7.3 |
verification | 1.42 | VERSO | 1.12.0 |
VGAM | 1.1-10 | vidger | 1.22.0 |
VIM | 6.2.2 | vioplot | 0.4.0 |
viper | 1.36.0 | vipor | 0.4.7 |
viridis | 0.6.5 | viridisLite | 0.4.2 |
visdat | 0.6.0 | ViSEAGO | 1.16.0 |
visNetwork | 2.1.2 | vissE | 1.10.0 |
Voyager | 1.4.0 | VplotR | 1.12.1 |
vroom | 1.6.5 | vsclust | 1.4.0 |
vsn | 3.70.0 | vtpnet | 0.42.0 |
vulcan | 1.24.0 | waddR | 1.16.0 |
waffle | 1.0.2 | waiter | 0.2.5 |
waldo | 0.5.2 | warp | 0.2.1 |
wateRmelon | 2.8.0 | wavClusteR | 2.36.0 |
waveslim | 1.8.4 | wavethresh | 4.7.2 |
wdm | 0.2.4 | weaver | 1.68.0 |
webbioc | 1.74.0 | webchem | 1.3.0 |
webshot | 0.5.5 | webutils | 1.2.0 |
weitrix | 1.14.0 | wesanderson | 0.3.7 |
WGCNA | 1.72-5 | wheatmap | 0.2.0 |
whisker | 0.4.1 | widgetTools | 1.80.0 |
wiggleplotr | 1.26.0 | withr | 3.0.0 |
wk | 0.9.1 | word2vec | 0.4.0 |
wordcloud | 2.6 | wordcloud2 | 0.2.1 |
wpm | 1.12.0 | wppi | 1.10.0 |
Wrench | 1.20.0 | writexl | 1.5.0 |
WriteXLS | 6.5.0 | wrswoR | 1.1.1 |
xcms | 4.0.2 | xcore | 1.6.0 |
XDE | 2.48.0 | Xeva | 1.18.0 |
xfun | 0.42 | xgboost | 1.7.7.1 |
XINA | 1.20.0 | xmapbridge | 1.60.0 |
XML | 3.99-0.16.1 | xml2 | 1.3.6 |
XML2R | 0.0.6 | xmlparsedata | 1.0.5 |
XNAString | 1.10.0 | xopen | 1.0.0 |
xtable | 1.8-4 | XtraSNPlocs.Hsapiens.dbSNP144.GRCh37 | 0.99.12 |
xts | 0.13.2 | XVector | 0.42.0 |
yaImpute | 1.0-34 | yaml | 2.3.8 |
yamss | 1.28.0 | YAPSA | 1.28.0 |
yardstick | 1.3.0 | yarn | 1.28.0 |
yeastCC | 1.42.0 | yeastExpData | 0.48.0 |
yesno | 0.1.2 | yulab.utils | 0.1.4 |
zCompositions | 1.5.0-3 | zeallot | 0.1.0 |
zellkonverter | 1.12.1 | zenith | 1.4.2 |
zFPKM | 1.24.0 | zinbwave | 1.24.0 |
zip | 2.3.1 | zlibbioc | 1.48.2 |
zoo | 1.8-12 | ZygosityPredictor | 1.2.0 |
Linux SFTP Server
After the virtual machine is started, you can access the SFTP Server through FileZilla.
Username and password
The default username is elm and the password is the last 12 digits of the vmId.
FileZilla
Steps to connect to the Linux SFTP Server
Install FileZilla
FileZilla can be downloaded here
Connect to the SFTP Server
- Host: sftp://public_address (like sftp://54.146.32.239)
- Username: elm
- Password: the last 12 digits of the vmId. The vmId can be found in the JSON View with the form of 1f61b751-037a-489e-8638-3fc32fe6894d. Only the last 12 digits 3fc32fe6894d are used as the password.
- Port: 2222
Selecting "Always trust this host, add this key to the cache" will avoid showing this message.
Once the server is connected, the directory share is used to exchange files.
Location of shared folder
On the server, the shared folder is /data/elm/share.
Getting password
Azure VM console
The json view can be reached from the VM console.
JSON View
The password is the last 12 digits of the vmId.
The VM for the virus scan API server using ClamAV is a pre-configured Virtual Machine Image designed to facilitate the setup and deployment of an API server for performing virus scans on data files. 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 server, 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.
Security Consideration
To enhance security, it is highly recommended to disable the public IP address associated with the instance. This measure helps restrict access to the API Server and mitigates potential risks.
Network Consideration
It is suggested to deploy this server within the same availability zone as your existing infrastructure to minimize data transfer charges. By colocating the virus scan server and your other resources in the same availability zone, you can leverage the low-cost or free data transfer within the same zone. And it ensures that the virus scan API server operates within the same network environment as your infrastructure, enabling faster and more efficient communication while minimizing data transfer costs.
Performance Consideration
Ensure optimal performance by a virtual machine with a minimum of 2 CPUs and 4 GB RAM for seamless operation of the API server.
Cross-Machine File Scanning
If you need to scan files residing on different machines, you can utilize the NFS server enabled on the API server. Here's how:
-
Create a directory on your local machine to store the data you want to scan. For example:
mkdir /tmp/data-to-scan
-
Mount the NFS shared directory from your Virus Scan Server to your local machine using this command:
sudo mount -t nfs api-server-ip-address:/elm/shared /tmp/data-to-scan
-
Any files stored in /tmp/data-to-scan on your local machine can be accessed and scanned by the Virus Scan Server via http://api-server-ip-address:8080/api/clamav/scan/file
The NFS client can be installed using
sudo apt install nfs-common
and
sudo yum install nfs-utils
for ubuntu-like and amazon-linux-like operating systems, respectively.
Scan a local file on the API Server
After starting the virtual machine, 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 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
The virus scan API Server is configured to listen on the local address 127.0.0.1:3000. To initiate a virus scan, you can send an HTTP request to http://127.0.0.1:3000/api/clamav/scan/file if the request originates from within the virus scan API server.
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 API endpoint is not available , the response would be
{"code":99,"message":"Handler Not Found"}
Shell
curl -d '{"file": "/tmp/test"}' -H 'Content-Type: application/json' http://172.31.39.37:8080/api/clamav/scan/file
Python
import requests
import json
def elm_scan_file(url, file):
# Define the payload as a dictionary
payload = {
"file": file
}
# 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_file(
url = "http://172.31.39.37:8080/api/clamav/scan/file", \
file = '/tmp/virus_test.txt')
if result:
print(result)
print(result['code'])
print(result['message'])
JavaScript
const axios = require('axios');
async function elmScanFile(url, file) {
try {
const payload = {
file
};
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/file';
const file = '/tmp/virus_test.txt';
const result = await elmScanFile(url, file);
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>?> elmScanFile(String url, String file) async {
try {
final payload = {
'file': file
};
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/file';
final file = '/tmp/virus_test.txt';
final result = await elmScanFile(url, file);
if (result != null) {
print(result);
print(result['code']);
print(result['message']);
}
}
Go
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
func elmScanFile(url string, file string) (map[string]interface{}, error) {
payload := map[string]interface{}{
"file": file
}
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/file"
file := "/tmp/virus_test.txt"
result, err := elmScanFile(url, file)
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.1.0.1
Applied security patching and Enabled NSF Server such that the API server can be used to scan the files on other machines.
With this new feature, implementing it into your existing application is straightforward. Here's how you can do it:
-
Install the NFS client on your virtual machine.
-
Mount the shared folder, /elm/shared, located on the API Server, to your existing VM instance. You can choose a destination directory for this, for example, /tmp/data-to-scan.
-
Once the folder is mounted, any files placed into /tmp/data-to-scan can be seamlessly scanned using the API Server, as if these files were stored locally in the /elm/shared folder on the API Server.
API endpoints
- http://ip-address:8080/api/clamav/scan/file
The VPN Server with Web GUI Admin is powered by OpenVPN which provides secure and encrypted communication channels, ensuring seamless connectivity and privacy for users across networks.
Once the virtual machine is deployed, a VPN client elm is created and the certificate can be downloaded through the web admin panel where more clients can be created.
You can access the admin panel with its public IP address. The default username is elm and the password is the last 12 digits of the vmId. The vmId can be found in the JSON View with the form of 1f61b751-037a-489e-8638-3fc32fe6894d. Only the last 12 digits 3fc32fe6894d are used as the password.
Download and install OpenVPN Client from https://openvpn.net/client/
Access the web admin
You can access the admin panel with its public IP address. The default username is elm and the password is the last 12 digits of the vmId. The vmId can be found in the JSON View with the form of 1f61b751-037a-489e-8638-3fc32fe6894d. Only the last 12 digits 3fc32fe6894d are used as the password.
Enter the web admin to download the certificate
Download and install OpenVPN Client from https://openvpn.net/client/
Import the downloaded certificate
Connect to the VPN server
Connection status
Check the VPN status by accessing https://www.showmyip.com/
Create new VPN client
Check the newly created client and download the certificate
Revoke a client certificate
When a new IP address (53.80.91.153) is assigned to the VPN server, the client profile needs to be updated.
After the virtual machine 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 instance id.
RStudio Server
R: 4.4.2
rstudio-server: 2024.04.2-764
OS: Ubuntu 24.04
Release Notes
Installed R 4.4.2 and R packages supporting various domains.
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 (4319)
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 | acnr | 1.0.0 |
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.84.0 | affyio | 1.76.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 |
Allspice | 1.0.7 | 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.84.0 |
AnnotationBustR | 1.3.0 | AnnotationDbi | 1.68.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 | apt | 4.0 |
ARCensReg | 3.0.1 | archetypes | 2.2-0.1 |
archive | 1.1.9 | archivist | 2.3.8 |
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.36.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 | assorthead | 1.0.0 |
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 | 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 |
bbk | 0.4.0 | 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.22.0 |
beadarray | 2.56.0 | BeadDataPackR | 1.58.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 | binsegRcpp | 2023.8.31 |
binseqtest | 1.0.4 | bio3d | 2.4-5 |
Biobase | 2.66.0 | BiocFileCache | 2.14.0 |
BiocGenerics | 0.52.0 | BiocIO | 1.16.0 |
BiocManager | 1.30.25 | BiocParallel | 1.40.0 |
BiocSingular | 1.22.0 | BiocVersion | 3.20.0 |
BioInsight | 0.3.1 | biomaRt | 2.62.0 |
biomartr | 1.0.7 | biomformat | 1.34.0 |
bioseq | 0.1.4 | Biostrings | 2.74.0 |
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 |
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 | brotli | 1.3.1 |
bsam | 1.1.3 | bsamGP | 1.2.5 |
BSgenome | 1.74.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 | bundesligR | 0.1.0 |
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 |
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 |
cbsodataR | 1.1 | ccaPP | 0.3.4 |
cccp | 0.3-1 | cdlTools | 1.13 |
CDM | 8.2-6 | cds | 1.0.3 |
CellNOptR | 1.52.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 |
ChessGmooG | 0.1.0 | 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.14.0 | 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.48.0 |
coalescentMCMC | 0.4-4 | coarseDataTools | 0.6-6 |
cobalt | 4.5.5 | cobs | 1.3-8 |
coconots | 1.1.3 | 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.17 | collapsibleTree | 0.1.8 |
collections | 0.3.7 | colmozzie | 1.1.1 |
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.22.0 | CompQuadForm | 1.4.3 |
comprehenr | 0.6.10 | 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 | 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 | correctR | 0.2.1 |
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.32.0 |
DelayedMatrixStats | 1.28.0 | deldir | 2.0-4 |
deltaPlotR | 1.6 | demography | 2.0 |
dendextend | 1.18.1 | dendsort | 0.3.4 |
denguedatahub | 2.1.1 | 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.46.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 |
diyar | 0.5.1 | 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.80.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 | 4.0.0 |
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.1 | 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.84.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.48.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.4.0 | 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 |
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 | EloOptimized | 0.3.2 |
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.26.1 |
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 | epicasting | 0.1.0 |
epiCleanr | 0.2.0 | epicontacts | 1.1.4 |
EpiContactTrace | 0.18.0 | EpiCurve | 2.4-2 |
epidatr | 1.2.0 | epiDisplay | 3.5.0.2 |
epidm | 1.0.4 | EpiDynamics | 0.3.1 |
EpiEstim | 2.2-4 | epiflows | 0.2.1 |
epigrowthfit | 0.15.3 | EpiILM | 1.5.2 |
EpiILMCT | 1.1.7 | epikit | 0.1.6 |
epimdr | 0.6-5 | epimdr2 | 1.0-9 |
EpiModel | 2.5.0 | epinet | 2.1.11 |
EpiNow2 | 1.6.1 | epiphy | 0.5.0 |
epiR | 2.0.76 | EpiReport | 1.0.2 |
episensr | 1.3.0 | EpiSignalDetection | 0.1.2 |
EpiStats | 1.6-2 | epitab | 0.2.2 |
epitools | 0.5-10.1 | epitrix | 0.4.0 |
epitweetr | 2.2.16 | epiworldR | 0.3-2 |
epiworldRShiny | 0.1-0 | 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 | erer | 4.0 |
ergm | 4.7.1 | 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 |
euroleaguer | 0.2.0 | 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 |
f1dataR | 1.6.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 |
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.32.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 |
FlowScreen | 1.2.6 | fma | 2.5 |
FMC | 1.0.1 | fmcmc | 0.5-2 |
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 | fpop | 2019.08.26 |
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 | gameR | 0.0.6 |
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.88.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.42.0 | GenomeInfoDbData | 1.2.13 |
GenomicAlignments | 1.42.0 | GenomicFeatures | 1.58.0 |
GenomicRanges | 1.58.0 | 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 |
geometries | 0.2.4 | geometry | 0.5.0 |
geomorph | 4.0.8 | geonames | 0.999 |
geonapi | 0.7-2 | GEOquery | 2.74.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 |
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.4.0 | 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 |
ggtangle | 0.0.4 | ggtext | 0.1.2 |
ggthemes | 5.1.0 | ggtree | 3.14.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.60.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.20.0 | 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.32.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.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.84.0 | graphicalVAR | 0.3.4 |
graphite | 1.52.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.68.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 | 2.0.0 |
GSVAdata | 1.42.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.34.0 | hdf5r | 1.3.11 |
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.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 | 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.1 |
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.1 | 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.78.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.48.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.80.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 |
insee | 1.1.7 | 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.40.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 | ISAR | 0.1.12 |
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.66.0 | KEGGREST | 1.46.0 |
kelvin | 2.0-2 | Kendall | 2.2.1 |
kequate | 1.6.4 | keras | 2.15.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.11-01 |
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 | LearningRlab | 2.4 |
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.62.0 |
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.28.0 | m5 | 0.1.1 |
MAAPER | 1.1.1 | maat | 1.1.0 |
madrat | 3.6.4 | maestro | 0.3.0 |
maftools | 2.22.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 |
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.72.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.18.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.40.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 | metadat | 1.2-0 |
metafor | 4.6-0 | metaheuristicOpt | 2.0.0 |
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.66.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.64.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.30.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 | mlbplotR | 1.1.0 |
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 | MMWRweek | 0.1.3 |
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.62.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 |
nblR | 0.0.4 | 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-1 | nmw | 0.1.5 |
nnfor | 0.9.9 | nnls | 1.6 |
NNS | 10.9.3 | noaastormevents | 0.2.0 |
nodbi | 0.10.7 | nominatimlite | 0.4.1 |
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 | normaliseR | 0.1.2 |
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 | OBsMD | 12.0 |
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 | openxlsx2 | 1.10 |
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.20.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 |
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 | 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.46.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.98.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 |
phaseR | 2.2.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.50.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.68.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 |
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.46.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 | 1.0.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.40.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.38.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.27.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.82.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-1 | 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.26.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 |
REDCapCAST | 24.10.3 | REDCapDM | 0.9.9 |
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.4.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 |
ReviewR | 2.3.10 | 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 | rgl | 1.3.12 |
Rglpk | 0.6-5.1 | RgoogleMaps | 1.5.1 |
RGraphics | 3.0-2 | Rgraphviz | 2.50.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.50.0 | rhdf5filters | 1.18.0 |
Rhdf5lib | 1.28.0 | RHMS | 1.7 |
rhosa | 0.3.0 | RhpcBLASctl | 0.23-42 |
Rhtslib | 3.2.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 |
rix | 0.12.4 | 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 | 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 |
robustarima | 0.2.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.22.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 | 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.66.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.26.0 |
rworldmap | 1.3-8 | rworldxtra | 1.01 |
rwunderground | 0.1.8 | rxode2 | 3.0.2 |
rxode2ll | 2.0.11 | RYandexTranslate | 1.0 |
s2 | 1.1.7 | S4Arrays | 1.6.0 |
S4Vectors | 0.44.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-1 |
sarima | 0.9.3 | 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.14.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 | shinySIR | 0.1.2 |
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.28.0 |
singleCellHaystack | 1.0.2 | singleRcapture | 0.2.1.2 |
singscore | 1.26.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.56.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.6.0 |
sparseDFM | 1.0 | sparseinv | 0.1.3 |
SparseM | 1.84-2 | sparseMatrixStats | 1.18.0 |
sparseMVN | 0.2.2 | sparsevar | 0.1.0 |
spatgraphs | 3.4 | spatialCovariance | 0.6-9 |
SpatialEpi | 1.2.8 | SpatialExperiment | 1.16.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-1 | 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 |
splm | 1.6-5 | spls | 2.2-3 |
splus2R | 1.3-5 | splusTimeDate | 2.5.8 |
splusTimeSeries | 1.5.7 | 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.36.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.56.0 | surveillance | 1.24.0 |
survey | 4.4-2 | surveybootstrap | 0.0.3 |
surveydata | 0.2.7 | surveyplanning | 4.0 |
surveysd | 1.3.1 | survivalROC | 1.0.3.1 |
survminer | 0.5.0 | survMisc | 0.5.6 |
survPresmooth | 1.1-11 | sva | 3.54.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 | tabulapdf | 1.0.5-3 |
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 | tbea | 1.5.0 |
TBRDist | 1.0.2 | tbrf | 0.1.5 |
TCA | 1.2.1 | TCGAbiolinks | 2.34.0 |
TCGAbiolinksGUI.data | 1.26.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 |
theftdlc | 0.1.2 | 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 |
tidychangepoint | 0.0.1 | 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 | 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.54 | tis | 1.39 |
tkrplot | 0.0-27 | tkWidgets | 1.84.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 | 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.14.0 | trajr | 1.5.1 |
transformr | 0.1.5 | transfR | 1.0.11 |
TransPhylo | 1.4.5 | transport | 0.15-4 |
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.30.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.44.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 |
tsgc | 0.0 | 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.20.0 | tximport | 1.34.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.2.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.74.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 |
wbs | 1.4 | 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.84.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.46.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.52.0 |
zoo | 1.8-12 | ZRA | 0.2 |
ztable | 0.2.3 | zTree | 1.0.7 |
zyp | 0.11-1 |
Set up JupyterHub Server
Default user: jhub-admin
Please sign up and set your password for jhub-admin when you start the server for the first time. Different from regular users, jhub-admin is automatically authorized to log in after the password is created.
http is supported out of box.
If https is desired, please send your request to support@elmcomputing.io
Startup page
After the instance is started, you can access the JupyterHub 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:
Sign-up page
When the JupyterHub Server is activated, a default user "jhub-admin" is created. The first time you access the server, a password need to be set for "jhub-admin".
jupyterlab
Authorize page
When creating new users, an authorization step is needed at "http://10.11.12.13/hub/authorize"
Change password
The password can be changed at "http://10.11.12.13/hub/change-password"
Python version: 3.11
Python packages
package | version | package | version |
---|---|---|---|
absl-py | 2.1.0 | alembic | 1.14.0 |
altair | 5.5.0 | annotated-types | 0.7.0 |
anyio | 4.6.2.post1 | argon2-cffi | 23.1.0 |
argon2-cffi-bindings | 21.2.0 | arrow | 1.3.0 |
arviz | 0.20.0 | asgiref | 3.8.1 |
asttokens | 2.4.1 | astunparse | 1.6.3 |
async-lru | 2.0.4 | attrs | 24.2.0 |
Automat | 24.8.1 | babel | 2.16.0 |
bayesian-optimization | 2.0.0 | bcrypt | 4.2.1 |
beautifulsoup4 | 4.12.3 | black | 24.10.0 |
bleach | 6.2.0 | blinker | 1.9.0 |
blis | 1.0.1 | bokeh | 3.6.1 |
Boruta | 0.4.3 | Bottleneck | 1.4.2 |
branca | 0.8.0 | cachetools | 5.5.0 |
catalogue | 2.0.10 | catboost | 1.2.5 |
certifi | 2024.8.30 | certipy | 0.2.1 |
cffi | 1.17.1 | charset-normalizer | 3.4.0 |
click | 8.1.7 | cloudpathlib | 0.20.0 |
cloudpickle | 3.1.0 | cmake | 3.31.1 |
cmdstanpy | 1.2.4 | colorama | 0.4.6 |
colorlog | 6.9.0 | colorlover | 0.3.0 |
comm | 0.2.2 | confection | 0.1.5 |
constantly | 23.10.4 | contourpy | 1.3.1 |
coverage | 7.6.8 | cryptography | 43.0.3 |
cssselect | 1.2.0 | cufflinks | 0.17.3 |
cycler | 0.12.1 | cymem | 2.0.10 |
Cython | 3.0.11 | dash | 2.9.3 |
dash-core-components | 2.0.0 | dash-html-components | 2.0.0 |
dash-table | 5.0.0 | dask | 2024.11.2 |
databricks-sdk | 0.38.0 | datascience | 0.17.6 |
deap | 1.4.1 | debugpy | 1.8.9 |
decorator | 5.1.1 | defusedxml | 0.7.1 |
Deprecated | 1.2.15 | dill | 0.3.9 |
Django | 5.1.3 | dm-tree | 0.1.8 |
docker | 7.1.0 | eli5 | 0.13.0 |
executing | 2.1.0 | facets | 1.1.0 |
fairlearn | 0.11.0 | fastapi | 0.115.5 |
fastjsonschema | 2.20.0 | fastprogress | 1.0.3 |
filelock | 3.16.1 | flake8 | 7.1.1 |
Flask | 3.1.0 | flatbuffers | 24.3.25 |
folium | 0.18.0 | fonttools | 4.55.0 |
fqdn | 1.5.1 | fsspec | 2024.10.0 |
funcy | 2.0 | future | 1.0.0 |
gast | 0.6.0 | gensim | 4.3.2 |
geopandas | 1.0.1 | gitdb | 4.0.11 |
GitPython | 3.1.43 | google-auth | 2.36.0 |
google-pasta | 0.2.0 | graphene | 3.4.3 |
graphql-core | 3.2.5 | graphql-relay | 3.2.0 |
graphviz | 0.20.3 | greenlet | 3.1.1 |
grpcio | 1.68.0 | gunicorn | 23.0.0 |
h11 | 0.14.0 | h5netcdf | 1.4.1 |
h5py | 3.12.1 | hdbscan | 0.8.40 |
holidays | 0.61 | html5lib | 1.1 |
htmlmin | 0.1.12 | httpcore | 1.0.7 |
httpx | 0.27.2 | huggingface-hub | 0.26.2 |
hyperlink | 21.0.0 | hyperopt | 0.2.7 |
idna | 3.10 | ImageHash | 4.3.1 |
imageio | 2.36.0 | imbalanced-learn | 0.12.4 |
imblearn | 0.0 | importlib_metadata | 8.5.0 |
importlib_resources | 6.4.5 | incremental | 24.7.2 |
iniconfig | 2.0.0 | ipykernel | 6.29.5 |
ipytablewidgets | 0.3.2 | ipython | 8.29.0 |
ipywidgets | 8.1.5 | isoduration | 20.11.0 |
isort | 5.13.2 | itemadapter | 0.9.0 |
itemloaders | 1.3.2 | itsdangerous | 2.2.0 |
jedi | 0.19.2 | Jinja2 | 3.1.4 |
jmespath | 1.0.1 | joblib | 1.4.2 |
json5 | 0.9.28 | jsonpointer | 3.0.0 |
jsonschema | 4.23.0 | jsonschema-specifications | 2024.10.1 |
jupyter | 1.1.1 | jupyter-console | 6.6.3 |
jupyter-events | 0.10.0 | jupyter-lsp | 2.2.5 |
jupyter_client | 8.6.3 | jupyter_core | 5.7.2 |
jupyter_server | 2.14.2 | jupyter_server_terminals | 0.5.3 |
jupyterhub | 5.2.1 | jupyterhub-nativeauthenticator | 1.3.0 |
jupyterlab | 4.3.1 | jupyterlab_pygments | 0.3.0 |
jupyterlab_server | 2.27.3 | jupyterlab_widgets | 3.0.13 |
keras | 3.6.0 | keras-tuner | 1.4.7 |
kiwisolver | 1.4.7 | kmodes | 0.12.2 |
kt-legacy | 1.0.5 | langcodes | 3.5.0 |
language_data | 1.3.0 | lazy_loader | 0.4 |
libclang | 18.1.1 | lightgbm | 4.5.0 |
lime | 0.2.0.1 | lit | 18.1.8 |
llvmlite | 0.43.0 | locket | 1.0.0 |
lucid | 0.3.8 | lxml | 5.3.0 |
lz4 | 4.3.3 | Mako | 1.3.6 |
marisa-trie | 1.2.1 | Markdown | 3.7 |
markdown-it-py | 3.0.0 | MarkupSafe | 3.0.2 |
matplotlib | 3.9.2 | matplotlib-inline | 0.1.7 |
matplotlib-venn | 1.1.1 | mccabe | 0.7.0 |
mdurl | 0.1.2 | missingno | 0.5.2 |
mistune | 3.0.2 | ml-dtypes | 0.4.1 |
mlflow | 2.18.0 | mlflow-skinny | 2.18.0 |
mlpack | 4.5.0 | mlxtend | 0.23.3 |
more-itertools | 10.5.0 | mpld3 | 0.5.10 |
mpmath | 1.3.0 | multimethod | 1.4 |
murmurhash | 1.0.11 | mxnet | 1.0.0.post1 |
mypy-extensions | 1.0.0 | namex | 0.0.8 |
narwhals | 1.14.2 | nbclient | 0.10.0 |
nbconvert | 7.16.4 | nbformat | 5.10.4 |
nest-asyncio | 1.6.0 | networkx | 3.4.2 |
nibabel | 5.3.2 | nilearn | 0.10.4 |
nltk | 3.9.1 | notebook | 7.0.7 |
notebook_shim | 0.2.4 | numba | 0.60.0 |
numexpr | 2.10.2 | numpy | 2.0.2 |
nvidia-cublas-cu11 | 11.10.3.66 | nvidia-cuda-cupti-cu11 | 11.7.101 |
nvidia-cuda-nvrtc-cu11 | 11.7.99 | nvidia-cuda-runtime-cu11 | 11.7.99 |
nvidia-cudnn-cu11 | 8.5.0.96 | nvidia-cufft-cu11 | 10.9.0.58 |
nvidia-curand-cu11 | 10.2.10.91 | nvidia-cusolver-cu11 | 11.4.0.1 |
nvidia-cusparse-cu11 | 11.7.4.91 | nvidia-nccl-cu11 | 2.14.3 |
nvidia-nccl-cu12 | 2.23.4 | nvidia-nvtx-cu11 | 11.7.91 |
oauthlib | 3.2.2 | onetimepass | 1.0.1 |
opencv-python | 4.10.0.84 | opentelemetry-api | 1.28.2 |
opentelemetry-sdk | 1.28.2 | opentelemetry-semantic-conventions | 0.49b2 |
opt_einsum | 3.4.0 | optree | 0.13.1 |
optuna | 4.1.0 | overrides | 7.7.0 |
packaging | 24.2 | pamela | 1.2.0 |
pandas | 2.2.3 | pandas-profiling | 3.0.0 |
pandocfilters | 1.5.1 | parsel | 1.9.1 |
parso | 0.8.4 | partd | 1.4.2 |
pathspec | 0.12.1 | patsy | 1.0.1 |
pexpect | 4.9.0 | phik | 0.12.4 |
pillow | 11.0.0 | platformdirs | 4.3.6 |
plotly | 5.24.1 | pluggy | 1.5.0 |
preshed | 3.0.9 | prometheus_client | 0.21.0 |
prompt_toolkit | 3.0.48 | prophet | 1.1.6 |
Protego | 0.3.1 | protobuf | 5.28.3 |
psutil | 6.1.0 | ptyprocess | 0.7.0 |
pure_eval | 0.2.3 | py4j | 0.10.9.7 |
pyarrow | 18.0.0 | pyasn1 | 0.6.1 |
pyasn1_modules | 0.4.1 | pycaret | 2.2.2 |
pycodestyle | 2.12.1 | pycparser | 2.22 |
pydantic | 2.10.1 | pydantic_core | 2.27.1 |
pydeck | 0.9.1 | PyDispatcher | 2.0.7 |
pydot | 3.0.2 | pyflakes | 3.2.0 |
Pygments | 2.18.0 | pyLDAvis | 3.4.1 |
pymc3 | 3.11.4 | pynndescent | 0.5.13 |
pyod | 2.0.2 | pyogrio | 0.10.0 |
PyOpenGL | 3.1.7 | pyOpenSSL | 24.2.1 |
pyparsing | 3.2.0 | pyproj | 3.7.0 |
pytest | 8.3.3 | pytest-cov | 6.0.0 |
python-dateutil | 2.9.0.post0 | python-json-logger | 2.0.7 |
pytz | 2024.2 | PyWavelets | 1.7.0 |
PyYAML | 6.0.2 | pyzmq | 26.2.0 |
queuelib | 1.7.0 | referencing | 0.35.1 |
regex | 2024.11.6 | requests | 2.32.3 |
requests-file | 2.1.0 | rfc3339-validator | 0.1.4 |
rfc3986-validator | 0.1.1 | rich | 13.9.4 |
rpds-py | 0.21.0 | rsa | 4.9 |
safetensors | 0.4.5 | scikit-base | 0.11.0 |
scikit-image | 0.24.0 | scikit-learn | 1.5.2 |
scikit-plot | 0.3.7 | scipy | 1.14.1 |
Scrapy | 2.12.0 | seaborn | 0.13.2 |
semver | 3.0.2 | Send2Trash | 1.8.3 |
service-identity | 24.2.0 | shap | 0.46.0 |
shapely | 2.0.6 | shellingham | 1.5.4 |
six | 1.16.0 | sktime | 0.34.0 |
slicer | 0.0.8 | smart-open | 7.0.5 |
smmap | 5.0.1 | sniffio | 1.3.1 |
soupsieve | 2.6 | spacy | 3.8.2 |
spacy-legacy | 3.0.12 | spacy-loggers | 1.0.5 |
SQLAlchemy | 2.0.36 | sqlparse | 0.5.2 |
srsly | 2.4.8 | stack-data | 0.6.3 |
stanio | 0.5.1 | starlette | 0.41.3 |
statsmodels | 0.14.4 | stopit | 1.1.2 |
streamlit | 1.40.1 | sympy | 1.13.3 |
tabulate | 0.9.0 | tangled-up-in-unicode | 0.1.0 |
tenacity | 9.0.0 | tensorboard | 2.18.0 |
tensorboard-data-server | 0.7.2 | tensorflow | 2.18.0 |
tensorflow-io-gcs-filesystem | 0.37.1 | tensorflow-probability | 0.25.0 |
termcolor | 2.5.0 | terminado | 0.18.1 |
textblob | 0.18.0.post0 | Theano-PyMC | 1.1.2 |
thinc | 8.3.2 | threadpoolctl | 3.5.0 |
tifffile | 2024.9.20 | tinycss2 | 1.4.0 |
tldextract | 5.1.3 | tokenizers | 0.20.3 |
toml | 0.10.2 | toolz | 1.0.0 |
torch | 2.0.1 | tornado | 6.4.2 |
TPOT | 0.12.2 | tqdm | 4.67.0 |
traitlets | 5.14.3 | transformers | 4.46.3 |
triton | 2.0.0 | Twisted | 24.10.0 |
typer | 0.13.1 | types-python-dateutil | 2.9.0.20241003 |
typing_extensions | 4.12.2 | tzdata | 2024.2 |
umap-learn | 0.5.7 | update-checker | 0.18.0 |
uri-template | 1.3.0 | urllib3 | 2.2.3 |
vega | 4.1.0 | visions | 0.7.1 |
w3lib | 2.2.1 | wasabi | 1.1.3 |
watchdog | 6.0.0 | wcwidth | 0.2.13 |
weasel | 0.4.1 | webcolors | 24.11.1 |
webencodings | 0.5.1 | websocket-client | 1.8.0 |
Werkzeug | 3.1.3 | widgetsnbextension | 4.0.13 |
wordcloud | 1.9.4 | wrapt | 1.17.0 |
xarray | 2024.11.0 | xarray-einstats | 0.8.0 |
xgboost | 2.1.2 | xyzservices | 2024.9.0 |
yellowbrick | 1.5 | zipp | 3.21.0 |
zope.interface | 7.1.1 |
Google Cloud Marketplace Standard EULA
VERSION: 2
DATED: January 27th, 2021
This Google Cloud Marketplace Standard EULA (this “Agreement”) is between the person or entity described as the provider of the Service on the Listing (“Elm Computing”) and the person or entity agreeing to these terms (“You” or “Customer”). This Agreement states the terms under which Vendor will provide the Service to You. By accessing or using the Service, You are agreeing to the terms of this Agreement (the date of such action, the “Effective Date”). If You are entering into this Agreement on behalf of an entity, then You represent and agree that You have the legal authority to bind that entity to this Agreement. If You do not accept the terms of this Agreement, then you cannot use the Service.
Google has made this Agreement available to help facilitate contracting between the Vendor and Customer. The parties acknowledge that (1) Google is not a party to this Agreement, (2) Google is not responsible for any of the parties’ actions, obligations, or liability under this Agreement, (3) the Agreement is made available “as-is” and “as available” without any warranty of any kind from Google, and (4) the parties’ use of this Agreement is at their own risk.
1. Applicability; Provision of the Service
1.1 Access and Use
During the Term and in accordance with this Agreement, Customer may access and use the Service solely for Customer’s internal business purposes.
1.2 Registration and Account
To use the Service, Customer will create an Account. Customer must provide complete and accurate information when creating the Account and keep the information complete and accurate at all times. Customer is responsible for (a) maintaining the security of its Account (for example, any applicable login credentials or security keys), (b) all activities that occur under Customer’s Account, and (c) any other actions taken in connection with Customer’s Account. Vendor and Vendor’s Affiliates are not responsible for unauthorized access to Customer’s Account. Customer will notify Vendor immediately if Customer believes there has been unauthorized access to or use of Customer’s Account.
1.3 Support
Vendor will provide support for the Service as provided in Vendor’s applicable support policy and in accordance with the level of support purchased by Customer (the “Support”).
1.4 Service Level Agreement
If specified for the Service on the Listing, Vendor will provide the Service in accordance with the applicable service level agreement. Not all services listed on the Marketplace include a service level agreement.
2. Customer Obligations
2.1 Restrictions
Customer will not, and will not allow any third party to:
- (a) use the Service in violation of laws or regulations,
- (b) use the Service to violate the rights of others,
- (c) use the Service in high-risk, hazardous environments requiring fail-safe performance, including in the operation of nuclear facilities, aircraft navigation or control systems, air traffic control, or weapons systems, or any other application in which the failure of the Service could lead to severe physical or environmental damages,
- (d) resell or sublicense the Service,
- (e) disable or circumvent any aspects of the Service, including security mechanisms used by the Service, or attempt to do the same,
- (f) use the Service to perform any malicious activity, including to violate the security or integrity of any network, computer or communications system, software application, or network or computing device,
- (g) generate, distribute, publish or facilitate unsolicited mass email, promotions, advertisements or other solicitations,
- (h) process or store any Customer Data that is subject to the International Traffic in Arms Regulations maintained by the Department of State,
- (i) publish or provide any benchmark or comparison test results that pertain to the Service, or
- (j) modify, adapt, or create a derivative work of the Service.
2.2 Applicable Law
Customer will comply with all laws, rules, and regulations applicable to Customer’s use of and access to the Service. Vendor will comply with all laws, rules, and regulations applicable to Vendor’s provision of the Service.
2.3 Enforcement
Vendor may, but has no obligation to:
- (a) investigate any violation of this Section 2 (Customer Obligations) or misuse of the Service, and
- (b) remove or modify any Customer Data, or disable access to any resource, that violates the foregoing.
2.4 Responsibility for Customer Data
Customer is responsible for the Customer Data, including the accuracy and completeness of such Customer Data, and any loss, liabilities or damages resulting from the Customer Data, regardless of the nature of the Customer Data. Customer is responsible for backing up or otherwise making duplicates of Customer Data. Customer is responsible for communicating with the Service through encrypted and authenticated connections, as may be required by Vendor, and for transmitting all Customer Data using appropriate security methods.
2.5 Protected Health Information
Customer will not store or process any Protected Health Information using the Service unless Customer has a Business Associate Agreement with Vendor.
2.6 Representations and Warranties
Customer represents and warrants that:
- (a) it owns or has the necessary rights and licenses to provide the Customer Data to the Service; and
- (b) the provision of the Customer Data to, and use of the Customer Data by, the Service as contemplated in this Agreement will not infringe any third party’s rights, including Intellectual Property Rights.
3. Data Processing
3.1 Use and Performance Data
Vendor may collect and analyze data regarding Customer’s use of the Service, excluding any personal data (“Performance Data”). Vendor may use this information for its own business purposes, including to maintain, operate, and improve the Service, monitor and analyze activities in connection with the Service, as well as to create anonymized statistics for Vendor’s own marketing purposes.
3.2 Data Processing Addendum
Unless a separate agreement covering the subject matter of this Agreement is entered into by the parties that specifically references the Data Processing Addendum, each party will comply with the Data Processing Addendum attached to this Agreement as Attachment 1. The Data Processing Addendum is incorporated into this Agreement by reference.
3.3 Security
Vendor will implement reasonable technical and organizational safeguards designed to protect Customer Data against unauthorized loss, destruction, alteration, access, or disclosure.
3.4 Use of Customer Data
Vendor will not access or use Customer Data except as necessary to provide the Service.
5. Payment
The parties agree that Customer’s sole payment obligations for the Service are contained in the GCP Marketplace Agreement. Customer may not use or access the Service if Customer does not comply with all of its payment obligations specified in the GCP Marketplace Agreement.
6. Confidential Information
6.1 Obligations
The recipient will not disclose the Confidential Information, except to Affiliates, employees, agents, or professional advisors who need to know it and who have agreed in writing (or in the case of professional advisors are otherwise bound) to keep it confidential. The recipient will ensure that those people and entities use the received Confidential Information only to exercise rights and fulfill obligations under this Agreement, while using reasonable care to keep it confidential.
6.2 Required Disclosure
Notwithstanding any provision to the contrary in this Agreement, the recipient may also disclose Confidential Information to the extent required by applicable Legal Process, provided that the recipient uses commercially reasonable efforts to:
- (i) promptly notify the other party of such disclosure before disclosing, and
- (ii) comply with the other party's reasonable requests regarding its efforts to oppose the disclosure.
Notwithstanding the foregoing, subsections (i) and (ii) above will not apply if the recipient determines that complying with (i) and (ii) could:
- (a) result in a violation of Legal Process;
- (b) obstruct a governmental investigation; or
- (c) lead to death or serious physical harm to an individual.
As between the parties, Customer is responsible for responding to all third-party requests concerning its use of the Service.
7. Intellectual Property
7.1 Ownership
Except as expressly stated in this Agreement, this Agreement does not grant either party any rights, implied or otherwise, to the other's content or any of the other's Intellectual Property Rights. As between Customer and Vendor, Customer owns all Intellectual Property Rights in the Customer Data, and Vendor owns all Intellectual Property Rights in the Service.
7.2 Feedback
At its option, Customer may provide feedback and suggestions about the Service to Vendor (“Feedback”). If Customer provides Feedback, then Vendor and its Affiliates may use that Feedback without restriction and without obligation to Customer.
7.3 DMCA
Vendor provides information to help copyright holders manage their intellectual property online, but Vendor cannot determine whether something is being used legally without input from the copyright holders. Vendor will respond to notices of alleged copyright infringement and may terminate repeat infringers in appropriate circumstances as required to maintain safe harbor for online service providers under the U.S. Digital Millennium Copyright Act. If Customer believes a person or entity is violating Customer’s copyrights, Customer can notify Vendor at Vendor’s notice address described in Section 12.1 (Notices).
8. Warranties and Disclaimers
8.1 Mutual
Each party represents and warrants that:
- (a) it has full power and authority to enter into the Agreement; and
- (b) it will comply with all laws and regulations applicable to its provision, or use, of the Service, as applicable.
8.2 Vendor Performance Warranty
Vendor warrants that the Service will perform substantially in accordance with the Documentation. If Vendor is providing Support, Vendor warrants that it will perform the Support in a diligent and workmanlike manner consistent with industry standards.
8.3 Remedies
If the Service or Support fails to conform to the warranties in Section 8.2 (Vendor Performance Warranty), Vendor will promptly, at its option and expense, correct the Service and re-perform the Support as necessary to conform to the warranties. If Vendor does not correct the Service or re-perform the Support to conform to the warranties within a reasonable time, not to exceed 30 days, as Customer’s sole remedy and Vendor’s exclusive liability (except as provided in Section 10), Customer may terminate this Agreement without further liability and, if the Service was purchased on a subscription basis, Vendor will issue a refund to Customer of any fees prepaid by Customer, prorated for the unused portion of the subscription.
8.4 Disclaimer
Except as stated in this Section 8 (Warranties and Disclaimers), the Service and, if applicable, Support are provided on an “AS-IS” basis. To the fullest extent permitted by law, Vendor disclaims and this Agreement excludes any implied or statutory warranty, including any warranty of title, non-infringement, merchantability or fitness for a particular purpose. Vendor does not warrant that the Service will operate uninterrupted or error-free, or that all errors will be corrected.
After the virtual machine 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 instance id.
RStudio Server
R: 4.4.0
rstudio-server: 2023.12.0+369
Release Notes
-
Upgraded R to version 4.4.0 and all R packages to their latest versions.
-
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
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 (4274)
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 |
ACD | 1.5.3 | 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.4.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 |
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.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 |
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 | 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 |
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 | 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 | BayesianTools | 0.1.8 |
bayesianVARs | 0.1.2 | 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.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 |
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 | 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 | 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 | 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 |
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.0 | 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-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 | 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.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 | 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.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 | 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.5.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.0 |
clubSandwich | 0.5.11 | clue | 0.3-65 |
clusterGeneration | 1.3.8 | clustermole | 1.1.1 |
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 | 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 |
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.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 |
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.5 |
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 |
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-13 |
D3mirt | 1.1.0 | 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.1-12 | 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 |
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.35 | 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.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 |
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 |
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.6 |
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.8.0 | 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 |
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 |
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 | ffscrapr | 1.4.8 |
fftwtools | 0.9-11 | fGarch | 4033.92 |
fgsea | 1.30.0 | fHMM | 1.3.1 |
FielDHub | 1.3.7 | fields | 15.2 |
fiery | 1.2.1 | filehash | 2.4-5 |
filehashSQLite | 0.2-6 | 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.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 |
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 | 0.5 | 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.0 | 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 | 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 |
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.5 | gbm | 2.1.9 |
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-5 |
geomapdata | 2.0-2 | geometa | 0.8-0 |
GEOmetadb | 1.66.0 | geometries | 0.2.4 |
geometry | 0.4.7 | geomorph | 4.0.7 |
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.5.6 | ggpp | 0.5.7 |
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.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-17 | 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.14 | 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 | 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 | 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 | 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 |
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.2 |
iCellR | 1.6.7 | Icens | 1.76.0 |
ICGE | 0.4.2 | ichimoku | 1.5.2 |
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 |
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 |
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.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 |
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.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 |
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 | 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.2 |
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.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 | 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.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.22 |
lokern | 1.1-11 | lomb | 2.5.0 |
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 |
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 | 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 |
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 |
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 | 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 |
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.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.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-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.resample | 0.2.3 |
modeltools | 0.2-23 | moderndive | 0.5.5 |
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.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 | 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 | multipol | 1.0-9 |
multitaper | 1.0-17 | multiway | 1.0-6 |
multiwayvcov | 1.2.3 | multtest | 2.60.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 |
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.0 | 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.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 |
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.0 |
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 | npi | 0.2.0 |
nppbib | 1.2-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.18 | 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.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 | 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 |
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 |
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 | 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.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 |
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.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 |
perARMA | 1.7 | 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 |
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.0.9 |
pkgfilecache | 0.1.5 | pkgload | 1.3.4 |
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.4.3 |
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 | 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.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.3 |
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.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 | 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 | 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.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.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.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.5.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.54 |
recipes | 1.0.10 | 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 | 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.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 | 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 | 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.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 | 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 | RQuantLib | 0.4.22 |
rrcov | 1.7-5 | rredlist | 0.7.1 |
rrefine | 2.1.0 | RRPP | 2.0.2 |
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.0 | rsm | 2.10.5 |
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.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 |
RVA | 0.0.5 | Rvcg | 0.22.2 |
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.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 | 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 |
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 | 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 |
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-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.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 | 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.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 |
sparseinv | 0.1.3 | SparseM | 1.83 |
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 |
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.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 | StMoMo | 0.4.1 |
stochQN | 0.1.2-1 | stochvol | 3.2.4 |
stockAnalyst | 1.0.1 | stops | 1.0-1 |
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 | 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.0.0 | svUnit | 1.0.6 |
swagger | 5.17.14 | 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.25 | 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 | 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 |
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.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 | 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.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.12 |
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-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.4 |
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-1 |
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 | txtq | 0.2.4 |
tzdb | 0.4.0 | uaparserjs | 0.3.5 |
ubiquity | 2.0.3 | ucminf | 1.2.1 |
UComp | 4.0.2 | 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 |
WaveletComp | 1.1 | wavelets | 0.3-0.2 |
waveslim | 1.8.5 | wavethresh | 4.7.2 |
wavScalogram | 1.1.3 | waywiser | 0.5.1 |
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 | 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.60 | 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.16.1 |
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 |
After the instance is started, you can access the RShiny 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 startup page below.
The RShiny applications are served from the directory /srv/shiny-server.
RShiny Server
R: 4.4.0
rshiny-server: 1.5.22.1017
Release Notes
Upgraded R to version 4.4.0 and all R packages to their latest versions.
This image 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 (4274)
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 |
ACD | 1.5.3 | 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.4.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 |
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.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 |
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 | 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 |
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 | 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 | BayesianTools | 0.1.8 |
bayesianVARs | 0.1.2 | 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.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 |
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 | 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 | 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 | 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 |
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.0 | 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-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 | 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.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 | 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.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 | 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.5.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.0 |
clubSandwich | 0.5.11 | clue | 0.3-65 |
clusterGeneration | 1.3.8 | clustermole | 1.1.1 |
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 | 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 |
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.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 |
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.5 |
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 |
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-13 |
D3mirt | 1.1.0 | 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.1-12 | 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 |
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.35 | 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.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 |
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 |
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.6 |
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.8.0 | 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 |
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 |
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 | ffscrapr | 1.4.8 |
fftwtools | 0.9-11 | fGarch | 4033.92 |
fgsea | 1.30.0 | fHMM | 1.3.1 |
FielDHub | 1.3.7 | fields | 15.2 |
fiery | 1.2.1 | filehash | 2.4-5 |
filehashSQLite | 0.2-6 | 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.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 |
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 | 0.5 | 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.0 | 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 | 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 |
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.5 | gbm | 2.1.9 |
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-5 |
geomapdata | 2.0-2 | geometa | 0.8-0 |
GEOmetadb | 1.66.0 | geometries | 0.2.4 |
geometry | 0.4.7 | geomorph | 4.0.7 |
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.5.6 | ggpp | 0.5.7 |
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.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-17 | 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.14 | 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 | 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 | 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 | 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 |
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.2 |
iCellR | 1.6.7 | Icens | 1.76.0 |
ICGE | 0.4.2 | ichimoku | 1.5.2 |
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 |
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 |
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.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 |
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.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 |
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 | 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.2 |
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.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 | 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.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.22 |
lokern | 1.1-11 | lomb | 2.5.0 |
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 |
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 | 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 |
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 |
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 | 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 |
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.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.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-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.resample | 0.2.3 |
modeltools | 0.2-23 | moderndive | 0.5.5 |
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.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 | 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 | multipol | 1.0-9 |
multitaper | 1.0-17 | multiway | 1.0-6 |
multiwayvcov | 1.2.3 | multtest | 2.60.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 |
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.0 | 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.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 |
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.0 |
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 | npi | 0.2.0 |
nppbib | 1.2-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.18 | 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.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 | 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 |
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 |
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 | 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.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 |
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.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 |
perARMA | 1.7 | 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 |
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.0.9 |
pkgfilecache | 0.1.5 | pkgload | 1.3.4 |
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.4.3 |
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 | 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.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.3 |
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.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 | 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 | 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.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.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.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.5.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.54 |
recipes | 1.0.10 | 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 | 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.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 | 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 | 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.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 | 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 | RQuantLib | 0.4.22 |
rrcov | 1.7-5 | rredlist | 0.7.1 |
rrefine | 2.1.0 | RRPP | 2.0.2 |
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.0 | rsm | 2.10.5 |
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.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 |
RVA | 0.0.5 | Rvcg | 0.22.2 |
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.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 | 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 |
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 | 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 |
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-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.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 | 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.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 |
sparseinv | 0.1.3 | SparseM | 1.83 |
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 |
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.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 | StMoMo | 0.4.1 |
stochQN | 0.1.2-1 | stochvol | 3.2.4 |
stockAnalyst | 1.0.1 | stops | 1.0-1 |
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 | 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.0.0 | svUnit | 1.0.6 |
swagger | 5.17.14 | 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.25 | 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 | 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 |
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.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 | 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.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.12 |
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-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.4 |
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-1 |
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 | txtq | 0.2.4 |
tzdb | 0.4.0 | uaparserjs | 0.3.5 |
ubiquity | 2.0.3 | ucminf | 1.2.1 |
UComp | 4.0.2 | 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 |
WaveletComp | 1.1 | wavelets | 0.3-0.2 |
waveslim | 1.8.5 | wavethresh | 4.7.2 |
wavScalogram | 1.1.3 | waywiser | 0.5.1 |
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 | 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.60 | 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.16.1 |
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 |
JupyterHub is a multi-user server for Jupyter notebooks, enabling multiple users to access and run Jupyter notebook environments simultaneously, often used in educational, research, and collaborative environments.
Default user: jhub-admin
Please sign up and set your password for jhub-admin when you start the server for the first time. Different from regular users, jhub-admin is automatically authorized to log in after the password is created.
http is supported out of box.
Startup page
After the instance is started, you can access the JupyterHub 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:
Sign-up page
When the JupyterHub Server is activated, a default user "jhub-admin" is created. The first time you access the server, a password need to be set for "jhub-admin".
jupyterlab
Authorize page
When creating new users, an authorization step is needed at "http://10.11.12.13/hub/authorize"
Change password
The password can be changed at "http://10.11.12.13/hub/change-password"
Release Notes
Installed the popular data science packages such as tensorflow, torch, datascience, mlpack, mlflow and xgboost.
Python version: 3.9.5
Python packages
package | version | package | version |
---|---|---|---|
absl-py | 2.1.0 | alembic | 1.13.2 |
altair | 5.3.0 | annotated-types | 0.7.0 |
anyio | 4.4.0 | argon2-cffi | 23.1.0 |
argon2-cffi-bindings | 21.2.0 | arrow | 1.3.0 |
arviz | 0.17.1 | asgiref | 3.8.1 |
asttokens | 2.4.1 | astunparse | 1.6.3 |
async-generator | 1.10 | async-lru | 2.0.4 |
attrs | 23.2.0 | automat | 22.10.0 |
babel | 2.15.0 | bayesian-optimization | 1.5.0 |
bcrypt | 4.1.3 | beautifulsoup4 | 4.12.3 |
black | 24.4.2 | bleach | 6.1.0 |
blinker | 1.8.2 | blis | 0.7.11 |
bokeh | 3.4.2 | boruta | 0.3 |
bottleneck | 1.4.0 | branca | 0.7.2 |
cachetools | 5.3.3 | catalogue | 2.0.10 |
catboost | 1.2.5 | certifi | 2024.6.2 |
certipy | 0.1.3 | cffi | 1.16.0 |
charset-normalizer | 3.3.2 | click | 8.1.7 |
cloudpathlib | 0.18.1 | cloudpickle | 3.0.0 |
cmake | 3.29.6 | cmdstanpy | 1.2.4 |
colorama | 0.4.6 | colorlog | 6.8.2 |
colorlover | 0.3.0 | comm | 0.2.2 |
confection | 0.1.5 | constantly | 23.10.4 |
contourpy | 1.2.1 | coverage | 7.5.4 |
cryptography | 42.0.8 | cssselect | 1.2.0 |
cufflinks | 0.17.3 | cycler | 0.12.1 |
cymem | 2.0.8 | cython | 0.29.37 |
dash | 2.17.1 | dash-core-components | 2.0.0 |
dash-html-components | 2.0.0 | dash-table | 5.0.0 |
dask | 2024.6.2 | databricks-cli | 0.18.0 |
datascience | 0.17.6 | deap | 1.4.1 |
debugpy | 1.8.2 | decorator | 5.1.1 |
defusedxml | 0.7.1 | dill | 0.3.8 |
django | 4.2.13 | dm-tree | 0.1.8 |
dnspython | 2.6.1 | docker | 7.1.0 |
eli5 | 0.13.0 | email-validator | 2.2.0 |
entrypoints | 0.4 | exceptiongroup | 1.2.1 |
executing | 2.0.1 | facets | 1.1.0 |
fairlearn | 0.10.0 | fastapi | 0.111.0 |
fastapi-cli | 0.0.4 | fastjsonschema | 2.20.0 |
fastprogress | 1.0.3 | filelock | 3.15.4 |
flake8 | 7.1.0 | flask | 3.0.3 |
flatbuffers | 24.3.25 | folium | 0.17.0 |
fonttools | 4.53.0 | fqdn | 1.5.1 |
fsspec | 2024.6.1 | funcy | 2.0 |
future | 1.0.0 | gast | 0.6.0 |
gensim | 4.3.2 | geopandas | 1.0.0 |
gitdb | 4.0.11 | gitpython | 3.1.43 |
google-pasta | 0.2.0 | graphviz | 0.8.4 |
greenlet | 3.0.3 | grpcio | 1.64.1 |
gunicorn | 22.0.0 | h11 | 0.14.0 |
h5netcdf | 1.3.0 | h5py | 3.11.0 |
hdbscan | 0.8.37 | holidays | 0.52 |
html5lib | 1.1 | htmlmin | 0.1.12 |
httpcore | 1.0.5 | httptools | 0.6.1 |
httpx | 0.27.0 | huggingface-hub | 0.23.4 |
hyperlink | 21.0.0 | hyperopt | 0.2.7 |
idna | 3.7 | imagehash | 4.3.1 |
imageio | 2.34.2 | imbalanced-learn | 0.12.3 |
imblearn | 0.0 | importlib-metadata | 8.0.0 |
importlib-resources | 6.4.0 | incremental | 22.10.0 |
iniconfig | 2.0.0 | ipykernel | 6.29.5 |
ipython | 8.18.1 | ipywidgets | 8.1.3 |
isoduration | 20.11.0 | isort | 5.13.2 |
itemadapter | 0.9.0 | itemloaders | 1.3.1 |
itsdangerous | 2.2.0 | jedi | 0.19.1 |
jinja2 | 3.1.4 | jmespath | 1.0.1 |
joblib | 1.4.2 | json5 | 0.9.25 |
jsonpointer | 3.0.0 | jsonschema | 4.22.0 |
jsonschema-specifications | 2023.12.1 | jupyter | 1.0.0 |
jupyter-client | 8.6.2 | jupyter-console | 6.6.3 |
jupyter-core | 5.7.2 | jupyter-events | 0.10.0 |
jupyter-lsp | 2.2.5 | jupyter-server | 2.14.1 |
jupyter-server-terminals | 0.5.3 | jupyter-telemetry | 0.1.0 |
jupyterhub | 3.1.1 | jupyterhub-nativeauthenticator | 1.2.0 |
jupyterlab | 4.2.3 | jupyterlab-pygments | 0.3.0 |
jupyterlab-server | 2.27.2 | jupyterlab-widgets | 3.0.11 |
keras | 3.4.1 | keras-tuner | 1.4.7 |
kiwisolver | 1.4.5 | kmodes | 0.12.2 |
kt-legacy | 1.0.5 | langcodes | 3.4.0 |
language-data | 1.2.0 | lazy-loader | 0.4 |
libclang | 18.1.1 | lightgbm | 4.4.0 |
lime | 0.2.0.1 | lit | 18.1.8 |
llvmlite | 0.43.0 | locket | 1.0.0 |
lucid | 0.3.8 | lxml | 5.2.2 |
mako | 1.3.5 | marisa-trie | 1.2.0 |
markdown | 3.6 | markdown-it-py | 3.0.0 |
markupsafe | 2.1.5 | matplotlib | 3.9.0 |
matplotlib-inline | 0.1.7 | matplotlib-venn | 0.11.10 |
mccabe | 0.7.0 | mdurl | 0.1.2 |
missingno | 0.5.2 | mistune | 3.0.2 |
ml-dtypes | 0.3.2 | mlflow | 1.27.0 |
mlpack | 4.3.0.post2 | mlxtend | 0.23.1 |
more-itertools | 10.3.0 | mpld3 | 0.5.10 |
mpmath | 1.3.0 | multimethod | 1.4 |
murmurhash | 1.0.10 | mxnet | 1.9.1 |
mypy-extensions | 1.0.0 | namex | 0.0.8 |
nbclient | 0.10.0 | nbconvert | 7.16.4 |
nbformat | 5.10.4 | nest-asyncio | 1.6.0 |
networkx | 3.2.1 | nibabel | 5.2.1 |
nilearn | 0.10.4 | nltk | 3.8.1 |
notebook | 7.2.1 | notebook-shim | 0.2.4 |
numba | 0.60.0 | numexpr | 2.10.1 |
numpy | 1.26.4 | nvidia-cublas-cu11 | 11.10.3.66 |
nvidia-cuda-cupti-cu11 | 11.7.101 | nvidia-cuda-nvrtc-cu11 | 11.7.99 |
nvidia-cuda-runtime-cu11 | 11.7.99 | nvidia-cudnn-cu11 | 8.5.0.96 |
nvidia-cufft-cu11 | 10.9.0.58 | nvidia-curand-cu11 | 10.2.10.91 |
nvidia-cusolver-cu11 | 11.4.0.1 | nvidia-cusparse-cu11 | 11.7.4.91 |
nvidia-nccl-cu11 | 2.14.3 | nvidia-nccl-cu12 | 2.22.3 |
nvidia-nvtx-cu11 | 11.7.91 | oauthlib | 3.2.2 |
onetimepass | 1.0.1 | opencv-python | 4.10.0.84 |
opt-einsum | 3.3.0 | optree | 0.11.0 |
optuna | 3.6.1 | orjson | 3.10.5 |
overrides | 7.7.0 | packaging | 24.1 |
pamela | 1.1.0 | pandas | 2.2.2 |
pandas-profiling | 3.0.0 | pandocfilters | 1.5.1 |
parsel | 1.9.1 | parso | 0.8.4 |
partd | 1.4.2 | pathspec | 0.12.1 |
patsy | 0.5.6 | pexpect | 4.9.0 |
phik | 0.12.4 | pillow | 10.4.0 |
platformdirs | 4.2.2 | plotly | 5.22.0 |
pluggy | 1.5.0 | preshed | 3.0.9 |
prometheus-client | 0.20.0 | prometheus-flask-exporter | 0.23.0 |
prompt-toolkit | 3.0.47 | prophet | 1.1.5 |
protego | 0.3.1 | protobuf | 4.25.3 |
psutil | 6.0.0 | ptyprocess | 0.7.0 |
pure-eval | 0.2.2 | py4j | 0.10.9.7 |
pyarrow | 16.1.0 | pyasn1 | 0.6.0 |
pyasn1-modules | 0.4.0 | pycaret | 2.2.2 |
pycodestyle | 2.12.0 | pycparser | 2.22 |
pydantic | 2.8.0 | pydantic-core | 2.20.0 |
pydeck | 0.9.1 | pydispatcher | 2.0.7 |
pydot | 2.0.0 | pyflakes | 3.2.0 |
pygments | 2.18.0 | pyjwt | 2.8.0 |
pyldavis | 3.4.1 | pymc3 | 3.11.4 |
pynndescent | 0.5.13 | pyod | 2.0.1 |
pyogrio | 0.9.0 | pyopengl | 3.1.7 |
pyopenssl | 24.1.0 | pyparsing | 3.1.2 |
pyproj | 3.6.1 | pytest | 8.2.2 |
pytest-cov | 5.0.0 | python-dateutil | 2.9.0.post0 |
python-dotenv | 1.0.1 | python-json-logger | 2.0.7 |
python-multipart | 0.0.9 | pytz | 2024.1 |
pywavelets | 1.6.0 | pyyaml | 6.0.1 |
pyzmq | 26.0.3 | qtconsole | 5.5.2 |
qtpy | 2.4.1 | querystring-parser | 1.2.4 |
queuelib | 1.7.0 | referencing | 0.35.1 |
regex | 2024.5.15 | requests | 2.32.3 |
requests-file | 2.1.0 | retrying | 1.3.4 |
rfc3339-validator | 0.1.4 | rfc3986-validator | 0.1.1 |
rich | 13.7.1 | rpds-py | 0.18.1 |
ruamel-yaml | 0.18.6 | ruamel-yaml-clib | 0.2.8 |
safetensors | 0.4.3 | scikit-base | 0.8.1 |
scikit-image | 0.24.0 | scikit-learn | 1.5.0 |
scikit-plot | 0.3.7 | scipy | 1.13.1 |
scrapy | 2.11.2 | seaborn | 0.13.2 |
semver | 3.0.2 | send2trash | 1.8.3 |
service-identity | 24.1.0 | setuptools | 70.2.0 |
shap | 0.46.0 | shapely | 2.0.4 |
shellingham | 1.5.4 | six | 1.16.0 |
sktime | 0.30.1 | slicer | 0.0.8 |
smart-open | 7.0.4 | smmap | 5.0.1 |
sniffio | 1.3.1 | soupsieve | 2.5 |
spacy | 3.7.5 | spacy-legacy | 3.0.12 |
spacy-loggers | 1.0.5 | sqlalchemy | 2.0.31 |
sqlparse | 0.5.0 | srsly | 2.4.8 |
stack-data | 0.6.3 | stanio | 0.5.0 |
starlette | 0.37.2 | statsmodels | 0.14.2 |
stopit | 1.1.2 | streamlit | 1.36.0 |
sympy | 1.12.1 | tabulate | 0.9.0 |
tangled-up-in-unicode | 0.1.0 | tenacity | 8.4.2 |
tensorboard | 2.16.2 | tensorboard-data-server | 0.7.2 |
tensorflow | 2.16.2 | tensorflow-io-gcs-filesystem | 0.37.1 |
tensorflow-probability | 0.24.0 | termcolor | 2.4.0 |
terminado | 0.18.1 | textblob | 0.18.0.post0 |
theano-pymc | 1.1.2 | thinc | 8.2.5 |
threadpoolctl | 3.5.0 | tifffile | 2024.6.18 |
tinycss2 | 1.3.0 | tldextract | 5.1.2 |
tokenizers | 0.19.1 | toml | 0.10.2 |
tomli | 2.0.1 | toolz | 0.12.1 |
torch | 2.0.1 | tornado | 6.4.1 |
tpot | 0.12.2 | tqdm | 4.66.4 |
traitlets | 5.14.3 | transformers | 4.42.3 |
triton | 2.0.0 | twisted | 24.3.0 |
typer | 0.12.3 | types-python-dateutil | 2.9.0.20240316 |
typing-extensions | 4.12.2 | tzdata | 2024.1 |
ujson | 5.10.0 | umap-learn | 0.5.6 |
update-checker | 0.18.0 | uri-template | 1.3.0 |
urllib3 | 2.2.2 | uvicorn | 0.30.1 |
uvloop | 0.19.0 | vega | 2.6.0 |
visions | 0.7.1 | w3lib | 2.2.1 |
wasabi | 1.1.3 | watchdog | 4.0.1 |
watchfiles | 0.22.0 | wcwidth | 0.2.13 |
weasel | 0.4.1 | webcolors | 24.6.0 |
webencodings | 0.5.1 | websocket-client | 1.8.0 |
websockets | 12.0 | werkzeug | 3.0.3 |
wheel | 0.43.0 | widgetsnbextension | 4.0.11 |
wordcloud | 1.9.3 | wrapt | 1.16.0 |
xarray | 2024.6.0 | xarray-einstats | 0.7.0 |
xgboost | 2.1.0 | xyzservices | 2024.6.0 |
yellowbrick | 1.5 | zipp | 3.19.2 |
zope-interface | 6.4.post2 |
Linux with GUI Desktop
After the instance is started, you can access the Linux with GUI Desktop through Microsoft Remote Desktop.
Username and password
The default username is elm and the password is the instance ID.
XFCE Desktop Environment
Steps to connect to the remote Linux GUI desktop
Install Microsoft Remote Desktop
The Microsoft Remote Desktop can be found from App Store (for Mac users).
Start Microsoft Remote Desktop
Add PC
The public address (like 54.198.198.85) is used for the PC name.
Add a User Account
The default username is elm and the password is the instance ID.
Accept the certificate
The PC is added
Clicking on the PC will connect to the remote Linux Desktop
Log out of the Linux GUI Desktop
Select Logout
Click Logout
Video Tutorials
At Elm Computing, we offer a range of code optimization services to accelerate the performance of your Python or R scripts. Whether you're dealing with computationally intensive tasks or working on large datasets, our optimization techniques can streamline your code and deliver faster results.
Parallelization Techniques
Parallelization is a powerful approach to leverage the capabilities of modern computing architectures and accelerate code execution. Our team will analyze your code and identify opportunities for parallelization. We'll implement techniques such as:
-
Multi-Threading: Utilize multiple threads to execute independent tasks concurrently, maximizing CPU utilization and reducing execution time.
-
Multi-Processing: Harness the power of multiple processors or cores to execute code in parallel, enabling efficient computation and faster results.
-
Distributed Computing: Distribute workload across multiple CPUs or nodes to tackle complex and resource-intensive tasks, achieving exceptional scalability and speedup.
High-Performance Languages
In addition to parallelization, we offer expertise in utilizing high-performance languages to optimize your code. We can assist you in porting critical sections of your code to languages like:
-
C: Leverage the speed and low-level control of C programming to improve the performance of computationally intensive sections.
-
Fortran: Harness the power of Fortran's numerical computing capabilities and its ability to optimize array operations for faster execution.
-
Rust: Unlock the performance potential of Rust, a modern systems programming language known for its safety, speed, and low-level control.
Privacy Policy
At Elm Computing, we are committed to protecting our customers' right to privacy and data security. This privacy policy outlines our practices for collecting and using customer information.
We only access or collect information that you voluntarily provide to us via email or other contact methods. We do not sell, rent, or otherwise disclose personal information to third parties as part of our standard business practices. The information you provide is used to respond to your inquiry or request. In the future, we may contact you by email or other communications to inform you of upcoming changes or improvements to our products and services or updates to this Privacy Policy, unless you request otherwise.
You have the right to opt out of any future contact from us and to express any concerns about our use of your personal data by contacting us via email.
Please note that this website contains links to other sites, and we are not responsible for the privacy practices or content of those sites. We encourage you to review the privacy statements of any site that collects personal information or data.
Contact Us
At Elm Computing, we're always here to help you with any questions or concerns you may have about our products and services. Whether you're a new customer looking to learn more about our offerings, or an existing customer needing technical support, we're happy to assist you in any way we can. To get in touch with us, please send us an email at support@elmcomputing.io. Our support team will do their best to respond to your inquiries as quickly as possible. Thank you for choosing Elm Computing.