Displaying 20 results from an estimated 40 matches for "maja".
Did you mean:
maj
2017 Mar 26
5
[Euro LLVM] Unofficial beer before the conference
I like Tante Maja. I will call them and see if we can flood them. ;-)
I suggest dinner at 18:00?
Best,
Tobias
On Sun, Mar 26, 2017, at 04:08 PM, Bekket McClane via llvm-dev wrote:
> Hi, I’m one of the poster session authors, I’m also currently in
> Saarbruken
> All three places sound nice to me, but I’m...
2007 Jun 23
2
Highliting a text in a plot
Hi everyone,
I want to highlight something in a plot.
So I want to write a text with a yellow background.
I tried to make use of text(x,y,"hallo",bg="yellow")
but that does not work.
I know I am a handful. Sorry!
Maja!
--
2017 Mar 26
3
[Euro LLVM] Unofficial beer before the conference
I’m going to travel with another person, so 2 people in total
Cheers,
Hsu
> Tobias Grosser <tobias.grosser at inf.ethz.ch> 於 2017年3月26日 下午4:16 寫道:
>
> We have a table reserved at Tante Maja, 18:00 for 15 people. I am travel
> with 5 other people, so 10 more spots are open. Please let me know
> within 30 minutes if you want a spot, such that I can confirm the
> reservation.
>
> Best,
> Tobias
>
> On Sun, Mar 26, 2017, at 04:10 PM, Tobias Grosser via llvm-dev w...
2010 Oct 15
4
Set value if else...
...ther 1 or 0 depending on an value of a
dataframe and then add this as a colum to the dataframe.
This could be done with a loop but as we are able to do questions on a
complete row or colum without a loop it would be sweet if it could be done.
for example:
table:
Name Age
Joel 24
agust 17
maja 40
and so on...
And what I want to do is a command that gives me
VoteRight<-1 if table$age>18 else set VoteRight to 0
Then use cbind or something to add it to the table.
so i get
Name Age VoteRight
Joel 24 1
agust 17 0
maja 40 1
And as I said before im guessing thi...
2017 Mar 26
3
[Euro LLVM] Unofficial beer before the conference
Hi,
I've heard some people are in Saarbrucken and would like to go for a dinner
together.
I've found some places that should be good for groups:
Old Murphys
https://goo.gl/maps/aPXjfwJGSgS2
Tante Maja
https://goo.gl/maps/yF9Gij5qPoN2
Vapiano
https://goo.gl/maps/knK9edHPE1y
Is someone interested in meeting this evening (probably after 5:30)?
Piotr
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170326/f3...
2017 Mar 26
2
[Euro LLVM] Unofficial beer before the conference
...at lists.llvm.org>:
>
> > I’m going to travel with another person, so 2 people in total
> >
> > Cheers,
> > Hsu
> > > Tobias Grosser <tobias.grosser at inf.ethz.ch> 於 2017年3月26日 下午4:16 寫道:
> > >
> > > We have a table reserved at Tante Maja, 18:00 for 15 people. I am travel
> > > with 5 other people, so 10 more spots are open. Please let me know
> > > within 30 minutes if you want a spot, such that I can confirm the
> > > reservation.
> > >
> > > Best,
> > > Tobias
> > >
&...
2011 Mar 10
2
identical values not so identical? newbie help please!
...0, except for this one. I can't
figure it out?
Anyway, I need help understanding why 118 and 118 are not really the same. I
appreciate some may be wary of downloading my .Rdata file (I'm on ubuntu if
that's any consolation), but I don't know how else to ask this quesiton!
Thanks!
Maja Z.
--
View this message in context: http://r.789695.n4.nabble.com/identical-values-not-so-identical-newbie-help-please-tp3346078p3346078.html
Sent from the R help mailing list archive at Nabble.com.
2006 Sep 02
3
Dividing objects in classes using function sample()
...)/2 possibilities.
For example n=4, k=3:
That would be:
4 0 0
3 1 0
3 0 1
2 2 0
2 1 1
2 0 2
1 3 0
1 2 1
1 1 2
1 0 3
0 3 1
0 2 2
0 1 3
0 0 4
I tried to you use permn() or sample() but I don't know how to solve.
Please help me!
Best regards,
Maja
--
"Feel free" ? 10 GB Mailbox, 100 FreeSMS/Monat ...
2007 Aug 07
1
Functions for autoregressive Regressionmodels (Mix between times series and Regression Models) ?
...to analyse:
Y[t] = phi[1]*Y[t-1] + phi[2]*Y[t-1] + ... + phi[p]Y[t-p] + beta1*vacation_t +beta2*bank.holidays + beta3*illnes + beta4*eductation + u_t-
Has anyone an idea?
I would be more than glad if so.
Thank you VERY much in advance.
Kindly regards from the Eastern Part of Berlin,
Maja
--
2007 Aug 04
2
Problems using "lm" in combination with "predict"
...cause there confidence.intervals are include.
My idea was:
mod <- lm(y~Worktime+Vacation+Illnes+Bankholidays)
newdate=data.frame(x=c(324,123,0.9,0.1))
predict(y,newdate)
But I always get the message:
'newdata' had 1 rows but variable(s) found have 28 rows
What can I do?
Yours,
Maja
--
Psssst! Schon vom neuen GMX MultiMessenger geh?rt?
Der kanns mit allen: http://www.gmx.net/de/go/multimessenger
2007 Jul 15
1
Text with differents colors in a plot / Detecting if text exists
...for a function or something similar, that can check whether there is text in some regions on the plot.
Because I don't want to overwrite an existing text with a new one.
Thank you so much for your help. I appologize in advance if my question is very stupid but I have really no idea.
Yours,
Maja
--
2010 Jan 18
2
function to set log(0)=0 not working on tables or vectors
...log<-function(x){
if (x ==0) 0 else log(x)
}
which seems to work fine for individual numbers e.g.
>llog(0/2)
[1] 0
but if I try whole vectors or tables:
p<-c(4,3,1,0)
q<-c(2,2,2,2)
llog(p/q)
I get this:
[1] 0.6931472 0.4054651 -0.6931472 -Inf
What am I missing?
Thanks!
Maja
--
View this message in context: http://n4.nabble.com/function-to-set-log-0-0-not-working-on-tables-or-vectors-tp1016278p1016278.html
Sent from the R help mailing list archive at Nabble.com.
2007 May 22
2
German Map in package maps
...or a german map in the package maps by Becker and Wilks.
After that I want to draw the German cities from world.cities of this package in the map and want to draw further a line from Berlin to Munich.
Has anybody an idea?
Thank you so much and sorry for the question!
Best regards from Berlin,
Maja!
--
2007 Jun 11
1
Starting R within an VBA makro
...l 2003.
After that I want to start within my VBA makro R wich should start an R file, say i.g, superplot.R which plots me the data well.
So is it possible?
Maybe something like that:
sub test()
'calculate something
start R superplot.R
end test()
Thank you so much.
Kindly regards,
Maja
--
Psssst! Schon vom neuen GMX MultiMessenger geh?rt?
Der kanns mit allen: http://www.gmx.net/de/go/multimessenger
2007 Jun 12
1
Problems with Vista, R 2.5.0 and function save
...attach(masterfile).
I.g.
Town<-c("London","Miami","Rio","Lansing")
Pollution<-c("34","32","50","17")
masterfile<-data.frame(Town,Pollution)
save(masterfile,file="masterfile.Rda")
Kindly regards,
Maja Schr?ter
--
Psssst! Schon vom neuen GMX MultiMessenger geh?rt?
Der kanns mit allen: http://www.gmx.net/de/go/multimessenger
2001 May 25
2
Winamp plug-in update
http://www.blorp.com/~peter/zips/in_vorbis.zip
another bunch of bugfixes and some new features (see tag editor advanced
mode)
-Peter
--
26 maja - Dzien Matki. Wygraj kwiaty dla swojej Mamy!
Do rozdania 75 bukietow z dostawa i zyczeniami.
[ http://zakupy.onet.pl/prezenty.asp?k=7 ]
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to ...
2008 May 22
1
disaggregate frequency table into flat file
...ck here and
(b) afraid this is a very round-about way at getting to what I want i.e. I
can now sample(individ, 10), but then I'll have a heck of a time getting the
result back into the original matrix form....
sorry again, just please tell me the simple solution that I've missed?
thanks!
maja
--
View this message in context: http://www.nabble.com/disaggregate-frequency-table-into-flat-file-tp17396040p17396040.html
Sent from the R help mailing list archive at Nabble.com.
2009 Nov 10
3
Error: cannot allocate vector of size...
...Mb, 1535Mb, 11.3Mb?
I'm working on WinXP with 2 GB of RAM. Help says the maximum obtainable
memory is usually 2Gb. Surely they mean GB?
The file I'm importing has about 3 million cases with 100 variables that I
want to crosstabulate each with each. Is this completely unrealistic?
Thanks!
Maja
--
View this message in context: http://old.nabble.com/Error%3A-cannot-allocate-vector-of-size...-tp26282348p26282348.html
Sent from the R help mailing list archive at Nabble.com.
2010 Aug 17
2
plotting functions of chi square
...mple:
plot(1, type="n", xlab="", ylab="", xlim=c(0,2), ylim=c(0,7))
for (i in c(10,50,100,200,500)){
lines(density(rchisq(100000,i)/i))
}
But even with 100,000 samples the curves still aren't smooth. Surely there
must be a more elegant way to do this?
Thanks!
Maja
--
View this message in context: http://r.789695.n4.nabble.com/plotting-functions-of-chi-square-tp2329020p2329020.html
Sent from the R help mailing list archive at Nabble.com.
2009 Feb 18
2
indicator or deviation contrasts in log-linear modelling
...ts (I know e.g. spss genlog
does this).
I hope this is not to basic a question!
And if anyone is up for answeing the wider question of why log-linear
parameters are not something to be looked at - which might just be my
impression of the literature - feel free to comment!
Thanks for your help!
Maja
edit: this might just be me using the wrong terminology! if idicator and
deviation contrasts come by a different name, I would love to know it! tnx
--
View this message in context: http://www.nabble.com/indicator-or-deviation-contrasts-in-log-linear-modelling-tp22090104p22090104.html
Sent from th...