Displaying 20 results from an estimated 10000 matches similar to: "file path"
2006 Jun 01
4
FW: How to create a new package?
Hi,
I'm a group of functions and I would like to create a package for load in R.
I have created a directory named INE and a directory below that named R, for
the files of R functions. A have created the files DESCRIPTION and INDEX in
the INE directory. The installation from local zip files, in the R 2.3.0,
results but to load the package I get an error like:
'INE' is not a
2007 Sep 20
2
Package Survey
Hello,
How I use the function as.svrepdesign without memory.size problems?
desenho_npc_JK <- as.svrepdesign(desenho_npc,type="JKn")
Error: cannot allocate vector of size 161.3 Mb
In addition: Warning messages:
1: Reached total allocation of 1022Mb: see help(memory.size)
2: Reached total allocation of 1022Mb: see help(memory.size)
3: Reached total allocation of 1022Mb:
2006 Dec 12
2
tklistbox...
Hi everyone,
I have different listboxes in the same toplevel window.
The problem is, if I select (by left clicking) one of those listbox
elements, the current selection in the other listboxes is cleared!
Anybody knows how I can prevent this?
Thanks,
---------------------------------------------------
Rita Sousa
DME - ME: Departamento de Metodologia Estatística - Métodos Estatísticos
INE -
2008 Oct 22
1
Package survey
Hi,
I’m using the svyby for total statistics, for example:
svyby(~p_igov,~div_a,desenho_nps,svytotal,drop.empty.groups=TRUE,vartype
=c("se","var","cvpct"))
In the numerical variable p_igov (and others) I have many non responses
but if I maintain the NA it doesn’t work.
summary(base_nps$p_igov)
Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
2010 Feb 22
3
relative file path
Hello,
Is there a way to find where a script is located within a script? getwd()
doesn't do what I want because it depends on where R was called from. I want
something like source("randomFile") and within randomFile there is a
function called whereAmI() which returns c:\blah\blah2\randomFile.R
In perl there is a library called FindBin and $FindBin::Bin has the
directory of the file
2010 Sep 29
2
Script auto-detecting its own path
Hi all,
Forgive me if this question has been addressed, but I was unable to find anything in the r-help list or in cyberspace. My question is this: is there a function, or set of functions, that will enable a script to detect its own path? I have tried file.path() but that was not what I was looking for. It would be nice to be able to put all the related scripts I use in the same folder with a
2013 May 29
0
Nomes dos aprovados Maragogi
Nomes dos aprovados Maragogi:
Alcin?polis: ANAHISA PEDROSA VITALINO, LUCAS BEZERRA DE MESQUITA, GABRIELLE DE MOURA FERREIRA, RACHEL CABRAL MOTA, JO?O CARLOS MOREIRA DE CARVALHO, DEBORA BEZERRA DE BRITO, MARIA KRYSLANE CARDOSO LEMOS, JOAO PEDRO ALEXANDRE SILVA MOTA. TALYTA MARTINS NEVES, CAIO BRITO BARREIRA, MADSON SANTOS MONTEIRO, IAGO FILLIPI PATROCINIO MACEDO, RITA DE CASSIA GADELHA DA SILVA.
2012 Aug 02
4
Subset data
Hi
Need a little help. This is easy question, but i?m new to R.
I want to subset a data frame called vef1 using a variable that is a factor called edad11, 0 if under 11 years, 1 otherwise.
I tried:
vef1.sub<-subset(vef1, edad11==0)
The code runs correctly but i get a empty dataframe.
If i use this code in Deducer everything is OK.
Can you help me?
Thanks in advance
Antonio Sousa
Portugal
2013 May 29
0
Lista aprovados Maravilha
Lista aprovados Maravilha:
Amamba?: ANDERSON BEZERRA MOURAO, LUCAS CAULA ALBUQUERQUE, GEILSON HOLANDA SAMPAIO, RAFAEL FERNANDES, JO?O CARLOS MOREIRA DE CARVALHO, DEBORA CRISTINA SCHNORNBERGER, MARIA MACLENE BEZERRA LIMA, JOAO PEDRO TAVARES MAGALHAES. TAMYRES AMORIM SOUZA, CAIO CESAR FERNANDES LOPES, MAGNUN SANTOS FREDERICO, IAGO SIMOES CALIARI, RITA MARIA SILVA ALMEIDA. Pedreiras.
Maravilha,
2007 Jun 19
1
: create a PDF file (text (print list) and grafics)
Dear helpers,
I need help to create a PDF file like the example
-----------------------------------
| Title |
-----------------------------------
| |
| Text (print a list) |
| |
-----------------------------------
| | |
| | |
| image | image |
| | |
| | |
-----------------------------------
2013 May 29
0
Relação de aprovados Mar Vermelho
Rela??o de aprovados Mar Vermelho:
?gua Clara: ANA PAULA RODRIGUES DA SILVA, LUCAS ARAUJO GOMES FROTA, GABRIEL VICTOR BARROS FORTE DA SILVA, QUIT?RIA DA SILVA G?IS, JO?O CARLOS MOREIRA DE CARVALHO, DAYANA MARIA DE SOUSA TAVARES, MARIA JULIENE CORDEIRO, JO?O PAULO DA SILVA. TALITA FERNANDES GONCALVES, BRUNO RAMOS FERNANDES, LUIZ HENRIQUE ALVES DAMASCENO, IAGO DA SILVA NOBRE, RITA ANGELA DA SILVA.
2013 May 29
0
Lista aprovados Jequiá da Praia
Lista aprovados Jequi? da Praia:
Tesouro: ANA CLEIDE PEREIRA DE VASCONCELOS, LUAN MARINHO DE SOUZA, FRANCISCO LEANDRO FIUSA DA SILVA, PEDRO HENRIQUE ARAUJO SANTIAGO, JO?O CARLOS MOREIRA DE CARVALHO, DANIEL DA CUNHA MAGALHAES, MARIA IVANI DE ARA?JO, JEANNIE PAULO DE SOUSA. SILVANA GALDINO FERREIRA, AUGUSTO BRUNO PEREIRA DOS SANTOS, LUCIANA ESTELITA LAFAYETTE RABELO, GRACY KELLY DE LIMA MORAIS,
2007 Oct 15
2
CentOS 5 - Xen and Vmware Server
Hello everyone,
Is it possible to run in at the same time Xen and Vmware, under the same physical host?
Best regards,
Bruno Sousa
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.488 / Virus Database: 269.14.8/1066 - Release Date: 12-10-2007 11:10
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2010 Jun 11
4
setting the current working directory to the location of the source file
AFAIK a script run through source() does not have any legit way to learn
about it's own location.
I need this to make sure that the script will find its datafiles after I
move the whole directory. (The datafiles are in the same directory.)
Here is a hack I invented to work around it:
print(getwd())
source_pathname = get("ofile",envir = parent.frame())
source_dirname =
2011 Jun 24
4
What does class "call" mean? How do I make class "formula" into a "call"?
I have a list called "tabs" that I would like to have the same structure as my list "eqSystem." The two look like they have the same format but they are different because when I look at their attributes, class(eqSystem[[1]]) is "call" but class(tabs[[1]]) is "formula". I want to have class(tabs[[1]]) as a call too. So what does "call" mean? And how
2018 Nov 30
1
Ubdate Samba 4 from 4.1.11 to 4.9.3
Join new DC (from virtual machine)
https://wiki.samba.org/index.php/Joining_a_Samba_DC_to_an_Existing_Active_Directory
(or 2. from 2 vm!) with bind/dhcp/..
Then demote old DC
https://wiki.samba.org/index.php/Demoting_a_Samba_AD_DC and install
(clean) 4.9.3, then join it again, demote vm,..
01.12.2018 0:40, Igor Sousa via samba пишет:
> I've tried use samba-tool domain backup, but the
2005 Jul 19
1
Minor "bug" in source()
For R v2.1.1 patched and R v2.2.0 devel:
Calling source(file, chdir=TRUE) with is.character(file) != TRUE, that
is, with 'file' as a connection, will generate an error. Example:
> file <- textConnection("cat('Hello world\n')")
> source(file, chdir=TRUE)
Error in source(file, chdir = TRUE) : Object "ofile" not found
Of course, it does not make
2012 Jun 05
4
How do I obtain the current active path of a function that's being called?
Hi all,
How do I obtain the current active path of a function that's being called?
That's to say, I have several source files and they all contain definition
of function A.
I would like to figure out which function A and from which file is the one
that's being called and is currently active?
Thanks a lot!
[[alternative HTML version deleted]]
2003 Apr 01
1
Load and unload libraries
Hi all,
I'm having some problems in loading libraries. I wonder if anyone can
help me with this.
I have created two libraries with the same name at different locations.
I want to use both of them, one at a time.
So I do:
library(mylib,lib.loc1)
(....)
detach('package:mylib')
library(mylib,lib.loc2)
The problem is that, after this, the used library is still the one first
loaded.
2011 Mar 18
2
How do I delete multiple blank variables from a data frame?
Dear List Members,I have 55 data frames, each of which with 272 variables and 267 observations. Some of these variables are blanks but the blanks are not the same for every data frame. I would like to write a procedure in which I import a data frame, see which variables are blank, and delete those variables. My data frames have variables named P1 to P136 and Q1 to Q136.
I have a couple of