All Projects → r-lib → Here

r-lib / Here

Licence: other
A simpler way to find your files

Programming Languages

r
7636 projects

Labels

Projects that are alternatives of or similar to Here

Fuzzy-keyword-search-over-encrypted-data-in-cloud-computing
Fuzzy keyword search over encrypted data in cloud computing | PHP project
Stars: ✭ 19 (-92.61%)
Mutual labels:  project
mangium
(Needs contributors) Service/project manager for developers/small teams
Stars: ✭ 12 (-95.33%)
Mutual labels:  project
IT-Security-Quiz-App
IT Security Quiz App for Android. Project for Android Basics: User Input course by Udacity
Stars: ✭ 15 (-94.16%)
Mutual labels:  project
javacard-gradle-template
JavaCard project template for building CAP and running JCardSim with gradle + coverage
Stars: ✭ 27 (-89.49%)
Mutual labels:  project
tensorflow-practice
Learning tensorflow by just one example for beginners
Stars: ✭ 43 (-83.27%)
Mutual labels:  project
100-redteam-projects
Projects for security students
Stars: ✭ 731 (+184.44%)
Mutual labels:  project
focus-single
Single repo demo project using GoFrame.
Stars: ✭ 26 (-89.88%)
Mutual labels:  project
knuckle
Project configuration handler, without efforts
Stars: ✭ 14 (-94.55%)
Mutual labels:  project
SharpLoader
🔮 [C#] Source code randomizer and compiler
Stars: ✭ 36 (-85.99%)
Mutual labels:  project
ByteDev.DotNet
Set of classes for reading .NET solution and project files.
Stars: ✭ 13 (-94.94%)
Mutual labels:  project
Indian-Number-Plate-Recognition-System
Indian Number Plate Recognition System built using OpenCV
Stars: ✭ 72 (-71.98%)
Mutual labels:  project
PyQt-Sqlite-Project-CURD
Pyqt SQLite Project Have Features like Login, Add, Delete, Search, Update, Show the Students. In this, I show all the CURD operations of the Program. All Project is well represented and with interactive Toolbar & Menu bar. The database is included in the repository.
Stars: ✭ 41 (-84.05%)
Mutual labels:  project
Hacktoberfest-2021
This repository aims to help code beginners with their first successful pull request and open source contribution. 🥳🎯🚀
Stars: ✭ 24 (-90.66%)
Mutual labels:  project
HospitalManagementSystem
Hospital management System python
Stars: ✭ 74 (-71.21%)
Mutual labels:  project
save-workspace-atom-plugin
If you work with few projects same time this plugin give you the opportunity to change your workspace faster. Save your workspace, all your opened tabs, cursor position, etc. for each task you are working with.
Stars: ✭ 24 (-90.66%)
Mutual labels:  project
Markdown-Templates
bgoonz.github.io/markdown-templates/
Stars: ✭ 16 (-93.77%)
Mutual labels:  project
phpindonesia.or.id-membership2
PHP Indonesia - Membership Application - Reloaded
Stars: ✭ 31 (-87.94%)
Mutual labels:  project
Construct
A PHP project/micro-package generator for PDS compliant projects or micro-packages.
Stars: ✭ 257 (+0%)
Mutual labels:  project
project-migration-tools
Project Migration tools to help you migrating to IAR Embedded Workbench more efficiently.
Stars: ✭ 36 (-85.99%)
Mutual labels:  project
Android-Library-Management
Android Library Management Project
Stars: ✭ 32 (-87.55%)
Mutual labels:  project

here

Lifecycle: stable rcc CRAN status Codecov test coverage

The goal of the here package is to enable easy file referencing in project-oriented workflows. In contrast to using setwd(), which is fragile and dependent on the way you organize your files, here uses the top-level directory of a project to easily build paths to files.

Installation

Install the released version of here from CRAN:

install.packages("here")

Usage

The here package creates paths relative to the top-level directory. The package displays the top-level of the current project on load or any time you call here():

here::i_am("README.Rmd")
#> here() starts at /home/kirill/git/R/here
here()
#> [1] "/home/kirill/git/R/here"

You can build a path relative to the top-level directory in order to read or write a file:

here("inst", "demo-project", "data", "penguins.csv")
#> [1] "/home/kirill/git/R/here/inst/demo-project/data/penguins.csv"
readr::write_csv(palmerpenguins::penguins, here("inst", "demo-project", "data", "penguins.csv"))

These relative paths work regardless of where the associated source file lives inside your project, like analysis projects with data and reports in different subdirectories. See the included demo project for an example.

Illustration by Allison Horst


Code of Conduct

Please note that the here project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].