search for: sezen

Displaying 20 results from an estimated 31 matches for "sezen".

Did you mean: seen
2017 Aug 06
2
about saving format
...be directed to RStudio support, not here. Cheers, Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Sat, Aug 5, 2017 at 5:54 PM, Ismail SEZEN <sezenismail at gmail.com> wrote: > >> On 6 Aug 2017, at 03:47, lily li <chocold12 at gmail.com> wrote: >> >> In the lower right panel of R-studio interface, there is the "Export" button. I saved as PDF from there directly, rather than using functions >...
2017 Aug 06
2
about saving format
In the lower right panel of R-studio interface, there is the "Export" button. I saved as PDF from there directly, rather than using functions On Sat, Aug 5, 2017 at 6:18 PM, Ismail SEZEN <sezenismail at gmail.com> wrote: > > > On 6 Aug 2017, at 03:01, lily li <chocold12 at gmail.com> wrote: > > > > I am using the plot() function, but have a problem. When saving as pdf > > format, the ? sign in the x-axis label becomes (...) sign. I prefer to...
2017 Aug 06
0
about saving format
> On 6 Aug 2017, at 03:47, lily li <chocold12 at gmail.com> wrote: > > In the lower right panel of R-studio interface, there is the "Export" button. I saved as PDF from there directly, rather than using functions > > On Sat, Aug 5, 2017 at 6:18 PM, Ismail SEZEN <sezenismail at gmail.com> wrote: > > > On 6 Aug 2017, at 03:01, lily li <chocold12 at gmail.com> wrote: > > > > I am using the plot() function, but have a problem. When saving as pdf > > format, the ? sign in the x-axis label becomes (...) sign. I prefer to...
2017 Aug 06
0
about saving format
...> Bert > > > Bert Gunter > > "The trouble with having an open mind is that people keep coming along > and sticking things into it." > -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) > > > On Sat, Aug 5, 2017 at 5:54 PM, Ismail SEZEN <sezenismail at gmail.com> wrote: >> >>> On 6 Aug 2017, at 03:47, lily li <chocold12 at gmail.com> wrote: >>> >>> In the lower right panel of R-studio interface, there is the "Export" button. I saved as PDF from there directly, rather than usin...
2017 Aug 03
2
Extracting numeric part from a string
...u just want to stick with basic regex's without extra packages: > x <- "\"cm_ffm\":\"563.77\"" > sub("[^[:digit:]]*([[:digit:]]*.?[[:digit:]]*).*","\\1",x) [1] "563.77" Cheers, Bert On Wed, Aug 2, 2017 at 5:16 PM, Ismail SEZEN <sezenismail at gmail.com> wrote: > >> On 3 Aug 2017, at 02:59, Christofer Bogaso <bogaso.christofer at gmail.com> wrote: >> >> Hi again, >> >> I am struggling to extract the number part from below string : >> >> "\"cm_ffm\":\&...
2017 Oct 27
0
My function and NA Values Problem
> On 27 Oct 2017, at 10:43, Engin YILMAZ <ispanyolcom at gmail.com> wrote: > > Dear R Staff > > My working file is in the annex. "g1.csv" > I have only 2 columns. Rice and coke. > I try to execute following(below) function, but do not work. > Because "Coke" value has NA values. > I try to add "na.rm=True" to the function but do not
2017 Oct 27
3
My function and NA Values Problem
Dear R Staff My working file is in the annex. "g1.csv" I have only 2 columns. Rice and coke. I try to execute following(below) function, but do not work. Because "Coke" value has NA values. I try to add "na.rm=True" to the function but do not work How can I solve this problem with this function or another algorithm? (Note: I have normally 450 columns) Sincerely
2017 Aug 03
0
Extracting numeric part from a string
...extra packages: > >> x <- "\"cm_ffm\":\"563.77\"" >> sub("[^[:digit:]]*([[:digit:]]*.?[[:digit:]]*).*","\\1",x) > > [1] "563.77" > > Cheers, > Bert > > > > On Wed, Aug 2, 2017 at 5:16 PM, Ismail SEZEN <sezenismail at gmail.com> wrote: >> >>> On 3 Aug 2017, at 02:59, Christofer Bogaso <bogaso.christofer at gmail.com> wrote: >>> >>> Hi again, >>> >>> I am struggling to extract the number part from below string : >>> >>&g...
2017 Jun 01
2
[FORGED] Re: Question on function "scatterplot3d"
On 01/06/17 13:17, Ismail SEZEN wrote: > >> On 1 Jun 2017, at 03:41, li li <hannah.hlx at gmail.com> wrote: >> >> Hi all, >> I have a question with regard to making plots using function >> "scatterplot3d". >> Please see the example below. It looks like, for y axis, the tic...
2017 Aug 26
1
Fwd: Find maxima of a function
...;) I am getting 731.1345 from the code you have provide It is part of a code, so it was difficult to write a reproducible code I have tried to use optimr but it gives me the local maxima, now I am struck with the problem of how to get the global maxima On Sat, Aug 26, 2017 at 3:12 PM, Ismail SEZEN [via R] < ml+s789695n4744993h60 at n4.nabble.com> wrote: > > > On 26 Aug 2017, at 14:18, Ulrik Stervbo <[hidden email] > <http:///user/SendEmail.jtp?type=node&node=4744993&i=0>> wrote: > > > > Please keep the list in cc. > > > > Sorry,...
2017 Aug 27
2
Fwd: Find maxima of a function
---------- Forwarded message ---------- From: niharika singhal <niharikasinghal1990 at gmail.com> Date: Sun, Aug 27, 2017 at 11:57 AM Subject: Re: Find maxima of a function To: "David Winsemius [via R]" <ml+s789695n4745009h56 at n4.nabble.com>, "Ismail SEZEN [via R]" <ml+s789695n4744993h60 at n4.nabble.com>, Ulrik Stervbo <ulrik.stervbo at gmail.com> Dear David and Ismail, The actual problem is I am getting the parameters from the Kmeans cluster on the data set obtained from the mclust package. In mclust method I am changing the va...
2017 Aug 03
0
Extracting numeric part from a string
> On 3 Aug 2017, at 02:59, Christofer Bogaso <bogaso.christofer at gmail.com> wrote: > > Hi again, > > I am struggling to extract the number part from below string : > > "\"cm_ffm\":\"563.77\"" > > Basically, I need to extract 563.77 from above. The underlying number > can be a whole number, and there could be comma separator as
2017 Aug 06
2
about saving format
Hi R users, I am using the plot() function, but have a problem. When saving as pdf format, the ? sign in the x-axis label becomes (...) sign. I prefer to save in pdf, as this format has a higher resolution than jpeg or other picture formats. Could anyone tell me how to do then? Thanks. [[alternative HTML version deleted]]
2017 Aug 06
0
about saving format
> On 6 Aug 2017, at 03:01, lily li <chocold12 at gmail.com> wrote: > > I am using the plot() function, but have a problem. When saving as pdf > format, the ? sign in the x-axis label becomes (...) sign. I prefer to save > in pdf, as this format has a higher resolution than jpeg or other picture > formats. Could anyone tell me how to do then? Thanks. Please, share minimal
2017 Nov 27
1
Scatterplot of many variables against a single variable
> On 27 Nov 2017, at 13:59, Engin YILMAZ <ispanyolcom at gmail.com> wrote: > > Dear Berger and Jim > > Can you see my eviews example in the annex? (scattersample.jpg) > > Sincerely > Engin Please, use an image hosting service (i.e. https://imgbb.com/) to share images in the list and share the link in the email.
2017 Sep 15
0
require help
> On 15 Sep 2017, at 12:38, yadav neog <yadavneog at gmail.com> wrote: > > hello to all. I am working on macroeconomic data series of India, which in > a yearly basis. I am unable to convert my data frame into time series. Do you really need to convert your data to time series/xts/zoo? I don?t know you try what kind of an analysis but perhaps you don?t have to. > kindly
2017 Nov 27
0
Scatterplot of many variables against a single variable
...hape2 library. foo2 <- melt(foo, "x1?) # plot points and add lm lines. ggplot(foo2, aes(value, x1)) + geom_point() + geom_smooth(method=lm) + facet_grid(.~variable) 1- https://stackoverflow.com/questions/24648729/plot-one-numeric-variable-against-n-numeric-variables-in-n-plots isezen
2017 Aug 27
1
Fwd: Find maxima of a function
...enerally appears to handle initialization better than MClust) exist. Or perhaps there is more to it in which case I apologize. But I thought that I would make the OP aware of the package (of which, in full disclosure, I am co-author). Best wishes, Ranjan On Sun, 27 Aug 2017 16:01:59 +0300 Ismail SEZEN <sezenismail at gmail.com> wrote: > Dear Niharika, > > As I said before, the problem is basically an optimization issue. You should isolate the problematic part from the rest of your study. Sometimes, more information does not help to solution. All the answers from us (Ulrik, David...
2017 Jun 01
0
Question on function "scatterplot3d"
> On 1 Jun 2017, at 03:41, li li <hannah.hlx at gmail.com> wrote: > > Hi all, > I have a question with regard to making plots using function > "scatterplot3d". > Please see the example below. It looks like, for y axis, the tickmark text > was cutoff. > The number "10" does not show up completely. I tried to work with par(mpg). > It does not
2017 Aug 02
4
Extracting numeric part from a string
Hi again, I am struggling to extract the number part from below string : "\"cm_ffm\":\"563.77\"" Basically, I need to extract 563.77 from above. The underlying number can be a whole number, and there could be comma separator as well. So far I tried below : > library(stringr) > str_extract("\"cm_ffm\":\"563.77\"",