Using dput and sending your questions with the plain text option as described in [1] will allow you to share your data with less ambiguity. To be sure you have supplied all the code needed for us to reproduce your problem, use [3].
[1] http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example [2] http://adv-r.had.co.nz/Reproducibility.html [3] https://cran.r-project.org/web/packages/reprex/index.html (read the vignette) On July 8, 2018 5:37:33 AM PDT, akshay kulkarni <akshay...@hotmail.com> wrote: >dear members, >The mail is not showing the spaces between [192] "NSE/YESBANK" and >[193] "NSE/ZEEL" ...Actually there is a lot of empty spaces between the >two.....!!!!!! > >________________________________________ >From: R-help <r-help-boun...@r-project.org> on behalf of akshay >kulkarni <akshay...@hotmail.com> >Sent: Sunday, July 8, 2018 5:58 PM >To: R help Mailing list >Subject: [R] inconsistency in display of character vector.... > >dear members, > I have the following code to update the list of stocks: > >function (snlcqn) >{ > lneq <- c() > URL <- "https://canmoney.in/Intraday%20scrip.xls" > file.string <- tempfile() > > download.file(URL,file.string) > > IDT <- read_excel(file.string) > > leq <- IDT[,1] > > for(i in 1:length(leq)){ > lneq[i] <- substr(leq[i],1,(nchar(leq[i])-2))} > > for(j in 1:length(lneq)){ > snlcqna[j] <- paste("NSE/",lneq[j])} > > if(identical(snlcqn,snlcqna) == "FALSE"){ > return(snlcqna) } > > else { > return(snlcqn) } > >} >snlcqn is the list of present stocks and snlcqna is the list of updated >stocks. >The problem is the return object, instead of getting displayed in >contiguous list, is getting displayed with lots of spaces...( I am >using R on a LINUX RHEL AWS instance): > >[192] "NSE/YESBANK" >[193] "NSE/ZEEL" > >Why is this happening? How can I get the return object as a contiguous >list? >Very many thanks for your time and effort... >yours sincerely, >AKSHAY M KULKARNI > > [[alternative HTML version deleted]] > >______________________________________________ >R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see >https://stat.ethz.ch/mailman/listinfo/r-help >PLEASE do read the posting guide >http://www.R-project.org/posting-guide.html >and provide commented, minimal, self-contained, reproducible code. > > [[alternative HTML version deleted]] > >______________________________________________ >R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see >https://stat.ethz.ch/mailman/listinfo/r-help >PLEASE do read the posting guide >http://www.R-project.org/posting-guide.html >and provide commented, minimal, self-contained, reproducible code. -- Sent from my phone. Please excuse my brevity. ______________________________________________ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.