From 9b1c4e319886bb989a52dfbb255c35a6354078b2 Mon Sep 17 00:00:00 2001 From: "Carlos R. Mercado" <107061601+charlieflipside@users.noreply.github.com> Date: Tue, 24 Jan 2023 11:11:51 -0500 Subject: [PATCH] more aesthetic table --- onchain-pricing.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onchain-pricing.Rmd b/onchain-pricing.Rmd index 94dd877..7ded022 100644 --- a/onchain-pricing.Rmd +++ b/onchain-pricing.Rmd @@ -119,7 +119,7 @@ ORDER BY BLOCK_NUMBER ASC } trades_pull <- auto_paginate_query(query = trades_query, api_key = readLines("api_key.txt")) -reactable(trades_pull[1:10,]) +reactable(trades_pull[1:10, c(1,3,4,5)] %>% round(., 2)) ``` Prior to the merge, Ethereum blocks were made roughly every 12-15 seconds. After the merge,