Displaying 13 results from an estimated 13 matches for "ispanyolcom".
2017 Nov 27
5
Scatterplot of many variables against a single variable
Dear
I try to realize one scatter matrix which draws *one single variable to all
variables* with *regression line* . You can see my eviews version in the
annex .
How can I draw this graph with R studio?
Sincerely
Engin YILMAZ
2017 Nov 27
3
Scatterplot of many variables against a single variable
...6132,col="red")
> abline(0.1692,0.3311,col="blue")
>
> So, the more readable your request and the quality of the data that
> you provide, the more useful answers you are likely to receive.
>
> Jim
>
>
> On Mon, Nov 27, 2017 at 7:56 PM, Engin YILMAZ <ispanyolcom at gmail.com>
> wrote:
> > Dear
> >
> > I try to realize one scatter matrix which draws *one single variable to
> all
> > variables* with *regression line* . You can see my eviews version in the
> > annex .
> >
> > How can I draw this graph with R...
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 Nov 27
0
Scatterplot of many variables against a single variable
...bline(0.1692,0.3311,col="blue")
>>
>> So, the more readable your request and the quality of the data that
>> you provide, the more useful answers you are likely to receive.
>>
>> Jim
>>
>>
>> On Mon, Nov 27, 2017 at 7:56 PM, Engin YILMAZ <ispanyolcom at gmail.com>
>> wrote:
>> > Dear
>> >
>> > I try to realize one scatter matrix which draws *one single variable to
>> all
>> > variables* with *regression line* . You can see my eviews version in
>> the
>> > annex .
>> >
&...
2017 Nov 27
1
Scatterplot of many variables against a single variable
...m/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)
--
Sent from my phone. Please excuse my brevity.
On November 27, 2017 2:59:10 AM PST, Engin YILMAZ <ispanyolcom at gmail.com> wrote:
>Dear Berger and Jim
>
>Can you see my eviews example in the annex? (scattersample.jpg)
>
>Sincerely
>Engin
>
>2017-11-27 13:27 GMT+03:00 Eric Berger <ericjberger at gmail.com>:
>
>> LOL. Great reply Jim.
>> (N.B. Jim's conclu...
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 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.r...
2017 Nov 27
0
Scatterplot of many variables against a single variable
> On 27 Nov 2017, at 11:56, Engin YILMAZ <ispanyolcom at gmail.com> wrote:
>
> Dear
>
> I try to realize one scatter matrix which draws *one single variable to all
> variables* with *regression line* . You can see my eviews version in the
> annex .
>
> How can I draw this graph with R studio?
A tiny note; You do calcula...
2017 Nov 27
0
Scatterplot of many variables against a single variable
...="blue",pch=2)
abline(0.1692,0.6132,col="red")
abline(0.1692,0.3311,col="blue")
So, the more readable your request and the quality of the data that
you provide, the more useful answers you are likely to receive.
Jim
On Mon, Nov 27, 2017 at 7:56 PM, Engin YILMAZ <ispanyolcom at gmail.com> wrote:
> Dear
>
> I try to realize one scatter matrix which draws *one single variable to all
> variables* with *regression line* . You can see my eviews version in the
> annex .
>
> How can I draw this graph with R studio?
>
>
> Sincerely
> Engin...
2017 Oct 29
0
Count non-zero values in excluding NA Values
What was suggested by Eric and Rui works well, but here is a short and may
be simpler answer provided your data is similar what Eric posted. It should
work for your l data too.
aa <- is.na(data)|data==0
nrow(data)-colSums(aa)
EK
On Sun, Oct 29, 2017 at 6:25 AM, Engin YILMAZ <ispanyolcom at gmail.com> wrote:
> Dear R Staff
>
> You can see my data.csv file in the annex.
>
> I try to count non-zero values in dataset but I need to exclude NA in this
> calculation
>
> My code is very long (following),
> How can I write this code more efficiently and short...
2017 Oct 29
0
Count non-zero values in excluding NA Values
Since i could not see your data, the easiest thing comes to mind is court
values excluding NAs, is something like this
sum(!is.na(x))
Best of luck--EK
On Sun, Oct 29, 2017 at 6:25 AM, Engin YILMAZ <ispanyolcom at gmail.com> wrote:
> Dear R Staff
>
> You can see my data.csv file in the annex.
>
> I try to count non-zero values in dataset but I need to exclude NA in this
> calculation
>
> My code is very long (following),
> How can I write this code more efficiently and short...
2017 Oct 29
7
Count non-zero values in excluding NA Values
Dear R Staff
You can see my data.csv file in the annex.
I try to count non-zero values in dataset but I need to exclude NA in this
calculation
My code is very long (following),
How can I write this code more efficiently and shortly?
## [NA_Count] - Find NA values
data.na =sapply(data[,3:ncol(data)], function(c) sum(length(which(is.na
(c)))))
## [Zero] - Find zero values
2017 Oct 29
1
Count non-zero values in excluding NA Values
...7-10-29 15:01 GMT+03:00 Ek Esawi <esawiek at gmail.com>:
> Since i could not see your data, the easiest thing comes to mind is court
> values excluding NAs, is something like this
> sum(!is.na(x))
>
> Best of luck--EK
>
> On Sun, Oct 29, 2017 at 6:25 AM, Engin YILMAZ <ispanyolcom at gmail.com>
> wrote:
>
>> Dear R Staff
>>
>> You can see my data.csv file in the annex.
>>
>> I try to count non-zero values in dataset but I need to exclude NA in this
>> calculation
>>
>> My code is very long (following),
>> How can...