Displaying 8 results from an estimated 8 matches for "unerwartete".
2010 May 20
2
Sweave and uttf-8 under Windows XP
...t.R
> source(file("Bericht.R", encoding="UTF-8"))
which runs fine, but running Sweave() failed:
> Sweave("Bericht.Rnw")
Writing to file Bericht.tex
Processing code chunks ...
1 : term verbatim
2 : term verbatim
Fehler: chunk 2
Error in parse(text = chunk) : Unerwartetes Eingabe in:
"
data$X6.1.Staats.angeh??"
>
My first idea was to run Sweave like Sweave(file("Bericht.Rnw",
encoding="UTF-8")), but Sweave seems to expect a file name as a
character rather a connection. The Rnw and csv file were created under
Linux in a UTF-8 locale...
2012 Dec 16
3
xlim/ylim problem
...rea #
plot(bin, main="All",colramp=function(n){heat.ob(n,beg=230,end=25)})
# So I tried to scale my yaxes, with the next line:
#plot(bin, main="All",ylim=(0,15000),
colramp=function(n){heat.ob(n,beg=230,end=25)})
# The following error message is displayed:
#Fehler: Unerwartete(s) ',' in "plot(bin, main="All",ylim=(0,"
# Which I would translate to:
# Error: Unexpected ',' in "plot(bin, main="All",ylim=(0,"
I flashing idea would be a great help
Thx Tom
[[alternative HTML version deleted]]
2007 Nov 05
2
namespace crash on S3method("as.ff",function)
...ed version operating on large ff objects. Everything works fine, but when registering
S3method("as.ff",function)
in NAMESPACE, the installation fails with some kind of parsing error:
adding build stamp to DESCRIPTION
installing NAMESPACE file and metadata
Fehler in parse(nsFile) : Unerwartetes ')' bei
348:
349: S3method("as.ff",function)
Calls: <Anonymous> -> parseNamespaceFile -> parse
Ausf?hrung angehalten
make[2]: *** [nmspace] Error 1
make[1]: *** [all] Error 2
make: *** [pkg-ff] Error 2
*** Installation of ff failed ***
Is this a bug? Any ideas?
Best...
2007 Aug 23
1
Login-Problem with DFS-Share
...ot; on a WindowsXPpro
machine everything works fine. The share is connected and I could read and
write everything.
But trying to use "net use l: \\samba\agbhome /USER:myuser" I'll be
prompted for the password, and the error message is displayed:
"Systemfehler 59 aufgetreten
Ein unerwarteter Netzwerkfehler ist aufgetreten"
(translated: "Systemerror 59 occured.
An unexpected networkerror occured"
No network-drive "L:" (or any other letter) is connected.
Strange, because directly on "samba" I use:
admin:~ # smbclient \\\\samba\\agbhome -U AGB\\ag...
2005 May 03
1
Problem: R lässt sich nicht starten
Hallo,
ich schreibe einfach mal deutsch, und hoffe dass Du das auch verstehst
(if not write me back in English).
OS X 10.3.9
Ich habe R 2.1.0 installiert, und das Programm hat auch funktioniert.
Will wenig sp??ter wieder mit R arbeiten, es l??sst sich aber nicht mehr
starten. "Das Programm R wurde unerwartet beendet", w??hrend ich versuche
es durch Doppelklicken auf das R.app-symbol
2013 Jan 31
2
use name (not values!) of a dataframe inside a funktion
...;- data.frame(a=c(1,2,3,4),b=c(1,2,3,4))
f.fact <- function(x) {assign(x[,2], factor(x[,2]))}
f.fact(dfb)
is.factor(dfb[,2])
> Ungültiges erstes Argument
dfb <- data.frame(a=c(1,2,3,4),b=c(1,2,3,4))
f.fact <- function(x) {quote(x)[,2], factor(x[,2])}
f.fact(dfb)
is.factor(dfb[,2])
> Unerwartetes ','
dfb <- data.frame(a=c(1,2,3,4),b=c(1,2,3,4))
f.fact <- function(x) {
name <- paste0(quote(x),"[,2]")
assign(name, factor(x[,2]))}
f.fact(dfb)
is.factor(dfb[,2])
> FALSE
dfb <- data.frame(a=c(1,2,3,4),b=c(1,2,3,4))
f.fact <- function(x) {
name <- paste0...
2001 Nov 20
3
Running Visio?
Hi,
I tried to run MS Visio in wine, and it breaks while loading the first
file or template. It says
Fehlernr. 1 ist bei der '???'-Operation aufgetreten.
Unerwartetes Dateiende.
which translates into
Fault 1: Unexpected EOF
Going throug the debug output, I noticed file accesses for
warn:file:FILE_DoOpenFile 'd:\visio\system\filter32\emigs9.flt' not found or sharing violation
although the file is emigs2.flt. Providing a link fixes this message,
bu...
2002 Sep 03
0
cannot write to file
...les in. The
smb.conf is also installed at ../samba/lib. I can find the machine
from my Windows Systems, can create new files, new directories,
can delete everything I created before but:
I cannot edit previous created files. If I try to open a file with
a Windows editor I get the message 'Ein unerwarteter Netzwerkfehler
ist aufgetreten'. Sorry but my Windows is german. This message means
something like 'an unexpected network error occured'.
I think there is something missing by the linux installation but I
dont know where to search.
I did not implement the mechanism for shadow password...