Displaying 17 results from an estimated 17 matches for "data_file".
Did you mean:
data_files
2008 Oct 16
2
Saving results of Kruskal Walis test
...ng Kruskal-Walis test in R. When I try to save results using
write.table it gives me the following error :
Error in as.data.frame.default(x[[i]], optional = TRUE, stringsAsFactors =
stringsAsFactors) :
cannot coerce class "htest" into a data.frame
The overall code is as follows :
>data_file = read.table("~/DATA.dir/data_file.txt", header=T)
>attach(data_file)
>data_file.out <- krukal.test(data_file)
>write.table(data_file.out, "~/DATA/results/data_file_out.txt")
Error in as.data.frame.default(x[[i]], optional = TRUE, stringsAsFactors =
stringsAsFact...
2006 Sep 04
3
opening files in directory
Hi there
I want to be able to take all the files in a given directory, read them in one at a time, calculate a distance matrix for them (the files are data matrices) and then print them out to separate files. This is the code I thought I would be able to use
(all files are in directory data_files)
for(i in 1:length(files))
+ {
+ x<-read.table("data_files/files[[i]]")
+ dist<-dist(x, method="euclidean", diag=TRUE)
+ mat<-as.matrix(dist)
+ write.table(mat, file="files[[i]]")
+ }
But I get this error when I try to open the first file using read.table
Err...
2007 Feb 27
11
Mongrel upload progress not showing progress on production server
...app isn''t returning any
values for upload progress, and uploads are not showing up in the
queue when running upload_client.rb. Before anyone asks, yes, I''m
running both the mongrel instances and the upload.rb script.
Below are the relevant log entries and code snippets. Thanks!
data_file.rb:
?
def progress
warn ''progress''
render :update do |page|
warn ''update''
@status = Mongrel::Uploads.check(params[:upload_id])
warn @status.inspect
page.upload_progress.update(@status[:size], @status[:received]) if @status...
2006 Sep 08
4
Does acts_as_attachment :storage => :db_system work?
...cts_as_attachment) so that
it pulls data from the database. (Everything works fine if I want to
use :storage => :file_system)
How are my generated model and db_files connected? and what do I need
in my show action to send the image to the browser? I tried code like
this:
send_data @picture.data_file.data, :filename => @picture.filename,
:type => @picture.content_type, :dispo\
sition => ''inline''
But I get an undefined method error for data_file, which doesn''t
surprise me since I don''t see any link between the db_files table and
my pictures table. Pa...
2020 Oct 28
1
segfault during net rpc printer migrate drivers
...?????????? : *
??????????????????????????????? architecture???????????? : 'Windows NT x86'
??????????????????????????? driver_path????????????? : *
??????????????????????????????? driver_path????????????? :
'\\RM-SAMBA01\print$\W32X86\3\pscript5.dll'
??????????????????????????? data_file??????????????? : *
??????????????????????????????? data_file??????????????? :
'\\RM-SAMBA01\print$\W32X86\3\hp9050-1.ppd'
??????????????????????????? config_file????????????? : *
??????????????????????????????? config_file????????????? :
'\\RM-SAMBA01\print$\W32X86\3\ps5ui.dll'...
2005 Mar 28
4
Problem with bindings and MinGW
...;-v -Wl,--enable-runtime-pseudo-reloc "
"-L%(xapianbase)s/lib -lstdc++ "
"-lxapianqueryparser -lxapian "
% {'xapianbase': XAPIAN_BASE}).split()
EXTRA_CFLAGS = (
"-I%(xapianbase)s/include "
% {'xapianbase': XAPIAN_BASE}).split()
DATA_FILES = []
if sys.platform == "win32":
df = (
"%(xapianbase)s/bin/libxapianqueryparser-5.dll "
"%(xapianbase)s/bin/libxapian-5.dll "
% {'xapianbase': XAPIAN_BASE}).split()
DATA_FILES = [('.', df)]
EXTRA_CFLAGS.append("...
2005 Mar 28
4
Problem with bindings and MinGW
...;-v -Wl,--enable-runtime-pseudo-reloc "
"-L%(xapianbase)s/lib -lstdc++ "
"-lxapianqueryparser -lxapian "
% {'xapianbase': XAPIAN_BASE}).split()
EXTRA_CFLAGS = (
"-I%(xapianbase)s/include "
% {'xapianbase': XAPIAN_BASE}).split()
DATA_FILES = []
if sys.platform == "win32":
df = (
"%(xapianbase)s/bin/libxapianqueryparser-5.dll "
"%(xapianbase)s/bin/libxapian-5.dll "
% {'xapianbase': XAPIAN_BASE}).split()
DATA_FILES = [('.', df)]
EXTRA_CFLAGS.append("...
2008 Jan 14
0
clusterwise regression from fpc (fixed point clustering) package
...1__2___1
when i run a linear reg for cluster one - explaining dep on i1-i4 he uses almost only i1 for explaining dep with 100% explained variance but often the model is insignificant and it is not a kind of cluster i am looking for)
this is my code:
library(fpc)unabh <- read.table("G:/Data_Files/SPSS Files/unabh.csv", sep=";", header=TRUE)abh <- read.table("G:/Data_Files/SPSS Files/abh.csv", sep=";", header=TRUE)m <- as.matrix(unabh)attach(abh)rmt1 <- regmix(m, VVV, ir=1, nclus=1:2,icrit=1.e-5, minsig=1.e-6, warning=TRUE)write.table(rmt1$g)...
2011 Oct 23
0
code review: is it too much to ask?
...gplot2 library
library(doBy) # use doBy library
# =========================================================================================
# ETL Step
# =========================================================================================
data_file <- file("/Users/bravegag/code/asl11/trunk/report/experiment.dat")
df <- read.table(data_file) # reads the data as data frame
class(df) # show the class to be 'list'
names(df)...
2010 Sep 02
7
unable to upload larger files
hii,
i am trying to upload some files to filesystem using rails application
when i use small size file everything is perfect but i when goes for
larger files i got error
this is my code
#this model file
class DataFile < ActiveRecord::Base
def self.save(upload)
name = upload[''datafile''].original_filename
directory = "//192.168.147.17/Smruti/streams"
#
2006 Jun 07
1
Upload to DB hang mentioned in wiki
I''m uploading files to a mysql database, using a mediumblob size.
Following the wiki here:
http://wiki.rubyonrails.org/rails/pages/HowtoUploadFiles ,
I got past the first mysql 500kb limitation with the max_allowed_packet = xM
trick, setting it to 1000M.
However, as the person at the very bottom of the wiki notes, I too cannot
upload more than around 10mb.
I also tried the suggested
2005 Aug 22
0
Re: preview of NUT CGI enhancements
....debian.org/pm/task.php?group_project_id=56&group_id=30602&func=browse
I still have the css support task, and the themeability one
> Found a small bug... it doesn't seem to copy the nut-banner.png file
> over with the html files.
right, I've added the banner to the Makefile/DATA_FILES.
thanks for the report.
Arnaud
2007 Aug 08
0
username map
...sword server = adserver01, adserver02
domain master = no
local master = no
preferred master = no
username map = /usr/local/samba/lib/smb.users
[homes]
writeable = yes
# +sysadmin is a Unix group which unxusr1 is a member
valid users = +sysadmin
wide links = no
[trax]
path = /var/data_files
writeable = yes
valid users = unxusr1, appusru
wide links = no
[test]
path = /var/tmp
writeable = yes
valid users = unxusr1, appusru
wide links = no
::::::::::::::
smb.users
::::::::::::::
unxusr1 = XXXGLOBAL\windusr1
appusru = XXXGLOBAL\appusrwin
2007 Aug 10
0
SUMMARY: username map
...sword server = adserver01, adserver02
domain master = no
local master = no
preferred master = no
username map = /usr/local/samba/lib/smb.users
[homes]
writeable = yes
# +sysadmin is a Unix group which unxusr1 is a member
valid users = +sysadmin
wide links = no
[trax]
path = /var/data_files
writeable = yes
valid users = unxusr1, appusru
wide links = no
[test]
path = /var/tmp
writeable = yes
valid users = unxusr1, appusru
wide links = no
::::::::::::::
smb.users
::::::::::::::
unxusr1 = XXXGLOBAL\windusr1
appusru = XXXGLOBAL\appusrwin
2020 Jul 22
2
How to debug a missing symbol with ThinLTO?
...m the link command in the snapshot, the static library is not on the command line from snapshot:
/Applications/Xcode-11.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -Z -demangle -object_path_lto /var/folders/5c/85r7gp0909j5jbytzds1j7b40000gn/T/thinlto-bf51d2 -lto_library data_files/libLTO.dylib -no_deduplicate -dynamic -arch x86_64 -macosx_version_min 10.15.0 -debug_snapshot -filelist objects/filelist dylibs/libSystem.tbd dylibs/libc++.tbd
Steven
> On Jul 22, 2020, at 11:42 AM, Tobias Hieta <tobias at plexapp.com> wrote:
>
> Hello,
>
> Thanks for t...
2020 Jul 23
2
How to debug a missing symbol with ThinLTO?
...command in the snapshot, the static library is not on the command line from snapshot:
>
> /Applications/Xcode-11.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -Z -demangle -object_path_lto /var/folders/5c/85r7gp0909j5jbytzds1j7b40000gn/T/thinlto-bf51d2 -lto_library data_files/libLTO.dylib -no_deduplicate -dynamic -arch x86_64 -macosx_version_min 10.15.0 -debug_snapshot -filelist objects/filelist dylibs/libSystem.tbd dylibs/libc++.tbd
>
>
> Steven
>
>
>> On Jul 22, 2020, at 11:42 AM, Tobias Hieta <tobias at plexapp.com <mailto:tobias at pl...
2020 Jul 22
2
How to debug a missing symbol with ThinLTO?
This is usually a problem that is not using llvm-ar. I cannot reproduce this problem with either llvm 10.0 or TOT version. Which linker version are you using? You can also try pass "-Wl,-debug_snapshot" to the command where the error produces and then locate the "*.ld-snapshot" in /tmp directory and attach that as a reproducer.
Steven
> On Jul 22, 2020, at 8:41 AM, Teresa