Articles by Trevor French

New R Package: cryptotrackr

December 28, 2022 | Trevor French

cryptotrackr allows you to connect to data sources across the crypto ecosystem. This data can enable a range of activity such as portfolio tracking, programmatic trading, or industry analysis.cryptotrackr hex logoThe package currently connects to 20 of...
[Read more...]

Data Types in R

November 17, 2022 | Trevor French

Data Types in RThere are five basic data types in R:Numeric — This is the default treatment for numbers. This data type includes integers and doubles.Double — A double allows you to store numbers as decimals. This is the default treatment for numbers.I...
[Read more...]

Splitting Text in R

October 18, 2022 | Trevor French

If you’ve worked in a spreadsheet application before, you’re likely familiar with the “text-to-columns” tool. This tool allows you to split one column of data into multiple columns based on a delimiter. This same functionality is also achievable in R t...
[Read more...]

R Cheat Sheet

August 9, 2022 | Trevor French

🤘 Here’s my R Cheat Sheet for the tasks I find myself performing frequently:R Programming Cheat SheetR Cheat Sheet was originally published in Trevor French on Medium, where people are continuing the conversation by highlighting and responding to this ...
[Read more...]

API Calls in R

August 9, 2022 | Trevor French

🤘 Here’s a quick guide on making API calls in R featuring Helium data.OutlineInstall PackagesRequire PackagesMake RequestParse & Explore DataAdding Parameters to RequestsAdding Headers to RequestsInstall Packageshttps://medium.com/media/c8936125ea6...
[Read more...]

Manipulating Data with R

August 9, 2022 | Trevor French

This code builds off the file built here: https://medium.com/@FrenchTrevor/reading-files-into-and-out-of-r-a5bc6fded44bFull code can be found at the bottom of the page.Video here: https://youtu.be/qK9hM9oEocMAdd a Column to a DataframeThis snippet demonstrates how to add a column to a dataframe in ...
[Read more...]

Reading Files into and out of R

August 9, 2022 | Trevor French

Video Here: https://www.youtube.com/watch?v=ibkBTqx3LW8The following code shows how to read a .CSV/.XLSX file into R, perform a manipulation, and write a new file out of R.#Clears environmentrm(list = ls(all.names = TRUE))#-----------------------------...
[Read more...]

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)