Re: [R] Beginner problem - using mod function to print odd numbers

2021-06-08 Thread Greg Minshall
> Two of R's central features as a "data science" language are that many of > its core capabilities are "vectorized" -- can calculate on whole objects > (at the user-visible interpreter level) rather than requiring explicit > loops; and that it can use object indexing in several different modalitie

Re: [R] Need help to fix the max date filter problem in the date input

2021-06-08 Thread Greg Minshall
Biplab, i'm not sure how to help you here, but this list pretty much runs on plain ASCII (or, these days, utf-8) e-mail. for the most part, without attachments. so, simply-formatted text, including code, with some mechanism in the code to initialize any data structures (data frames, matrices, et

Re: [R] Converting data from weekly interval to daily interval

2021-06-08 Thread Greg Minshall
Bhaskar, not your main question, but ... given that you have column names, you might think of : df2[inc,"date"] <- df1[i,"date"]/7 or : df2[inc,]$date <- df1[i,]$date/7 i.e., using your column names instead of numeric indices. then, also, instead of a for loop, possibly you can use R's

[R] Read fst files

2021-06-08 Thread Jeff Reichman
R-Help Forum Anyone know why the following line of code would error out: myObject <- read_fst(unz("Dataset.zip", filename = "filename.fst")) Error: Incomplete expression: filename <- read_fst(unz("Dataset.zip", filename = "filename.fst") I often use similar code with *.csv files in a

Re: [R] Converting data from weekly interval to daily interval

2021-06-08 Thread Jim Lemon
Hi Bhaskar, Perhaps you are looking for this: approx(c(3,6,7),n=21) $x [1] 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 [20] 2.9 3.0 $y [1] 3.0 3.3 3.6 3.9 4.2 4.5 4.8 5.1 5.4 5.7 6.0 6.1 6.2 6.3 6.4 6.5 6.6 6.7 6.8 [20] 6.9 7.0 This assumes that you are taking ea

Re: [R] Need help to fix the max date filter problem in the date input

2021-06-08 Thread Biplab Nayak
Hi Bert, I have attached the word file with the R code. Thanks & Regards Biplab Nayak On Tue, Jun 8, 2021 at 1:07 PM Bert Gunter wrote: > I do not wish to be involved in this thread other than to note that you > were, I believe, asked not to post in HTML. And because you did, you will > find t

[R] Converting data from weekly interval to daily interval

2021-06-08 Thread Bhaskar Mitra
Hello Everyone, I have data at weekly intervals. The data structure is something like this. df1 <- datea 1/7/2020 3 1/14/2020 6 1/21/2021 7 I would like to convert the data from the weekly interval to the daily interval. Something like this. datea 1/7/20200.5

Re: [R] Help in modifying code to extract data from url

2021-06-08 Thread Bhaskar Mitra
Thanks everyone for the feedbacks. This is really helpful. bhaskar On Sat, May 22, 2021 at 11:56 AM David Winsemius wrote: > Several authors hav addressed this problem with names that resemble > "rbindfill". In my machine I find four instances: > > ??rbindfill > > Help pages: > ffbase::ffdfrbin

Re: [R] Need help to fix the max date filter problem in the date input

2021-06-08 Thread Bert Gunter
I do not wish to be involved in this thread other than to note that you were, I believe, asked not to post in HTML. And because you did, you will find that "Bold" highlighting does not exist in your text below. I have no idea whether that matters for your query or not, but there it is. Bert Gunte

Re: [R] foreign package read.spss() and NA levels

2021-06-08 Thread Allen, Justin
Hi Uwe, Thank you so much for your reply, I am sorry to waste your time, but after another look, the error seemed to be caused with how I had created the '.sav' file I was using. It was converting one of the factor levels which wasn't NA to the factor level "NA", but the problem was in the data

Re: [R] Need help to fix the max date filter problem in the date input

2021-06-08 Thread Biplab Nayak
Hi Rui, Please find the code(bold) below I was trying to do to achieve the achieve:But somehow its not working. 1.Order assessment based on the latest due date so select input automatically show the order of assessment name. 2.Filter based on the one name or multiple names in the select input li

Re: [R] Need help to fix the max date filter problem in the date input

2021-06-08 Thread Rui Barradas
Hello, Please cc the list. R-Help is not a code writing service, it's a mailing list for doubts on R code. I'm sorry but without answers to the below questions I am not going to answer. What have you tried? What went wrong? Hope this helps, Rui Barradas Às 04:01 de 08/06/21, Biplab Nayak