Posts by Tandoster • 39 points
3 posts
-
1
votes1
answer325
viewsQ: Power Building Exercise in C
I’m starting to learn how to program, so forgive me any more silly mistakes. It’s a simple exercise, doing a C power by setting the base and exponential. Here’s my code: #include <stdio.h> int…
-
1
votes0
answers61
viewsQ: How to preserve the date column by exporting a ts or xts object from R to excel?
I am working with a ts file with two variables compib <- cbind(pimsaf, fumosaf) head(compib) pimsaf fumosaf [1,] 77.74133 131.5189 [2,] 80.18227 131.6221 [3,] 79.77395 111.2698 [4,] 79.48862…
-
0
votes1
answer101
viewsQ: Deseasonalize PIM data with R
I’ll start by saying that I’m almost illiterate in programming so have a little patience. I am trying to deseasolize the historical series of PIM by r according to the IBGE instructions, for this I…