Displaying 18 results from an estimated 18 matches for "data_1".
Did you mean:
data1
2009 Nov 13
2
why the same values cannot be judged to be the same in R
...yrow=TRUE)
data2<-data.frame(data2);names(data2)<-c("areaid","x1","y1")
data2$tag<-0
data1_1<-data1[1,]
data2_1<-data2[data2$areaid==data1_1$areaid & data2$tag==0,]
ran_1<-sample(c(1:length(data2_1)),2, replace = FALSE)
data2_1<-data2_1[ran_1,]
data_1<-merge(data1_1,data2_1)
#data_1
# areaid x y date x1 y1 tag
# 1 1 1.2 1.3 3/23/2004 1.52 2.35 0
# 2 1 1.2 1.3 3/23/2004 1.53 2.34 0
data2[data_1$x1==data2$x1 & data_1$y1==data2$y1 & data2$tag==0,]
#data2[c(data_1$x1==data2$x1 & data_1$y1==data2...
2016 Jan 11
2
tftp-hpa features?
...rom email header List-Id: For discussion of Syslinux and tftp-hpa <syslinux.zytor.com>
Excellent! ;)
I would like to propose a feature request of adding filespace ACLs to tftpd-hpa.
Example:
I serve data out of /srv/tftp. I only want clients 192.168.1.0/24 to
have read access to /srv/tftp/data_1 and only want clients
192.168.2.0/24 to have read access to /srv/tftp/data_2.
Configuration:
One could create a new config file and command-line option, but I
believe it could also be done as an extension to the map-file.
Add a new operation letter:
c - indicate an extra client field in this ru...
2017 Sep 04
1
Merge by Range in R
Hi,?
I have two big data set.?
data _1 :?
> dim(data_1)
[1] 15820 5
> head(data_1)
? ?Chromosome ?????Start????????End????????Feature GroupA_3
1: ? ? ? ????????chr1 521369 ?750000 ????chr1-0001 ? ?????0.170
2: ? ? ? ????????chr1 750001 ?800000 ????chr1-0002 ? ????-0.086
3: ? ? ? ????????chr1 800001 ?850000 ????chr1-0003 ? ?????0.006
4: ? ? ? ??????...
2013 Feb 15
2
sprintf in system command
hi all
I am using r (2.15.2) in windows 7 32bit
I want to execute an external program from r console. the program is a
command line program which needs the following format to start
C:/Users/.../dssp-2.0.4-win32.exe -i
data_1.txt -o data_1.dssp
I used the system command as:
system
('C:/Users/.../dssp-2.0.4-win32.exe -i data.txt -o data.dssp')
it worked.
Now I want to use the program on a list of files, so for that I used a
for loop and sprintf...
2010 Oct 28
0
SAMBA smb.conf LINUX CLIENT SIDE
...n = yes
winbind enum users = yes
winbind enum groups = yes
template homedir = /home/%D/%U
template shell = /bin/bash
winbind separator = \
#
#
#========================Share Definitions=========================
#
#
[Smb_home]
comment = Votre Repertoire : \\%N\Samba_homes\%u
path = /data_1/100_samba/sysvol/homes
valid users = "@Domain Users"
writable = yes
create mask = 0700
directory mask = 0700
#
#
[Smb_profile]
comment = Profile itinerant \\%N\Samba_profiles\%u
path = /data_1/100_samba/sysvol/profiles
valid users = "@Domain Users"
writeable =...
2016 Jan 11
0
tftp-hpa features?
On 01/11/16 08:09, Matt Zagrabelny via Syslinux wrote:
>
> I would like to propose a feature request of adding filespace ACLs to tftpd-hpa.
>
> Example:
>
> I serve data out of /srv/tftp. I only want clients 192.168.1.0/24 to
> have read access to /srv/tftp/data_1 and only want clients
> 192.168.2.0/24 to have read access to /srv/tftp/data_2.
>
> Configuration:
>
> One could create a new config file and command-line option, but I
> believe it could also be done as an extension to the map-file.
>
> Add a new operation letter:
>...
2006 May 09
0
Autocompleter quirk and my proposed fix.
...ct name
search if I typed: dan
I would get responses like so:
Result set for: d
Result set for: dan
Result set for: da
So once the typing stopped I would be looking at the "da" query results not
the "dan" results.
I modified the control.js file near line 328 with:
if((typeof(data_1) == "object") && data_1.transport.readyState != 4)
data_1.transport.abort();
data_1 = new Ajax.Request(this.url,this.options);
This kills a pending request if you start another one before it completed.
It fixed my problem. Can anyone see any problems with this? Another set of...
2010 Nov 06
4
Using changing names in loop in R
...I have usually solved this problem by repeating lines of codes instead of a
loop, but it's such a waste of time, I thought I should really learn how to
do it with loops:
What I want to do:
Say, I have several data files that differ only in a number, e.g. data
points (or vector, or matrix...) Data_1, Data_2, Data_3,... and I want to
manipulate them
e.g. a simple sum of several data points
>data <- c(NA,n)
>for (i in 1:n){
>data[i] <- Data_i + Data_[i-1]
> }
I know that the above code doesn't work, and I don't want to combine the
files into one ve...
2016 Jan 08
2
tftp-hpa features?
Greetings,
Is this list (a|the best) place to make feature requests for tftp-hpa?
If not, would you point me in the right direction, please?
Thanks much!
-m
2016 Jan 11
1
tftp-hpa features?
...1/16 08:09, Matt Zagrabelny via Syslinux wrote:
>>
>> I would like to propose a feature request of adding filespace ACLs to tftpd-hpa.
>>
>> Example:
>>
>> I serve data out of /srv/tftp. I only want clients 192.168.1.0/24 to
>> have read access to /srv/tftp/data_1 and only want clients
>> 192.168.2.0/24 to have read access to /srv/tftp/data_2.
>>
>> Configuration:
>>
>> One could create a new config file and command-line option, but I
>> believe it could also be done as an extension to the map-file.
>>
>> Add a...
2024 Feb 23
0
Data consideration in executing pca
Dear R users,
I have a txt file named 'data_1.txt' whose first column contains the names
of the individuals and the other columns contain the values of four
variables X_1,X_2,X_3 and X_4. I read it with R from its location and
called it data. I'd like to do a normalized principal component analysis. I
started by calculating the correla...
2011 Sep 07
0
Setting specific path for home, netlogon and profile
...not linux. ( see previous thread today )
This part of my config files.
+++++++++++++
SMB.CONF
+++++++++++++
[Global]
logon script = %U.bat
logon path = \\%L\profiles\%U\%$(OSTYPE)
logon drive = U:
logon home = \\%L\homes\%U\%$(OSTYPE)
[homes]
comment = Votre Repertoire home
path = /data_1/100_samba/sysvol/homes/%U/%$(OSTYPE)
read only = No
create mask = 0777
directory mask = 0777
browseable = Yes
[profiles]
comment = Votre Profile itinerant
path = /data_1/100_samba/sysvol/profiles/%U/%$(OSTYPE)
read only = No
create mask = 0777
directory mask = 0777
browseable = Yes
[n...
2012 Apr 04
2
extract data
HI,
I would like to extract data in a specific way. For example, the rainfall data
0,0,1.5,0,0, 3,1,2.5,0,0,0,0, 2.3,0,0,0, 2.1,1.4,0,0,0, 3,2,1,0,0,0...
data_1: 1.5, 2.3 ( a single nonzero data between zeros data)
data_2: 3.1, 2.5, 2.1,1.4 ( two nonzero data between zeros data)
data_3: 3,1,2.5, 3,2,1 ( three nonzero data between zeros data)
Thank you so much for any help given.
Roslina
[[alternative HTML version deleted]]
2009 Dec 01
1
Multiple grouping on the X axis.
...ysical groups using
R. Below is a sample of the kind of data I am working with and the desired
output. We have a jmp script that can do the same thing, but at ~$200 a
year the licensing is counterproductive. Thanks for any help.
Data input: Loaded from a CSV file.
Physical_1 Logical_1 Logical_2 Data_1 Data_2
x Y Z2 54 56
x Y2 Z2 53 55
x Y3 Z2 52 54
x2 Y Z 60 58
x2 Y2 Z 59 57
x2 Y3 Z...
2012 Jun 05
0
Memory leak during instantiation of a reference class?
...finition:
setRefClass("data",
fields = list(h5_df = "list",
training_data = "array",
true_class = "vector"));
# The class instantiation:
data_1 <- new("data",
h5_df = as.list(h5_df),
training_data = training_data,
true_class = true_class);
The objects assigned to the "data" fields during instantiation:
Bro...
2010 Dec 30
3
Boot Error GPT partition
...linux x86_64 /
8 258179515 258998714 400.0 MiB FFFF
Linux_Boot_GRUB2_BIOS -> Marked GPT attribute Legacy BIOS
Bootable - ext4 - Archlinux x86_64 /boot
9 258998720 290455199 15.0 GiB FFFF Unknown
10 290455200 457370549 79.6 GiB 0700 DATA_1
11 457370550 625137344 80.0 GiB 0700 DATA_2
12 625137352 625142414 2.5 MiB FFFF Unknown
13 2488473 17260759 7.0 GiB 8200 Linux swap
I tried installing using all these combinations but none of them work
sudo extlinux --{install/upgr...
2011 Jul 20
4
R on Multicore for Linux
Hi all,
I have R installed on a box, which is running on a machine with 16 core and
Redhat - Linux. I am handling huge (size of dataset will be 5 GB) dataset.
Lets assume that my data is in the form of structured (multiple) logs. I
access the data by using all.files(). Since by default basic version of R
utilizes single core, the processing of my analysis code is taking too much
time. I got to
2018 Mar 09
3
smb protocol version
... idmap config *:range = 100000-200000
winbind use default domain = yes
winbind enum users = yes
winbind enum groups = yes
vfs objects = acl_xattr
map acl inherit = Yes
store dos attributes = Yes
log level = 1
log file = /var/log/samba/samba.log
[y]
comment=Data_1
path = /home/samba/data1
browseable = Yes
read only = No
force create mode = 0660
force directory mode = 0660
vfs objects = acl_xattr full_audit
full_audit:prefix = %u|%I|%S
full_audit:facility = local7
full_audit:success = mkdir rename unlink rmdir pwrite open
full_a...