We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
user uses r-requirements.txt file
r-requirements.txt
; if test -f "renv.lock" ; then echo "renv not set-up yet" & \ ; elif test -f "r-requirements.txt" ; then echo "Using r-requirements.txt" & \ r_packages=$( awk 'NF && $1 !~ /^#/ { gsub(/^[ \t]+|[ \t]+$/, ""); split($0, a, ","); for (i in a) print a[i] }' r-requirements.txt ) \ && install2.r --error --skipinstalled -n "$NCPUS" $r_packages \
# List of packages sf, dplyr, ggplot2 # Visualization packages plotly, shiny # Machine learning randomForest
this processes the r-requirements.txt file
$( awk 'NF && $1 !~ /^#/ { gsub(/^[ \t]+|[ \t]+$/, ""); split($0, a, ","); for (i in a) print a[i] }' r-requirements.txt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
user uses
r-requirements.txt
filer-requirements.txt
this processes the r-requirements.txt file
The text was updated successfully, but these errors were encountered: